2 * Neighbour Discovery for IPv6
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
7 * Mike Shaver <shaver@ingenia.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
18 * Lars Fenneberg : fixed MTU setting on receipt
21 * Janos Farkas : kmalloc failure checks
22 * Alexey Kuznetsov : state machine reworked
23 * and moved to net/core.
24 * Pekka Savola : RFC2461 validation
25 * YOSHIFUJI Hideaki @USAGI : Verify ND options properly
28 /* Set to 3 to get tracing... */
31 #define ND_PRINTK(fmt, args...) do { if (net_ratelimit()) { printk(fmt, ## args); } } while(0)
32 #define ND_NOPRINTK(x...) do { ; } while(0)
33 #define ND_PRINTK0 ND_PRINTK
34 #define ND_PRINTK1 ND_NOPRINTK
35 #define ND_PRINTK2 ND_NOPRINTK
36 #define ND_PRINTK3 ND_NOPRINTK
39 #define ND_PRINTK1 ND_PRINTK
43 #define ND_PRINTK2 ND_PRINTK
47 #define ND_PRINTK3 ND_PRINTK
50 #include <linux/module.h>
51 #include <linux/config.h>
52 #include <linux/errno.h>
53 #include <linux/types.h>
54 #include <linux/socket.h>
55 #include <linux/sockios.h>
56 #include <linux/sched.h>
57 #include <linux/net.h>
58 #include <linux/in6.h>
59 #include <linux/route.h>
60 #include <linux/init.h>
61 #include <linux/rcupdate.h>
63 #include <linux/sysctl.h>
66 #include <linux/if_arp.h>
67 #include <linux/ipv6.h>
68 #include <linux/icmpv6.h>
69 #include <linux/jhash.h>
75 #include <net/protocol.h>
76 #include <net/ndisc.h>
77 #include <net/ip6_route.h>
78 #include <net/addrconf.h>
82 #include <net/ip6_checksum.h>
83 #include <linux/proc_fs.h>
85 #include <linux/netfilter.h>
86 #include <linux/netfilter_ipv6.h>
88 static struct socket *ndisc_socket;
90 static u32 ndisc_hash(const void *pkey, const struct net_device *dev);
91 static int ndisc_constructor(struct neighbour *neigh);
92 static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb);
93 static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb);
94 static int pndisc_constructor(struct pneigh_entry *n);
95 static void pndisc_destructor(struct pneigh_entry *n);
96 static void pndisc_redo(struct sk_buff *skb);
98 static struct neigh_ops ndisc_generic_ops = {
100 .solicit = ndisc_solicit,
101 .error_report = ndisc_error_report,
102 .output = neigh_resolve_output,
103 .connected_output = neigh_connected_output,
104 .hh_output = dev_queue_xmit,
105 .queue_xmit = dev_queue_xmit,
108 static struct neigh_ops ndisc_hh_ops = {
110 .solicit = ndisc_solicit,
111 .error_report = ndisc_error_report,
112 .output = neigh_resolve_output,
113 .connected_output = neigh_resolve_output,
114 .hh_output = dev_queue_xmit,
115 .queue_xmit = dev_queue_xmit,
119 static struct neigh_ops ndisc_direct_ops = {
121 .output = dev_queue_xmit,
122 .connected_output = dev_queue_xmit,
123 .hh_output = dev_queue_xmit,
124 .queue_xmit = dev_queue_xmit,
127 struct neigh_table nd_tbl = {
129 .entry_size = sizeof(struct neighbour) + sizeof(struct in6_addr),
130 .key_len = sizeof(struct in6_addr),
132 .constructor = ndisc_constructor,
133 .pconstructor = pndisc_constructor,
134 .pdestructor = pndisc_destructor,
135 .proxy_redo = pndisc_redo,
139 .base_reachable_time = 30 * HZ,
140 .retrans_time = 1 * HZ,
141 .gc_staletime = 60 * HZ,
142 .reachable_time = 30 * HZ,
143 .delay_probe_time = 5 * HZ,
147 .anycast_delay = 1 * HZ,
148 .proxy_delay = (8 * HZ) / 10,
151 .gc_interval = 30 * HZ,
158 struct ndisc_options {
159 struct nd_opt_hdr *nd_opt_array[__ND_OPT_MAX];
162 #define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
163 #define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
164 #define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
165 #define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
166 #define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
167 #define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
169 #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
172 * Return the padding between the option length and the start of the
173 * link addr. Currently only IP-over-InfiniBand needs this, although
174 * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
175 * also need a pad of 2.
177 static int ndisc_addr_option_pad(unsigned short type)
180 case ARPHRD_INFINIBAND: return 2;
185 static inline int ndisc_opt_addr_space(struct net_device *dev)
187 return NDISC_OPT_SPACE(dev->addr_len + ndisc_addr_option_pad(dev->type));
190 static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len,
191 unsigned short addr_type)
193 int space = NDISC_OPT_SPACE(data_len);
194 int pad = ndisc_addr_option_pad(addr_type);
199 memset(opt + 2, 0, pad);
203 memcpy(opt+2, data, data_len);
206 if ((space -= data_len) > 0)
207 memset(opt, 0, space);
211 static struct nd_opt_hdr *ndisc_next_option(struct nd_opt_hdr *cur,
212 struct nd_opt_hdr *end)
215 if (!cur || !end || cur >= end)
217 type = cur->nd_opt_type;
219 cur = ((void *)cur) + (cur->nd_opt_len << 3);
220 } while(cur < end && cur->nd_opt_type != type);
221 return (cur <= end && cur->nd_opt_type == type ? cur : NULL);
224 static struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
225 struct ndisc_options *ndopts)
227 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)opt;
229 if (!nd_opt || opt_len < 0 || !ndopts)
231 memset(ndopts, 0, sizeof(*ndopts));
234 if (opt_len < sizeof(struct nd_opt_hdr))
236 l = nd_opt->nd_opt_len << 3;
237 if (opt_len < l || l == 0)
239 switch (nd_opt->nd_opt_type) {
240 case ND_OPT_SOURCE_LL_ADDR:
241 case ND_OPT_TARGET_LL_ADDR:
243 case ND_OPT_REDIRECT_HDR:
244 if (ndopts->nd_opt_array[nd_opt->nd_opt_type]) {
245 ND_PRINTK2(KERN_WARNING
246 "%s(): duplicated ND6 option found: type=%d\n",
248 nd_opt->nd_opt_type);
250 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
253 case ND_OPT_PREFIX_INFO:
254 ndopts->nd_opts_pi_end = nd_opt;
255 if (ndopts->nd_opt_array[nd_opt->nd_opt_type] == 0)
256 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
260 * Unknown options must be silently ignored,
261 * to accommodate future extension to the protocol.
263 ND_PRINTK2(KERN_NOTICE
264 "%s(): ignored unsupported option; type=%d, len=%d\n",
266 nd_opt->nd_opt_type, nd_opt->nd_opt_len);
269 nd_opt = ((void *)nd_opt) + l;
274 static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
275 struct net_device *dev)
277 u8 *lladdr = (u8 *)(p + 1);
278 int lladdrlen = p->nd_opt_len << 3;
279 int prepad = ndisc_addr_option_pad(dev->type);
280 if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))
282 return (lladdr + prepad);
285 int ndisc_mc_map(struct in6_addr *addr, char *buf, struct net_device *dev, int dir)
289 case ARPHRD_IEEE802: /* Not sure. Check it later. --ANK */
291 ipv6_eth_mc_map(addr, buf);
293 case ARPHRD_IEEE802_TR:
294 ipv6_tr_mc_map(addr,buf);
297 ipv6_arcnet_mc_map(addr, buf);
299 case ARPHRD_INFINIBAND:
300 ipv6_ib_mc_map(addr, buf);
304 memcpy(buf, dev->broadcast, dev->addr_len);
311 static u32 ndisc_hash(const void *pkey, const struct net_device *dev)
313 const u32 *p32 = pkey;
317 for (i = 0; i < (sizeof(struct in6_addr) / sizeof(u32)); i++)
320 return jhash_2words(addr_hash, dev->ifindex, nd_tbl.hash_rnd);
323 static int ndisc_constructor(struct neighbour *neigh)
325 struct in6_addr *addr = (struct in6_addr*)&neigh->primary_key;
326 struct net_device *dev = neigh->dev;
327 struct inet6_dev *in6_dev;
328 struct neigh_parms *parms;
329 int is_multicast = ipv6_addr_is_multicast(addr);
332 in6_dev = in6_dev_get(dev);
333 if (in6_dev == NULL) {
338 parms = in6_dev->nd_parms;
339 __neigh_parms_put(neigh->parms);
340 neigh->parms = neigh_parms_clone(parms);
343 neigh->type = is_multicast ? RTN_MULTICAST : RTN_UNICAST;
344 if (dev->hard_header == NULL) {
345 neigh->nud_state = NUD_NOARP;
346 neigh->ops = &ndisc_direct_ops;
347 neigh->output = neigh->ops->queue_xmit;
350 neigh->nud_state = NUD_NOARP;
351 ndisc_mc_map(addr, neigh->ha, dev, 1);
352 } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
353 neigh->nud_state = NUD_NOARP;
354 memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
355 if (dev->flags&IFF_LOOPBACK)
356 neigh->type = RTN_LOCAL;
357 } else if (dev->flags&IFF_POINTOPOINT) {
358 neigh->nud_state = NUD_NOARP;
359 memcpy(neigh->ha, dev->broadcast, dev->addr_len);
361 if (dev->hard_header_cache)
362 neigh->ops = &ndisc_hh_ops;
364 neigh->ops = &ndisc_generic_ops;
365 if (neigh->nud_state&NUD_VALID)
366 neigh->output = neigh->ops->connected_output;
368 neigh->output = neigh->ops->output;
370 in6_dev_put(in6_dev);
374 static int pndisc_constructor(struct pneigh_entry *n)
376 struct in6_addr *addr = (struct in6_addr*)&n->key;
377 struct in6_addr maddr;
378 struct net_device *dev = n->dev;
380 if (dev == NULL || __in6_dev_get(dev) == NULL)
382 addrconf_addr_solict_mult(addr, &maddr);
383 ipv6_dev_mc_inc(dev, &maddr);
387 static void pndisc_destructor(struct pneigh_entry *n)
389 struct in6_addr *addr = (struct in6_addr*)&n->key;
390 struct in6_addr maddr;
391 struct net_device *dev = n->dev;
393 if (dev == NULL || __in6_dev_get(dev) == NULL)
395 addrconf_addr_solict_mult(addr, &maddr);
396 ipv6_dev_mc_dec(dev, &maddr);
400 * Send a Neighbour Advertisement
403 static inline void ndisc_flow_init(struct flowi *fl, u8 type,
404 struct in6_addr *saddr, struct in6_addr *daddr)
406 memset(fl, 0, sizeof(*fl));
407 ipv6_addr_copy(&fl->fl6_src, saddr);
408 ipv6_addr_copy(&fl->fl6_dst, daddr);
409 fl->proto = IPPROTO_ICMPV6;
410 fl->fl_icmp_type = type;
411 fl->fl_icmp_code = 0;
414 static void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
415 struct in6_addr *daddr, struct in6_addr *solicited_addr,
416 int router, int solicited, int override, int inc_opt)
418 struct in6_addr tmpaddr;
419 struct inet6_ifaddr *ifp;
420 struct inet6_dev *idev;
422 struct dst_entry* dst;
423 struct sock *sk = ndisc_socket->sk;
424 struct in6_addr *src_addr;
430 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
432 /* for anycast or proxy, solicited_addr != src_addr */
433 ifp = ipv6_get_ifaddr(solicited_addr, dev, 1);
435 src_addr = solicited_addr;
438 if (ipv6_dev_get_saddr(dev, daddr, &tmpaddr))
443 ndisc_flow_init(&fl, NDISC_NEIGHBOUR_ADVERTISEMENT, src_addr, daddr);
445 dst = ndisc_dst_alloc(dev, neigh, daddr, ip6_output);
449 err = xfrm_lookup(&dst, &fl, NULL, 0);
455 len += ndisc_opt_addr_space(dev);
460 skb = sock_alloc_send_skb(sk, MAX_HEADER + len + LL_RESERVED_SPACE(dev),
465 "ICMPv6 NA: %s() failed to allocate an skb.\n",
471 skb_reserve(skb, LL_RESERVED_SPACE(dev));
472 ip6_nd_hdr(sk, skb, dev, src_addr, daddr, IPPROTO_ICMPV6, len);
474 msg = (struct nd_msg *)skb_put(skb, len);
475 skb->h.raw = (unsigned char*)msg;
477 msg->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
478 msg->icmph.icmp6_code = 0;
479 msg->icmph.icmp6_cksum = 0;
481 msg->icmph.icmp6_unused = 0;
482 msg->icmph.icmp6_router = router;
483 msg->icmph.icmp6_solicited = solicited;
484 msg->icmph.icmp6_override = !!override;
486 /* Set the target address. */
487 ipv6_addr_copy(&msg->target, solicited_addr);
490 ndisc_fill_addr_option(msg->opt, ND_OPT_TARGET_LL_ADDR, dev->dev_addr,
491 dev->addr_len, dev->type);
494 msg->icmph.icmp6_cksum = csum_ipv6_magic(src_addr, daddr, len,
496 csum_partial((__u8 *) msg,
500 idev = in6_dev_get(dst->dev);
501 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
502 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, dst->dev, dst_output);
504 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTNEIGHBORADVERTISEMENTS);
505 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
508 if (likely(idev != NULL))
512 void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
513 struct in6_addr *solicit,
514 struct in6_addr *daddr, struct in6_addr *saddr)
517 struct dst_entry* dst;
518 struct inet6_dev *idev;
519 struct sock *sk = ndisc_socket->sk;
522 struct in6_addr addr_buf;
528 if (ipv6_get_lladdr(dev, &addr_buf))
533 ndisc_flow_init(&fl, NDISC_NEIGHBOUR_SOLICITATION, saddr, daddr);
535 dst = ndisc_dst_alloc(dev, neigh, daddr, ip6_output);
539 err = xfrm_lookup(&dst, &fl, NULL, 0);
543 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
544 send_llinfo = dev->addr_len && !ipv6_addr_any(saddr);
546 len += ndisc_opt_addr_space(dev);
548 skb = sock_alloc_send_skb(sk, MAX_HEADER + len + LL_RESERVED_SPACE(dev),
552 "ICMPv6 NA: %s() failed to allocate an skb.\n",
558 skb_reserve(skb, LL_RESERVED_SPACE(dev));
559 ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
561 msg = (struct nd_msg *)skb_put(skb, len);
562 skb->h.raw = (unsigned char*)msg;
563 msg->icmph.icmp6_type = NDISC_NEIGHBOUR_SOLICITATION;
564 msg->icmph.icmp6_code = 0;
565 msg->icmph.icmp6_cksum = 0;
566 msg->icmph.icmp6_unused = 0;
568 /* Set the target address. */
569 ipv6_addr_copy(&msg->target, solicit);
572 ndisc_fill_addr_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr,
573 dev->addr_len, dev->type);
576 msg->icmph.icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr,
579 csum_partial((__u8 *) msg,
583 idev = in6_dev_get(dst->dev);
584 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
585 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, dst->dev, dst_output);
587 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTNEIGHBORSOLICITS);
588 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
591 if (likely(idev != NULL))
595 void ndisc_send_rs(struct net_device *dev, struct in6_addr *saddr,
596 struct in6_addr *daddr)
599 struct dst_entry* dst;
600 struct inet6_dev *idev;
601 struct sock *sk = ndisc_socket->sk;
603 struct icmp6hdr *hdr;
608 ndisc_flow_init(&fl, NDISC_ROUTER_SOLICITATION, saddr, daddr);
610 dst = ndisc_dst_alloc(dev, NULL, daddr, ip6_output);
614 err = xfrm_lookup(&dst, &fl, NULL, 0);
618 len = sizeof(struct icmp6hdr);
620 len += ndisc_opt_addr_space(dev);
622 skb = sock_alloc_send_skb(sk, MAX_HEADER + len + LL_RESERVED_SPACE(dev),
626 "ICMPv6 RS: %s() failed to allocate an skb.\n",
632 skb_reserve(skb, LL_RESERVED_SPACE(dev));
633 ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
635 hdr = (struct icmp6hdr *)skb_put(skb, len);
636 skb->h.raw = (unsigned char*)hdr;
637 hdr->icmp6_type = NDISC_ROUTER_SOLICITATION;
639 hdr->icmp6_cksum = 0;
640 hdr->icmp6_unused = 0;
642 opt = (u8*) (hdr + 1);
645 ndisc_fill_addr_option(opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr,
646 dev->addr_len, dev->type);
649 hdr->icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr, daddr, len,
651 csum_partial((__u8 *) hdr, len, 0));
655 idev = in6_dev_get(dst->dev);
656 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
657 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, dst->dev, dst_output);
659 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTROUTERSOLICITS);
660 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
663 if (likely(idev != NULL))
668 static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb)
671 * "The sender MUST return an ICMP
672 * destination unreachable"
674 dst_link_failure(skb);
678 /* Called with locked neigh: either read or both */
680 static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
682 struct in6_addr *saddr = NULL;
683 struct in6_addr mcaddr;
684 struct net_device *dev = neigh->dev;
685 struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
686 int probes = atomic_read(&neigh->probes);
688 if (skb && ipv6_chk_addr(&skb->nh.ipv6h->saddr, dev, 1))
689 saddr = &skb->nh.ipv6h->saddr;
691 if ((probes -= neigh->parms->ucast_probes) < 0) {
692 if (!(neigh->nud_state & NUD_VALID)) {
693 ND_PRINTK1(KERN_DEBUG
694 "%s(): trying to ucast probe in NUD_INVALID: "
695 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
699 ndisc_send_ns(dev, neigh, target, target, saddr);
700 } else if ((probes -= neigh->parms->app_probes) < 0) {
705 addrconf_addr_solict_mult(target, &mcaddr);
706 ndisc_send_ns(dev, NULL, target, &mcaddr, saddr);
710 static void ndisc_recv_ns(struct sk_buff *skb)
712 struct nd_msg *msg = (struct nd_msg *)skb->h.raw;
713 struct in6_addr *saddr = &skb->nh.ipv6h->saddr;
714 struct in6_addr *daddr = &skb->nh.ipv6h->daddr;
716 u32 ndoptlen = skb->tail - msg->opt;
717 struct ndisc_options ndopts;
718 struct net_device *dev = skb->dev;
719 struct inet6_ifaddr *ifp;
720 struct inet6_dev *idev = NULL;
721 struct neighbour *neigh;
722 int dad = ipv6_addr_any(saddr);
725 if (ipv6_addr_is_multicast(&msg->target)) {
726 ND_PRINTK2(KERN_WARNING
727 "ICMPv6 NS: multicast target address");
733 * DAD has to be destined for solicited node multicast address.
736 !(daddr->s6_addr32[0] == htonl(0xff020000) &&
737 daddr->s6_addr32[1] == htonl(0x00000000) &&
738 daddr->s6_addr32[2] == htonl(0x00000001) &&
739 daddr->s6_addr [12] == 0xff )) {
740 ND_PRINTK2(KERN_WARNING
741 "ICMPv6 NS: bad DAD packet (wrong destination)\n");
745 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
746 ND_PRINTK2(KERN_WARNING
747 "ICMPv6 NS: invalid ND options\n");
751 if (ndopts.nd_opts_src_lladdr) {
752 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr, dev);
754 ND_PRINTK2(KERN_WARNING
755 "ICMPv6 NS: invalid link-layer address length\n");
760 * If the IP source address is the unspecified address,
761 * there MUST NOT be source link-layer address option
765 ND_PRINTK2(KERN_WARNING
766 "ICMPv6 NS: bad DAD packet (link-layer address option)\n");
771 inc = ipv6_addr_is_multicast(daddr);
773 if ((ifp = ipv6_get_ifaddr(&msg->target, dev, 1)) != NULL) {
774 if (ifp->flags & IFA_F_TENTATIVE) {
775 /* Address is tentative. If the source
776 is unspecified address, it is someone
777 does DAD, otherwise we ignore solicitations
778 until DAD timer expires.
782 if (dev->type == ARPHRD_IEEE802_TR) {
783 unsigned char *sadr = skb->mac.raw;
784 if (((sadr[8] ^ dev->dev_addr[0]) & 0x7f) == 0 &&
785 sadr[9] == dev->dev_addr[1] &&
786 sadr[10] == dev->dev_addr[2] &&
787 sadr[11] == dev->dev_addr[3] &&
788 sadr[12] == dev->dev_addr[4] &&
789 sadr[13] == dev->dev_addr[5]) {
790 /* looped-back to us */
794 addrconf_dad_failure(ifp);
800 idev = in6_dev_get(dev);
802 /* XXX: count this drop? */
806 if (ipv6_chk_acast_addr(dev, &msg->target) ||
807 (idev->cnf.forwarding &&
808 pneigh_lookup(&nd_tbl, &msg->target, dev, 0))) {
809 if (!(NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED) &&
810 skb->pkt_type != PACKET_HOST &&
812 idev->nd_parms->proxy_delay != 0) {
814 * for anycast or proxy,
815 * sender should delay its response
816 * by a random time between 0 and
817 * MAX_ANYCAST_DELAY_TIME seconds.
818 * (RFC2461) -- yoshfuji
820 struct sk_buff *n = skb_clone(skb, GFP_ATOMIC);
822 pneigh_enqueue(&nd_tbl, idev->nd_parms, n);
830 struct in6_addr maddr;
832 ipv6_addr_all_nodes(&maddr);
833 ndisc_send_na(dev, NULL, &maddr, &msg->target,
834 idev->cnf.forwarding, 0, (ifp != NULL), 1);
839 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_mcast);
841 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_ucast);
844 * update / create cache entry
845 * for the source address
847 neigh = __neigh_lookup(&nd_tbl, saddr, dev,
848 !inc || lladdr || !dev->addr_len);
850 neigh_update(neigh, lladdr, NUD_STALE,
851 NEIGH_UPDATE_F_WEAK_OVERRIDE|
852 NEIGH_UPDATE_F_OVERRIDE);
853 if (neigh || !dev->hard_header) {
854 ndisc_send_na(dev, neigh, saddr, &msg->target,
855 idev->cnf.forwarding,
856 1, (ifp != NULL && inc), inc);
858 neigh_release(neigh);
870 static void ndisc_recv_na(struct sk_buff *skb)
872 struct nd_msg *msg = (struct nd_msg *)skb->h.raw;
873 struct in6_addr *saddr = &skb->nh.ipv6h->saddr;
874 struct in6_addr *daddr = &skb->nh.ipv6h->daddr;
876 u32 ndoptlen = skb->tail - msg->opt;
877 struct ndisc_options ndopts;
878 struct net_device *dev = skb->dev;
879 struct inet6_ifaddr *ifp;
880 struct neighbour *neigh;
882 if (skb->len < sizeof(struct nd_msg)) {
883 ND_PRINTK2(KERN_WARNING
884 "ICMPv6 NA: packet too short\n");
888 if (ipv6_addr_is_multicast(&msg->target)) {
889 ND_PRINTK2(KERN_WARNING
890 "ICMPv6 NA: target address is multicast.\n");
894 if (ipv6_addr_is_multicast(daddr) &&
895 msg->icmph.icmp6_solicited) {
896 ND_PRINTK2(KERN_WARNING
897 "ICMPv6 NA: solicited NA is multicasted.\n");
901 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
902 ND_PRINTK2(KERN_WARNING
903 "ICMPv6 NS: invalid ND option\n");
906 if (ndopts.nd_opts_tgt_lladdr) {
907 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, dev);
909 ND_PRINTK2(KERN_WARNING
910 "ICMPv6 NA: invalid link-layer address length\n");
914 if ((ifp = ipv6_get_ifaddr(&msg->target, dev, 1))) {
915 if (ifp->flags & IFA_F_TENTATIVE) {
916 addrconf_dad_failure(ifp);
919 /* What should we make now? The advertisement
920 is invalid, but ndisc specs say nothing
921 about it. It could be misconfiguration, or
922 an smart proxy agent tries to help us :-)
924 ND_PRINTK1(KERN_WARNING
925 "ICMPv6 NA: someone advertises our address on %s!\n",
926 ifp->idev->dev->name);
930 neigh = neigh_lookup(&nd_tbl, &msg->target, dev);
933 u8 old_flags = neigh->flags;
935 if (neigh->nud_state & NUD_FAILED)
938 neigh_update(neigh, lladdr,
939 msg->icmph.icmp6_solicited ? NUD_REACHABLE : NUD_STALE,
940 NEIGH_UPDATE_F_WEAK_OVERRIDE|
941 (msg->icmph.icmp6_override ? NEIGH_UPDATE_F_OVERRIDE : 0)|
942 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
943 (msg->icmph.icmp6_router ? NEIGH_UPDATE_F_ISROUTER : 0));
945 if ((old_flags & ~neigh->flags) & NTF_ROUTER) {
947 * Change: router to host
950 rt = rt6_get_dflt_router(saddr, dev);
952 ip6_del_rt(rt, NULL, NULL, NULL);
956 neigh_release(neigh);
960 static void ndisc_recv_rs(struct sk_buff *skb)
962 struct rs_msg *rs_msg = (struct rs_msg *) skb->h.raw;
963 unsigned long ndoptlen = skb->len - sizeof(*rs_msg);
964 struct neighbour *neigh;
965 struct inet6_dev *idev;
966 struct in6_addr *saddr = &skb->nh.ipv6h->saddr;
967 struct ndisc_options ndopts;
970 if (skb->len < sizeof(*rs_msg))
973 idev = in6_dev_get(skb->dev);
976 ND_PRINTK1("ICMP6 RS: can't find in6 device\n");
980 /* Don't accept RS if we're not in router mode */
981 if (!idev->cnf.forwarding)
985 * Don't update NCE if src = ::;
986 * this implies that the source node has no ip address assigned yet.
988 if (ipv6_addr_any(saddr))
991 /* Parse ND options */
992 if (!ndisc_parse_options(rs_msg->opt, ndoptlen, &ndopts)) {
994 ND_PRINTK2("ICMP6 NS: invalid ND option, ignored\n");
998 if (ndopts.nd_opts_src_lladdr) {
999 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1005 neigh = __neigh_lookup(&nd_tbl, saddr, skb->dev, 1);
1007 neigh_update(neigh, lladdr, NUD_STALE,
1008 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1009 NEIGH_UPDATE_F_OVERRIDE|
1010 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
1011 neigh_release(neigh);
1017 static void ndisc_router_discovery(struct sk_buff *skb)
1019 struct ra_msg *ra_msg = (struct ra_msg *) skb->h.raw;
1020 struct neighbour *neigh = NULL;
1021 struct inet6_dev *in6_dev;
1022 struct rt6_info *rt;
1024 struct ndisc_options ndopts;
1027 __u8 * opt = (__u8 *)(ra_msg + 1);
1029 optlen = (skb->tail - skb->h.raw) - sizeof(struct ra_msg);
1031 if (!(ipv6_addr_type(&skb->nh.ipv6h->saddr) & IPV6_ADDR_LINKLOCAL)) {
1032 ND_PRINTK2(KERN_WARNING
1033 "ICMPv6 RA: source address is not link-local.\n");
1037 ND_PRINTK2(KERN_WARNING
1038 "ICMPv6 RA: packet too short\n");
1043 * set the RA_RECV flag in the interface
1046 in6_dev = in6_dev_get(skb->dev);
1047 if (in6_dev == NULL) {
1049 "ICMPv6 RA: can't find inet6 device for %s.\n",
1053 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_ra) {
1054 in6_dev_put(in6_dev);
1058 if (!ndisc_parse_options(opt, optlen, &ndopts)) {
1059 in6_dev_put(in6_dev);
1060 ND_PRINTK2(KERN_WARNING
1061 "ICMP6 RA: invalid ND options\n");
1065 if (in6_dev->if_flags & IF_RS_SENT) {
1067 * flag that an RA was received after an RS was sent
1068 * out on this interface.
1070 in6_dev->if_flags |= IF_RA_RCVD;
1074 * Remember the managed/otherconf flags from most recently
1075 * received RA message (RFC 2462) -- yoshfuji
1077 in6_dev->if_flags = (in6_dev->if_flags & ~(IF_RA_MANAGED |
1079 (ra_msg->icmph.icmp6_addrconf_managed ?
1080 IF_RA_MANAGED : 0) |
1081 (ra_msg->icmph.icmp6_addrconf_other ?
1082 IF_RA_OTHERCONF : 0);
1084 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime);
1086 rt = rt6_get_dflt_router(&skb->nh.ipv6h->saddr, skb->dev);
1089 neigh = rt->rt6i_nexthop;
1091 if (rt && lifetime == 0) {
1093 ip6_del_rt(rt, NULL, NULL, NULL);
1097 if (rt == NULL && lifetime) {
1098 ND_PRINTK3(KERN_DEBUG
1099 "ICMPv6 RA: adding default router.\n");
1101 rt = rt6_add_dflt_router(&skb->nh.ipv6h->saddr, skb->dev);
1104 "ICMPv6 RA: %s() failed to add default route.\n",
1106 in6_dev_put(in6_dev);
1110 neigh = rt->rt6i_nexthop;
1111 if (neigh == NULL) {
1113 "ICMPv6 RA: %s() got default router without neighbour.\n",
1115 dst_release(&rt->u.dst);
1116 in6_dev_put(in6_dev);
1119 neigh->flags |= NTF_ROUTER;
1123 rt->rt6i_expires = jiffies + (HZ * lifetime);
1125 if (ra_msg->icmph.icmp6_hop_limit) {
1126 in6_dev->cnf.hop_limit = ra_msg->icmph.icmp6_hop_limit;
1128 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = ra_msg->icmph.icmp6_hop_limit;
1132 * Update Reachable Time and Retrans Timer
1135 if (in6_dev->nd_parms) {
1136 unsigned long rtime = ntohl(ra_msg->retrans_timer);
1138 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/HZ) {
1139 rtime = (rtime*HZ)/1000;
1142 in6_dev->nd_parms->retrans_time = rtime;
1143 in6_dev->tstamp = jiffies;
1144 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1147 rtime = ntohl(ra_msg->reachable_time);
1148 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/(3*HZ)) {
1149 rtime = (rtime*HZ)/1000;
1154 if (rtime != in6_dev->nd_parms->base_reachable_time) {
1155 in6_dev->nd_parms->base_reachable_time = rtime;
1156 in6_dev->nd_parms->gc_staletime = 3 * rtime;
1157 in6_dev->nd_parms->reachable_time = neigh_rand_reach_time(rtime);
1158 in6_dev->tstamp = jiffies;
1159 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1169 neigh = __neigh_lookup(&nd_tbl, &skb->nh.ipv6h->saddr,
1173 if (ndopts.nd_opts_src_lladdr) {
1174 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1177 ND_PRINTK2(KERN_WARNING
1178 "ICMPv6 RA: invalid link-layer address length\n");
1182 neigh_update(neigh, lladdr, NUD_STALE,
1183 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1184 NEIGH_UPDATE_F_OVERRIDE|
1185 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1186 NEIGH_UPDATE_F_ISROUTER);
1189 if (ndopts.nd_opts_pi) {
1190 struct nd_opt_hdr *p;
1191 for (p = ndopts.nd_opts_pi;
1193 p = ndisc_next_option(p, ndopts.nd_opts_pi_end)) {
1194 addrconf_prefix_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3);
1198 if (ndopts.nd_opts_mtu) {
1201 memcpy(&mtu, ((u8*)(ndopts.nd_opts_mtu+1))+2, sizeof(mtu));
1204 if (mtu < IPV6_MIN_MTU || mtu > skb->dev->mtu) {
1205 ND_PRINTK2(KERN_WARNING
1206 "ICMPv6 RA: invalid mtu: %d\n",
1208 } else if (in6_dev->cnf.mtu6 != mtu) {
1209 in6_dev->cnf.mtu6 = mtu;
1212 rt->u.dst.metrics[RTAX_MTU-1] = mtu;
1214 rt6_mtu_change(skb->dev, mtu);
1218 if (ndopts.nd_opts_tgt_lladdr || ndopts.nd_opts_rh) {
1219 ND_PRINTK2(KERN_WARNING
1220 "ICMPv6 RA: invalid RA options");
1224 dst_release(&rt->u.dst);
1226 neigh_release(neigh);
1227 in6_dev_put(in6_dev);
1230 static void ndisc_redirect_rcv(struct sk_buff *skb)
1232 struct inet6_dev *in6_dev;
1233 struct icmp6hdr *icmph;
1234 struct in6_addr *dest;
1235 struct in6_addr *target; /* new first hop to destination */
1236 struct neighbour *neigh;
1238 struct ndisc_options ndopts;
1242 if (!(ipv6_addr_type(&skb->nh.ipv6h->saddr) & IPV6_ADDR_LINKLOCAL)) {
1243 ND_PRINTK2(KERN_WARNING
1244 "ICMPv6 Redirect: source address is not link-local.\n");
1248 optlen = skb->tail - skb->h.raw;
1249 optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1252 ND_PRINTK2(KERN_WARNING
1253 "ICMPv6 Redirect: packet too short\n");
1257 icmph = (struct icmp6hdr *) skb->h.raw;
1258 target = (struct in6_addr *) (icmph + 1);
1261 if (ipv6_addr_is_multicast(dest)) {
1262 ND_PRINTK2(KERN_WARNING
1263 "ICMPv6 Redirect: destination address is multicast.\n");
1267 if (ipv6_addr_equal(dest, target)) {
1269 } else if (!(ipv6_addr_type(target) & IPV6_ADDR_LINKLOCAL)) {
1270 ND_PRINTK2(KERN_WARNING
1271 "ICMPv6 Redirect: target address is not link-local.\n");
1275 in6_dev = in6_dev_get(skb->dev);
1278 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) {
1279 in6_dev_put(in6_dev);
1284 * The IP source address of the Redirect MUST be the same as the current
1285 * first-hop router for the specified ICMP Destination Address.
1288 if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) {
1289 ND_PRINTK2(KERN_WARNING
1290 "ICMPv6 Redirect: invalid ND options\n");
1291 in6_dev_put(in6_dev);
1294 if (ndopts.nd_opts_tgt_lladdr) {
1295 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1298 ND_PRINTK2(KERN_WARNING
1299 "ICMPv6 Redirect: invalid link-layer address length\n");
1300 in6_dev_put(in6_dev);
1305 neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
1307 rt6_redirect(dest, &skb->nh.ipv6h->saddr, neigh, lladdr,
1309 neigh_release(neigh);
1311 in6_dev_put(in6_dev);
1314 void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
1315 struct in6_addr *target)
1317 struct sock *sk = ndisc_socket->sk;
1318 int len = sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1319 struct sk_buff *buff;
1320 struct icmp6hdr *icmph;
1321 struct in6_addr saddr_buf;
1322 struct in6_addr *addrp;
1323 struct net_device *dev;
1324 struct rt6_info *rt;
1325 struct dst_entry *dst;
1326 struct inet6_dev *idev;
1332 u8 ha_buf[MAX_ADDR_LEN], *ha = NULL;
1336 if (ipv6_get_lladdr(dev, &saddr_buf)) {
1337 ND_PRINTK2(KERN_WARNING
1338 "ICMPv6 Redirect: no link-local address on %s\n",
1343 ndisc_flow_init(&fl, NDISC_REDIRECT, &saddr_buf, &skb->nh.ipv6h->saddr);
1345 dst = ip6_route_output(NULL, &fl);
1349 err = xfrm_lookup(&dst, &fl, NULL, 0);
1353 rt = (struct rt6_info *) dst;
1355 if (rt->rt6i_flags & RTF_GATEWAY) {
1356 ND_PRINTK2(KERN_WARNING
1357 "ICMPv6 Redirect: destination is not a neighbour.\n");
1361 if (!xrlim_allow(dst, 1*HZ)) {
1366 if (dev->addr_len) {
1367 read_lock_bh(&neigh->lock);
1368 if (neigh->nud_state & NUD_VALID) {
1369 memcpy(ha_buf, neigh->ha, dev->addr_len);
1370 read_unlock_bh(&neigh->lock);
1372 len += ndisc_opt_addr_space(dev);
1374 read_unlock_bh(&neigh->lock);
1377 rd_len = min_t(unsigned int,
1378 IPV6_MIN_MTU-sizeof(struct ipv6hdr)-len, skb->len + 8);
1382 buff = sock_alloc_send_skb(sk, MAX_HEADER + len + LL_RESERVED_SPACE(dev),
1386 "ICMPv6 Redirect: %s() failed to allocate an skb.\n",
1394 skb_reserve(buff, LL_RESERVED_SPACE(dev));
1395 ip6_nd_hdr(sk, buff, dev, &saddr_buf, &skb->nh.ipv6h->saddr,
1396 IPPROTO_ICMPV6, len);
1398 icmph = (struct icmp6hdr *)skb_put(buff, len);
1399 buff->h.raw = (unsigned char*)icmph;
1401 memset(icmph, 0, sizeof(struct icmp6hdr));
1402 icmph->icmp6_type = NDISC_REDIRECT;
1405 * copy target and destination addresses
1408 addrp = (struct in6_addr *)(icmph + 1);
1409 ipv6_addr_copy(addrp, target);
1411 ipv6_addr_copy(addrp, &skb->nh.ipv6h->daddr);
1413 opt = (u8*) (addrp + 1);
1416 * include target_address option
1420 opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, ha,
1421 dev->addr_len, dev->type);
1424 * build redirect option and copy skb over to the new packet.
1428 *(opt++) = ND_OPT_REDIRECT_HDR;
1429 *(opt++) = (rd_len >> 3);
1432 memcpy(opt, skb->nh.ipv6h, rd_len - 8);
1434 icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &skb->nh.ipv6h->saddr,
1435 len, IPPROTO_ICMPV6,
1436 csum_partial((u8 *) icmph, len, 0));
1439 idev = in6_dev_get(dst->dev);
1440 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
1441 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, buff, NULL, dst->dev, dst_output);
1443 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTREDIRECTS);
1444 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
1447 if (likely(idev != NULL))
1451 static void pndisc_redo(struct sk_buff *skb)
1457 int ndisc_rcv(struct sk_buff *skb)
1461 if (!pskb_may_pull(skb, skb->len))
1464 msg = (struct nd_msg *) skb->h.raw;
1466 __skb_push(skb, skb->data-skb->h.raw);
1468 if (skb->nh.ipv6h->hop_limit != 255) {
1469 ND_PRINTK2(KERN_WARNING
1470 "ICMPv6 NDISC: invalid hop-limit: %d\n",
1471 skb->nh.ipv6h->hop_limit);
1475 if (msg->icmph.icmp6_code != 0) {
1476 ND_PRINTK2(KERN_WARNING
1477 "ICMPv6 NDISC: invalid ICMPv6 code: %d\n",
1478 msg->icmph.icmp6_code);
1482 memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
1484 switch (msg->icmph.icmp6_type) {
1485 case NDISC_NEIGHBOUR_SOLICITATION:
1489 case NDISC_NEIGHBOUR_ADVERTISEMENT:
1493 case NDISC_ROUTER_SOLICITATION:
1497 case NDISC_ROUTER_ADVERTISEMENT:
1498 ndisc_router_discovery(skb);
1501 case NDISC_REDIRECT:
1502 ndisc_redirect_rcv(skb);
1509 static int ndisc_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1511 struct net_device *dev = ptr;
1514 case NETDEV_CHANGEADDR:
1515 neigh_changeaddr(&nd_tbl, dev);
1519 neigh_ifdown(&nd_tbl, dev);
1529 static struct notifier_block ndisc_netdev_notifier = {
1530 .notifier_call = ndisc_netdev_event,
1533 #ifdef CONFIG_SYSCTL
1534 static void ndisc_warn_deprecated_sysctl(struct ctl_table *ctl,
1535 const char *func, const char *dev_name)
1537 static char warncomm[TASK_COMM_LEN];
1539 if (strcmp(warncomm, current->comm) && warned < 5) {
1540 strcpy(warncomm, current->comm);
1542 "process `%s' is using deprecated sysctl (%s) "
1543 "net.ipv6.neigh.%s.%s; "
1544 "Use net.ipv6.neigh.%s.%s_ms "
1547 dev_name, ctl->procname,
1548 dev_name, ctl->procname);
1553 int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl, int write, struct file * filp, void __user *buffer, size_t *lenp, loff_t *ppos)
1555 struct net_device *dev = ctl->extra1;
1556 struct inet6_dev *idev;
1559 if (ctl->ctl_name == NET_NEIGH_RETRANS_TIME ||
1560 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME)
1561 ndisc_warn_deprecated_sysctl(ctl, "syscall", dev ? dev->name : "default");
1563 switch (ctl->ctl_name) {
1564 case NET_NEIGH_RETRANS_TIME:
1565 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
1567 case NET_NEIGH_REACHABLE_TIME:
1568 ret = proc_dointvec_jiffies(ctl, write,
1569 filp, buffer, lenp, ppos);
1571 case NET_NEIGH_RETRANS_TIME_MS:
1572 case NET_NEIGH_REACHABLE_TIME_MS:
1573 ret = proc_dointvec_ms_jiffies(ctl, write,
1574 filp, buffer, lenp, ppos);
1580 if (write && ret == 0 && dev && (idev = in6_dev_get(dev)) != NULL) {
1581 if (ctl->ctl_name == NET_NEIGH_REACHABLE_TIME ||
1582 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME_MS)
1583 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1584 idev->tstamp = jiffies;
1585 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1591 static int ndisc_ifinfo_sysctl_strategy(ctl_table *ctl, int __user *name,
1592 int nlen, void __user *oldval,
1593 size_t __user *oldlenp,
1594 void __user *newval, size_t newlen,
1597 struct net_device *dev = ctl->extra1;
1598 struct inet6_dev *idev;
1601 if (ctl->ctl_name == NET_NEIGH_RETRANS_TIME ||
1602 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME)
1603 ndisc_warn_deprecated_sysctl(ctl, "procfs", dev ? dev->name : "default");
1605 switch (ctl->ctl_name) {
1606 case NET_NEIGH_REACHABLE_TIME:
1607 ret = sysctl_jiffies(ctl, name, nlen,
1608 oldval, oldlenp, newval, newlen,
1611 case NET_NEIGH_RETRANS_TIME_MS:
1612 case NET_NEIGH_REACHABLE_TIME_MS:
1613 ret = sysctl_ms_jiffies(ctl, name, nlen,
1614 oldval, oldlenp, newval, newlen,
1621 if (newval && newlen && ret > 0 &&
1622 dev && (idev = in6_dev_get(dev)) != NULL) {
1623 if (ctl->ctl_name == NET_NEIGH_REACHABLE_TIME ||
1624 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME_MS)
1625 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1626 idev->tstamp = jiffies;
1627 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1636 int __init ndisc_init(struct net_proto_family *ops)
1638 struct ipv6_pinfo *np;
1642 err = sock_create_kern(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6, &ndisc_socket);
1645 "ICMPv6 NDISC: Failed to initialize the control socket (err %d).\n",
1647 ndisc_socket = NULL; /* For safety. */
1651 sk = ndisc_socket->sk;
1653 sk->sk_allocation = GFP_ATOMIC;
1654 np->hop_limit = 255;
1655 /* Do not loopback ndisc messages */
1657 sk->sk_prot->unhash(sk);
1660 * Initialize the neighbour table
1663 neigh_table_init(&nd_tbl);
1665 #ifdef CONFIG_SYSCTL
1666 neigh_sysctl_register(NULL, &nd_tbl.parms, NET_IPV6, NET_IPV6_NEIGH,
1668 &ndisc_ifinfo_sysctl_change,
1669 &ndisc_ifinfo_sysctl_strategy);
1672 register_netdevice_notifier(&ndisc_netdev_notifier);
1676 void ndisc_cleanup(void)
1678 #ifdef CONFIG_SYSCTL
1679 neigh_sysctl_unregister(&nd_tbl.parms);
1681 neigh_table_clear(&nd_tbl);
1682 sock_release(ndisc_socket);
1683 ndisc_socket = NULL; /* For safety. */