blob: 69a0051cea67b9d22c7fbe6d61718b2ab20111bb [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090062#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_SYSCTL
64#include <linux/sysctl.h>
65#endif
66
Thomas Graf18237302006-08-04 23:04:54 -070067#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/if_arp.h>
69#include <linux/ipv6.h>
70#include <linux/icmpv6.h>
71#include <linux/jhash.h>
72
73#include <net/sock.h>
74#include <net/snmp.h>
75
76#include <net/ipv6.h>
77#include <net/protocol.h>
78#include <net/ndisc.h>
79#include <net/ip6_route.h>
80#include <net/addrconf.h>
81#include <net/icmp.h>
82
Pierre Ynard31910572007-10-10 21:22:05 -070083#include <net/netlink.h>
84#include <linux/rtnetlink.h>
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <net/flow.h>
87#include <net/ip6_checksum.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070088#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/proc_fs.h>
90
91#include <linux/netfilter.h>
92#include <linux/netfilter_ipv6.h>
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static u32 ndisc_hash(const void *pkey, const struct net_device *dev);
95static int ndisc_constructor(struct neighbour *neigh);
96static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb);
97static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb);
98static int pndisc_constructor(struct pneigh_entry *n);
99static void pndisc_destructor(struct pneigh_entry *n);
100static void pndisc_redo(struct sk_buff *skb);
101
Stephen Hemminger89d69d22009-09-01 11:13:19 +0000102static const struct neigh_ops ndisc_generic_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .family = AF_INET6,
104 .solicit = ndisc_solicit,
105 .error_report = ndisc_error_report,
106 .output = neigh_resolve_output,
107 .connected_output = neigh_connected_output,
108 .hh_output = dev_queue_xmit,
109 .queue_xmit = dev_queue_xmit,
110};
111
Stephen Hemminger89d69d22009-09-01 11:13:19 +0000112static const struct neigh_ops ndisc_hh_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .family = AF_INET6,
114 .solicit = ndisc_solicit,
115 .error_report = ndisc_error_report,
116 .output = neigh_resolve_output,
117 .connected_output = neigh_resolve_output,
118 .hh_output = dev_queue_xmit,
119 .queue_xmit = dev_queue_xmit,
120};
121
122
Stephen Hemminger89d69d22009-09-01 11:13:19 +0000123static const struct neigh_ops ndisc_direct_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .family = AF_INET6,
125 .output = dev_queue_xmit,
126 .connected_output = dev_queue_xmit,
127 .hh_output = dev_queue_xmit,
128 .queue_xmit = dev_queue_xmit,
129};
130
131struct neigh_table nd_tbl = {
132 .family = AF_INET6,
133 .entry_size = sizeof(struct neighbour) + sizeof(struct in6_addr),
134 .key_len = sizeof(struct in6_addr),
135 .hash = ndisc_hash,
136 .constructor = ndisc_constructor,
137 .pconstructor = pndisc_constructor,
138 .pdestructor = pndisc_destructor,
139 .proxy_redo = pndisc_redo,
140 .id = "ndisc_cache",
141 .parms = {
142 .tbl = &nd_tbl,
143 .base_reachable_time = 30 * HZ,
144 .retrans_time = 1 * HZ,
145 .gc_staletime = 60 * HZ,
146 .reachable_time = 30 * HZ,
147 .delay_probe_time = 5 * HZ,
148 .queue_len = 3,
149 .ucast_probes = 3,
150 .mcast_probes = 3,
151 .anycast_delay = 1 * HZ,
152 .proxy_delay = (8 * HZ) / 10,
153 .proxy_qlen = 64,
154 },
155 .gc_interval = 30 * HZ,
156 .gc_thresh1 = 128,
157 .gc_thresh2 = 512,
158 .gc_thresh3 = 1024,
159};
160
161/* ND options */
162struct ndisc_options {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800163 struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX];
164#ifdef CONFIG_IPV6_ROUTE_INFO
165 struct nd_opt_hdr *nd_opts_ri;
166 struct nd_opt_hdr *nd_opts_ri_end;
167#endif
Pierre Ynard31910572007-10-10 21:22:05 -0700168 struct nd_opt_hdr *nd_useropts;
169 struct nd_opt_hdr *nd_useropts_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
172#define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
173#define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
174#define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
175#define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
176#define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
177#define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
178
179#define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
180
181/*
182 * Return the padding between the option length and the start of the
183 * link addr. Currently only IP-over-InfiniBand needs this, although
184 * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
185 * also need a pad of 2.
186 */
187static int ndisc_addr_option_pad(unsigned short type)
188{
189 switch (type) {
190 case ARPHRD_INFINIBAND: return 2;
191 default: return 0;
192 }
193}
194
195static inline int ndisc_opt_addr_space(struct net_device *dev)
196{
197 return NDISC_OPT_SPACE(dev->addr_len + ndisc_addr_option_pad(dev->type));
198}
199
200static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len,
201 unsigned short addr_type)
202{
203 int space = NDISC_OPT_SPACE(data_len);
204 int pad = ndisc_addr_option_pad(addr_type);
205
206 opt[0] = type;
207 opt[1] = space>>3;
208
209 memset(opt + 2, 0, pad);
210 opt += pad;
211 space -= pad;
212
213 memcpy(opt+2, data, data_len);
214 data_len += 2;
215 opt += data_len;
216 if ((space -= data_len) > 0)
217 memset(opt, 0, space);
218 return opt + space;
219}
220
221static struct nd_opt_hdr *ndisc_next_option(struct nd_opt_hdr *cur,
222 struct nd_opt_hdr *end)
223{
224 int type;
225 if (!cur || !end || cur >= end)
226 return NULL;
227 type = cur->nd_opt_type;
228 do {
229 cur = ((void *)cur) + (cur->nd_opt_len << 3);
230 } while(cur < end && cur->nd_opt_type != type);
231 return (cur <= end && cur->nd_opt_type == type ? cur : NULL);
232}
233
Pierre Ynard31910572007-10-10 21:22:05 -0700234static inline int ndisc_is_useropt(struct nd_opt_hdr *opt)
235{
236 return (opt->nd_opt_type == ND_OPT_RDNSS);
237}
238
239static struct nd_opt_hdr *ndisc_next_useropt(struct nd_opt_hdr *cur,
240 struct nd_opt_hdr *end)
241{
242 if (!cur || !end || cur >= end)
243 return NULL;
244 do {
245 cur = ((void *)cur) + (cur->nd_opt_len << 3);
246 } while(cur < end && !ndisc_is_useropt(cur));
247 return (cur <= end && ndisc_is_useropt(cur) ? cur : NULL);
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
251 struct ndisc_options *ndopts)
252{
253 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)opt;
254
255 if (!nd_opt || opt_len < 0 || !ndopts)
256 return NULL;
257 memset(ndopts, 0, sizeof(*ndopts));
258 while (opt_len) {
259 int l;
260 if (opt_len < sizeof(struct nd_opt_hdr))
261 return NULL;
262 l = nd_opt->nd_opt_len << 3;
263 if (opt_len < l || l == 0)
264 return NULL;
265 switch (nd_opt->nd_opt_type) {
266 case ND_OPT_SOURCE_LL_ADDR:
267 case ND_OPT_TARGET_LL_ADDR:
268 case ND_OPT_MTU:
269 case ND_OPT_REDIRECT_HDR:
270 if (ndopts->nd_opt_array[nd_opt->nd_opt_type]) {
271 ND_PRINTK2(KERN_WARNING
272 "%s(): duplicated ND6 option found: type=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800273 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 nd_opt->nd_opt_type);
275 } else {
276 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
277 }
278 break;
279 case ND_OPT_PREFIX_INFO:
280 ndopts->nd_opts_pi_end = nd_opt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700281 if (!ndopts->nd_opt_array[nd_opt->nd_opt_type])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
283 break;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800284#ifdef CONFIG_IPV6_ROUTE_INFO
285 case ND_OPT_ROUTE_INFO:
286 ndopts->nd_opts_ri_end = nd_opt;
287 if (!ndopts->nd_opts_ri)
288 ndopts->nd_opts_ri = nd_opt;
289 break;
290#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 default:
Pierre Ynard31910572007-10-10 21:22:05 -0700292 if (ndisc_is_useropt(nd_opt)) {
293 ndopts->nd_useropts_end = nd_opt;
294 if (!ndopts->nd_useropts)
295 ndopts->nd_useropts = nd_opt;
296 } else {
297 /*
298 * Unknown options must be silently ignored,
299 * to accommodate future extension to the
300 * protocol.
301 */
302 ND_PRINTK2(KERN_NOTICE
303 "%s(): ignored unsupported option; type=%d, len=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800304 __func__,
Pierre Ynard31910572007-10-10 21:22:05 -0700305 nd_opt->nd_opt_type, nd_opt->nd_opt_len);
306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308 opt_len -= l;
309 nd_opt = ((void *)nd_opt) + l;
310 }
311 return ndopts;
312}
313
314static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
315 struct net_device *dev)
316{
317 u8 *lladdr = (u8 *)(p + 1);
318 int lladdrlen = p->nd_opt_len << 3;
319 int prepad = ndisc_addr_option_pad(dev->type);
320 if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))
321 return NULL;
322 return (lladdr + prepad);
323}
324
325int ndisc_mc_map(struct in6_addr *addr, char *buf, struct net_device *dev, int dir)
326{
327 switch (dev->type) {
328 case ARPHRD_ETHER:
329 case ARPHRD_IEEE802: /* Not sure. Check it later. --ANK */
330 case ARPHRD_FDDI:
331 ipv6_eth_mc_map(addr, buf);
332 return 0;
333 case ARPHRD_IEEE802_TR:
334 ipv6_tr_mc_map(addr,buf);
335 return 0;
336 case ARPHRD_ARCNET:
337 ipv6_arcnet_mc_map(addr, buf);
338 return 0;
339 case ARPHRD_INFINIBAND:
Rolf Manderscheida9e527e2007-12-10 13:38:41 -0700340 ipv6_ib_mc_map(addr, dev->broadcast, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342 default:
343 if (dir) {
344 memcpy(buf, dev->broadcast, dev->addr_len);
345 return 0;
346 }
347 }
348 return -EINVAL;
349}
350
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900351EXPORT_SYMBOL(ndisc_mc_map);
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353static u32 ndisc_hash(const void *pkey, const struct net_device *dev)
354{
355 const u32 *p32 = pkey;
356 u32 addr_hash, i;
357
358 addr_hash = 0;
359 for (i = 0; i < (sizeof(struct in6_addr) / sizeof(u32)); i++)
360 addr_hash ^= *p32++;
361
362 return jhash_2words(addr_hash, dev->ifindex, nd_tbl.hash_rnd);
363}
364
365static int ndisc_constructor(struct neighbour *neigh)
366{
367 struct in6_addr *addr = (struct in6_addr*)&neigh->primary_key;
368 struct net_device *dev = neigh->dev;
369 struct inet6_dev *in6_dev;
370 struct neigh_parms *parms;
371 int is_multicast = ipv6_addr_is_multicast(addr);
372
373 rcu_read_lock();
374 in6_dev = in6_dev_get(dev);
375 if (in6_dev == NULL) {
376 rcu_read_unlock();
377 return -EINVAL;
378 }
379
380 parms = in6_dev->nd_parms;
381 __neigh_parms_put(neigh->parms);
382 neigh->parms = neigh_parms_clone(parms);
383 rcu_read_unlock();
384
385 neigh->type = is_multicast ? RTN_MULTICAST : RTN_UNICAST;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700386 if (!dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 neigh->nud_state = NUD_NOARP;
388 neigh->ops = &ndisc_direct_ops;
389 neigh->output = neigh->ops->queue_xmit;
390 } else {
391 if (is_multicast) {
392 neigh->nud_state = NUD_NOARP;
393 ndisc_mc_map(addr, neigh->ha, dev, 1);
394 } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
395 neigh->nud_state = NUD_NOARP;
396 memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
397 if (dev->flags&IFF_LOOPBACK)
398 neigh->type = RTN_LOCAL;
399 } else if (dev->flags&IFF_POINTOPOINT) {
400 neigh->nud_state = NUD_NOARP;
401 memcpy(neigh->ha, dev->broadcast, dev->addr_len);
402 }
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700403 if (dev->header_ops->cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 neigh->ops = &ndisc_hh_ops;
405 else
406 neigh->ops = &ndisc_generic_ops;
407 if (neigh->nud_state&NUD_VALID)
408 neigh->output = neigh->ops->connected_output;
409 else
410 neigh->output = neigh->ops->output;
411 }
412 in6_dev_put(in6_dev);
413 return 0;
414}
415
416static int pndisc_constructor(struct pneigh_entry *n)
417{
418 struct in6_addr *addr = (struct in6_addr*)&n->key;
419 struct in6_addr maddr;
420 struct net_device *dev = n->dev;
421
422 if (dev == NULL || __in6_dev_get(dev) == NULL)
423 return -EINVAL;
424 addrconf_addr_solict_mult(addr, &maddr);
425 ipv6_dev_mc_inc(dev, &maddr);
426 return 0;
427}
428
429static void pndisc_destructor(struct pneigh_entry *n)
430{
431 struct in6_addr *addr = (struct in6_addr*)&n->key;
432 struct in6_addr maddr;
433 struct net_device *dev = n->dev;
434
435 if (dev == NULL || __in6_dev_get(dev) == NULL)
436 return;
437 addrconf_addr_solict_mult(addr, &maddr);
438 ipv6_dev_mc_dec(dev, &maddr);
439}
440
Brian Haley305d5522008-11-04 17:51:14 -0800441struct sk_buff *ndisc_build_skb(struct net_device *dev,
442 const struct in6_addr *daddr,
443 const struct in6_addr *saddr,
444 struct icmp6hdr *icmp6h,
445 const struct in6_addr *target,
446 int llinfo)
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900447{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900448 struct net *net = dev_net(dev);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -0800449 struct sock *sk = net->ipv6.ndisc_sk;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900450 struct sk_buff *skb;
451 struct icmp6hdr *hdr;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900452 int len;
453 int err;
Brian Haley305d5522008-11-04 17:51:14 -0800454 u8 *opt;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900455
456 if (!dev->addr_len)
457 llinfo = 0;
458
459 len = sizeof(struct icmp6hdr) + (target ? sizeof(*target) : 0);
460 if (llinfo)
461 len += ndisc_opt_addr_space(dev);
462
463 skb = sock_alloc_send_skb(sk,
464 (MAX_HEADER + sizeof(struct ipv6hdr) +
Johannes Bergf5184d22008-05-12 20:48:31 -0700465 len + LL_ALLOCATED_SPACE(dev)),
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900466 1, &err);
467 if (!skb) {
468 ND_PRINTK0(KERN_ERR
Brian Haleydae9de82009-06-02 00:20:26 -0700469 "ICMPv6 ND: %s() failed to allocate an skb, err=%d.\n",
470 __func__, err);
Brian Haley305d5522008-11-04 17:51:14 -0800471 return NULL;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900472 }
473
474 skb_reserve(skb, LL_RESERVED_SPACE(dev));
475 ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
476
477 skb->transport_header = skb->tail;
478 skb_put(skb, len);
479
480 hdr = (struct icmp6hdr *)skb_transport_header(skb);
481 memcpy(hdr, icmp6h, sizeof(*hdr));
482
483 opt = skb_transport_header(skb) + sizeof(struct icmp6hdr);
484 if (target) {
485 ipv6_addr_copy((struct in6_addr *)opt, target);
486 opt += sizeof(*target);
487 }
488
489 if (llinfo)
490 ndisc_fill_addr_option(opt, llinfo, dev->dev_addr,
491 dev->addr_len, dev->type);
492
493 hdr->icmp6_cksum = csum_ipv6_magic(saddr, daddr, len,
494 IPPROTO_ICMPV6,
Joe Perches07f07572008-11-19 15:44:53 -0800495 csum_partial(hdr,
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900496 len, 0));
497
Brian Haley305d5522008-11-04 17:51:14 -0800498 return skb;
499}
500
501EXPORT_SYMBOL(ndisc_build_skb);
502
503void ndisc_send_skb(struct sk_buff *skb,
504 struct net_device *dev,
505 struct neighbour *neigh,
506 const struct in6_addr *daddr,
507 const struct in6_addr *saddr,
508 struct icmp6hdr *icmp6h)
509{
510 struct flowi fl;
511 struct dst_entry *dst;
512 struct net *net = dev_net(dev);
513 struct sock *sk = net->ipv6.ndisc_sk;
514 struct inet6_dev *idev;
515 int err;
516 u8 type;
517
518 type = icmp6h->icmp6_type;
519
520 icmpv6_flow_init(sk, &fl, type, saddr, daddr, dev->ifindex);
521
522 dst = icmp6_dst_alloc(dev, neigh, daddr);
523 if (!dst) {
524 kfree_skb(skb);
525 return;
526 }
527
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800528 err = xfrm_lookup(net, &dst, &fl, NULL, 0);
Brian Haley305d5522008-11-04 17:51:14 -0800529 if (err < 0) {
530 kfree_skb(skb);
531 return;
532 }
533
Eric Dumazetadf30902009-06-02 05:19:30 +0000534 skb_dst_set(skb, dst);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900535
536 idev = in6_dev_get(dst->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -0700537 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900538
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100539 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800540 dst_output);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900541 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -0700542 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -0700543 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900544 }
545
546 if (likely(idev != NULL))
547 in6_dev_put(idev);
548}
549
Brian Haley305d5522008-11-04 17:51:14 -0800550EXPORT_SYMBOL(ndisc_send_skb);
551
552/*
553 * Send a Neighbour Discover packet
554 */
555static void __ndisc_send(struct net_device *dev,
556 struct neighbour *neigh,
557 const struct in6_addr *daddr,
558 const struct in6_addr *saddr,
559 struct icmp6hdr *icmp6h, const struct in6_addr *target,
560 int llinfo)
561{
562 struct sk_buff *skb;
563
564 skb = ndisc_build_skb(dev, daddr, saddr, icmp6h, target, llinfo);
565 if (!skb)
566 return;
567
568 ndisc_send_skb(skb, dev, neigh, daddr, saddr, icmp6h);
569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571static void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900572 const struct in6_addr *daddr,
573 const struct in6_addr *solicited_addr,
574 int router, int solicited, int override, int inc_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 struct in6_addr tmpaddr;
577 struct inet6_ifaddr *ifp;
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900578 const struct in6_addr *src_addr;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900579 struct icmp6hdr icmp6h = {
580 .icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT,
581 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /* for anycast or proxy, solicited_addr != src_addr */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900584 ifp = ipv6_get_ifaddr(dev_net(dev), solicited_addr, dev, 1);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900585 if (ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 src_addr = solicited_addr;
Neil Horman95c385b2007-04-25 17:08:10 -0700587 if (ifp->flags & IFA_F_OPTIMISTIC)
588 override = 0;
stephen hemminger9f888162010-06-21 11:00:13 +0000589 inc_opt |= ifp->idev->cnf.force_tllao;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 in6_ifa_put(ifp);
591 } else {
Brian Haley191cd582008-08-14 15:33:21 -0700592 if (ipv6_dev_get_saddr(dev_net(dev), dev, daddr,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900593 inet6_sk(dev_net(dev)->ipv6.ndisc_sk)->srcprefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900594 &tmpaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return;
596 src_addr = &tmpaddr;
597 }
598
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900599 icmp6h.icmp6_router = router;
600 icmp6h.icmp6_solicited = solicited;
601 icmp6h.icmp6_override = override;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900603 __ndisc_send(dev, neigh, daddr, src_addr,
604 &icmp6h, solicited_addr,
David L Stevens14878f72007-09-16 16:52:35 -0700605 inc_opt ? ND_OPT_TARGET_LL_ADDR : 0);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900606}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900609 const struct in6_addr *solicit,
610 const struct in6_addr *daddr, const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 struct in6_addr addr_buf;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900613 struct icmp6hdr icmp6h = {
614 .icmp6_type = NDISC_NEIGHBOUR_SOLICITATION,
615 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 if (saddr == NULL) {
Neil Horman95c385b2007-04-25 17:08:10 -0700618 if (ipv6_get_lladdr(dev, &addr_buf,
619 (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return;
621 saddr = &addr_buf;
622 }
623
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900624 __ndisc_send(dev, neigh, daddr, saddr,
625 &icmp6h, solicit,
David L Stevens14878f72007-09-16 16:52:35 -0700626 !ipv6_addr_any(saddr) ? ND_OPT_SOURCE_LL_ADDR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900629void ndisc_send_rs(struct net_device *dev, const struct in6_addr *saddr,
630 const struct in6_addr *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900632 struct icmp6hdr icmp6h = {
633 .icmp6_type = NDISC_ROUTER_SOLICITATION,
634 };
Neil Horman95c385b2007-04-25 17:08:10 -0700635 int send_sllao = dev->addr_len;
Neil Horman95c385b2007-04-25 17:08:10 -0700636
637#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
638 /*
639 * According to section 2.2 of RFC 4429, we must not
640 * send router solicitations with a sllao from
641 * optimistic addresses, but we may send the solicitation
642 * if we don't include the sllao. So here we check
643 * if our address is optimistic, and if so, we
Joe Perchesbea85192007-12-20 14:01:35 -0800644 * suppress the inclusion of the sllao.
Neil Horman95c385b2007-04-25 17:08:10 -0700645 */
646 if (send_sllao) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900647 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(dev_net(dev), saddr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -0800648 dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700649 if (ifp) {
650 if (ifp->flags & IFA_F_OPTIMISTIC) {
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900651 send_sllao = 0;
Neil Horman95c385b2007-04-25 17:08:10 -0700652 }
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900653 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700654 } else {
655 send_sllao = 0;
656 }
657 }
658#endif
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900659 __ndisc_send(dev, NULL, daddr, saddr,
660 &icmp6h, NULL,
David L Stevens14878f72007-09-16 16:52:35 -0700661 send_sllao ? ND_OPT_SOURCE_LL_ADDR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb)
666{
667 /*
668 * "The sender MUST return an ICMP
669 * destination unreachable"
670 */
671 dst_link_failure(skb);
672 kfree_skb(skb);
673}
674
675/* Called with locked neigh: either read or both */
676
677static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
678{
679 struct in6_addr *saddr = NULL;
680 struct in6_addr mcaddr;
681 struct net_device *dev = neigh->dev;
682 struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
683 int probes = atomic_read(&neigh->probes);
684
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900685 if (skb && ipv6_chk_addr(dev_net(dev), &ipv6_hdr(skb)->saddr, dev, 1))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700686 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if ((probes -= neigh->parms->ucast_probes) < 0) {
689 if (!(neigh->nud_state & NUD_VALID)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700690 ND_PRINTK1(KERN_DEBUG "%s(): trying to ucast probe in NUD_INVALID: %pI6\n",
Harvey Harrison0c6ce782008-10-28 16:09:23 -0700691 __func__, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693 ndisc_send_ns(dev, neigh, target, target, saddr);
694 } else if ((probes -= neigh->parms->app_probes) < 0) {
695#ifdef CONFIG_ARPD
696 neigh_app_ns(neigh);
697#endif
698 } else {
699 addrconf_addr_solict_mult(target, &mcaddr);
700 ndisc_send_ns(dev, NULL, target, &mcaddr, saddr);
701 }
702}
703
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900704static int pndisc_is_router(const void *pkey,
705 struct net_device *dev)
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700706{
707 struct pneigh_entry *n;
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900708 int ret = -1;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700709
710 read_lock_bh(&nd_tbl.lock);
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900711 n = __pneigh_lookup(&nd_tbl, dev_net(dev), pkey, dev);
712 if (n)
713 ret = !!(n->flags & NTF_ROUTER);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700714 read_unlock_bh(&nd_tbl.lock);
715
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900716 return ret;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700717}
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719static void ndisc_recv_ns(struct sk_buff *skb)
720{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700721 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700722 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
723 struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700725 u32 ndoptlen = skb->tail - (skb->transport_header +
726 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct ndisc_options ndopts;
728 struct net_device *dev = skb->dev;
729 struct inet6_ifaddr *ifp;
730 struct inet6_dev *idev = NULL;
731 struct neighbour *neigh;
732 int dad = ipv6_addr_any(saddr);
733 int inc;
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900734 int is_router = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 if (ipv6_addr_is_multicast(&msg->target)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900737 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 "ICMPv6 NS: multicast target address");
739 return;
740 }
741
742 /*
743 * RFC2461 7.1.1:
744 * DAD has to be destined for solicited node multicast address.
745 */
746 if (dad &&
747 !(daddr->s6_addr32[0] == htonl(0xff020000) &&
748 daddr->s6_addr32[1] == htonl(0x00000000) &&
749 daddr->s6_addr32[2] == htonl(0x00000001) &&
750 daddr->s6_addr [12] == 0xff )) {
751 ND_PRINTK2(KERN_WARNING
752 "ICMPv6 NS: bad DAD packet (wrong destination)\n");
753 return;
754 }
755
756 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900757 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 "ICMPv6 NS: invalid ND options\n");
759 return;
760 }
761
762 if (ndopts.nd_opts_src_lladdr) {
763 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr, dev);
764 if (!lladdr) {
765 ND_PRINTK2(KERN_WARNING
766 "ICMPv6 NS: invalid link-layer address length\n");
767 return;
768 }
769
770 /* RFC2461 7.1.1:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900771 * If the IP source address is the unspecified address,
772 * there MUST NOT be source link-layer address option
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * in the message.
774 */
775 if (dad) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900776 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 "ICMPv6 NS: bad DAD packet (link-layer address option)\n");
778 return;
779 }
780 }
781
782 inc = ipv6_addr_is_multicast(daddr);
783
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900784 ifp = ipv6_get_ifaddr(dev_net(dev), &msg->target, dev, 1);
Daniel Lezcanoa18bc692008-03-07 11:14:49 -0800785 if (ifp) {
Neil Horman95c385b2007-04-25 17:08:10 -0700786
787 if (ifp->flags & (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)) {
788 if (dad) {
789 if (dev->type == ARPHRD_IEEE802_TR) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700790 const unsigned char *sadr;
791 sadr = skb_mac_header(skb);
Neil Horman95c385b2007-04-25 17:08:10 -0700792 if (((sadr[8] ^ dev->dev_addr[0]) & 0x7f) == 0 &&
793 sadr[9] == dev->dev_addr[1] &&
794 sadr[10] == dev->dev_addr[2] &&
795 sadr[11] == dev->dev_addr[3] &&
796 sadr[12] == dev->dev_addr[4] &&
797 sadr[13] == dev->dev_addr[5]) {
798 /* looped-back to us */
799 goto out;
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
Neil Horman95c385b2007-04-25 17:08:10 -0700802
803 /*
804 * We are colliding with another node
805 * who is doing DAD
806 * so fail our DAD process
807 */
808 addrconf_dad_failure(ifp);
Denis V. Lunev9e3be4b2007-09-11 11:04:49 +0200809 return;
Neil Horman95c385b2007-04-25 17:08:10 -0700810 } else {
811 /*
812 * This is not a dad solicitation.
813 * If we are an optimistic node,
814 * we should respond.
815 * Otherwise, we should ignore it.
816 */
817 if (!(ifp->flags & IFA_F_OPTIMISTIC))
818 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
822 idev = ifp->idev;
823 } else {
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700824 struct net *net = dev_net(dev);
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 idev = in6_dev_get(dev);
827 if (!idev) {
828 /* XXX: count this drop? */
829 return;
830 }
831
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700832 if (ipv6_chk_acast_addr(net, dev, &msg->target) ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900833 (idev->cnf.forwarding &&
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700834 (net->ipv6.devconf_all->proxy_ndp || idev->cnf.proxy_ndp) &&
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900835 (is_router = pndisc_is_router(&msg->target, dev)) >= 0)) {
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700836 if (!(NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 skb->pkt_type != PACKET_HOST &&
838 inc != 0 &&
839 idev->nd_parms->proxy_delay != 0) {
840 /*
841 * for anycast or proxy,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900842 * sender should delay its response
843 * by a random time between 0 and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * MAX_ANYCAST_DELAY_TIME seconds.
845 * (RFC2461) -- yoshfuji
846 */
847 struct sk_buff *n = skb_clone(skb, GFP_ATOMIC);
848 if (n)
849 pneigh_enqueue(&nd_tbl, idev->nd_parms, n);
850 goto out;
851 }
852 } else
853 goto out;
854 }
855
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900856 if (is_router < 0)
857 is_router = !!idev->cnf.forwarding;
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (dad) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900860 ndisc_send_na(dev, NULL, &in6addr_linklocal_allnodes, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700861 is_router, 0, (ifp != NULL), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto out;
863 }
864
865 if (inc)
866 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_mcast);
867 else
868 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_ucast);
869
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900870 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 * update / create cache entry
872 * for the source address
873 */
874 neigh = __neigh_lookup(&nd_tbl, saddr, dev,
875 !inc || lladdr || !dev->addr_len);
876 if (neigh)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900877 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 NEIGH_UPDATE_F_WEAK_OVERRIDE|
879 NEIGH_UPDATE_F_OVERRIDE);
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700880 if (neigh || !dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 ndisc_send_na(dev, neigh, saddr, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700882 is_router,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 1, (ifp != NULL && inc), inc);
884 if (neigh)
885 neigh_release(neigh);
886 }
887
888out:
889 if (ifp)
890 in6_ifa_put(ifp);
891 else
892 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
895static void ndisc_recv_na(struct sk_buff *skb)
896{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700897 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700898 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
899 struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700901 u32 ndoptlen = skb->tail - (skb->transport_header +
902 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 struct ndisc_options ndopts;
904 struct net_device *dev = skb->dev;
905 struct inet6_ifaddr *ifp;
906 struct neighbour *neigh;
907
908 if (skb->len < sizeof(struct nd_msg)) {
909 ND_PRINTK2(KERN_WARNING
910 "ICMPv6 NA: packet too short\n");
911 return;
912 }
913
914 if (ipv6_addr_is_multicast(&msg->target)) {
915 ND_PRINTK2(KERN_WARNING
916 "ICMPv6 NA: target address is multicast.\n");
917 return;
918 }
919
920 if (ipv6_addr_is_multicast(daddr) &&
921 msg->icmph.icmp6_solicited) {
922 ND_PRINTK2(KERN_WARNING
923 "ICMPv6 NA: solicited NA is multicasted.\n");
924 return;
925 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
928 ND_PRINTK2(KERN_WARNING
929 "ICMPv6 NS: invalid ND option\n");
930 return;
931 }
932 if (ndopts.nd_opts_tgt_lladdr) {
933 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, dev);
934 if (!lladdr) {
935 ND_PRINTK2(KERN_WARNING
936 "ICMPv6 NA: invalid link-layer address length\n");
937 return;
938 }
939 }
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900940 ifp = ipv6_get_ifaddr(dev_net(dev), &msg->target, dev, 1);
Daniel Lezcanoa18bc692008-03-07 11:14:49 -0800941 if (ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (ifp->flags & IFA_F_TENTATIVE) {
943 addrconf_dad_failure(ifp);
944 return;
945 }
946 /* What should we make now? The advertisement
947 is invalid, but ndisc specs say nothing
948 about it. It could be misconfiguration, or
949 an smart proxy agent tries to help us :-)
Jan Sembera24fc7b82008-12-09 15:48:32 -0800950
951 We should not print the error if NA has been
952 received from loopback - it is just our own
953 unsolicited advertisement.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 */
Jan Sembera24fc7b82008-12-09 15:48:32 -0800955 if (skb->pkt_type != PACKET_LOOPBACK)
956 ND_PRINTK1(KERN_WARNING
Jens Rosenbooma6fa3282009-08-12 22:16:04 +0000957 "ICMPv6 NA: someone advertises our address %pI6 on %s!\n",
958 &ifp->addr, ifp->idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 in6_ifa_put(ifp);
960 return;
961 }
962 neigh = neigh_lookup(&nd_tbl, &msg->target, dev);
963
964 if (neigh) {
965 u8 old_flags = neigh->flags;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700966 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 if (neigh->nud_state & NUD_FAILED)
969 goto out;
970
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700971 /*
972 * Don't update the neighbor cache entry on a proxy NA from
973 * ourselves because either the proxied node is off link or it
974 * has already sent a NA to us.
975 */
976 if (lladdr && !memcmp(lladdr, dev->dev_addr, dev->addr_len) &&
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700977 net->ipv6.devconf_all->forwarding && net->ipv6.devconf_all->proxy_ndp &&
978 pneigh_lookup(&nd_tbl, net, &msg->target, dev, 0)) {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700979 /* XXX: idev->cnf.prixy_ndp */
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700980 goto out;
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700981 }
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 neigh_update(neigh, lladdr,
984 msg->icmph.icmp6_solicited ? NUD_REACHABLE : NUD_STALE,
985 NEIGH_UPDATE_F_WEAK_OVERRIDE|
986 (msg->icmph.icmp6_override ? NEIGH_UPDATE_F_OVERRIDE : 0)|
987 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
988 (msg->icmph.icmp6_router ? NEIGH_UPDATE_F_ISROUTER : 0));
989
990 if ((old_flags & ~neigh->flags) & NTF_ROUTER) {
991 /*
992 * Change: router to host
993 */
994 struct rt6_info *rt;
995 rt = rt6_get_dflt_router(saddr, dev);
996 if (rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700997 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
1000out:
1001 neigh_release(neigh);
1002 }
1003}
1004
1005static void ndisc_recv_rs(struct sk_buff *skb)
1006{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001007 struct rs_msg *rs_msg = (struct rs_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 unsigned long ndoptlen = skb->len - sizeof(*rs_msg);
1009 struct neighbour *neigh;
1010 struct inet6_dev *idev;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001011 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 struct ndisc_options ndopts;
1013 u8 *lladdr = NULL;
1014
1015 if (skb->len < sizeof(*rs_msg))
1016 return;
1017
1018 idev = in6_dev_get(skb->dev);
1019 if (!idev) {
1020 if (net_ratelimit())
1021 ND_PRINTK1("ICMP6 RS: can't find in6 device\n");
1022 return;
1023 }
1024
1025 /* Don't accept RS if we're not in router mode */
1026 if (!idev->cnf.forwarding)
1027 goto out;
1028
1029 /*
1030 * Don't update NCE if src = ::;
1031 * this implies that the source node has no ip address assigned yet.
1032 */
1033 if (ipv6_addr_any(saddr))
1034 goto out;
1035
1036 /* Parse ND options */
1037 if (!ndisc_parse_options(rs_msg->opt, ndoptlen, &ndopts)) {
1038 if (net_ratelimit())
1039 ND_PRINTK2("ICMP6 NS: invalid ND option, ignored\n");
1040 goto out;
1041 }
1042
1043 if (ndopts.nd_opts_src_lladdr) {
1044 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1045 skb->dev);
1046 if (!lladdr)
1047 goto out;
1048 }
1049
1050 neigh = __neigh_lookup(&nd_tbl, saddr, skb->dev, 1);
1051 if (neigh) {
1052 neigh_update(neigh, lladdr, NUD_STALE,
1053 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1054 NEIGH_UPDATE_F_OVERRIDE|
1055 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
1056 neigh_release(neigh);
1057 }
1058out:
1059 in6_dev_put(idev);
1060}
1061
Pierre Ynard31910572007-10-10 21:22:05 -07001062static void ndisc_ra_useropt(struct sk_buff *ra, struct nd_opt_hdr *opt)
1063{
1064 struct icmp6hdr *icmp6h = (struct icmp6hdr *)skb_transport_header(ra);
1065 struct sk_buff *skb;
1066 struct nlmsghdr *nlh;
1067 struct nduseroptmsg *ndmsg;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001068 struct net *net = dev_net(ra->dev);
Pierre Ynard31910572007-10-10 21:22:05 -07001069 int err;
1070 int base_size = NLMSG_ALIGN(sizeof(struct nduseroptmsg)
1071 + (opt->nd_opt_len << 3));
1072 size_t msg_size = base_size + nla_total_size(sizeof(struct in6_addr));
1073
1074 skb = nlmsg_new(msg_size, GFP_ATOMIC);
1075 if (skb == NULL) {
1076 err = -ENOBUFS;
1077 goto errout;
1078 }
1079
1080 nlh = nlmsg_put(skb, 0, 0, RTM_NEWNDUSEROPT, base_size, 0);
1081 if (nlh == NULL) {
1082 goto nla_put_failure;
1083 }
1084
1085 ndmsg = nlmsg_data(nlh);
1086 ndmsg->nduseropt_family = AF_INET6;
Pierre Ynarddbb2ed22007-11-12 17:58:35 -08001087 ndmsg->nduseropt_ifindex = ra->dev->ifindex;
Pierre Ynard31910572007-10-10 21:22:05 -07001088 ndmsg->nduseropt_icmp_type = icmp6h->icmp6_type;
1089 ndmsg->nduseropt_icmp_code = icmp6h->icmp6_code;
1090 ndmsg->nduseropt_opts_len = opt->nd_opt_len << 3;
1091
1092 memcpy(ndmsg + 1, opt, opt->nd_opt_len << 3);
1093
1094 NLA_PUT(skb, NDUSEROPT_SRCADDR, sizeof(struct in6_addr),
1095 &ipv6_hdr(ra)->saddr);
1096 nlmsg_end(skb, nlh);
1097
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001098 rtnl_notify(skb, net, 0, RTNLGRP_ND_USEROPT, NULL, GFP_ATOMIC);
Pierre Ynard31910572007-10-10 21:22:05 -07001099 return;
1100
1101nla_put_failure:
1102 nlmsg_free(skb);
1103 err = -EMSGSIZE;
1104errout:
Daniel Lezcanoa18bc692008-03-07 11:14:49 -08001105 rtnl_set_sk_err(net, RTNLGRP_ND_USEROPT, err);
Pierre Ynard31910572007-10-10 21:22:05 -07001106}
1107
Thomas Graf65e9b622010-09-03 02:59:14 +00001108static inline int accept_ra(struct inet6_dev *in6_dev)
1109{
1110 /*
1111 * If forwarding is enabled, RA are not accepted unless the special
1112 * hybrid mode (accept_ra=2) is enabled.
1113 */
1114 if (in6_dev->cnf.forwarding && in6_dev->cnf.accept_ra < 2)
1115 return 0;
1116
1117 return in6_dev->cnf.accept_ra;
1118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120static void ndisc_router_discovery(struct sk_buff *skb)
1121{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001122 struct ra_msg *ra_msg = (struct ra_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct neighbour *neigh = NULL;
1124 struct inet6_dev *in6_dev;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001125 struct rt6_info *rt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 int lifetime;
1127 struct ndisc_options ndopts;
1128 int optlen;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001129 unsigned int pref = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 __u8 * opt = (__u8 *)(ra_msg + 1);
1132
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001133 optlen = (skb->tail - skb->transport_header) - sizeof(struct ra_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001135 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 ND_PRINTK2(KERN_WARNING
1137 "ICMPv6 RA: source address is not link-local.\n");
1138 return;
1139 }
1140 if (optlen < 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001141 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 "ICMPv6 RA: packet too short\n");
1143 return;
1144 }
1145
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001146#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001147 if (skb->ndisc_nodetype == NDISC_NODETYPE_HOST) {
1148 ND_PRINTK2(KERN_WARNING
1149 "ICMPv6 RA: from host or unauthorized router\n");
1150 return;
1151 }
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001152#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /*
1155 * set the RA_RECV flag in the interface
1156 */
1157
1158 in6_dev = in6_dev_get(skb->dev);
1159 if (in6_dev == NULL) {
1160 ND_PRINTK0(KERN_ERR
1161 "ICMPv6 RA: can't find inet6 device for %s.\n",
1162 skb->dev->name);
1163 return;
1164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 if (!ndisc_parse_options(opt, optlen, &ndopts)) {
1167 in6_dev_put(in6_dev);
1168 ND_PRINTK2(KERN_WARNING
1169 "ICMP6 RA: invalid ND options\n");
1170 return;
1171 }
1172
Thomas Graf65e9b622010-09-03 02:59:14 +00001173 if (!accept_ra(in6_dev))
David Ward31ce8c72009-08-29 00:04:09 -07001174 goto skip_linkparms;
1175
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001176#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001177 /* skip link-specific parameters from interior routers */
1178 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT)
1179 goto skip_linkparms;
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001180#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (in6_dev->if_flags & IF_RS_SENT) {
1183 /*
1184 * flag that an RA was received after an RS was sent
1185 * out on this interface.
1186 */
1187 in6_dev->if_flags |= IF_RA_RCVD;
1188 }
1189
1190 /*
1191 * Remember the managed/otherconf flags from most recently
1192 * received RA message (RFC 2462) -- yoshfuji
1193 */
1194 in6_dev->if_flags = (in6_dev->if_flags & ~(IF_RA_MANAGED |
1195 IF_RA_OTHERCONF)) |
1196 (ra_msg->icmph.icmp6_addrconf_managed ?
1197 IF_RA_MANAGED : 0) |
1198 (ra_msg->icmph.icmp6_addrconf_other ?
1199 IF_RA_OTHERCONF : 0);
1200
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001201 if (!in6_dev->cnf.accept_ra_defrtr)
1202 goto skip_defrtr;
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime);
1205
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001206#ifdef CONFIG_IPV6_ROUTER_PREF
1207 pref = ra_msg->icmph.icmp6_router_pref;
1208 /* 10b is handled as if it were 00b (medium) */
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08001209 if (pref == ICMPV6_ROUTER_PREF_INVALID ||
YOSHIFUJI Hideaki6d5b78c2007-06-22 16:07:04 -07001210 !in6_dev->cnf.accept_ra_rtr_pref)
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001211 pref = ICMPV6_ROUTER_PREF_MEDIUM;
1212#endif
1213
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001214 rt = rt6_get_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 if (rt)
1217 neigh = rt->rt6i_nexthop;
1218
1219 if (rt && lifetime == 0) {
1220 neigh_clone(neigh);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001221 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 rt = NULL;
1223 }
1224
1225 if (rt == NULL && lifetime) {
1226 ND_PRINTK3(KERN_DEBUG
1227 "ICMPv6 RA: adding default router.\n");
1228
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001229 rt = rt6_add_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev, pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (rt == NULL) {
1231 ND_PRINTK0(KERN_ERR
1232 "ICMPv6 RA: %s() failed to add default route.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001233 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 in6_dev_put(in6_dev);
1235 return;
1236 }
1237
1238 neigh = rt->rt6i_nexthop;
1239 if (neigh == NULL) {
1240 ND_PRINTK0(KERN_ERR
1241 "ICMPv6 RA: %s() got default router without neighbour.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001242 __func__);
Changli Gaod8d1f302010-06-10 23:31:35 -07001243 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 in6_dev_put(in6_dev);
1245 return;
1246 }
1247 neigh->flags |= NTF_ROUTER;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001248 } else if (rt) {
Pedro Ribeiro22441cf2008-10-15 15:47:49 -07001249 rt->rt6i_flags = (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
1252 if (rt)
1253 rt->rt6i_expires = jiffies + (HZ * lifetime);
1254
1255 if (ra_msg->icmph.icmp6_hop_limit) {
1256 in6_dev->cnf.hop_limit = ra_msg->icmph.icmp6_hop_limit;
1257 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001258 rt->dst.metrics[RTAX_HOPLIMIT-1] = ra_msg->icmph.icmp6_hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001261skip_defrtr:
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /*
1264 * Update Reachable Time and Retrans Timer
1265 */
1266
1267 if (in6_dev->nd_parms) {
1268 unsigned long rtime = ntohl(ra_msg->retrans_timer);
1269
1270 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/HZ) {
1271 rtime = (rtime*HZ)/1000;
1272 if (rtime < HZ/10)
1273 rtime = HZ/10;
1274 in6_dev->nd_parms->retrans_time = rtime;
1275 in6_dev->tstamp = jiffies;
1276 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1277 }
1278
1279 rtime = ntohl(ra_msg->reachable_time);
1280 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/(3*HZ)) {
1281 rtime = (rtime*HZ)/1000;
1282
1283 if (rtime < HZ/10)
1284 rtime = HZ/10;
1285
1286 if (rtime != in6_dev->nd_parms->base_reachable_time) {
1287 in6_dev->nd_parms->base_reachable_time = rtime;
1288 in6_dev->nd_parms->gc_staletime = 3 * rtime;
1289 in6_dev->nd_parms->reachable_time = neigh_rand_reach_time(rtime);
1290 in6_dev->tstamp = jiffies;
1291 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1292 }
1293 }
1294 }
1295
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001296skip_linkparms:
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 /*
1299 * Process options.
1300 */
1301
1302 if (!neigh)
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001303 neigh = __neigh_lookup(&nd_tbl, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 skb->dev, 1);
1305 if (neigh) {
1306 u8 *lladdr = NULL;
1307 if (ndopts.nd_opts_src_lladdr) {
1308 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1309 skb->dev);
1310 if (!lladdr) {
1311 ND_PRINTK2(KERN_WARNING
1312 "ICMPv6 RA: invalid link-layer address length\n");
1313 goto out;
1314 }
1315 }
1316 neigh_update(neigh, lladdr, NUD_STALE,
1317 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1318 NEIGH_UPDATE_F_OVERRIDE|
1319 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1320 NEIGH_UPDATE_F_ISROUTER);
1321 }
1322
Thomas Graf65e9b622010-09-03 02:59:14 +00001323 if (!accept_ra(in6_dev))
David Ward31ce8c72009-08-29 00:04:09 -07001324 goto out;
1325
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001326#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001327 if (in6_dev->cnf.accept_ra_rtr_pref && ndopts.nd_opts_ri) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001328 struct nd_opt_hdr *p;
1329 for (p = ndopts.nd_opts_ri;
1330 p;
1331 p = ndisc_next_option(p, ndopts.nd_opts_ri_end)) {
YOSHIFUJI Hideaki6294e002008-03-15 23:56:52 -04001332 struct route_info *ri = (struct route_info *)p;
1333#ifdef CONFIG_IPV6_NDISC_NODETYPE
1334 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT &&
1335 ri->prefix_len == 0)
1336 continue;
1337#endif
1338 if (ri->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen)
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001339 continue;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001340 rt6_route_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3,
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001341 &ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001342 }
1343 }
1344#endif
1345
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001346#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001347 /* skip link-specific ndopts from interior routers */
1348 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT)
1349 goto out;
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001350#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001351
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08001352 if (in6_dev->cnf.accept_ra_pinfo && ndopts.nd_opts_pi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 struct nd_opt_hdr *p;
1354 for (p = ndopts.nd_opts_pi;
1355 p;
1356 p = ndisc_next_option(p, ndopts.nd_opts_pi_end)) {
1357 addrconf_prefix_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3);
1358 }
1359 }
1360
1361 if (ndopts.nd_opts_mtu) {
Al Viroe69a4adc2006-11-14 20:56:00 -08001362 __be32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 u32 mtu;
1364
Al Viroe69a4adc2006-11-14 20:56:00 -08001365 memcpy(&n, ((u8*)(ndopts.nd_opts_mtu+1))+2, sizeof(mtu));
1366 mtu = ntohl(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 if (mtu < IPV6_MIN_MTU || mtu > skb->dev->mtu) {
1369 ND_PRINTK2(KERN_WARNING
1370 "ICMPv6 RA: invalid mtu: %d\n",
1371 mtu);
1372 } else if (in6_dev->cnf.mtu6 != mtu) {
1373 in6_dev->cnf.mtu6 = mtu;
1374
1375 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001376 rt->dst.metrics[RTAX_MTU-1] = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 rt6_mtu_change(skb->dev, mtu);
1379 }
1380 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001381
Pierre Ynard31910572007-10-10 21:22:05 -07001382 if (ndopts.nd_useropts) {
YOSHIFUJI Hideaki61cf46ad2008-01-22 17:32:53 +09001383 struct nd_opt_hdr *p;
1384 for (p = ndopts.nd_useropts;
1385 p;
1386 p = ndisc_next_useropt(p, ndopts.nd_useropts_end)) {
1387 ndisc_ra_useropt(skb, p);
Pierre Ynard31910572007-10-10 21:22:05 -07001388 }
1389 }
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (ndopts.nd_opts_tgt_lladdr || ndopts.nd_opts_rh) {
1392 ND_PRINTK2(KERN_WARNING
1393 "ICMPv6 RA: invalid RA options");
1394 }
1395out:
1396 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001397 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 else if (neigh)
1399 neigh_release(neigh);
1400 in6_dev_put(in6_dev);
1401}
1402
1403static void ndisc_redirect_rcv(struct sk_buff *skb)
1404{
1405 struct inet6_dev *in6_dev;
1406 struct icmp6hdr *icmph;
1407 struct in6_addr *dest;
1408 struct in6_addr *target; /* new first hop to destination */
1409 struct neighbour *neigh;
1410 int on_link = 0;
1411 struct ndisc_options ndopts;
1412 int optlen;
1413 u8 *lladdr = NULL;
1414
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001415#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001416 switch (skb->ndisc_nodetype) {
1417 case NDISC_NODETYPE_HOST:
1418 case NDISC_NODETYPE_NODEFAULT:
1419 ND_PRINTK2(KERN_WARNING
1420 "ICMPv6 Redirect: from host or unauthorized router\n");
1421 return;
1422 }
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001423#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001424
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001425 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 ND_PRINTK2(KERN_WARNING
1427 "ICMPv6 Redirect: source address is not link-local.\n");
1428 return;
1429 }
1430
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001431 optlen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1433
1434 if (optlen < 0) {
1435 ND_PRINTK2(KERN_WARNING
1436 "ICMPv6 Redirect: packet too short\n");
1437 return;
1438 }
1439
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -03001440 icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 target = (struct in6_addr *) (icmph + 1);
1442 dest = target + 1;
1443
1444 if (ipv6_addr_is_multicast(dest)) {
1445 ND_PRINTK2(KERN_WARNING
1446 "ICMPv6 Redirect: destination address is multicast.\n");
1447 return;
1448 }
1449
1450 if (ipv6_addr_equal(dest, target)) {
1451 on_link = 1;
Brian Haleybf0b48d2007-10-08 00:12:05 -07001452 } else if (ipv6_addr_type(target) !=
1453 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001454 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001455 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return;
1457 }
1458
1459 in6_dev = in6_dev_get(skb->dev);
1460 if (!in6_dev)
1461 return;
1462 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) {
1463 in6_dev_put(in6_dev);
1464 return;
1465 }
1466
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001467 /* RFC2461 8.1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 * The IP source address of the Redirect MUST be the same as the current
1469 * first-hop router for the specified ICMP Destination Address.
1470 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) {
1473 ND_PRINTK2(KERN_WARNING
1474 "ICMPv6 Redirect: invalid ND options\n");
1475 in6_dev_put(in6_dev);
1476 return;
1477 }
1478 if (ndopts.nd_opts_tgt_lladdr) {
1479 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1480 skb->dev);
1481 if (!lladdr) {
1482 ND_PRINTK2(KERN_WARNING
1483 "ICMPv6 Redirect: invalid link-layer address length\n");
1484 in6_dev_put(in6_dev);
1485 return;
1486 }
1487 }
1488
1489 neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
1490 if (neigh) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001491 rt6_redirect(dest, &ipv6_hdr(skb)->daddr,
1492 &ipv6_hdr(skb)->saddr, neigh, lladdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 on_link);
1494 neigh_release(neigh);
1495 }
1496 in6_dev_put(in6_dev);
1497}
1498
1499void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001500 const struct in6_addr *target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001502 struct net_device *dev = skb->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001503 struct net *net = dev_net(dev);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001504 struct sock *sk = net->ipv6.ndisc_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 int len = sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1506 struct sk_buff *buff;
1507 struct icmp6hdr *icmph;
1508 struct in6_addr saddr_buf;
1509 struct in6_addr *addrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct rt6_info *rt;
1511 struct dst_entry *dst;
1512 struct inet6_dev *idev;
1513 struct flowi fl;
1514 u8 *opt;
1515 int rd_len;
1516 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 u8 ha_buf[MAX_ADDR_LEN], *ha = NULL;
1518
Neil Horman95c385b2007-04-25 17:08:10 -07001519 if (ipv6_get_lladdr(dev, &saddr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 ND_PRINTK2(KERN_WARNING
1521 "ICMPv6 Redirect: no link-local address on %s\n",
1522 dev->name);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001523 return;
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001526 if (!ipv6_addr_equal(&ipv6_hdr(skb)->daddr, target) &&
Brian Haleybf0b48d2007-10-08 00:12:05 -07001527 ipv6_addr_type(target) != (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
Li Yewang29556522007-01-30 14:33:20 -08001528 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001529 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Li Yewang29556522007-01-30 14:33:20 -08001530 return;
1531 }
1532
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001533 icmpv6_flow_init(sk, &fl, NDISC_REDIRECT,
YOSHIFUJI Hideaki95e41e92007-12-06 15:43:30 -08001534 &saddr_buf, &ipv6_hdr(skb)->saddr, dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001536 dst = ip6_route_output(net, NULL, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (dst == NULL)
1538 return;
1539
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001540 err = xfrm_lookup(net, &dst, &fl, NULL, 0);
Patrick McHardye104411b2005-09-08 15:11:55 -07001541 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 rt = (struct rt6_info *) dst;
1545
1546 if (rt->rt6i_flags & RTF_GATEWAY) {
1547 ND_PRINTK2(KERN_WARNING
1548 "ICMPv6 Redirect: destination is not a neighbour.\n");
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001549 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001551 if (!xrlim_allow(dst, 1*HZ))
1552 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 if (dev->addr_len) {
1555 read_lock_bh(&neigh->lock);
1556 if (neigh->nud_state & NUD_VALID) {
1557 memcpy(ha_buf, neigh->ha, dev->addr_len);
1558 read_unlock_bh(&neigh->lock);
1559 ha = ha_buf;
1560 len += ndisc_opt_addr_space(dev);
1561 } else
1562 read_unlock_bh(&neigh->lock);
1563 }
1564
1565 rd_len = min_t(unsigned int,
1566 IPV6_MIN_MTU-sizeof(struct ipv6hdr)-len, skb->len + 8);
1567 rd_len &= ~0x7;
1568 len += rd_len;
1569
David S. Millerd54a81d2006-12-02 21:00:06 -08001570 buff = sock_alloc_send_skb(sk,
1571 (MAX_HEADER + sizeof(struct ipv6hdr) +
Johannes Bergf5184d22008-05-12 20:48:31 -07001572 len + LL_ALLOCATED_SPACE(dev)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 1, &err);
1574 if (buff == NULL) {
1575 ND_PRINTK0(KERN_ERR
Brian Haleydae9de82009-06-02 00:20:26 -07001576 "ICMPv6 Redirect: %s() failed to allocate an skb, err=%d.\n",
1577 __func__, err);
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001578 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 skb_reserve(buff, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001582 ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 IPPROTO_ICMPV6, len);
1584
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001585 skb_set_transport_header(buff, skb_tail_pointer(buff) - buff->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001586 skb_put(buff, len);
1587 icmph = icmp6_hdr(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 memset(icmph, 0, sizeof(struct icmp6hdr));
1590 icmph->icmp6_type = NDISC_REDIRECT;
1591
1592 /*
1593 * copy target and destination addresses
1594 */
1595
1596 addrp = (struct in6_addr *)(icmph + 1);
1597 ipv6_addr_copy(addrp, target);
1598 addrp++;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001599 ipv6_addr_copy(addrp, &ipv6_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 opt = (u8*) (addrp + 1);
1602
1603 /*
1604 * include target_address option
1605 */
1606
1607 if (ha)
1608 opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, ha,
1609 dev->addr_len, dev->type);
1610
1611 /*
1612 * build redirect option and copy skb over to the new packet.
1613 */
1614
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001615 memset(opt, 0, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *(opt++) = ND_OPT_REDIRECT_HDR;
1617 *(opt++) = (rd_len >> 3);
1618 opt += 6;
1619
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001620 memcpy(opt, ipv6_hdr(skb), rd_len - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001622 icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 len, IPPROTO_ICMPV6,
Joe Perches07f07572008-11-19 15:44:53 -08001624 csum_partial(icmph, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Eric Dumazetadf30902009-06-02 05:19:30 +00001626 skb_dst_set(buff, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 idev = in6_dev_get(dst->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001628 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001629 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001630 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07001632 ICMP6MSGOUT_INC_STATS(net, idev, NDISC_REDIRECT);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07001633 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635
1636 if (likely(idev != NULL))
1637 in6_dev_put(idev);
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001638 return;
1639
1640release:
1641 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644static void pndisc_redo(struct sk_buff *skb)
1645{
YOSHIFUJI Hideaki140e26fc2005-10-05 12:11:41 -07001646 ndisc_recv_ns(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 kfree_skb(skb);
1648}
1649
1650int ndisc_rcv(struct sk_buff *skb)
1651{
1652 struct nd_msg *msg;
1653
1654 if (!pskb_may_pull(skb, skb->len))
1655 return 0;
1656
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001657 msg = (struct nd_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001659 __skb_push(skb, skb->data - skb_transport_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001661 if (ipv6_hdr(skb)->hop_limit != 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ND_PRINTK2(KERN_WARNING
1663 "ICMPv6 NDISC: invalid hop-limit: %d\n",
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001664 ipv6_hdr(skb)->hop_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return 0;
1666 }
1667
1668 if (msg->icmph.icmp6_code != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001669 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 "ICMPv6 NDISC: invalid ICMPv6 code: %d\n",
1671 msg->icmph.icmp6_code);
1672 return 0;
1673 }
1674
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001675 memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 switch (msg->icmph.icmp6_type) {
1678 case NDISC_NEIGHBOUR_SOLICITATION:
1679 ndisc_recv_ns(skb);
1680 break;
1681
1682 case NDISC_NEIGHBOUR_ADVERTISEMENT:
1683 ndisc_recv_na(skb);
1684 break;
1685
1686 case NDISC_ROUTER_SOLICITATION:
1687 ndisc_recv_rs(skb);
1688 break;
1689
1690 case NDISC_ROUTER_ADVERTISEMENT:
1691 ndisc_router_discovery(skb);
1692 break;
1693
1694 case NDISC_REDIRECT:
1695 ndisc_redirect_rcv(skb);
1696 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 return 0;
1700}
1701
1702static int ndisc_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1703{
1704 struct net_device *dev = ptr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001705 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 switch (event) {
1708 case NETDEV_CHANGEADDR:
1709 neigh_changeaddr(&nd_tbl, dev);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001710 fib6_run_gc(~0UL, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 break;
1712 case NETDEV_DOWN:
1713 neigh_ifdown(&nd_tbl, dev);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001714 fib6_run_gc(~0UL, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 break;
1716 default:
1717 break;
1718 }
1719
1720 return NOTIFY_DONE;
1721}
1722
1723static struct notifier_block ndisc_netdev_notifier = {
1724 .notifier_call = ndisc_netdev_event,
1725};
1726
1727#ifdef CONFIG_SYSCTL
1728static void ndisc_warn_deprecated_sysctl(struct ctl_table *ctl,
1729 const char *func, const char *dev_name)
1730{
1731 static char warncomm[TASK_COMM_LEN];
1732 static int warned;
1733 if (strcmp(warncomm, current->comm) && warned < 5) {
1734 strcpy(warncomm, current->comm);
1735 printk(KERN_WARNING
1736 "process `%s' is using deprecated sysctl (%s) "
1737 "net.ipv6.neigh.%s.%s; "
1738 "Use net.ipv6.neigh.%s.%s_ms "
1739 "instead.\n",
1740 warncomm, func,
1741 dev_name, ctl->procname,
1742 dev_name, ctl->procname);
1743 warned++;
1744 }
1745}
1746
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001747int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl, int write, void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
1749 struct net_device *dev = ctl->extra1;
1750 struct inet6_dev *idev;
1751 int ret;
1752
Eric W. Biedermand12af672007-10-18 03:05:25 -07001753 if ((strcmp(ctl->procname, "retrans_time") == 0) ||
1754 (strcmp(ctl->procname, "base_reachable_time") == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 ndisc_warn_deprecated_sysctl(ctl, "syscall", dev ? dev->name : "default");
1756
Eric W. Biedermand12af672007-10-18 03:05:25 -07001757 if (strcmp(ctl->procname, "retrans_time") == 0)
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001758 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001759
1760 else if (strcmp(ctl->procname, "base_reachable_time") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 ret = proc_dointvec_jiffies(ctl, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001762 buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001763
1764 else if ((strcmp(ctl->procname, "retrans_time_ms") == 0) ||
YOSHIFUJI Hideakiad02ac12007-10-29 01:32:23 -07001765 (strcmp(ctl->procname, "base_reachable_time_ms") == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 ret = proc_dointvec_ms_jiffies(ctl, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001767 buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001768 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 ret = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 if (write && ret == 0 && dev && (idev = in6_dev_get(dev)) != NULL) {
Eric W. Biedermand12af672007-10-18 03:05:25 -07001772 if (ctl->data == &idev->nd_parms->base_reachable_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1774 idev->tstamp = jiffies;
1775 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1776 in6_dev_put(idev);
1777 }
1778 return ret;
1779}
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782#endif
1783
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001784static int __net_init ndisc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
1786 struct ipv6_pinfo *np;
1787 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001788 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001790 err = inet_ctl_sock_create(&sk, PF_INET6,
1791 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (err < 0) {
1793 ND_PRINTK0(KERN_ERR
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001794 "ICMPv6 NDISC: Failed to initialize the control socket (err %d).\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return err;
1797 }
1798
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001799 net->ipv6.ndisc_sk = sk;
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 np->hop_limit = 255;
1803 /* Do not loopback ndisc messages */
1804 np->mc_loop = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001806 return 0;
1807}
1808
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001809static void __net_exit ndisc_net_exit(struct net *net)
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001810{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001811 inet_ctl_sock_destroy(net->ipv6.ndisc_sk);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001812}
1813
1814static struct pernet_operations ndisc_net_ops = {
1815 .init = ndisc_net_init,
1816 .exit = ndisc_net_exit,
1817};
1818
1819int __init ndisc_init(void)
1820{
1821 int err;
1822
1823 err = register_pernet_subsys(&ndisc_net_ops);
1824 if (err)
1825 return err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001826 /*
1827 * Initialize the neighbour table
1828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 neigh_table_init(&nd_tbl);
1830
1831#ifdef CONFIG_SYSCTL
Eric W. Biederman54716e32010-02-14 03:27:03 +00001832 err = neigh_sysctl_register(NULL, &nd_tbl.parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001833 &ndisc_ifinfo_sysctl_change);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001834 if (err)
1835 goto out_unregister_pernet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836#endif
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001837 err = register_netdevice_notifier(&ndisc_netdev_notifier);
1838 if (err)
1839 goto out_unregister_sysctl;
1840out:
1841 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001843out_unregister_sysctl:
1844#ifdef CONFIG_SYSCTL
1845 neigh_sysctl_unregister(&nd_tbl.parms);
1846out_unregister_pernet:
1847#endif
1848 unregister_pernet_subsys(&ndisc_net_ops);
1849 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
1852void ndisc_cleanup(void)
1853{
Dmitry Mishin36f73d02006-11-03 16:08:19 -08001854 unregister_netdevice_notifier(&ndisc_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855#ifdef CONFIG_SYSCTL
1856 neigh_sysctl_unregister(&nd_tbl.parms);
1857#endif
1858 neigh_table_clear(&nd_tbl);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001859 unregister_pernet_subsys(&ndisc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}