blob: 5b596659177cbbd8bd5e6c2db62b803af4ca1817 [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 *
18 * Lars Fenneberg : fixed MTU setting on receipt
19 * of an RA.
20 *
21 * Janos Farkas : kmalloc failure checks
22 * Alexey Kuznetsov : state machine reworked
23 * and moved to net/core.
24 * Pekka Savola : RFC2461 validation
25 * YOSHIFUJI Hideaki @USAGI : Verify ND options properly
26 */
27
28/* Set to 3 to get tracing... */
29#define ND_DEBUG 1
30
31#define ND_PRINTK(fmt, args...) do { if (net_ratelimit()) { printk(fmt, ## args); } } while(0)
32#define ND_NOPRINTK(x...) do { ; } while(0)
33#define ND_PRINTK0 ND_PRINTK
34#define ND_PRINTK1 ND_NOPRINTK
35#define ND_PRINTK2 ND_NOPRINTK
36#define ND_PRINTK3 ND_NOPRINTK
37#if ND_DEBUG >= 1
38#undef ND_PRINTK1
39#define ND_PRINTK1 ND_PRINTK
40#endif
41#if ND_DEBUG >= 2
42#undef ND_PRINTK2
43#define ND_PRINTK2 ND_PRINTK
44#endif
45#if ND_DEBUG >= 3
46#undef ND_PRINTK3
47#define ND_PRINTK3 ND_PRINTK
48#endif
49
50#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/errno.h>
52#include <linux/types.h>
53#include <linux/socket.h>
54#include <linux/sockios.h>
55#include <linux/sched.h>
56#include <linux/net.h>
57#include <linux/in6.h>
58#include <linux/route.h>
59#include <linux/init.h>
60#include <linux/rcupdate.h>
61#ifdef CONFIG_SYSCTL
62#include <linux/sysctl.h>
63#endif
64
Thomas Graf18237302006-08-04 23:04:54 -070065#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/if_arp.h>
67#include <linux/ipv6.h>
68#include <linux/icmpv6.h>
69#include <linux/jhash.h>
70
71#include <net/sock.h>
72#include <net/snmp.h>
73
74#include <net/ipv6.h>
75#include <net/protocol.h>
76#include <net/ndisc.h>
77#include <net/ip6_route.h>
78#include <net/addrconf.h>
79#include <net/icmp.h>
80
81#include <net/flow.h>
82#include <net/ip6_checksum.h>
83#include <linux/proc_fs.h>
84
85#include <linux/netfilter.h>
86#include <linux/netfilter_ipv6.h>
87
88static struct socket *ndisc_socket;
89
90static u32 ndisc_hash(const void *pkey, const struct net_device *dev);
91static int ndisc_constructor(struct neighbour *neigh);
92static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb);
93static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb);
94static int pndisc_constructor(struct pneigh_entry *n);
95static void pndisc_destructor(struct pneigh_entry *n);
96static void pndisc_redo(struct sk_buff *skb);
97
98static struct neigh_ops ndisc_generic_ops = {
99 .family = AF_INET6,
100 .solicit = ndisc_solicit,
101 .error_report = ndisc_error_report,
102 .output = neigh_resolve_output,
103 .connected_output = neigh_connected_output,
104 .hh_output = dev_queue_xmit,
105 .queue_xmit = dev_queue_xmit,
106};
107
108static struct neigh_ops ndisc_hh_ops = {
109 .family = AF_INET6,
110 .solicit = ndisc_solicit,
111 .error_report = ndisc_error_report,
112 .output = neigh_resolve_output,
113 .connected_output = neigh_resolve_output,
114 .hh_output = dev_queue_xmit,
115 .queue_xmit = dev_queue_xmit,
116};
117
118
119static struct neigh_ops ndisc_direct_ops = {
120 .family = AF_INET6,
121 .output = dev_queue_xmit,
122 .connected_output = dev_queue_xmit,
123 .hh_output = dev_queue_xmit,
124 .queue_xmit = dev_queue_xmit,
125};
126
127struct neigh_table nd_tbl = {
128 .family = AF_INET6,
129 .entry_size = sizeof(struct neighbour) + sizeof(struct in6_addr),
130 .key_len = sizeof(struct in6_addr),
131 .hash = ndisc_hash,
132 .constructor = ndisc_constructor,
133 .pconstructor = pndisc_constructor,
134 .pdestructor = pndisc_destructor,
135 .proxy_redo = pndisc_redo,
136 .id = "ndisc_cache",
137 .parms = {
138 .tbl = &nd_tbl,
139 .base_reachable_time = 30 * HZ,
140 .retrans_time = 1 * HZ,
141 .gc_staletime = 60 * HZ,
142 .reachable_time = 30 * HZ,
143 .delay_probe_time = 5 * HZ,
144 .queue_len = 3,
145 .ucast_probes = 3,
146 .mcast_probes = 3,
147 .anycast_delay = 1 * HZ,
148 .proxy_delay = (8 * HZ) / 10,
149 .proxy_qlen = 64,
150 },
151 .gc_interval = 30 * HZ,
152 .gc_thresh1 = 128,
153 .gc_thresh2 = 512,
154 .gc_thresh3 = 1024,
155};
156
157/* ND options */
158struct ndisc_options {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800159 struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX];
160#ifdef CONFIG_IPV6_ROUTE_INFO
161 struct nd_opt_hdr *nd_opts_ri;
162 struct nd_opt_hdr *nd_opts_ri_end;
163#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
166#define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
167#define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
168#define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
169#define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
170#define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
171#define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
172
173#define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
174
175/*
176 * Return the padding between the option length and the start of the
177 * link addr. Currently only IP-over-InfiniBand needs this, although
178 * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
179 * also need a pad of 2.
180 */
181static int ndisc_addr_option_pad(unsigned short type)
182{
183 switch (type) {
184 case ARPHRD_INFINIBAND: return 2;
185 default: return 0;
186 }
187}
188
189static inline int ndisc_opt_addr_space(struct net_device *dev)
190{
191 return NDISC_OPT_SPACE(dev->addr_len + ndisc_addr_option_pad(dev->type));
192}
193
194static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len,
195 unsigned short addr_type)
196{
197 int space = NDISC_OPT_SPACE(data_len);
198 int pad = ndisc_addr_option_pad(addr_type);
199
200 opt[0] = type;
201 opt[1] = space>>3;
202
203 memset(opt + 2, 0, pad);
204 opt += pad;
205 space -= pad;
206
207 memcpy(opt+2, data, data_len);
208 data_len += 2;
209 opt += data_len;
210 if ((space -= data_len) > 0)
211 memset(opt, 0, space);
212 return opt + space;
213}
214
215static struct nd_opt_hdr *ndisc_next_option(struct nd_opt_hdr *cur,
216 struct nd_opt_hdr *end)
217{
218 int type;
219 if (!cur || !end || cur >= end)
220 return NULL;
221 type = cur->nd_opt_type;
222 do {
223 cur = ((void *)cur) + (cur->nd_opt_len << 3);
224 } while(cur < end && cur->nd_opt_type != type);
225 return (cur <= end && cur->nd_opt_type == type ? cur : NULL);
226}
227
228static struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
229 struct ndisc_options *ndopts)
230{
231 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)opt;
232
233 if (!nd_opt || opt_len < 0 || !ndopts)
234 return NULL;
235 memset(ndopts, 0, sizeof(*ndopts));
236 while (opt_len) {
237 int l;
238 if (opt_len < sizeof(struct nd_opt_hdr))
239 return NULL;
240 l = nd_opt->nd_opt_len << 3;
241 if (opt_len < l || l == 0)
242 return NULL;
243 switch (nd_opt->nd_opt_type) {
244 case ND_OPT_SOURCE_LL_ADDR:
245 case ND_OPT_TARGET_LL_ADDR:
246 case ND_OPT_MTU:
247 case ND_OPT_REDIRECT_HDR:
248 if (ndopts->nd_opt_array[nd_opt->nd_opt_type]) {
249 ND_PRINTK2(KERN_WARNING
250 "%s(): duplicated ND6 option found: type=%d\n",
251 __FUNCTION__,
252 nd_opt->nd_opt_type);
253 } else {
254 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
255 }
256 break;
257 case ND_OPT_PREFIX_INFO:
258 ndopts->nd_opts_pi_end = nd_opt;
259 if (ndopts->nd_opt_array[nd_opt->nd_opt_type] == 0)
260 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
261 break;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800262#ifdef CONFIG_IPV6_ROUTE_INFO
263 case ND_OPT_ROUTE_INFO:
264 ndopts->nd_opts_ri_end = nd_opt;
265 if (!ndopts->nd_opts_ri)
266 ndopts->nd_opts_ri = nd_opt;
267 break;
268#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 default:
270 /*
271 * Unknown options must be silently ignored,
272 * to accommodate future extension to the protocol.
273 */
274 ND_PRINTK2(KERN_NOTICE
275 "%s(): ignored unsupported option; type=%d, len=%d\n",
276 __FUNCTION__,
277 nd_opt->nd_opt_type, nd_opt->nd_opt_len);
278 }
279 opt_len -= l;
280 nd_opt = ((void *)nd_opt) + l;
281 }
282 return ndopts;
283}
284
285static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
286 struct net_device *dev)
287{
288 u8 *lladdr = (u8 *)(p + 1);
289 int lladdrlen = p->nd_opt_len << 3;
290 int prepad = ndisc_addr_option_pad(dev->type);
291 if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))
292 return NULL;
293 return (lladdr + prepad);
294}
295
296int ndisc_mc_map(struct in6_addr *addr, char *buf, struct net_device *dev, int dir)
297{
298 switch (dev->type) {
299 case ARPHRD_ETHER:
300 case ARPHRD_IEEE802: /* Not sure. Check it later. --ANK */
301 case ARPHRD_FDDI:
302 ipv6_eth_mc_map(addr, buf);
303 return 0;
304 case ARPHRD_IEEE802_TR:
305 ipv6_tr_mc_map(addr,buf);
306 return 0;
307 case ARPHRD_ARCNET:
308 ipv6_arcnet_mc_map(addr, buf);
309 return 0;
310 case ARPHRD_INFINIBAND:
311 ipv6_ib_mc_map(addr, buf);
312 return 0;
313 default:
314 if (dir) {
315 memcpy(buf, dev->broadcast, dev->addr_len);
316 return 0;
317 }
318 }
319 return -EINVAL;
320}
321
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900322EXPORT_SYMBOL(ndisc_mc_map);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static u32 ndisc_hash(const void *pkey, const struct net_device *dev)
325{
326 const u32 *p32 = pkey;
327 u32 addr_hash, i;
328
329 addr_hash = 0;
330 for (i = 0; i < (sizeof(struct in6_addr) / sizeof(u32)); i++)
331 addr_hash ^= *p32++;
332
333 return jhash_2words(addr_hash, dev->ifindex, nd_tbl.hash_rnd);
334}
335
336static int ndisc_constructor(struct neighbour *neigh)
337{
338 struct in6_addr *addr = (struct in6_addr*)&neigh->primary_key;
339 struct net_device *dev = neigh->dev;
340 struct inet6_dev *in6_dev;
341 struct neigh_parms *parms;
342 int is_multicast = ipv6_addr_is_multicast(addr);
343
344 rcu_read_lock();
345 in6_dev = in6_dev_get(dev);
346 if (in6_dev == NULL) {
347 rcu_read_unlock();
348 return -EINVAL;
349 }
350
351 parms = in6_dev->nd_parms;
352 __neigh_parms_put(neigh->parms);
353 neigh->parms = neigh_parms_clone(parms);
354 rcu_read_unlock();
355
356 neigh->type = is_multicast ? RTN_MULTICAST : RTN_UNICAST;
357 if (dev->hard_header == NULL) {
358 neigh->nud_state = NUD_NOARP;
359 neigh->ops = &ndisc_direct_ops;
360 neigh->output = neigh->ops->queue_xmit;
361 } else {
362 if (is_multicast) {
363 neigh->nud_state = NUD_NOARP;
364 ndisc_mc_map(addr, neigh->ha, dev, 1);
365 } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
366 neigh->nud_state = NUD_NOARP;
367 memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
368 if (dev->flags&IFF_LOOPBACK)
369 neigh->type = RTN_LOCAL;
370 } else if (dev->flags&IFF_POINTOPOINT) {
371 neigh->nud_state = NUD_NOARP;
372 memcpy(neigh->ha, dev->broadcast, dev->addr_len);
373 }
374 if (dev->hard_header_cache)
375 neigh->ops = &ndisc_hh_ops;
376 else
377 neigh->ops = &ndisc_generic_ops;
378 if (neigh->nud_state&NUD_VALID)
379 neigh->output = neigh->ops->connected_output;
380 else
381 neigh->output = neigh->ops->output;
382 }
383 in6_dev_put(in6_dev);
384 return 0;
385}
386
387static int pndisc_constructor(struct pneigh_entry *n)
388{
389 struct in6_addr *addr = (struct in6_addr*)&n->key;
390 struct in6_addr maddr;
391 struct net_device *dev = n->dev;
392
393 if (dev == NULL || __in6_dev_get(dev) == NULL)
394 return -EINVAL;
395 addrconf_addr_solict_mult(addr, &maddr);
396 ipv6_dev_mc_inc(dev, &maddr);
397 return 0;
398}
399
400static void pndisc_destructor(struct pneigh_entry *n)
401{
402 struct in6_addr *addr = (struct in6_addr*)&n->key;
403 struct in6_addr maddr;
404 struct net_device *dev = n->dev;
405
406 if (dev == NULL || __in6_dev_get(dev) == NULL)
407 return;
408 addrconf_addr_solict_mult(addr, &maddr);
409 ipv6_dev_mc_dec(dev, &maddr);
410}
411
412/*
413 * Send a Neighbour Advertisement
414 */
415
416static inline void ndisc_flow_init(struct flowi *fl, u8 type,
YOSHIFUJI Hideakiaf184762006-08-23 17:18:57 -0700417 struct in6_addr *saddr, struct in6_addr *daddr,
418 int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 memset(fl, 0, sizeof(*fl));
421 ipv6_addr_copy(&fl->fl6_src, saddr);
422 ipv6_addr_copy(&fl->fl6_dst, daddr);
423 fl->proto = IPPROTO_ICMPV6;
424 fl->fl_icmp_type = type;
425 fl->fl_icmp_code = 0;
YOSHIFUJI Hideakiaf184762006-08-23 17:18:57 -0700426 fl->oif = oif;
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700427 security_sk_classify_flow(ndisc_socket->sk, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900430static void __ndisc_send(struct net_device *dev,
431 struct neighbour *neigh,
432 struct in6_addr *daddr, struct in6_addr *saddr,
433 struct icmp6hdr *icmp6h, struct in6_addr *target,
434 int llinfo, int icmp6_mib_outnd)
435{
436 struct flowi fl;
437 struct dst_entry *dst;
438 struct sock *sk = ndisc_socket->sk;
439 struct sk_buff *skb;
440 struct icmp6hdr *hdr;
441 struct inet6_dev *idev;
442 int len;
443 int err;
444 u8 *opt;
445
446 ndisc_flow_init(&fl, icmp6h->icmp6_type, saddr, daddr,
447 dev->ifindex);
448
449 dst = ndisc_dst_alloc(dev, neigh, daddr, ip6_output);
450 if (!dst)
451 return;
452
453 err = xfrm_lookup(&dst, &fl, NULL, 0);
454 if (err < 0)
455 return;
456
457 if (!dev->addr_len)
458 llinfo = 0;
459
460 len = sizeof(struct icmp6hdr) + (target ? sizeof(*target) : 0);
461 if (llinfo)
462 len += ndisc_opt_addr_space(dev);
463
464 skb = sock_alloc_send_skb(sk,
465 (MAX_HEADER + sizeof(struct ipv6hdr) +
466 len + LL_RESERVED_SPACE(dev)),
467 1, &err);
468 if (!skb) {
469 ND_PRINTK0(KERN_ERR
470 "ICMPv6 ND: %s() failed to allocate an skb.\n",
471 __FUNCTION__);
472 dst_release(dst);
473 return;
474 }
475
476 skb_reserve(skb, LL_RESERVED_SPACE(dev));
477 ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
478
479 skb->transport_header = skb->tail;
480 skb_put(skb, len);
481
482 hdr = (struct icmp6hdr *)skb_transport_header(skb);
483 memcpy(hdr, icmp6h, sizeof(*hdr));
484
485 opt = skb_transport_header(skb) + sizeof(struct icmp6hdr);
486 if (target) {
487 ipv6_addr_copy((struct in6_addr *)opt, target);
488 opt += sizeof(*target);
489 }
490
491 if (llinfo)
492 ndisc_fill_addr_option(opt, llinfo, dev->dev_addr,
493 dev->addr_len, dev->type);
494
495 hdr->icmp6_cksum = csum_ipv6_magic(saddr, daddr, len,
496 IPPROTO_ICMPV6,
497 csum_partial((__u8 *) hdr,
498 len, 0));
499
500 skb->dst = dst;
501
502 idev = in6_dev_get(dst->dev);
503 IP6_INC_STATS(idev, IPSTATS_MIB_OUTREQUESTS);
504
505 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, dst->dev, dst_output);
506 if (!err) {
507 ICMP6_INC_STATS(idev, icmp6_mib_outnd);
508 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
509 }
510
511 if (likely(idev != NULL))
512 in6_dev_put(idev);
513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515static void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
516 struct in6_addr *daddr, struct in6_addr *solicited_addr,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900517 int router, int solicited, int override, int inc_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 struct in6_addr tmpaddr;
520 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct in6_addr *src_addr;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900522 struct icmp6hdr icmp6h = {
523 .icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT,
524 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 /* for anycast or proxy, solicited_addr != src_addr */
527 ifp = ipv6_get_ifaddr(solicited_addr, dev, 1);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900528 if (ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 src_addr = solicited_addr;
Neil Horman95c385b2007-04-25 17:08:10 -0700530 if (ifp->flags & IFA_F_OPTIMISTIC)
531 override = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 in6_ifa_put(ifp);
533 } else {
534 if (ipv6_dev_get_saddr(dev, daddr, &tmpaddr))
535 return;
536 src_addr = &tmpaddr;
537 }
538
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900539 icmp6h.icmp6_router = router;
540 icmp6h.icmp6_solicited = solicited;
541 icmp6h.icmp6_override = override;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900543 __ndisc_send(dev, neigh, daddr, src_addr,
544 &icmp6h, solicited_addr,
545 inc_opt ? ND_OPT_TARGET_LL_ADDR : 0,
546 ICMP6_MIB_OUTNEIGHBORADVERTISEMENTS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900547}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
550 struct in6_addr *solicit,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900551 struct in6_addr *daddr, struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct in6_addr addr_buf;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900554 struct icmp6hdr icmp6h = {
555 .icmp6_type = NDISC_NEIGHBOUR_SOLICITATION,
556 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (saddr == NULL) {
Neil Horman95c385b2007-04-25 17:08:10 -0700559 if (ipv6_get_lladdr(dev, &addr_buf,
560 (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return;
562 saddr = &addr_buf;
563 }
564
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900565 __ndisc_send(dev, neigh, daddr, saddr,
566 &icmp6h, solicit,
567 !ipv6_addr_any(saddr) ? ND_OPT_SOURCE_LL_ADDR : 0,
568 ICMP6_MIB_OUTNEIGHBORSOLICITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571void ndisc_send_rs(struct net_device *dev, struct in6_addr *saddr,
572 struct in6_addr *daddr)
573{
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900574 struct icmp6hdr icmp6h = {
575 .icmp6_type = NDISC_ROUTER_SOLICITATION,
576 };
Neil Horman95c385b2007-04-25 17:08:10 -0700577 int send_sllao = dev->addr_len;
Neil Horman95c385b2007-04-25 17:08:10 -0700578
579#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
580 /*
581 * According to section 2.2 of RFC 4429, we must not
582 * send router solicitations with a sllao from
583 * optimistic addresses, but we may send the solicitation
584 * if we don't include the sllao. So here we check
585 * if our address is optimistic, and if so, we
586 * supress the inclusion of the sllao.
587 */
588 if (send_sllao) {
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900589 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(saddr, dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700590 if (ifp) {
591 if (ifp->flags & IFA_F_OPTIMISTIC) {
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900592 send_sllao = 0;
Neil Horman95c385b2007-04-25 17:08:10 -0700593 }
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900594 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700595 } else {
596 send_sllao = 0;
597 }
598 }
599#endif
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900600 __ndisc_send(dev, NULL, daddr, saddr,
601 &icmp6h, NULL,
602 send_sllao ? ND_OPT_SOURCE_LL_ADDR : 0,
603 ICMP6_MIB_OUTROUTERSOLICITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb)
608{
609 /*
610 * "The sender MUST return an ICMP
611 * destination unreachable"
612 */
613 dst_link_failure(skb);
614 kfree_skb(skb);
615}
616
617/* Called with locked neigh: either read or both */
618
619static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
620{
621 struct in6_addr *saddr = NULL;
622 struct in6_addr mcaddr;
623 struct net_device *dev = neigh->dev;
624 struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
625 int probes = atomic_read(&neigh->probes);
626
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700627 if (skb && ipv6_chk_addr(&ipv6_hdr(skb)->saddr, dev, 1))
628 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 if ((probes -= neigh->parms->ucast_probes) < 0) {
631 if (!(neigh->nud_state & NUD_VALID)) {
632 ND_PRINTK1(KERN_DEBUG
633 "%s(): trying to ucast probe in NUD_INVALID: "
Joe Perches46b86a22006-01-13 14:29:07 -0800634 NIP6_FMT "\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 __FUNCTION__,
636 NIP6(*target));
637 }
638 ndisc_send_ns(dev, neigh, target, target, saddr);
639 } else if ((probes -= neigh->parms->app_probes) < 0) {
640#ifdef CONFIG_ARPD
641 neigh_app_ns(neigh);
642#endif
643 } else {
644 addrconf_addr_solict_mult(target, &mcaddr);
645 ndisc_send_ns(dev, NULL, target, &mcaddr, saddr);
646 }
647}
648
649static void ndisc_recv_ns(struct sk_buff *skb)
650{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700651 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700652 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
653 struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700655 u32 ndoptlen = skb->tail - (skb->transport_header +
656 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 struct ndisc_options ndopts;
658 struct net_device *dev = skb->dev;
659 struct inet6_ifaddr *ifp;
660 struct inet6_dev *idev = NULL;
661 struct neighbour *neigh;
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700662 struct pneigh_entry *pneigh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int dad = ipv6_addr_any(saddr);
664 int inc;
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700665 int is_router;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 if (ipv6_addr_is_multicast(&msg->target)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900668 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 "ICMPv6 NS: multicast target address");
670 return;
671 }
672
673 /*
674 * RFC2461 7.1.1:
675 * DAD has to be destined for solicited node multicast address.
676 */
677 if (dad &&
678 !(daddr->s6_addr32[0] == htonl(0xff020000) &&
679 daddr->s6_addr32[1] == htonl(0x00000000) &&
680 daddr->s6_addr32[2] == htonl(0x00000001) &&
681 daddr->s6_addr [12] == 0xff )) {
682 ND_PRINTK2(KERN_WARNING
683 "ICMPv6 NS: bad DAD packet (wrong destination)\n");
684 return;
685 }
686
687 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900688 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 "ICMPv6 NS: invalid ND options\n");
690 return;
691 }
692
693 if (ndopts.nd_opts_src_lladdr) {
694 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr, dev);
695 if (!lladdr) {
696 ND_PRINTK2(KERN_WARNING
697 "ICMPv6 NS: invalid link-layer address length\n");
698 return;
699 }
700
701 /* RFC2461 7.1.1:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900702 * If the IP source address is the unspecified address,
703 * there MUST NOT be source link-layer address option
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * in the message.
705 */
706 if (dad) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900707 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 "ICMPv6 NS: bad DAD packet (link-layer address option)\n");
709 return;
710 }
711 }
712
713 inc = ipv6_addr_is_multicast(daddr);
714
715 if ((ifp = ipv6_get_ifaddr(&msg->target, dev, 1)) != NULL) {
Neil Horman95c385b2007-04-25 17:08:10 -0700716
717 if (ifp->flags & (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)) {
718 if (dad) {
719 if (dev->type == ARPHRD_IEEE802_TR) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700720 const unsigned char *sadr;
721 sadr = skb_mac_header(skb);
Neil Horman95c385b2007-04-25 17:08:10 -0700722 if (((sadr[8] ^ dev->dev_addr[0]) & 0x7f) == 0 &&
723 sadr[9] == dev->dev_addr[1] &&
724 sadr[10] == dev->dev_addr[2] &&
725 sadr[11] == dev->dev_addr[3] &&
726 sadr[12] == dev->dev_addr[4] &&
727 sadr[13] == dev->dev_addr[5]) {
728 /* looped-back to us */
729 goto out;
730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
Neil Horman95c385b2007-04-25 17:08:10 -0700732
733 /*
734 * We are colliding with another node
735 * who is doing DAD
736 * so fail our DAD process
737 */
738 addrconf_dad_failure(ifp);
Denis V. Lunev9e3be4b2007-09-11 11:04:49 +0200739 return;
Neil Horman95c385b2007-04-25 17:08:10 -0700740 } else {
741 /*
742 * This is not a dad solicitation.
743 * If we are an optimistic node,
744 * we should respond.
745 * Otherwise, we should ignore it.
746 */
747 if (!(ifp->flags & IFA_F_OPTIMISTIC))
748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 idev = ifp->idev;
753 } else {
754 idev = in6_dev_get(dev);
755 if (!idev) {
756 /* XXX: count this drop? */
757 return;
758 }
759
760 if (ipv6_chk_acast_addr(dev, &msg->target) ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900761 (idev->cnf.forwarding &&
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700762 (ipv6_devconf.proxy_ndp || idev->cnf.proxy_ndp) &&
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700763 (pneigh = pneigh_lookup(&nd_tbl,
764 &msg->target, dev, 0)) != NULL)) {
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700765 if (!(NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 skb->pkt_type != PACKET_HOST &&
767 inc != 0 &&
768 idev->nd_parms->proxy_delay != 0) {
769 /*
770 * for anycast or proxy,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900771 * sender should delay its response
772 * by a random time between 0 and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * MAX_ANYCAST_DELAY_TIME seconds.
774 * (RFC2461) -- yoshfuji
775 */
776 struct sk_buff *n = skb_clone(skb, GFP_ATOMIC);
777 if (n)
778 pneigh_enqueue(&nd_tbl, idev->nd_parms, n);
779 goto out;
780 }
781 } else
782 goto out;
783 }
784
YOSHIFUJI Hideakifc26d0a2006-09-22 14:44:53 -0700785 is_router = !!(pneigh ? pneigh->flags & NTF_ROUTER : idev->cnf.forwarding);
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (dad) {
788 struct in6_addr maddr;
789
790 ipv6_addr_all_nodes(&maddr);
791 ndisc_send_na(dev, NULL, &maddr, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700792 is_router, 0, (ifp != NULL), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 goto out;
794 }
795
796 if (inc)
797 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_mcast);
798 else
799 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_ucast);
800
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900801 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * update / create cache entry
803 * for the source address
804 */
805 neigh = __neigh_lookup(&nd_tbl, saddr, dev,
806 !inc || lladdr || !dev->addr_len);
807 if (neigh)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900808 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 NEIGH_UPDATE_F_WEAK_OVERRIDE|
810 NEIGH_UPDATE_F_OVERRIDE);
811 if (neigh || !dev->hard_header) {
812 ndisc_send_na(dev, neigh, saddr, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700813 is_router,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 1, (ifp != NULL && inc), inc);
815 if (neigh)
816 neigh_release(neigh);
817 }
818
819out:
820 if (ifp)
821 in6_ifa_put(ifp);
822 else
823 in6_dev_put(idev);
824
825 return;
826}
827
828static void ndisc_recv_na(struct sk_buff *skb)
829{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700830 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700831 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
832 struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700834 u32 ndoptlen = skb->tail - (skb->transport_header +
835 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct ndisc_options ndopts;
837 struct net_device *dev = skb->dev;
838 struct inet6_ifaddr *ifp;
839 struct neighbour *neigh;
840
841 if (skb->len < sizeof(struct nd_msg)) {
842 ND_PRINTK2(KERN_WARNING
843 "ICMPv6 NA: packet too short\n");
844 return;
845 }
846
847 if (ipv6_addr_is_multicast(&msg->target)) {
848 ND_PRINTK2(KERN_WARNING
849 "ICMPv6 NA: target address is multicast.\n");
850 return;
851 }
852
853 if (ipv6_addr_is_multicast(daddr) &&
854 msg->icmph.icmp6_solicited) {
855 ND_PRINTK2(KERN_WARNING
856 "ICMPv6 NA: solicited NA is multicasted.\n");
857 return;
858 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
861 ND_PRINTK2(KERN_WARNING
862 "ICMPv6 NS: invalid ND option\n");
863 return;
864 }
865 if (ndopts.nd_opts_tgt_lladdr) {
866 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, dev);
867 if (!lladdr) {
868 ND_PRINTK2(KERN_WARNING
869 "ICMPv6 NA: invalid link-layer address length\n");
870 return;
871 }
872 }
873 if ((ifp = ipv6_get_ifaddr(&msg->target, dev, 1))) {
874 if (ifp->flags & IFA_F_TENTATIVE) {
875 addrconf_dad_failure(ifp);
876 return;
877 }
878 /* What should we make now? The advertisement
879 is invalid, but ndisc specs say nothing
880 about it. It could be misconfiguration, or
881 an smart proxy agent tries to help us :-)
882 */
883 ND_PRINTK1(KERN_WARNING
884 "ICMPv6 NA: someone advertises our address on %s!\n",
885 ifp->idev->dev->name);
886 in6_ifa_put(ifp);
887 return;
888 }
889 neigh = neigh_lookup(&nd_tbl, &msg->target, dev);
890
891 if (neigh) {
892 u8 old_flags = neigh->flags;
893
894 if (neigh->nud_state & NUD_FAILED)
895 goto out;
896
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700897 /*
898 * Don't update the neighbor cache entry on a proxy NA from
899 * ourselves because either the proxied node is off link or it
900 * has already sent a NA to us.
901 */
902 if (lladdr && !memcmp(lladdr, dev->dev_addr, dev->addr_len) &&
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700903 ipv6_devconf.forwarding && ipv6_devconf.proxy_ndp &&
904 pneigh_lookup(&nd_tbl, &msg->target, dev, 0)) {
905 /* XXX: idev->cnf.prixy_ndp */
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700906 goto out;
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700907 }
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 neigh_update(neigh, lladdr,
910 msg->icmph.icmp6_solicited ? NUD_REACHABLE : NUD_STALE,
911 NEIGH_UPDATE_F_WEAK_OVERRIDE|
912 (msg->icmph.icmp6_override ? NEIGH_UPDATE_F_OVERRIDE : 0)|
913 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
914 (msg->icmph.icmp6_router ? NEIGH_UPDATE_F_ISROUTER : 0));
915
916 if ((old_flags & ~neigh->flags) & NTF_ROUTER) {
917 /*
918 * Change: router to host
919 */
920 struct rt6_info *rt;
921 rt = rt6_get_dflt_router(saddr, dev);
922 if (rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700923 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
926out:
927 neigh_release(neigh);
928 }
929}
930
931static void ndisc_recv_rs(struct sk_buff *skb)
932{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700933 struct rs_msg *rs_msg = (struct rs_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 unsigned long ndoptlen = skb->len - sizeof(*rs_msg);
935 struct neighbour *neigh;
936 struct inet6_dev *idev;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700937 struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct ndisc_options ndopts;
939 u8 *lladdr = NULL;
940
941 if (skb->len < sizeof(*rs_msg))
942 return;
943
944 idev = in6_dev_get(skb->dev);
945 if (!idev) {
946 if (net_ratelimit())
947 ND_PRINTK1("ICMP6 RS: can't find in6 device\n");
948 return;
949 }
950
951 /* Don't accept RS if we're not in router mode */
952 if (!idev->cnf.forwarding)
953 goto out;
954
955 /*
956 * Don't update NCE if src = ::;
957 * this implies that the source node has no ip address assigned yet.
958 */
959 if (ipv6_addr_any(saddr))
960 goto out;
961
962 /* Parse ND options */
963 if (!ndisc_parse_options(rs_msg->opt, ndoptlen, &ndopts)) {
964 if (net_ratelimit())
965 ND_PRINTK2("ICMP6 NS: invalid ND option, ignored\n");
966 goto out;
967 }
968
969 if (ndopts.nd_opts_src_lladdr) {
970 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
971 skb->dev);
972 if (!lladdr)
973 goto out;
974 }
975
976 neigh = __neigh_lookup(&nd_tbl, saddr, skb->dev, 1);
977 if (neigh) {
978 neigh_update(neigh, lladdr, NUD_STALE,
979 NEIGH_UPDATE_F_WEAK_OVERRIDE|
980 NEIGH_UPDATE_F_OVERRIDE|
981 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
982 neigh_release(neigh);
983 }
984out:
985 in6_dev_put(idev);
986}
987
988static void ndisc_router_discovery(struct sk_buff *skb)
989{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700990 struct ra_msg *ra_msg = (struct ra_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 struct neighbour *neigh = NULL;
992 struct inet6_dev *in6_dev;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800993 struct rt6_info *rt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 int lifetime;
995 struct ndisc_options ndopts;
996 int optlen;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800997 unsigned int pref = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 __u8 * opt = (__u8 *)(ra_msg + 1);
1000
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001001 optlen = (skb->tail - skb->transport_header) - sizeof(struct ra_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001003 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 ND_PRINTK2(KERN_WARNING
1005 "ICMPv6 RA: source address is not link-local.\n");
1006 return;
1007 }
1008 if (optlen < 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001009 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 "ICMPv6 RA: packet too short\n");
1011 return;
1012 }
1013
1014 /*
1015 * set the RA_RECV flag in the interface
1016 */
1017
1018 in6_dev = in6_dev_get(skb->dev);
1019 if (in6_dev == NULL) {
1020 ND_PRINTK0(KERN_ERR
1021 "ICMPv6 RA: can't find inet6 device for %s.\n",
1022 skb->dev->name);
1023 return;
1024 }
1025 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_ra) {
1026 in6_dev_put(in6_dev);
1027 return;
1028 }
1029
1030 if (!ndisc_parse_options(opt, optlen, &ndopts)) {
1031 in6_dev_put(in6_dev);
1032 ND_PRINTK2(KERN_WARNING
1033 "ICMP6 RA: invalid ND options\n");
1034 return;
1035 }
1036
1037 if (in6_dev->if_flags & IF_RS_SENT) {
1038 /*
1039 * flag that an RA was received after an RS was sent
1040 * out on this interface.
1041 */
1042 in6_dev->if_flags |= IF_RA_RCVD;
1043 }
1044
1045 /*
1046 * Remember the managed/otherconf flags from most recently
1047 * received RA message (RFC 2462) -- yoshfuji
1048 */
1049 in6_dev->if_flags = (in6_dev->if_flags & ~(IF_RA_MANAGED |
1050 IF_RA_OTHERCONF)) |
1051 (ra_msg->icmph.icmp6_addrconf_managed ?
1052 IF_RA_MANAGED : 0) |
1053 (ra_msg->icmph.icmp6_addrconf_other ?
1054 IF_RA_OTHERCONF : 0);
1055
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001056 if (!in6_dev->cnf.accept_ra_defrtr)
1057 goto skip_defrtr;
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime);
1060
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001061#ifdef CONFIG_IPV6_ROUTER_PREF
1062 pref = ra_msg->icmph.icmp6_router_pref;
1063 /* 10b is handled as if it were 00b (medium) */
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08001064 if (pref == ICMPV6_ROUTER_PREF_INVALID ||
YOSHIFUJI Hideaki6d5b78c2007-06-22 16:07:04 -07001065 !in6_dev->cnf.accept_ra_rtr_pref)
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001066 pref = ICMPV6_ROUTER_PREF_MEDIUM;
1067#endif
1068
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001069 rt = rt6_get_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 if (rt)
1072 neigh = rt->rt6i_nexthop;
1073
1074 if (rt && lifetime == 0) {
1075 neigh_clone(neigh);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001076 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 rt = NULL;
1078 }
1079
1080 if (rt == NULL && lifetime) {
1081 ND_PRINTK3(KERN_DEBUG
1082 "ICMPv6 RA: adding default router.\n");
1083
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001084 rt = rt6_add_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev, pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (rt == NULL) {
1086 ND_PRINTK0(KERN_ERR
1087 "ICMPv6 RA: %s() failed to add default route.\n",
1088 __FUNCTION__);
1089 in6_dev_put(in6_dev);
1090 return;
1091 }
1092
1093 neigh = rt->rt6i_nexthop;
1094 if (neigh == NULL) {
1095 ND_PRINTK0(KERN_ERR
1096 "ICMPv6 RA: %s() got default router without neighbour.\n",
1097 __FUNCTION__);
1098 dst_release(&rt->u.dst);
1099 in6_dev_put(in6_dev);
1100 return;
1101 }
1102 neigh->flags |= NTF_ROUTER;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001103 } else if (rt) {
1104 rt->rt6i_flags |= (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106
1107 if (rt)
1108 rt->rt6i_expires = jiffies + (HZ * lifetime);
1109
1110 if (ra_msg->icmph.icmp6_hop_limit) {
1111 in6_dev->cnf.hop_limit = ra_msg->icmph.icmp6_hop_limit;
1112 if (rt)
1113 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = ra_msg->icmph.icmp6_hop_limit;
1114 }
1115
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001116skip_defrtr:
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /*
1119 * Update Reachable Time and Retrans Timer
1120 */
1121
1122 if (in6_dev->nd_parms) {
1123 unsigned long rtime = ntohl(ra_msg->retrans_timer);
1124
1125 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/HZ) {
1126 rtime = (rtime*HZ)/1000;
1127 if (rtime < HZ/10)
1128 rtime = HZ/10;
1129 in6_dev->nd_parms->retrans_time = rtime;
1130 in6_dev->tstamp = jiffies;
1131 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1132 }
1133
1134 rtime = ntohl(ra_msg->reachable_time);
1135 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/(3*HZ)) {
1136 rtime = (rtime*HZ)/1000;
1137
1138 if (rtime < HZ/10)
1139 rtime = HZ/10;
1140
1141 if (rtime != in6_dev->nd_parms->base_reachable_time) {
1142 in6_dev->nd_parms->base_reachable_time = rtime;
1143 in6_dev->nd_parms->gc_staletime = 3 * rtime;
1144 in6_dev->nd_parms->reachable_time = neigh_rand_reach_time(rtime);
1145 in6_dev->tstamp = jiffies;
1146 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1147 }
1148 }
1149 }
1150
1151 /*
1152 * Process options.
1153 */
1154
1155 if (!neigh)
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001156 neigh = __neigh_lookup(&nd_tbl, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 skb->dev, 1);
1158 if (neigh) {
1159 u8 *lladdr = NULL;
1160 if (ndopts.nd_opts_src_lladdr) {
1161 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1162 skb->dev);
1163 if (!lladdr) {
1164 ND_PRINTK2(KERN_WARNING
1165 "ICMPv6 RA: invalid link-layer address length\n");
1166 goto out;
1167 }
1168 }
1169 neigh_update(neigh, lladdr, NUD_STALE,
1170 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1171 NEIGH_UPDATE_F_OVERRIDE|
1172 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1173 NEIGH_UPDATE_F_ISROUTER);
1174 }
1175
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001176#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001177 if (in6_dev->cnf.accept_ra_rtr_pref && ndopts.nd_opts_ri) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001178 struct nd_opt_hdr *p;
1179 for (p = ndopts.nd_opts_ri;
1180 p;
1181 p = ndisc_next_option(p, ndopts.nd_opts_ri_end)) {
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001182 if (((struct route_info *)p)->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen)
1183 continue;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001184 rt6_route_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3,
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001185 &ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001186 }
1187 }
1188#endif
1189
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08001190 if (in6_dev->cnf.accept_ra_pinfo && ndopts.nd_opts_pi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct nd_opt_hdr *p;
1192 for (p = ndopts.nd_opts_pi;
1193 p;
1194 p = ndisc_next_option(p, ndopts.nd_opts_pi_end)) {
1195 addrconf_prefix_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3);
1196 }
1197 }
1198
1199 if (ndopts.nd_opts_mtu) {
Al Viroe69a4adc2006-11-14 20:56:00 -08001200 __be32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 u32 mtu;
1202
Al Viroe69a4adc2006-11-14 20:56:00 -08001203 memcpy(&n, ((u8*)(ndopts.nd_opts_mtu+1))+2, sizeof(mtu));
1204 mtu = ntohl(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 if (mtu < IPV6_MIN_MTU || mtu > skb->dev->mtu) {
1207 ND_PRINTK2(KERN_WARNING
1208 "ICMPv6 RA: invalid mtu: %d\n",
1209 mtu);
1210 } else if (in6_dev->cnf.mtu6 != mtu) {
1211 in6_dev->cnf.mtu6 = mtu;
1212
1213 if (rt)
1214 rt->u.dst.metrics[RTAX_MTU-1] = mtu;
1215
1216 rt6_mtu_change(skb->dev, mtu);
1217 }
1218 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (ndopts.nd_opts_tgt_lladdr || ndopts.nd_opts_rh) {
1221 ND_PRINTK2(KERN_WARNING
1222 "ICMPv6 RA: invalid RA options");
1223 }
1224out:
1225 if (rt)
1226 dst_release(&rt->u.dst);
1227 else if (neigh)
1228 neigh_release(neigh);
1229 in6_dev_put(in6_dev);
1230}
1231
1232static void ndisc_redirect_rcv(struct sk_buff *skb)
1233{
1234 struct inet6_dev *in6_dev;
1235 struct icmp6hdr *icmph;
1236 struct in6_addr *dest;
1237 struct in6_addr *target; /* new first hop to destination */
1238 struct neighbour *neigh;
1239 int on_link = 0;
1240 struct ndisc_options ndopts;
1241 int optlen;
1242 u8 *lladdr = NULL;
1243
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001244 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 ND_PRINTK2(KERN_WARNING
1246 "ICMPv6 Redirect: source address is not link-local.\n");
1247 return;
1248 }
1249
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001250 optlen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1252
1253 if (optlen < 0) {
1254 ND_PRINTK2(KERN_WARNING
1255 "ICMPv6 Redirect: packet too short\n");
1256 return;
1257 }
1258
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -03001259 icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 target = (struct in6_addr *) (icmph + 1);
1261 dest = target + 1;
1262
1263 if (ipv6_addr_is_multicast(dest)) {
1264 ND_PRINTK2(KERN_WARNING
1265 "ICMPv6 Redirect: destination address is multicast.\n");
1266 return;
1267 }
1268
1269 if (ipv6_addr_equal(dest, target)) {
1270 on_link = 1;
Brian Haleybf0b48d2007-10-08 00:12:05 -07001271 } else if (ipv6_addr_type(target) !=
1272 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001273 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001274 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return;
1276 }
1277
1278 in6_dev = in6_dev_get(skb->dev);
1279 if (!in6_dev)
1280 return;
1281 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) {
1282 in6_dev_put(in6_dev);
1283 return;
1284 }
1285
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001286 /* RFC2461 8.1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 * The IP source address of the Redirect MUST be the same as the current
1288 * first-hop router for the specified ICMP Destination Address.
1289 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) {
1292 ND_PRINTK2(KERN_WARNING
1293 "ICMPv6 Redirect: invalid ND options\n");
1294 in6_dev_put(in6_dev);
1295 return;
1296 }
1297 if (ndopts.nd_opts_tgt_lladdr) {
1298 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1299 skb->dev);
1300 if (!lladdr) {
1301 ND_PRINTK2(KERN_WARNING
1302 "ICMPv6 Redirect: invalid link-layer address length\n");
1303 in6_dev_put(in6_dev);
1304 return;
1305 }
1306 }
1307
1308 neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
1309 if (neigh) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001310 rt6_redirect(dest, &ipv6_hdr(skb)->daddr,
1311 &ipv6_hdr(skb)->saddr, neigh, lladdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 on_link);
1313 neigh_release(neigh);
1314 }
1315 in6_dev_put(in6_dev);
1316}
1317
1318void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,
1319 struct in6_addr *target)
1320{
1321 struct sock *sk = ndisc_socket->sk;
1322 int len = sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1323 struct sk_buff *buff;
1324 struct icmp6hdr *icmph;
1325 struct in6_addr saddr_buf;
1326 struct in6_addr *addrp;
1327 struct net_device *dev;
1328 struct rt6_info *rt;
1329 struct dst_entry *dst;
1330 struct inet6_dev *idev;
1331 struct flowi fl;
1332 u8 *opt;
1333 int rd_len;
1334 int err;
1335 int hlen;
1336 u8 ha_buf[MAX_ADDR_LEN], *ha = NULL;
1337
1338 dev = skb->dev;
1339
Neil Horman95c385b2007-04-25 17:08:10 -07001340 if (ipv6_get_lladdr(dev, &saddr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 ND_PRINTK2(KERN_WARNING
1342 "ICMPv6 Redirect: no link-local address on %s\n",
1343 dev->name);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001344 return;
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001347 if (!ipv6_addr_equal(&ipv6_hdr(skb)->daddr, target) &&
Brian Haleybf0b48d2007-10-08 00:12:05 -07001348 ipv6_addr_type(target) != (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
Li Yewang29556522007-01-30 14:33:20 -08001349 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001350 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Li Yewang29556522007-01-30 14:33:20 -08001351 return;
1352 }
1353
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001354 ndisc_flow_init(&fl, NDISC_REDIRECT, &saddr_buf, &ipv6_hdr(skb)->saddr,
YOSHIFUJI Hideakiaf184762006-08-23 17:18:57 -07001355 dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 dst = ip6_route_output(NULL, &fl);
1358 if (dst == NULL)
1359 return;
1360
1361 err = xfrm_lookup(&dst, &fl, NULL, 0);
Patrick McHardye104411b2005-09-08 15:11:55 -07001362 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 rt = (struct rt6_info *) dst;
1366
1367 if (rt->rt6i_flags & RTF_GATEWAY) {
1368 ND_PRINTK2(KERN_WARNING
1369 "ICMPv6 Redirect: destination is not a neighbour.\n");
1370 dst_release(dst);
1371 return;
1372 }
1373 if (!xrlim_allow(dst, 1*HZ)) {
1374 dst_release(dst);
1375 return;
1376 }
1377
1378 if (dev->addr_len) {
1379 read_lock_bh(&neigh->lock);
1380 if (neigh->nud_state & NUD_VALID) {
1381 memcpy(ha_buf, neigh->ha, dev->addr_len);
1382 read_unlock_bh(&neigh->lock);
1383 ha = ha_buf;
1384 len += ndisc_opt_addr_space(dev);
1385 } else
1386 read_unlock_bh(&neigh->lock);
1387 }
1388
1389 rd_len = min_t(unsigned int,
1390 IPV6_MIN_MTU-sizeof(struct ipv6hdr)-len, skb->len + 8);
1391 rd_len &= ~0x7;
1392 len += rd_len;
1393
David S. Millerd54a81d2006-12-02 21:00:06 -08001394 buff = sock_alloc_send_skb(sk,
1395 (MAX_HEADER + sizeof(struct ipv6hdr) +
1396 len + LL_RESERVED_SPACE(dev)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 1, &err);
1398 if (buff == NULL) {
1399 ND_PRINTK0(KERN_ERR
1400 "ICMPv6 Redirect: %s() failed to allocate an skb.\n",
1401 __FUNCTION__);
1402 dst_release(dst);
1403 return;
1404 }
1405
1406 hlen = 0;
1407
1408 skb_reserve(buff, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001409 ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 IPPROTO_ICMPV6, len);
1411
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001412 skb_set_transport_header(buff, skb_tail_pointer(buff) - buff->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001413 skb_put(buff, len);
1414 icmph = icmp6_hdr(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 memset(icmph, 0, sizeof(struct icmp6hdr));
1417 icmph->icmp6_type = NDISC_REDIRECT;
1418
1419 /*
1420 * copy target and destination addresses
1421 */
1422
1423 addrp = (struct in6_addr *)(icmph + 1);
1424 ipv6_addr_copy(addrp, target);
1425 addrp++;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001426 ipv6_addr_copy(addrp, &ipv6_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 opt = (u8*) (addrp + 1);
1429
1430 /*
1431 * include target_address option
1432 */
1433
1434 if (ha)
1435 opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, ha,
1436 dev->addr_len, dev->type);
1437
1438 /*
1439 * build redirect option and copy skb over to the new packet.
1440 */
1441
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001442 memset(opt, 0, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 *(opt++) = ND_OPT_REDIRECT_HDR;
1444 *(opt++) = (rd_len >> 3);
1445 opt += 6;
1446
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001447 memcpy(opt, ipv6_hdr(skb), rd_len - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001449 icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 len, IPPROTO_ICMPV6,
1451 csum_partial((u8 *) icmph, len, 0));
1452
1453 buff->dst = dst;
1454 idev = in6_dev_get(dst->dev);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001455 IP6_INC_STATS(idev, IPSTATS_MIB_OUTREQUESTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, buff, NULL, dst->dev, dst_output);
1457 if (!err) {
1458 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTREDIRECTS);
1459 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
1460 }
1461
1462 if (likely(idev != NULL))
1463 in6_dev_put(idev);
1464}
1465
1466static void pndisc_redo(struct sk_buff *skb)
1467{
YOSHIFUJI Hideaki140e26fc2005-10-05 12:11:41 -07001468 ndisc_recv_ns(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 kfree_skb(skb);
1470}
1471
1472int ndisc_rcv(struct sk_buff *skb)
1473{
1474 struct nd_msg *msg;
1475
1476 if (!pskb_may_pull(skb, skb->len))
1477 return 0;
1478
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001479 msg = (struct nd_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001481 __skb_push(skb, skb->data - skb_transport_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001483 if (ipv6_hdr(skb)->hop_limit != 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 ND_PRINTK2(KERN_WARNING
1485 "ICMPv6 NDISC: invalid hop-limit: %d\n",
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001486 ipv6_hdr(skb)->hop_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return 0;
1488 }
1489
1490 if (msg->icmph.icmp6_code != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001491 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 "ICMPv6 NDISC: invalid ICMPv6 code: %d\n",
1493 msg->icmph.icmp6_code);
1494 return 0;
1495 }
1496
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001497 memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 switch (msg->icmph.icmp6_type) {
1500 case NDISC_NEIGHBOUR_SOLICITATION:
1501 ndisc_recv_ns(skb);
1502 break;
1503
1504 case NDISC_NEIGHBOUR_ADVERTISEMENT:
1505 ndisc_recv_na(skb);
1506 break;
1507
1508 case NDISC_ROUTER_SOLICITATION:
1509 ndisc_recv_rs(skb);
1510 break;
1511
1512 case NDISC_ROUTER_ADVERTISEMENT:
1513 ndisc_router_discovery(skb);
1514 break;
1515
1516 case NDISC_REDIRECT:
1517 ndisc_redirect_rcv(skb);
1518 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 return 0;
1522}
1523
1524static int ndisc_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1525{
1526 struct net_device *dev = ptr;
1527
1528 switch (event) {
1529 case NETDEV_CHANGEADDR:
1530 neigh_changeaddr(&nd_tbl, dev);
1531 fib6_run_gc(~0UL);
1532 break;
1533 case NETDEV_DOWN:
1534 neigh_ifdown(&nd_tbl, dev);
1535 fib6_run_gc(~0UL);
1536 break;
1537 default:
1538 break;
1539 }
1540
1541 return NOTIFY_DONE;
1542}
1543
1544static struct notifier_block ndisc_netdev_notifier = {
1545 .notifier_call = ndisc_netdev_event,
1546};
1547
1548#ifdef CONFIG_SYSCTL
1549static void ndisc_warn_deprecated_sysctl(struct ctl_table *ctl,
1550 const char *func, const char *dev_name)
1551{
1552 static char warncomm[TASK_COMM_LEN];
1553 static int warned;
1554 if (strcmp(warncomm, current->comm) && warned < 5) {
1555 strcpy(warncomm, current->comm);
1556 printk(KERN_WARNING
1557 "process `%s' is using deprecated sysctl (%s) "
1558 "net.ipv6.neigh.%s.%s; "
1559 "Use net.ipv6.neigh.%s.%s_ms "
1560 "instead.\n",
1561 warncomm, func,
1562 dev_name, ctl->procname,
1563 dev_name, ctl->procname);
1564 warned++;
1565 }
1566}
1567
1568int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl, int write, struct file * filp, void __user *buffer, size_t *lenp, loff_t *ppos)
1569{
1570 struct net_device *dev = ctl->extra1;
1571 struct inet6_dev *idev;
1572 int ret;
1573
1574 if (ctl->ctl_name == NET_NEIGH_RETRANS_TIME ||
1575 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME)
1576 ndisc_warn_deprecated_sysctl(ctl, "syscall", dev ? dev->name : "default");
1577
1578 switch (ctl->ctl_name) {
1579 case NET_NEIGH_RETRANS_TIME:
1580 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
1581 break;
1582 case NET_NEIGH_REACHABLE_TIME:
1583 ret = proc_dointvec_jiffies(ctl, write,
1584 filp, buffer, lenp, ppos);
1585 break;
1586 case NET_NEIGH_RETRANS_TIME_MS:
1587 case NET_NEIGH_REACHABLE_TIME_MS:
1588 ret = proc_dointvec_ms_jiffies(ctl, write,
1589 filp, buffer, lenp, ppos);
1590 break;
1591 default:
1592 ret = -1;
1593 }
1594
1595 if (write && ret == 0 && dev && (idev = in6_dev_get(dev)) != NULL) {
1596 if (ctl->ctl_name == NET_NEIGH_REACHABLE_TIME ||
1597 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME_MS)
1598 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1599 idev->tstamp = jiffies;
1600 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1601 in6_dev_put(idev);
1602 }
1603 return ret;
1604}
1605
1606static int ndisc_ifinfo_sysctl_strategy(ctl_table *ctl, int __user *name,
1607 int nlen, void __user *oldval,
1608 size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08001609 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 struct net_device *dev = ctl->extra1;
1612 struct inet6_dev *idev;
1613 int ret;
1614
1615 if (ctl->ctl_name == NET_NEIGH_RETRANS_TIME ||
1616 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME)
1617 ndisc_warn_deprecated_sysctl(ctl, "procfs", dev ? dev->name : "default");
1618
1619 switch (ctl->ctl_name) {
1620 case NET_NEIGH_REACHABLE_TIME:
1621 ret = sysctl_jiffies(ctl, name, nlen,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08001622 oldval, oldlenp, newval, newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 break;
1624 case NET_NEIGH_RETRANS_TIME_MS:
1625 case NET_NEIGH_REACHABLE_TIME_MS:
1626 ret = sysctl_ms_jiffies(ctl, name, nlen,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08001627 oldval, oldlenp, newval, newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 break;
1629 default:
1630 ret = 0;
1631 }
1632
1633 if (newval && newlen && ret > 0 &&
1634 dev && (idev = in6_dev_get(dev)) != NULL) {
1635 if (ctl->ctl_name == NET_NEIGH_REACHABLE_TIME ||
1636 ctl->ctl_name == NET_NEIGH_REACHABLE_TIME_MS)
1637 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1638 idev->tstamp = jiffies;
1639 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1640 in6_dev_put(idev);
1641 }
1642
1643 return ret;
1644}
1645
1646#endif
1647
1648int __init ndisc_init(struct net_proto_family *ops)
1649{
1650 struct ipv6_pinfo *np;
1651 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001652 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 err = sock_create_kern(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6, &ndisc_socket);
1655 if (err < 0) {
1656 ND_PRINTK0(KERN_ERR
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001657 "ICMPv6 NDISC: Failed to initialize the control socket (err %d).\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 err);
1659 ndisc_socket = NULL; /* For safety. */
1660 return err;
1661 }
1662
1663 sk = ndisc_socket->sk;
1664 np = inet6_sk(sk);
1665 sk->sk_allocation = GFP_ATOMIC;
1666 np->hop_limit = 255;
1667 /* Do not loopback ndisc messages */
1668 np->mc_loop = 0;
1669 sk->sk_prot->unhash(sk);
1670
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001671 /*
1672 * Initialize the neighbour table
1673 */
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 neigh_table_init(&nd_tbl);
1676
1677#ifdef CONFIG_SYSCTL
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001678 neigh_sysctl_register(NULL, &nd_tbl.parms, NET_IPV6, NET_IPV6_NEIGH,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 "ipv6",
1680 &ndisc_ifinfo_sysctl_change,
1681 &ndisc_ifinfo_sysctl_strategy);
1682#endif
1683
1684 register_netdevice_notifier(&ndisc_netdev_notifier);
1685 return 0;
1686}
1687
1688void ndisc_cleanup(void)
1689{
Dmitry Mishin36f73d02006-11-03 16:08:19 -08001690 unregister_netdevice_notifier(&ndisc_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691#ifdef CONFIG_SYSCTL
1692 neigh_sysctl_unregister(&nd_tbl.parms);
1693#endif
1694 neigh_table_clear(&nd_tbl);
1695 sock_release(ndisc_socket);
1696 ndisc_socket = NULL; /* For safety. */
1697}