blob: b3295d82fece69cef0e34344d59a644b815fb1ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Neighbour Discovery for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Mike Shaver <shaver@ingenia.com>
8 *
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.
13 */
14
15/*
16 * Changes:
17 *
Pierre Ynard31910572007-10-10 21:22:05 -070018 * Pierre Ynard : export userland ND options
19 * through netlink (RDNSS support)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * Lars Fenneberg : fixed MTU setting on receipt
21 * of an RA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Janos Farkas : kmalloc failure checks
23 * Alexey Kuznetsov : state machine reworked
24 * and moved to net/core.
25 * Pekka Savola : RFC2461 validation
26 * YOSHIFUJI Hideaki @USAGI : Verify ND options properly
27 */
28
29/* Set to 3 to get tracing... */
30#define ND_DEBUG 1
31
32#define ND_PRINTK(fmt, args...) do { if (net_ratelimit()) { printk(fmt, ## args); } } while(0)
33#define ND_NOPRINTK(x...) do { ; } while(0)
34#define ND_PRINTK0 ND_PRINTK
35#define ND_PRINTK1 ND_NOPRINTK
36#define ND_PRINTK2 ND_NOPRINTK
37#define ND_PRINTK3 ND_NOPRINTK
38#if ND_DEBUG >= 1
39#undef ND_PRINTK1
40#define ND_PRINTK1 ND_PRINTK
41#endif
42#if ND_DEBUG >= 2
43#undef ND_PRINTK2
44#define ND_PRINTK2 ND_PRINTK
45#endif
46#if ND_DEBUG >= 3
47#undef ND_PRINTK3
48#define ND_PRINTK3 ND_PRINTK
49#endif
50
51#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#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>
62#ifdef CONFIG_SYSCTL
63#include <linux/sysctl.h>
64#endif
65
Thomas Graf18237302006-08-04 23:04:54 -070066#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/if_arp.h>
68#include <linux/ipv6.h>
69#include <linux/icmpv6.h>
70#include <linux/jhash.h>
71
72#include <net/sock.h>
73#include <net/snmp.h>
74
75#include <net/ipv6.h>
76#include <net/protocol.h>
77#include <net/ndisc.h>
78#include <net/ip6_route.h>
79#include <net/addrconf.h>
80#include <net/icmp.h>
81
Pierre Ynard31910572007-10-10 21:22:05 -070082#include <net/netlink.h>
83#include <linux/rtnetlink.h>
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <net/flow.h>
86#include <net/ip6_checksum.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070087#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <linux/proc_fs.h>
89
90#include <linux/netfilter.h>
91#include <linux/netfilter_ipv6.h>
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static u32 ndisc_hash(const void *pkey, const struct net_device *dev);
94static int ndisc_constructor(struct neighbour *neigh);
95static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb);
96static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb);
97static int pndisc_constructor(struct pneigh_entry *n);
98static void pndisc_destructor(struct pneigh_entry *n);
99static void pndisc_redo(struct sk_buff *skb);
100
101static struct neigh_ops ndisc_generic_ops = {
102 .family = AF_INET6,
103 .solicit = ndisc_solicit,
104 .error_report = ndisc_error_report,
105 .output = neigh_resolve_output,
106 .connected_output = neigh_connected_output,
107 .hh_output = dev_queue_xmit,
108 .queue_xmit = dev_queue_xmit,
109};
110
111static struct neigh_ops ndisc_hh_ops = {
112 .family = AF_INET6,
113 .solicit = ndisc_solicit,
114 .error_report = ndisc_error_report,
115 .output = neigh_resolve_output,
116 .connected_output = neigh_resolve_output,
117 .hh_output = dev_queue_xmit,
118 .queue_xmit = dev_queue_xmit,
119};
120
121
122static struct neigh_ops ndisc_direct_ops = {
123 .family = AF_INET6,
124 .output = dev_queue_xmit,
125 .connected_output = dev_queue_xmit,
126 .hh_output = dev_queue_xmit,
127 .queue_xmit = dev_queue_xmit,
128};
129
130struct neigh_table nd_tbl = {
131 .family = AF_INET6,
132 .entry_size = sizeof(struct neighbour) + sizeof(struct in6_addr),
133 .key_len = sizeof(struct in6_addr),
134 .hash = ndisc_hash,
135 .constructor = ndisc_constructor,
136 .pconstructor = pndisc_constructor,
137 .pdestructor = pndisc_destructor,
138 .proxy_redo = pndisc_redo,
139 .id = "ndisc_cache",
140 .parms = {
141 .tbl = &nd_tbl,
142 .base_reachable_time = 30 * HZ,
143 .retrans_time = 1 * HZ,
144 .gc_staletime = 60 * HZ,
145 .reachable_time = 30 * HZ,
146 .delay_probe_time = 5 * HZ,
147 .queue_len = 3,
148 .ucast_probes = 3,
149 .mcast_probes = 3,
150 .anycast_delay = 1 * HZ,
151 .proxy_delay = (8 * HZ) / 10,
152 .proxy_qlen = 64,
153 },
154 .gc_interval = 30 * HZ,
155 .gc_thresh1 = 128,
156 .gc_thresh2 = 512,
157 .gc_thresh3 = 1024,
158};
159
160/* ND options */
161struct ndisc_options {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800162 struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX];
163#ifdef CONFIG_IPV6_ROUTE_INFO
164 struct nd_opt_hdr *nd_opts_ri;
165 struct nd_opt_hdr *nd_opts_ri_end;
166#endif
Pierre Ynard31910572007-10-10 21:22:05 -0700167 struct nd_opt_hdr *nd_useropts;
168 struct nd_opt_hdr *nd_useropts_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169};
170
171#define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
172#define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
173#define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
174#define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
175#define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
176#define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
177
178#define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
179
180/*
181 * Return the padding between the option length and the start of the
182 * link addr. Currently only IP-over-InfiniBand needs this, although
183 * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
184 * also need a pad of 2.
185 */
186static int ndisc_addr_option_pad(unsigned short type)
187{
188 switch (type) {
189 case ARPHRD_INFINIBAND: return 2;
190 default: return 0;
191 }
192}
193
194static inline int ndisc_opt_addr_space(struct net_device *dev)
195{
196 return NDISC_OPT_SPACE(dev->addr_len + ndisc_addr_option_pad(dev->type));
197}
198
199static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len,
200 unsigned short addr_type)
201{
202 int space = NDISC_OPT_SPACE(data_len);
203 int pad = ndisc_addr_option_pad(addr_type);
204
205 opt[0] = type;
206 opt[1] = space>>3;
207
208 memset(opt + 2, 0, pad);
209 opt += pad;
210 space -= pad;
211
212 memcpy(opt+2, data, data_len);
213 data_len += 2;
214 opt += data_len;
215 if ((space -= data_len) > 0)
216 memset(opt, 0, space);
217 return opt + space;
218}
219
220static struct nd_opt_hdr *ndisc_next_option(struct nd_opt_hdr *cur,
221 struct nd_opt_hdr *end)
222{
223 int type;
224 if (!cur || !end || cur >= end)
225 return NULL;
226 type = cur->nd_opt_type;
227 do {
228 cur = ((void *)cur) + (cur->nd_opt_len << 3);
229 } while(cur < end && cur->nd_opt_type != type);
230 return (cur <= end && cur->nd_opt_type == type ? cur : NULL);
231}
232
Pierre Ynard31910572007-10-10 21:22:05 -0700233static inline int ndisc_is_useropt(struct nd_opt_hdr *opt)
234{
235 return (opt->nd_opt_type == ND_OPT_RDNSS);
236}
237
238static struct nd_opt_hdr *ndisc_next_useropt(struct nd_opt_hdr *cur,
239 struct nd_opt_hdr *end)
240{
241 if (!cur || !end || cur >= end)
242 return NULL;
243 do {
244 cur = ((void *)cur) + (cur->nd_opt_len << 3);
245 } while(cur < end && !ndisc_is_useropt(cur));
246 return (cur <= end && ndisc_is_useropt(cur) ? cur : NULL);
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249static struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
250 struct ndisc_options *ndopts)
251{
252 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)opt;
253
254 if (!nd_opt || opt_len < 0 || !ndopts)
255 return NULL;
256 memset(ndopts, 0, sizeof(*ndopts));
257 while (opt_len) {
258 int l;
259 if (opt_len < sizeof(struct nd_opt_hdr))
260 return NULL;
261 l = nd_opt->nd_opt_len << 3;
262 if (opt_len < l || l == 0)
263 return NULL;
264 switch (nd_opt->nd_opt_type) {
265 case ND_OPT_SOURCE_LL_ADDR:
266 case ND_OPT_TARGET_LL_ADDR:
267 case ND_OPT_MTU:
268 case ND_OPT_REDIRECT_HDR:
269 if (ndopts->nd_opt_array[nd_opt->nd_opt_type]) {
270 ND_PRINTK2(KERN_WARNING
271 "%s(): duplicated ND6 option found: type=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800272 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 nd_opt->nd_opt_type);
274 } else {
275 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
276 }
277 break;
278 case ND_OPT_PREFIX_INFO:
279 ndopts->nd_opts_pi_end = nd_opt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700280 if (!ndopts->nd_opt_array[nd_opt->nd_opt_type])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
282 break;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800283#ifdef CONFIG_IPV6_ROUTE_INFO
284 case ND_OPT_ROUTE_INFO:
285 ndopts->nd_opts_ri_end = nd_opt;
286 if (!ndopts->nd_opts_ri)
287 ndopts->nd_opts_ri = nd_opt;
288 break;
289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 default:
Pierre Ynard31910572007-10-10 21:22:05 -0700291 if (ndisc_is_useropt(nd_opt)) {
292 ndopts->nd_useropts_end = nd_opt;
293 if (!ndopts->nd_useropts)
294 ndopts->nd_useropts = nd_opt;
295 } else {
296 /*
297 * Unknown options must be silently ignored,
298 * to accommodate future extension to the
299 * protocol.
300 */
301 ND_PRINTK2(KERN_NOTICE
302 "%s(): ignored unsupported option; type=%d, len=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800303 __func__,
Pierre Ynard31910572007-10-10 21:22:05 -0700304 nd_opt->nd_opt_type, nd_opt->nd_opt_len);
305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 opt_len -= l;
308 nd_opt = ((void *)nd_opt) + l;
309 }
310 return ndopts;
311}
312
313static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
314 struct net_device *dev)
315{
316 u8 *lladdr = (u8 *)(p + 1);
317 int lladdrlen = p->nd_opt_len << 3;
318 int prepad = ndisc_addr_option_pad(dev->type);
319 if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))
320 return NULL;
321 return (lladdr + prepad);
322}
323
324int ndisc_mc_map(struct in6_addr *addr, char *buf, struct net_device *dev, int dir)
325{
326 switch (dev->type) {
327 case ARPHRD_ETHER:
328 case ARPHRD_IEEE802: /* Not sure. Check it later. --ANK */
329 case ARPHRD_FDDI:
330 ipv6_eth_mc_map(addr, buf);
331 return 0;
332 case ARPHRD_IEEE802_TR:
333 ipv6_tr_mc_map(addr,buf);
334 return 0;
335 case ARPHRD_ARCNET:
336 ipv6_arcnet_mc_map(addr, buf);
337 return 0;
338 case ARPHRD_INFINIBAND:
Rolf Manderscheida9e527e2007-12-10 13:38:41 -0700339 ipv6_ib_mc_map(addr, dev->broadcast, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
341 default:
342 if (dir) {
343 memcpy(buf, dev->broadcast, dev->addr_len);
344 return 0;
345 }
346 }
347 return -EINVAL;
348}
349
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900350EXPORT_SYMBOL(ndisc_mc_map);
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352static u32 ndisc_hash(const void *pkey, const struct net_device *dev)
353{
354 const u32 *p32 = pkey;
355 u32 addr_hash, i;
356
357 addr_hash = 0;
358 for (i = 0; i < (sizeof(struct in6_addr) / sizeof(u32)); i++)
359 addr_hash ^= *p32++;
360
361 return jhash_2words(addr_hash, dev->ifindex, nd_tbl.hash_rnd);
362}
363
364static int ndisc_constructor(struct neighbour *neigh)
365{
366 struct in6_addr *addr = (struct in6_addr*)&neigh->primary_key;
367 struct net_device *dev = neigh->dev;
368 struct inet6_dev *in6_dev;
369 struct neigh_parms *parms;
370 int is_multicast = ipv6_addr_is_multicast(addr);
371
372 rcu_read_lock();
373 in6_dev = in6_dev_get(dev);
374 if (in6_dev == NULL) {
375 rcu_read_unlock();
376 return -EINVAL;
377 }
378
379 parms = in6_dev->nd_parms;
380 __neigh_parms_put(neigh->parms);
381 neigh->parms = neigh_parms_clone(parms);
382 rcu_read_unlock();
383
384 neigh->type = is_multicast ? RTN_MULTICAST : RTN_UNICAST;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700385 if (!dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 neigh->nud_state = NUD_NOARP;
387 neigh->ops = &ndisc_direct_ops;
388 neigh->output = neigh->ops->queue_xmit;
389 } else {
390 if (is_multicast) {
391 neigh->nud_state = NUD_NOARP;
392 ndisc_mc_map(addr, neigh->ha, dev, 1);
393 } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
394 neigh->nud_state = NUD_NOARP;
395 memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
396 if (dev->flags&IFF_LOOPBACK)
397 neigh->type = RTN_LOCAL;
398 } else if (dev->flags&IFF_POINTOPOINT) {
399 neigh->nud_state = NUD_NOARP;
400 memcpy(neigh->ha, dev->broadcast, dev->addr_len);
401 }
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700402 if (dev->header_ops->cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 neigh->ops = &ndisc_hh_ops;
404 else
405 neigh->ops = &ndisc_generic_ops;
406 if (neigh->nud_state&NUD_VALID)
407 neigh->output = neigh->ops->connected_output;
408 else
409 neigh->output = neigh->ops->output;
410 }
411 in6_dev_put(in6_dev);
412 return 0;
413}
414
415static int pndisc_constructor(struct pneigh_entry *n)
416{
417 struct in6_addr *addr = (struct in6_addr*)&n->key;
418 struct in6_addr maddr;
419 struct net_device *dev = n->dev;
420
421 if (dev == NULL || __in6_dev_get(dev) == NULL)
422 return -EINVAL;
423 addrconf_addr_solict_mult(addr, &maddr);
424 ipv6_dev_mc_inc(dev, &maddr);
425 return 0;
426}
427
428static void pndisc_destructor(struct pneigh_entry *n)
429{
430 struct in6_addr *addr = (struct in6_addr*)&n->key;
431 struct in6_addr maddr;
432 struct net_device *dev = n->dev;
433
434 if (dev == NULL || __in6_dev_get(dev) == NULL)
435 return;
436 addrconf_addr_solict_mult(addr, &maddr);
437 ipv6_dev_mc_dec(dev, &maddr);
438}
439
440/*
441 * Send a Neighbour Advertisement
442 */
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900443static void __ndisc_send(struct net_device *dev,
444 struct neighbour *neigh,
445 struct in6_addr *daddr, struct in6_addr *saddr,
446 struct icmp6hdr *icmp6h, struct in6_addr *target,
David L Stevens14878f72007-09-16 16:52:35 -0700447 int llinfo)
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900448{
449 struct flowi fl;
450 struct dst_entry *dst;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900451 struct net *net = dev_net(dev);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -0800452 struct sock *sk = net->ipv6.ndisc_sk;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900453 struct sk_buff *skb;
454 struct icmp6hdr *hdr;
455 struct inet6_dev *idev;
456 int len;
457 int err;
David L Stevens14878f72007-09-16 16:52:35 -0700458 u8 *opt, type;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900459
David L Stevens14878f72007-09-16 16:52:35 -0700460 type = icmp6h->icmp6_type;
461
Daniel Lezcano1762f7e2008-03-07 11:15:34 -0800462 icmpv6_flow_init(sk, &fl, type, saddr, daddr, dev->ifindex);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900463
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800464 dst = icmp6_dst_alloc(dev, neigh, daddr);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900465 if (!dst)
466 return;
467
468 err = xfrm_lookup(&dst, &fl, NULL, 0);
469 if (err < 0)
470 return;
471
472 if (!dev->addr_len)
473 llinfo = 0;
474
475 len = sizeof(struct icmp6hdr) + (target ? sizeof(*target) : 0);
476 if (llinfo)
477 len += ndisc_opt_addr_space(dev);
478
479 skb = sock_alloc_send_skb(sk,
480 (MAX_HEADER + sizeof(struct ipv6hdr) +
481 len + LL_RESERVED_SPACE(dev)),
482 1, &err);
483 if (!skb) {
484 ND_PRINTK0(KERN_ERR
485 "ICMPv6 ND: %s() failed to allocate an skb.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800486 __func__);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900487 dst_release(dst);
488 return;
489 }
490
491 skb_reserve(skb, LL_RESERVED_SPACE(dev));
492 ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
493
494 skb->transport_header = skb->tail;
495 skb_put(skb, len);
496
497 hdr = (struct icmp6hdr *)skb_transport_header(skb);
498 memcpy(hdr, icmp6h, sizeof(*hdr));
499
500 opt = skb_transport_header(skb) + sizeof(struct icmp6hdr);
501 if (target) {
502 ipv6_addr_copy((struct in6_addr *)opt, target);
503 opt += sizeof(*target);
504 }
505
506 if (llinfo)
507 ndisc_fill_addr_option(opt, llinfo, dev->dev_addr,
508 dev->addr_len, dev->type);
509
510 hdr->icmp6_cksum = csum_ipv6_magic(saddr, daddr, len,
511 IPPROTO_ICMPV6,
512 csum_partial((__u8 *) hdr,
513 len, 0));
514
515 skb->dst = dst;
516
517 idev = in6_dev_get(dst->dev);
518 IP6_INC_STATS(idev, IPSTATS_MIB_OUTREQUESTS);
519
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800520 err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev,
521 dst_output);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900522 if (!err) {
David L Stevens14878f72007-09-16 16:52:35 -0700523 ICMP6MSGOUT_INC_STATS(idev, type);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900524 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
525 }
526
527 if (likely(idev != NULL))
528 in6_dev_put(idev);
529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531static void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
532 struct in6_addr *daddr, struct in6_addr *solicited_addr,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900533 int router, int solicited, int override, int inc_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 struct in6_addr tmpaddr;
536 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 struct in6_addr *src_addr;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900538 struct icmp6hdr icmp6h = {
539 .icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT,
540 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /* for anycast or proxy, solicited_addr != src_addr */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900543 ifp = ipv6_get_ifaddr(dev_net(dev), solicited_addr, dev, 1);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900544 if (ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 src_addr = solicited_addr;
Neil Horman95c385b2007-04-25 17:08:10 -0700546 if (ifp->flags & IFA_F_OPTIMISTIC)
547 override = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 in6_ifa_put(ifp);
549 } else {
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900550 if (ipv6_dev_get_saddr(dev, daddr,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900551 inet6_sk(dev_net(dev)->ipv6.ndisc_sk)->srcprefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900552 &tmpaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return;
554 src_addr = &tmpaddr;
555 }
556
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900557 icmp6h.icmp6_router = router;
558 icmp6h.icmp6_solicited = solicited;
559 icmp6h.icmp6_override = override;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900561 __ndisc_send(dev, neigh, daddr, src_addr,
562 &icmp6h, solicited_addr,
David L Stevens14878f72007-09-16 16:52:35 -0700563 inc_opt ? ND_OPT_TARGET_LL_ADDR : 0);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900564}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
567 struct in6_addr *solicit,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900568 struct in6_addr *daddr, struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 struct in6_addr addr_buf;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900571 struct icmp6hdr icmp6h = {
572 .icmp6_type = NDISC_NEIGHBOUR_SOLICITATION,
573 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 if (saddr == NULL) {
Neil Horman95c385b2007-04-25 17:08:10 -0700576 if (ipv6_get_lladdr(dev, &addr_buf,
577 (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return;
579 saddr = &addr_buf;
580 }
581
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900582 __ndisc_send(dev, neigh, daddr, saddr,
583 &icmp6h, solicit,
David L Stevens14878f72007-09-16 16:52:35 -0700584 !ipv6_addr_any(saddr) ? ND_OPT_SOURCE_LL_ADDR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587void ndisc_send_rs(struct net_device *dev, struct in6_addr *saddr,
588 struct in6_addr *daddr)
589{
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900590 struct icmp6hdr icmp6h = {
591 .icmp6_type = NDISC_ROUTER_SOLICITATION,
592 };
Neil Horman95c385b2007-04-25 17:08:10 -0700593 int send_sllao = dev->addr_len;
Neil Horman95c385b2007-04-25 17:08:10 -0700594
595#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
596 /*
597 * According to section 2.2 of RFC 4429, we must not
598 * send router solicitations with a sllao from
599 * optimistic addresses, but we may send the solicitation
600 * if we don't include the sllao. So here we check
601 * if our address is optimistic, and if so, we
Joe Perchesbea85192007-12-20 14:01:35 -0800602 * suppress the inclusion of the sllao.
Neil Horman95c385b2007-04-25 17:08:10 -0700603 */
604 if (send_sllao) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900605 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(dev_net(dev), saddr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -0800606 dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700607 if (ifp) {
608 if (ifp->flags & IFA_F_OPTIMISTIC) {
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900609 send_sllao = 0;
Neil Horman95c385b2007-04-25 17:08:10 -0700610 }
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900611 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700612 } else {
613 send_sllao = 0;
614 }
615 }
616#endif
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900617 __ndisc_send(dev, NULL, daddr, saddr,
618 &icmp6h, NULL,
David L Stevens14878f72007-09-16 16:52:35 -0700619 send_sllao ? ND_OPT_SOURCE_LL_ADDR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb)
624{
625 /*
626 * "The sender MUST return an ICMP
627 * destination unreachable"
628 */
629 dst_link_failure(skb);
630 kfree_skb(skb);
631}
632
633/* Called with locked neigh: either read or both */
634
635static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
636{
637 struct in6_addr *saddr = NULL;
638 struct in6_addr mcaddr;
639 struct net_device *dev = neigh->dev;
640 struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
641 int probes = atomic_read(&neigh->probes);
642
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900643 if (skb && ipv6_chk_addr(dev_net(dev), &ipv6_hdr(skb)->saddr, dev, 1))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700644 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 if ((probes -= neigh->parms->ucast_probes) < 0) {
647 if (!(neigh->nud_state & NUD_VALID)) {
648 ND_PRINTK1(KERN_DEBUG
649 "%s(): trying to ucast probe in NUD_INVALID: "
Joe Perches46b86a22006-01-13 14:29:07 -0800650 NIP6_FMT "\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800651 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 NIP6(*target));
653 }
654 ndisc_send_ns(dev, neigh, target, target, saddr);
655 } else if ((probes -= neigh->parms->app_probes) < 0) {
656#ifdef CONFIG_ARPD
657 neigh_app_ns(neigh);
658#endif
659 } else {
660 addrconf_addr_solict_mult(target, &mcaddr);
661 ndisc_send_ns(dev, NULL, target, &mcaddr, saddr);
662 }
663}
664
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900665static int pndisc_is_router(const void *pkey,
666 struct net_device *dev)
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700667{
668 struct pneigh_entry *n;
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900669 int ret = -1;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700670
671 read_lock_bh(&nd_tbl.lock);
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900672 n = __pneigh_lookup(&nd_tbl, dev_net(dev), pkey, dev);
673 if (n)
674 ret = !!(n->flags & NTF_ROUTER);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700675 read_unlock_bh(&nd_tbl.lock);
676
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900677 return ret;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680static void ndisc_recv_ns(struct sk_buff *skb)
681{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700682 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700683 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
684 struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700686 u32 ndoptlen = skb->tail - (skb->transport_header +
687 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct ndisc_options ndopts;
689 struct net_device *dev = skb->dev;
690 struct inet6_ifaddr *ifp;
691 struct inet6_dev *idev = NULL;
692 struct neighbour *neigh;
693 int dad = ipv6_addr_any(saddr);
694 int inc;
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900695 int is_router = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (ipv6_addr_is_multicast(&msg->target)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900698 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 "ICMPv6 NS: multicast target address");
700 return;
701 }
702
703 /*
704 * RFC2461 7.1.1:
705 * DAD has to be destined for solicited node multicast address.
706 */
707 if (dad &&
708 !(daddr->s6_addr32[0] == htonl(0xff020000) &&
709 daddr->s6_addr32[1] == htonl(0x00000000) &&
710 daddr->s6_addr32[2] == htonl(0x00000001) &&
711 daddr->s6_addr [12] == 0xff )) {
712 ND_PRINTK2(KERN_WARNING
713 "ICMPv6 NS: bad DAD packet (wrong destination)\n");
714 return;
715 }
716
717 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900718 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 "ICMPv6 NS: invalid ND options\n");
720 return;
721 }
722
723 if (ndopts.nd_opts_src_lladdr) {
724 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr, dev);
725 if (!lladdr) {
726 ND_PRINTK2(KERN_WARNING
727 "ICMPv6 NS: invalid link-layer address length\n");
728 return;
729 }
730
731 /* RFC2461 7.1.1:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900732 * If the IP source address is the unspecified address,
733 * there MUST NOT be source link-layer address option
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 * in the message.
735 */
736 if (dad) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900737 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 "ICMPv6 NS: bad DAD packet (link-layer address option)\n");
739 return;
740 }
741 }
742
743 inc = ipv6_addr_is_multicast(daddr);
744
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900745 ifp = ipv6_get_ifaddr(dev_net(dev), &msg->target, dev, 1);
Daniel Lezcanoa18bc692008-03-07 11:14:49 -0800746 if (ifp) {
Neil Horman95c385b2007-04-25 17:08:10 -0700747
748 if (ifp->flags & (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)) {
749 if (dad) {
750 if (dev->type == ARPHRD_IEEE802_TR) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700751 const unsigned char *sadr;
752 sadr = skb_mac_header(skb);
Neil Horman95c385b2007-04-25 17:08:10 -0700753 if (((sadr[8] ^ dev->dev_addr[0]) & 0x7f) == 0 &&
754 sadr[9] == dev->dev_addr[1] &&
755 sadr[10] == dev->dev_addr[2] &&
756 sadr[11] == dev->dev_addr[3] &&
757 sadr[12] == dev->dev_addr[4] &&
758 sadr[13] == dev->dev_addr[5]) {
759 /* looped-back to us */
760 goto out;
761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Neil Horman95c385b2007-04-25 17:08:10 -0700763
764 /*
765 * We are colliding with another node
766 * who is doing DAD
767 * so fail our DAD process
768 */
769 addrconf_dad_failure(ifp);
Denis V. Lunev9e3be4b2007-09-11 11:04:49 +0200770 return;
Neil Horman95c385b2007-04-25 17:08:10 -0700771 } else {
772 /*
773 * This is not a dad solicitation.
774 * If we are an optimistic node,
775 * we should respond.
776 * Otherwise, we should ignore it.
777 */
778 if (!(ifp->flags & IFA_F_OPTIMISTIC))
779 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
783 idev = ifp->idev;
784 } else {
785 idev = in6_dev_get(dev);
786 if (!idev) {
787 /* XXX: count this drop? */
788 return;
789 }
790
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700791 if (ipv6_chk_acast_addr(dev_net(dev), dev, &msg->target) ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900792 (idev->cnf.forwarding &&
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700793 (ipv6_devconf.proxy_ndp || idev->cnf.proxy_ndp) &&
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900794 (is_router = pndisc_is_router(&msg->target, dev)) >= 0)) {
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700795 if (!(NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 skb->pkt_type != PACKET_HOST &&
797 inc != 0 &&
798 idev->nd_parms->proxy_delay != 0) {
799 /*
800 * for anycast or proxy,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900801 * sender should delay its response
802 * by a random time between 0 and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * MAX_ANYCAST_DELAY_TIME seconds.
804 * (RFC2461) -- yoshfuji
805 */
806 struct sk_buff *n = skb_clone(skb, GFP_ATOMIC);
807 if (n)
808 pneigh_enqueue(&nd_tbl, idev->nd_parms, n);
809 goto out;
810 }
811 } else
812 goto out;
813 }
814
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900815 if (is_router < 0)
816 is_router = !!idev->cnf.forwarding;
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (dad) {
819 struct in6_addr maddr;
820
821 ipv6_addr_all_nodes(&maddr);
822 ndisc_send_na(dev, NULL, &maddr, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700823 is_router, 0, (ifp != NULL), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto out;
825 }
826
827 if (inc)
828 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_mcast);
829 else
830 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_ucast);
831
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900832 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 * update / create cache entry
834 * for the source address
835 */
836 neigh = __neigh_lookup(&nd_tbl, saddr, dev,
837 !inc || lladdr || !dev->addr_len);
838 if (neigh)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900839 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 NEIGH_UPDATE_F_WEAK_OVERRIDE|
841 NEIGH_UPDATE_F_OVERRIDE);
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700842 if (neigh || !dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 ndisc_send_na(dev, neigh, saddr, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700844 is_router,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 1, (ifp != NULL && inc), inc);
846 if (neigh)
847 neigh_release(neigh);
848 }
849
850out:
851 if (ifp)
852 in6_ifa_put(ifp);
853 else
854 in6_dev_put(idev);
855
856 return;
857}
858
859static void ndisc_recv_na(struct sk_buff *skb)
860{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700861 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700862 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
863 struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700865 u32 ndoptlen = skb->tail - (skb->transport_header +
866 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct ndisc_options ndopts;
868 struct net_device *dev = skb->dev;
869 struct inet6_ifaddr *ifp;
870 struct neighbour *neigh;
871
872 if (skb->len < sizeof(struct nd_msg)) {
873 ND_PRINTK2(KERN_WARNING
874 "ICMPv6 NA: packet too short\n");
875 return;
876 }
877
878 if (ipv6_addr_is_multicast(&msg->target)) {
879 ND_PRINTK2(KERN_WARNING
880 "ICMPv6 NA: target address is multicast.\n");
881 return;
882 }
883
884 if (ipv6_addr_is_multicast(daddr) &&
885 msg->icmph.icmp6_solicited) {
886 ND_PRINTK2(KERN_WARNING
887 "ICMPv6 NA: solicited NA is multicasted.\n");
888 return;
889 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
892 ND_PRINTK2(KERN_WARNING
893 "ICMPv6 NS: invalid ND option\n");
894 return;
895 }
896 if (ndopts.nd_opts_tgt_lladdr) {
897 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, dev);
898 if (!lladdr) {
899 ND_PRINTK2(KERN_WARNING
900 "ICMPv6 NA: invalid link-layer address length\n");
901 return;
902 }
903 }
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900904 ifp = ipv6_get_ifaddr(dev_net(dev), &msg->target, dev, 1);
Daniel Lezcanoa18bc692008-03-07 11:14:49 -0800905 if (ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (ifp->flags & IFA_F_TENTATIVE) {
907 addrconf_dad_failure(ifp);
908 return;
909 }
910 /* What should we make now? The advertisement
911 is invalid, but ndisc specs say nothing
912 about it. It could be misconfiguration, or
913 an smart proxy agent tries to help us :-)
914 */
915 ND_PRINTK1(KERN_WARNING
916 "ICMPv6 NA: someone advertises our address on %s!\n",
917 ifp->idev->dev->name);
918 in6_ifa_put(ifp);
919 return;
920 }
921 neigh = neigh_lookup(&nd_tbl, &msg->target, dev);
922
923 if (neigh) {
924 u8 old_flags = neigh->flags;
925
926 if (neigh->nud_state & NUD_FAILED)
927 goto out;
928
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700929 /*
930 * Don't update the neighbor cache entry on a proxy NA from
931 * ourselves because either the proxied node is off link or it
932 * has already sent a NA to us.
933 */
934 if (lladdr && !memcmp(lladdr, dev->dev_addr, dev->addr_len) &&
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700935 ipv6_devconf.forwarding && ipv6_devconf.proxy_ndp &&
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900936 pneigh_lookup(&nd_tbl, dev_net(dev), &msg->target, dev, 0)) {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700937 /* XXX: idev->cnf.prixy_ndp */
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700938 goto out;
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700939 }
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 neigh_update(neigh, lladdr,
942 msg->icmph.icmp6_solicited ? NUD_REACHABLE : NUD_STALE,
943 NEIGH_UPDATE_F_WEAK_OVERRIDE|
944 (msg->icmph.icmp6_override ? NEIGH_UPDATE_F_OVERRIDE : 0)|
945 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
946 (msg->icmph.icmp6_router ? NEIGH_UPDATE_F_ISROUTER : 0));
947
948 if ((old_flags & ~neigh->flags) & NTF_ROUTER) {
949 /*
950 * Change: router to host
951 */
952 struct rt6_info *rt;
953 rt = rt6_get_dflt_router(saddr, dev);
954 if (rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700955 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
958out:
959 neigh_release(neigh);
960 }
961}
962
963static void ndisc_recv_rs(struct sk_buff *skb)
964{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700965 struct rs_msg *rs_msg = (struct rs_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 unsigned long ndoptlen = skb->len - sizeof(*rs_msg);
967 struct neighbour *neigh;
968 struct inet6_dev *idev;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700969 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct ndisc_options ndopts;
971 u8 *lladdr = NULL;
972
973 if (skb->len < sizeof(*rs_msg))
974 return;
975
976 idev = in6_dev_get(skb->dev);
977 if (!idev) {
978 if (net_ratelimit())
979 ND_PRINTK1("ICMP6 RS: can't find in6 device\n");
980 return;
981 }
982
983 /* Don't accept RS if we're not in router mode */
984 if (!idev->cnf.forwarding)
985 goto out;
986
987 /*
988 * Don't update NCE if src = ::;
989 * this implies that the source node has no ip address assigned yet.
990 */
991 if (ipv6_addr_any(saddr))
992 goto out;
993
994 /* Parse ND options */
995 if (!ndisc_parse_options(rs_msg->opt, ndoptlen, &ndopts)) {
996 if (net_ratelimit())
997 ND_PRINTK2("ICMP6 NS: invalid ND option, ignored\n");
998 goto out;
999 }
1000
1001 if (ndopts.nd_opts_src_lladdr) {
1002 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1003 skb->dev);
1004 if (!lladdr)
1005 goto out;
1006 }
1007
1008 neigh = __neigh_lookup(&nd_tbl, saddr, skb->dev, 1);
1009 if (neigh) {
1010 neigh_update(neigh, lladdr, NUD_STALE,
1011 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1012 NEIGH_UPDATE_F_OVERRIDE|
1013 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
1014 neigh_release(neigh);
1015 }
1016out:
1017 in6_dev_put(idev);
1018}
1019
Pierre Ynard31910572007-10-10 21:22:05 -07001020static void ndisc_ra_useropt(struct sk_buff *ra, struct nd_opt_hdr *opt)
1021{
1022 struct icmp6hdr *icmp6h = (struct icmp6hdr *)skb_transport_header(ra);
1023 struct sk_buff *skb;
1024 struct nlmsghdr *nlh;
1025 struct nduseroptmsg *ndmsg;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001026 struct net *net = dev_net(ra->dev);
Pierre Ynard31910572007-10-10 21:22:05 -07001027 int err;
1028 int base_size = NLMSG_ALIGN(sizeof(struct nduseroptmsg)
1029 + (opt->nd_opt_len << 3));
1030 size_t msg_size = base_size + nla_total_size(sizeof(struct in6_addr));
1031
1032 skb = nlmsg_new(msg_size, GFP_ATOMIC);
1033 if (skb == NULL) {
1034 err = -ENOBUFS;
1035 goto errout;
1036 }
1037
1038 nlh = nlmsg_put(skb, 0, 0, RTM_NEWNDUSEROPT, base_size, 0);
1039 if (nlh == NULL) {
1040 goto nla_put_failure;
1041 }
1042
1043 ndmsg = nlmsg_data(nlh);
1044 ndmsg->nduseropt_family = AF_INET6;
Pierre Ynarddbb2ed22007-11-12 17:58:35 -08001045 ndmsg->nduseropt_ifindex = ra->dev->ifindex;
Pierre Ynard31910572007-10-10 21:22:05 -07001046 ndmsg->nduseropt_icmp_type = icmp6h->icmp6_type;
1047 ndmsg->nduseropt_icmp_code = icmp6h->icmp6_code;
1048 ndmsg->nduseropt_opts_len = opt->nd_opt_len << 3;
1049
1050 memcpy(ndmsg + 1, opt, opt->nd_opt_len << 3);
1051
1052 NLA_PUT(skb, NDUSEROPT_SRCADDR, sizeof(struct in6_addr),
1053 &ipv6_hdr(ra)->saddr);
1054 nlmsg_end(skb, nlh);
1055
Daniel Lezcanoa18bc692008-03-07 11:14:49 -08001056 err = rtnl_notify(skb, net, 0, RTNLGRP_ND_USEROPT, NULL,
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001057 GFP_ATOMIC);
Pierre Ynard31910572007-10-10 21:22:05 -07001058 if (err < 0)
1059 goto errout;
1060
1061 return;
1062
1063nla_put_failure:
1064 nlmsg_free(skb);
1065 err = -EMSGSIZE;
1066errout:
Daniel Lezcanoa18bc692008-03-07 11:14:49 -08001067 rtnl_set_sk_err(net, RTNLGRP_ND_USEROPT, err);
Pierre Ynard31910572007-10-10 21:22:05 -07001068}
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070static void ndisc_router_discovery(struct sk_buff *skb)
1071{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001072 struct ra_msg *ra_msg = (struct ra_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 struct neighbour *neigh = NULL;
1074 struct inet6_dev *in6_dev;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001075 struct rt6_info *rt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 int lifetime;
1077 struct ndisc_options ndopts;
1078 int optlen;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001079 unsigned int pref = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 __u8 * opt = (__u8 *)(ra_msg + 1);
1082
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001083 optlen = (skb->tail - skb->transport_header) - sizeof(struct ra_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001085 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 ND_PRINTK2(KERN_WARNING
1087 "ICMPv6 RA: source address is not link-local.\n");
1088 return;
1089 }
1090 if (optlen < 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001091 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 "ICMPv6 RA: packet too short\n");
1093 return;
1094 }
1095
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001096#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001097 if (skb->ndisc_nodetype == NDISC_NODETYPE_HOST) {
1098 ND_PRINTK2(KERN_WARNING
1099 "ICMPv6 RA: from host or unauthorized router\n");
1100 return;
1101 }
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001102#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /*
1105 * set the RA_RECV flag in the interface
1106 */
1107
1108 in6_dev = in6_dev_get(skb->dev);
1109 if (in6_dev == NULL) {
1110 ND_PRINTK0(KERN_ERR
1111 "ICMPv6 RA: can't find inet6 device for %s.\n",
1112 skb->dev->name);
1113 return;
1114 }
1115 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_ra) {
1116 in6_dev_put(in6_dev);
1117 return;
1118 }
1119
1120 if (!ndisc_parse_options(opt, optlen, &ndopts)) {
1121 in6_dev_put(in6_dev);
1122 ND_PRINTK2(KERN_WARNING
1123 "ICMP6 RA: invalid ND options\n");
1124 return;
1125 }
1126
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001127#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001128 /* skip link-specific parameters from interior routers */
1129 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT)
1130 goto skip_linkparms;
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001131#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (in6_dev->if_flags & IF_RS_SENT) {
1134 /*
1135 * flag that an RA was received after an RS was sent
1136 * out on this interface.
1137 */
1138 in6_dev->if_flags |= IF_RA_RCVD;
1139 }
1140
1141 /*
1142 * Remember the managed/otherconf flags from most recently
1143 * received RA message (RFC 2462) -- yoshfuji
1144 */
1145 in6_dev->if_flags = (in6_dev->if_flags & ~(IF_RA_MANAGED |
1146 IF_RA_OTHERCONF)) |
1147 (ra_msg->icmph.icmp6_addrconf_managed ?
1148 IF_RA_MANAGED : 0) |
1149 (ra_msg->icmph.icmp6_addrconf_other ?
1150 IF_RA_OTHERCONF : 0);
1151
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001152 if (!in6_dev->cnf.accept_ra_defrtr)
1153 goto skip_defrtr;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime);
1156
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001157#ifdef CONFIG_IPV6_ROUTER_PREF
1158 pref = ra_msg->icmph.icmp6_router_pref;
1159 /* 10b is handled as if it were 00b (medium) */
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08001160 if (pref == ICMPV6_ROUTER_PREF_INVALID ||
YOSHIFUJI Hideaki6d5b78c2007-06-22 16:07:04 -07001161 !in6_dev->cnf.accept_ra_rtr_pref)
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001162 pref = ICMPV6_ROUTER_PREF_MEDIUM;
1163#endif
1164
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001165 rt = rt6_get_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 if (rt)
1168 neigh = rt->rt6i_nexthop;
1169
1170 if (rt && lifetime == 0) {
1171 neigh_clone(neigh);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001172 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 rt = NULL;
1174 }
1175
1176 if (rt == NULL && lifetime) {
1177 ND_PRINTK3(KERN_DEBUG
1178 "ICMPv6 RA: adding default router.\n");
1179
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001180 rt = rt6_add_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev, pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (rt == NULL) {
1182 ND_PRINTK0(KERN_ERR
1183 "ICMPv6 RA: %s() failed to add default route.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001184 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 in6_dev_put(in6_dev);
1186 return;
1187 }
1188
1189 neigh = rt->rt6i_nexthop;
1190 if (neigh == NULL) {
1191 ND_PRINTK0(KERN_ERR
1192 "ICMPv6 RA: %s() got default router without neighbour.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001193 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 dst_release(&rt->u.dst);
1195 in6_dev_put(in6_dev);
1196 return;
1197 }
1198 neigh->flags |= NTF_ROUTER;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001199 } else if (rt) {
1200 rt->rt6i_flags |= (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202
1203 if (rt)
1204 rt->rt6i_expires = jiffies + (HZ * lifetime);
1205
1206 if (ra_msg->icmph.icmp6_hop_limit) {
1207 in6_dev->cnf.hop_limit = ra_msg->icmph.icmp6_hop_limit;
1208 if (rt)
1209 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = ra_msg->icmph.icmp6_hop_limit;
1210 }
1211
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001212skip_defrtr:
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /*
1215 * Update Reachable Time and Retrans Timer
1216 */
1217
1218 if (in6_dev->nd_parms) {
1219 unsigned long rtime = ntohl(ra_msg->retrans_timer);
1220
1221 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/HZ) {
1222 rtime = (rtime*HZ)/1000;
1223 if (rtime < HZ/10)
1224 rtime = HZ/10;
1225 in6_dev->nd_parms->retrans_time = rtime;
1226 in6_dev->tstamp = jiffies;
1227 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1228 }
1229
1230 rtime = ntohl(ra_msg->reachable_time);
1231 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/(3*HZ)) {
1232 rtime = (rtime*HZ)/1000;
1233
1234 if (rtime < HZ/10)
1235 rtime = HZ/10;
1236
1237 if (rtime != in6_dev->nd_parms->base_reachable_time) {
1238 in6_dev->nd_parms->base_reachable_time = rtime;
1239 in6_dev->nd_parms->gc_staletime = 3 * rtime;
1240 in6_dev->nd_parms->reachable_time = neigh_rand_reach_time(rtime);
1241 in6_dev->tstamp = jiffies;
1242 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1243 }
1244 }
1245 }
1246
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001247#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001248skip_linkparms:
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001249#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 /*
1252 * Process options.
1253 */
1254
1255 if (!neigh)
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001256 neigh = __neigh_lookup(&nd_tbl, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 skb->dev, 1);
1258 if (neigh) {
1259 u8 *lladdr = NULL;
1260 if (ndopts.nd_opts_src_lladdr) {
1261 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1262 skb->dev);
1263 if (!lladdr) {
1264 ND_PRINTK2(KERN_WARNING
1265 "ICMPv6 RA: invalid link-layer address length\n");
1266 goto out;
1267 }
1268 }
1269 neigh_update(neigh, lladdr, NUD_STALE,
1270 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1271 NEIGH_UPDATE_F_OVERRIDE|
1272 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1273 NEIGH_UPDATE_F_ISROUTER);
1274 }
1275
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001276#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001277 if (in6_dev->cnf.accept_ra_rtr_pref && ndopts.nd_opts_ri) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001278 struct nd_opt_hdr *p;
1279 for (p = ndopts.nd_opts_ri;
1280 p;
1281 p = ndisc_next_option(p, ndopts.nd_opts_ri_end)) {
YOSHIFUJI Hideaki6294e002008-03-15 23:56:52 -04001282 struct route_info *ri = (struct route_info *)p;
1283#ifdef CONFIG_IPV6_NDISC_NODETYPE
1284 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT &&
1285 ri->prefix_len == 0)
1286 continue;
1287#endif
1288 if (ri->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen)
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001289 continue;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001290 rt6_route_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3,
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001291 &ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001292 }
1293 }
1294#endif
1295
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001296#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001297 /* skip link-specific ndopts from interior routers */
1298 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT)
1299 goto out;
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001300#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001301
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08001302 if (in6_dev->cnf.accept_ra_pinfo && ndopts.nd_opts_pi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct nd_opt_hdr *p;
1304 for (p = ndopts.nd_opts_pi;
1305 p;
1306 p = ndisc_next_option(p, ndopts.nd_opts_pi_end)) {
1307 addrconf_prefix_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3);
1308 }
1309 }
1310
1311 if (ndopts.nd_opts_mtu) {
Al Viroe69a4ad2006-11-14 20:56:00 -08001312 __be32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 u32 mtu;
1314
Al Viroe69a4ad2006-11-14 20:56:00 -08001315 memcpy(&n, ((u8*)(ndopts.nd_opts_mtu+1))+2, sizeof(mtu));
1316 mtu = ntohl(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 if (mtu < IPV6_MIN_MTU || mtu > skb->dev->mtu) {
1319 ND_PRINTK2(KERN_WARNING
1320 "ICMPv6 RA: invalid mtu: %d\n",
1321 mtu);
1322 } else if (in6_dev->cnf.mtu6 != mtu) {
1323 in6_dev->cnf.mtu6 = mtu;
1324
1325 if (rt)
1326 rt->u.dst.metrics[RTAX_MTU-1] = mtu;
1327
1328 rt6_mtu_change(skb->dev, mtu);
1329 }
1330 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001331
Pierre Ynard31910572007-10-10 21:22:05 -07001332 if (ndopts.nd_useropts) {
YOSHIFUJI Hideaki61cf46a2008-01-22 17:32:53 +09001333 struct nd_opt_hdr *p;
1334 for (p = ndopts.nd_useropts;
1335 p;
1336 p = ndisc_next_useropt(p, ndopts.nd_useropts_end)) {
1337 ndisc_ra_useropt(skb, p);
Pierre Ynard31910572007-10-10 21:22:05 -07001338 }
1339 }
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (ndopts.nd_opts_tgt_lladdr || ndopts.nd_opts_rh) {
1342 ND_PRINTK2(KERN_WARNING
1343 "ICMPv6 RA: invalid RA options");
1344 }
1345out:
1346 if (rt)
1347 dst_release(&rt->u.dst);
1348 else if (neigh)
1349 neigh_release(neigh);
1350 in6_dev_put(in6_dev);
1351}
1352
1353static void ndisc_redirect_rcv(struct sk_buff *skb)
1354{
1355 struct inet6_dev *in6_dev;
1356 struct icmp6hdr *icmph;
1357 struct in6_addr *dest;
1358 struct in6_addr *target; /* new first hop to destination */
1359 struct neighbour *neigh;
1360 int on_link = 0;
1361 struct ndisc_options ndopts;
1362 int optlen;
1363 u8 *lladdr = NULL;
1364
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001365#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001366 switch (skb->ndisc_nodetype) {
1367 case NDISC_NODETYPE_HOST:
1368 case NDISC_NODETYPE_NODEFAULT:
1369 ND_PRINTK2(KERN_WARNING
1370 "ICMPv6 Redirect: from host or unauthorized router\n");
1371 return;
1372 }
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001373#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001374
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001375 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 ND_PRINTK2(KERN_WARNING
1377 "ICMPv6 Redirect: source address is not link-local.\n");
1378 return;
1379 }
1380
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001381 optlen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1383
1384 if (optlen < 0) {
1385 ND_PRINTK2(KERN_WARNING
1386 "ICMPv6 Redirect: packet too short\n");
1387 return;
1388 }
1389
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -03001390 icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 target = (struct in6_addr *) (icmph + 1);
1392 dest = target + 1;
1393
1394 if (ipv6_addr_is_multicast(dest)) {
1395 ND_PRINTK2(KERN_WARNING
1396 "ICMPv6 Redirect: destination address is multicast.\n");
1397 return;
1398 }
1399
1400 if (ipv6_addr_equal(dest, target)) {
1401 on_link = 1;
Brian Haleybf0b48d2007-10-08 00:12:05 -07001402 } else if (ipv6_addr_type(target) !=
1403 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001404 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001405 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return;
1407 }
1408
1409 in6_dev = in6_dev_get(skb->dev);
1410 if (!in6_dev)
1411 return;
1412 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) {
1413 in6_dev_put(in6_dev);
1414 return;
1415 }
1416
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001417 /* RFC2461 8.1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 * The IP source address of the Redirect MUST be the same as the current
1419 * first-hop router for the specified ICMP Destination Address.
1420 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) {
1423 ND_PRINTK2(KERN_WARNING
1424 "ICMPv6 Redirect: invalid ND options\n");
1425 in6_dev_put(in6_dev);
1426 return;
1427 }
1428 if (ndopts.nd_opts_tgt_lladdr) {
1429 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1430 skb->dev);
1431 if (!lladdr) {
1432 ND_PRINTK2(KERN_WARNING
1433 "ICMPv6 Redirect: invalid link-layer address length\n");
1434 in6_dev_put(in6_dev);
1435 return;
1436 }
1437 }
1438
1439 neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
1440 if (neigh) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001441 rt6_redirect(dest, &ipv6_hdr(skb)->daddr,
1442 &ipv6_hdr(skb)->saddr, neigh, lladdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 on_link);
1444 neigh_release(neigh);
1445 }
1446 in6_dev_put(in6_dev);
1447}
1448
1449void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
1450 struct in6_addr *target)
1451{
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001452 struct net_device *dev = skb->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001453 struct net *net = dev_net(dev);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001454 struct sock *sk = net->ipv6.ndisc_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int len = sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1456 struct sk_buff *buff;
1457 struct icmp6hdr *icmph;
1458 struct in6_addr saddr_buf;
1459 struct in6_addr *addrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 struct rt6_info *rt;
1461 struct dst_entry *dst;
1462 struct inet6_dev *idev;
1463 struct flowi fl;
1464 u8 *opt;
1465 int rd_len;
1466 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 u8 ha_buf[MAX_ADDR_LEN], *ha = NULL;
1468
Neil Horman95c385b2007-04-25 17:08:10 -07001469 if (ipv6_get_lladdr(dev, &saddr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 ND_PRINTK2(KERN_WARNING
1471 "ICMPv6 Redirect: no link-local address on %s\n",
1472 dev->name);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001473 return;
1474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001476 if (!ipv6_addr_equal(&ipv6_hdr(skb)->daddr, target) &&
Brian Haleybf0b48d2007-10-08 00:12:05 -07001477 ipv6_addr_type(target) != (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
Li Yewang29556522007-01-30 14:33:20 -08001478 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001479 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Li Yewang29556522007-01-30 14:33:20 -08001480 return;
1481 }
1482
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001483 icmpv6_flow_init(sk, &fl, NDISC_REDIRECT,
YOSHIFUJI Hideaki95e41e92007-12-06 15:43:30 -08001484 &saddr_buf, &ipv6_hdr(skb)->saddr, dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001486 dst = ip6_route_output(net, NULL, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (dst == NULL)
1488 return;
1489
1490 err = xfrm_lookup(&dst, &fl, NULL, 0);
Patrick McHardye1044112005-09-08 15:11:55 -07001491 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 rt = (struct rt6_info *) dst;
1495
1496 if (rt->rt6i_flags & RTF_GATEWAY) {
1497 ND_PRINTK2(KERN_WARNING
1498 "ICMPv6 Redirect: destination is not a neighbour.\n");
1499 dst_release(dst);
1500 return;
1501 }
1502 if (!xrlim_allow(dst, 1*HZ)) {
1503 dst_release(dst);
1504 return;
1505 }
1506
1507 if (dev->addr_len) {
1508 read_lock_bh(&neigh->lock);
1509 if (neigh->nud_state & NUD_VALID) {
1510 memcpy(ha_buf, neigh->ha, dev->addr_len);
1511 read_unlock_bh(&neigh->lock);
1512 ha = ha_buf;
1513 len += ndisc_opt_addr_space(dev);
1514 } else
1515 read_unlock_bh(&neigh->lock);
1516 }
1517
1518 rd_len = min_t(unsigned int,
1519 IPV6_MIN_MTU-sizeof(struct ipv6hdr)-len, skb->len + 8);
1520 rd_len &= ~0x7;
1521 len += rd_len;
1522
David S. Millerd54a81d2006-12-02 21:00:06 -08001523 buff = sock_alloc_send_skb(sk,
1524 (MAX_HEADER + sizeof(struct ipv6hdr) +
1525 len + LL_RESERVED_SPACE(dev)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 1, &err);
1527 if (buff == NULL) {
1528 ND_PRINTK0(KERN_ERR
1529 "ICMPv6 Redirect: %s() failed to allocate an skb.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001530 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 dst_release(dst);
1532 return;
1533 }
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 skb_reserve(buff, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001536 ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 IPPROTO_ICMPV6, len);
1538
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001539 skb_set_transport_header(buff, skb_tail_pointer(buff) - buff->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001540 skb_put(buff, len);
1541 icmph = icmp6_hdr(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 memset(icmph, 0, sizeof(struct icmp6hdr));
1544 icmph->icmp6_type = NDISC_REDIRECT;
1545
1546 /*
1547 * copy target and destination addresses
1548 */
1549
1550 addrp = (struct in6_addr *)(icmph + 1);
1551 ipv6_addr_copy(addrp, target);
1552 addrp++;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001553 ipv6_addr_copy(addrp, &ipv6_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 opt = (u8*) (addrp + 1);
1556
1557 /*
1558 * include target_address option
1559 */
1560
1561 if (ha)
1562 opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, ha,
1563 dev->addr_len, dev->type);
1564
1565 /*
1566 * build redirect option and copy skb over to the new packet.
1567 */
1568
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001569 memset(opt, 0, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 *(opt++) = ND_OPT_REDIRECT_HDR;
1571 *(opt++) = (rd_len >> 3);
1572 opt += 6;
1573
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001574 memcpy(opt, ipv6_hdr(skb), rd_len - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001576 icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 len, IPPROTO_ICMPV6,
1578 csum_partial((u8 *) icmph, len, 0));
1579
1580 buff->dst = dst;
1581 idev = in6_dev_get(dst->dev);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001582 IP6_INC_STATS(idev, IPSTATS_MIB_OUTREQUESTS);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001583 err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev,
1584 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (!err) {
David L Stevens14878f72007-09-16 16:52:35 -07001586 ICMP6MSGOUT_INC_STATS(idev, NDISC_REDIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
1588 }
1589
1590 if (likely(idev != NULL))
1591 in6_dev_put(idev);
1592}
1593
1594static void pndisc_redo(struct sk_buff *skb)
1595{
YOSHIFUJI Hideaki140e26fc2005-10-05 12:11:41 -07001596 ndisc_recv_ns(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 kfree_skb(skb);
1598}
1599
1600int ndisc_rcv(struct sk_buff *skb)
1601{
1602 struct nd_msg *msg;
1603
1604 if (!pskb_may_pull(skb, skb->len))
1605 return 0;
1606
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001607 msg = (struct nd_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001609 __skb_push(skb, skb->data - skb_transport_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001611 if (ipv6_hdr(skb)->hop_limit != 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 ND_PRINTK2(KERN_WARNING
1613 "ICMPv6 NDISC: invalid hop-limit: %d\n",
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001614 ipv6_hdr(skb)->hop_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return 0;
1616 }
1617
1618 if (msg->icmph.icmp6_code != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001619 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 "ICMPv6 NDISC: invalid ICMPv6 code: %d\n",
1621 msg->icmph.icmp6_code);
1622 return 0;
1623 }
1624
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001625 memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 switch (msg->icmph.icmp6_type) {
1628 case NDISC_NEIGHBOUR_SOLICITATION:
1629 ndisc_recv_ns(skb);
1630 break;
1631
1632 case NDISC_NEIGHBOUR_ADVERTISEMENT:
1633 ndisc_recv_na(skb);
1634 break;
1635
1636 case NDISC_ROUTER_SOLICITATION:
1637 ndisc_recv_rs(skb);
1638 break;
1639
1640 case NDISC_ROUTER_ADVERTISEMENT:
1641 ndisc_router_discovery(skb);
1642 break;
1643
1644 case NDISC_REDIRECT:
1645 ndisc_redirect_rcv(skb);
1646 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 return 0;
1650}
1651
1652static int ndisc_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1653{
1654 struct net_device *dev = ptr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001655 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 switch (event) {
1658 case NETDEV_CHANGEADDR:
1659 neigh_changeaddr(&nd_tbl, dev);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001660 fib6_run_gc(~0UL, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 break;
1662 case NETDEV_DOWN:
1663 neigh_ifdown(&nd_tbl, dev);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001664 fib6_run_gc(~0UL, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666 default:
1667 break;
1668 }
1669
1670 return NOTIFY_DONE;
1671}
1672
1673static struct notifier_block ndisc_netdev_notifier = {
1674 .notifier_call = ndisc_netdev_event,
1675};
1676
1677#ifdef CONFIG_SYSCTL
1678static void ndisc_warn_deprecated_sysctl(struct ctl_table *ctl,
1679 const char *func, const char *dev_name)
1680{
1681 static char warncomm[TASK_COMM_LEN];
1682 static int warned;
1683 if (strcmp(warncomm, current->comm) && warned < 5) {
1684 strcpy(warncomm, current->comm);
1685 printk(KERN_WARNING
1686 "process `%s' is using deprecated sysctl (%s) "
1687 "net.ipv6.neigh.%s.%s; "
1688 "Use net.ipv6.neigh.%s.%s_ms "
1689 "instead.\n",
1690 warncomm, func,
1691 dev_name, ctl->procname,
1692 dev_name, ctl->procname);
1693 warned++;
1694 }
1695}
1696
1697int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl, int write, struct file * filp, void __user *buffer, size_t *lenp, loff_t *ppos)
1698{
1699 struct net_device *dev = ctl->extra1;
1700 struct inet6_dev *idev;
1701 int ret;
1702
Eric W. Biedermand12af672007-10-18 03:05:25 -07001703 if ((strcmp(ctl->procname, "retrans_time") == 0) ||
1704 (strcmp(ctl->procname, "base_reachable_time") == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 ndisc_warn_deprecated_sysctl(ctl, "syscall", dev ? dev->name : "default");
1706
Eric W. Biedermand12af672007-10-18 03:05:25 -07001707 if (strcmp(ctl->procname, "retrans_time") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001709
1710 else if (strcmp(ctl->procname, "base_reachable_time") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 ret = proc_dointvec_jiffies(ctl, write,
1712 filp, buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001713
1714 else if ((strcmp(ctl->procname, "retrans_time_ms") == 0) ||
YOSHIFUJI Hideakiad02ac12007-10-29 01:32:23 -07001715 (strcmp(ctl->procname, "base_reachable_time_ms") == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 ret = proc_dointvec_ms_jiffies(ctl, write,
1717 filp, buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001718 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 ret = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 if (write && ret == 0 && dev && (idev = in6_dev_get(dev)) != NULL) {
Eric W. Biedermand12af672007-10-18 03:05:25 -07001722 if (ctl->data == &idev->nd_parms->base_reachable_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1724 idev->tstamp = jiffies;
1725 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1726 in6_dev_put(idev);
1727 }
1728 return ret;
1729}
1730
1731static int ndisc_ifinfo_sysctl_strategy(ctl_table *ctl, int __user *name,
1732 int nlen, void __user *oldval,
1733 size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08001734 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 struct net_device *dev = ctl->extra1;
1737 struct inet6_dev *idev;
1738 int ret;
1739
1740 if (ctl->ctl_name == NET_NEIGH_RETRANS_TIME ||
1741 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME)
1742 ndisc_warn_deprecated_sysctl(ctl, "procfs", dev ? dev->name : "default");
1743
1744 switch (ctl->ctl_name) {
1745 case NET_NEIGH_REACHABLE_TIME:
1746 ret = sysctl_jiffies(ctl, name, nlen,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08001747 oldval, oldlenp, newval, newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
1749 case NET_NEIGH_RETRANS_TIME_MS:
1750 case NET_NEIGH_REACHABLE_TIME_MS:
1751 ret = sysctl_ms_jiffies(ctl, name, nlen,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08001752 oldval, oldlenp, newval, newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 break;
1754 default:
1755 ret = 0;
1756 }
1757
1758 if (newval && newlen && ret > 0 &&
1759 dev && (idev = in6_dev_get(dev)) != NULL) {
1760 if (ctl->ctl_name == NET_NEIGH_REACHABLE_TIME ||
1761 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME_MS)
1762 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1763 idev->tstamp = jiffies;
1764 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1765 in6_dev_put(idev);
1766 }
1767
1768 return ret;
1769}
1770
1771#endif
1772
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001773static int ndisc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 struct ipv6_pinfo *np;
1776 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001777 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001779 err = inet_ctl_sock_create(&sk, PF_INET6,
1780 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 if (err < 0) {
1782 ND_PRINTK0(KERN_ERR
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001783 "ICMPv6 NDISC: Failed to initialize the control socket (err %d).\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return err;
1786 }
1787
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001788 net->ipv6.ndisc_sk = sk;
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 np->hop_limit = 255;
1792 /* Do not loopback ndisc messages */
1793 np->mc_loop = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001795 return 0;
1796}
1797
1798static void ndisc_net_exit(struct net *net)
1799{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001800 inet_ctl_sock_destroy(net->ipv6.ndisc_sk);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001801}
1802
1803static struct pernet_operations ndisc_net_ops = {
1804 .init = ndisc_net_init,
1805 .exit = ndisc_net_exit,
1806};
1807
1808int __init ndisc_init(void)
1809{
1810 int err;
1811
1812 err = register_pernet_subsys(&ndisc_net_ops);
1813 if (err)
1814 return err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001815 /*
1816 * Initialize the neighbour table
1817 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 neigh_table_init(&nd_tbl);
1819
1820#ifdef CONFIG_SYSCTL
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001821 err = neigh_sysctl_register(NULL, &nd_tbl.parms, NET_IPV6,
1822 NET_IPV6_NEIGH, "ipv6",
1823 &ndisc_ifinfo_sysctl_change,
1824 &ndisc_ifinfo_sysctl_strategy);
1825 if (err)
1826 goto out_unregister_pernet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827#endif
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001828 err = register_netdevice_notifier(&ndisc_netdev_notifier);
1829 if (err)
1830 goto out_unregister_sysctl;
1831out:
1832 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001834out_unregister_sysctl:
1835#ifdef CONFIG_SYSCTL
1836 neigh_sysctl_unregister(&nd_tbl.parms);
1837out_unregister_pernet:
1838#endif
1839 unregister_pernet_subsys(&ndisc_net_ops);
1840 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
1843void ndisc_cleanup(void)
1844{
Dmitry Mishin36f73d02006-11-03 16:08:19 -08001845 unregister_netdevice_notifier(&ndisc_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846#ifdef CONFIG_SYSCTL
1847 neigh_sysctl_unregister(&nd_tbl.parms);
1848#endif
1849 neigh_table_clear(&nd_tbl);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001850 unregister_pernet_subsys(&ndisc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}