blob: 843d6ebc525edb52eb8a692859c041c4bfecb794 [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
Eric Dumazetd6bf7812010-10-04 06:15:44 +000094static u32 ndisc_hash(const void *pkey,
95 const struct net_device *dev,
David S. Miller2c2aba62011-12-28 15:06:58 -050096 __u32 *hash_rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int ndisc_constructor(struct neighbour *neigh);
98static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb);
99static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb);
100static int pndisc_constructor(struct pneigh_entry *n);
101static void pndisc_destructor(struct pneigh_entry *n);
102static void pndisc_redo(struct sk_buff *skb);
103
Stephen Hemminger89d69d22009-09-01 11:13:19 +0000104static const struct neigh_ops ndisc_generic_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .family = AF_INET6,
106 .solicit = ndisc_solicit,
107 .error_report = ndisc_error_report,
108 .output = neigh_resolve_output,
109 .connected_output = neigh_connected_output,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120
Stephen Hemminger89d69d22009-09-01 11:13:19 +0000121static const struct neigh_ops ndisc_direct_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .family = AF_INET6,
David S. Miller8f40b162011-07-17 13:34:11 -0700123 .output = neigh_direct_output,
124 .connected_output = neigh_direct_output,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127struct neigh_table nd_tbl = {
128 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .key_len = sizeof(struct in6_addr),
130 .hash = ndisc_hash,
131 .constructor = ndisc_constructor,
132 .pconstructor = pndisc_constructor,
133 .pdestructor = pndisc_destructor,
134 .proxy_redo = pndisc_redo,
135 .id = "ndisc_cache",
136 .parms = {
Shan Weib6720832010-12-01 18:05:12 +0000137 .tbl = &nd_tbl,
138 .base_reachable_time = ND_REACHABLE_TIME,
139 .retrans_time = ND_RETRANS_TIMER,
140 .gc_staletime = 60 * HZ,
141 .reachable_time = ND_REACHABLE_TIME,
142 .delay_probe_time = 5 * HZ,
Eric Dumazet8b5c1712011-11-09 12:07:14 +0000143 .queue_len_bytes = 64*1024,
Shan Weib6720832010-12-01 18:05:12 +0000144 .ucast_probes = 3,
145 .mcast_probes = 3,
146 .anycast_delay = 1 * HZ,
147 .proxy_delay = (8 * HZ) / 10,
148 .proxy_qlen = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 },
150 .gc_interval = 30 * HZ,
151 .gc_thresh1 = 128,
152 .gc_thresh2 = 512,
153 .gc_thresh3 = 1024,
154};
155
156/* ND options */
157struct ndisc_options {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800158 struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX];
159#ifdef CONFIG_IPV6_ROUTE_INFO
160 struct nd_opt_hdr *nd_opts_ri;
161 struct nd_opt_hdr *nd_opts_ri_end;
162#endif
Pierre Ynard31910572007-10-10 21:22:05 -0700163 struct nd_opt_hdr *nd_useropts;
164 struct nd_opt_hdr *nd_useropts_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167#define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
168#define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
169#define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
170#define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
171#define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
172#define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
173
174#define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
175
176/*
177 * Return the padding between the option length and the start of the
178 * link addr. Currently only IP-over-InfiniBand needs this, although
179 * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
180 * also need a pad of 2.
181 */
182static int ndisc_addr_option_pad(unsigned short type)
183{
184 switch (type) {
185 case ARPHRD_INFINIBAND: return 2;
186 default: return 0;
187 }
188}
189
190static inline int ndisc_opt_addr_space(struct net_device *dev)
191{
192 return NDISC_OPT_SPACE(dev->addr_len + ndisc_addr_option_pad(dev->type));
193}
194
195static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len,
196 unsigned short addr_type)
197{
198 int space = NDISC_OPT_SPACE(data_len);
199 int pad = ndisc_addr_option_pad(addr_type);
200
201 opt[0] = type;
202 opt[1] = space>>3;
203
204 memset(opt + 2, 0, pad);
205 opt += pad;
206 space -= pad;
207
208 memcpy(opt+2, data, data_len);
209 data_len += 2;
210 opt += data_len;
211 if ((space -= data_len) > 0)
212 memset(opt, 0, space);
213 return opt + space;
214}
215
216static struct nd_opt_hdr *ndisc_next_option(struct nd_opt_hdr *cur,
217 struct nd_opt_hdr *end)
218{
219 int type;
220 if (!cur || !end || cur >= end)
221 return NULL;
222 type = cur->nd_opt_type;
223 do {
224 cur = ((void *)cur) + (cur->nd_opt_len << 3);
225 } while(cur < end && cur->nd_opt_type != type);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000226 return cur <= end && cur->nd_opt_type == type ? cur : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Pierre Ynard31910572007-10-10 21:22:05 -0700229static inline int ndisc_is_useropt(struct nd_opt_hdr *opt)
230{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000231 return opt->nd_opt_type == ND_OPT_RDNSS;
Pierre Ynard31910572007-10-10 21:22:05 -0700232}
233
234static struct nd_opt_hdr *ndisc_next_useropt(struct nd_opt_hdr *cur,
235 struct nd_opt_hdr *end)
236{
237 if (!cur || !end || cur >= end)
238 return NULL;
239 do {
240 cur = ((void *)cur) + (cur->nd_opt_len << 3);
241 } while(cur < end && !ndisc_is_useropt(cur));
Eric Dumazeta02cec22010-09-22 20:43:57 +0000242 return cur <= end && ndisc_is_useropt(cur) ? cur : NULL;
Pierre Ynard31910572007-10-10 21:22:05 -0700243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
246 struct ndisc_options *ndopts)
247{
248 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)opt;
249
250 if (!nd_opt || opt_len < 0 || !ndopts)
251 return NULL;
252 memset(ndopts, 0, sizeof(*ndopts));
253 while (opt_len) {
254 int l;
255 if (opt_len < sizeof(struct nd_opt_hdr))
256 return NULL;
257 l = nd_opt->nd_opt_len << 3;
258 if (opt_len < l || l == 0)
259 return NULL;
260 switch (nd_opt->nd_opt_type) {
261 case ND_OPT_SOURCE_LL_ADDR:
262 case ND_OPT_TARGET_LL_ADDR:
263 case ND_OPT_MTU:
264 case ND_OPT_REDIRECT_HDR:
265 if (ndopts->nd_opt_array[nd_opt->nd_opt_type]) {
266 ND_PRINTK2(KERN_WARNING
267 "%s(): duplicated ND6 option found: type=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800268 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 nd_opt->nd_opt_type);
270 } else {
271 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
272 }
273 break;
274 case ND_OPT_PREFIX_INFO:
275 ndopts->nd_opts_pi_end = nd_opt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700276 if (!ndopts->nd_opt_array[nd_opt->nd_opt_type])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 ndopts->nd_opt_array[nd_opt->nd_opt_type] = nd_opt;
278 break;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800279#ifdef CONFIG_IPV6_ROUTE_INFO
280 case ND_OPT_ROUTE_INFO:
281 ndopts->nd_opts_ri_end = nd_opt;
282 if (!ndopts->nd_opts_ri)
283 ndopts->nd_opts_ri = nd_opt;
284 break;
285#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 default:
Pierre Ynard31910572007-10-10 21:22:05 -0700287 if (ndisc_is_useropt(nd_opt)) {
288 ndopts->nd_useropts_end = nd_opt;
289 if (!ndopts->nd_useropts)
290 ndopts->nd_useropts = nd_opt;
291 } else {
292 /*
293 * Unknown options must be silently ignored,
294 * to accommodate future extension to the
295 * protocol.
296 */
297 ND_PRINTK2(KERN_NOTICE
298 "%s(): ignored unsupported option; type=%d, len=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800299 __func__,
Pierre Ynard31910572007-10-10 21:22:05 -0700300 nd_opt->nd_opt_type, nd_opt->nd_opt_len);
301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303 opt_len -= l;
304 nd_opt = ((void *)nd_opt) + l;
305 }
306 return ndopts;
307}
308
309static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
310 struct net_device *dev)
311{
312 u8 *lladdr = (u8 *)(p + 1);
313 int lladdrlen = p->nd_opt_len << 3;
314 int prepad = ndisc_addr_option_pad(dev->type);
315 if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))
316 return NULL;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000317 return lladdr + prepad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000320int ndisc_mc_map(const struct in6_addr *addr, char *buf, struct net_device *dev, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 switch (dev->type) {
323 case ARPHRD_ETHER:
324 case ARPHRD_IEEE802: /* Not sure. Check it later. --ANK */
325 case ARPHRD_FDDI:
326 ipv6_eth_mc_map(addr, buf);
327 return 0;
328 case ARPHRD_IEEE802_TR:
329 ipv6_tr_mc_map(addr,buf);
330 return 0;
331 case ARPHRD_ARCNET:
332 ipv6_arcnet_mc_map(addr, buf);
333 return 0;
334 case ARPHRD_INFINIBAND:
Rolf Manderscheida9e527e2007-12-10 13:38:41 -0700335 ipv6_ib_mc_map(addr, dev->broadcast, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return 0;
Timo Teräs93ca3bb2011-03-28 22:40:53 +0000337 case ARPHRD_IPGRE:
338 return ipv6_ipgre_mc_map(addr, dev->broadcast, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 default:
340 if (dir) {
341 memcpy(buf, dev->broadcast, dev->addr_len);
342 return 0;
343 }
344 }
345 return -EINVAL;
346}
347
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900348EXPORT_SYMBOL(ndisc_mc_map);
349
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000350static u32 ndisc_hash(const void *pkey,
351 const struct net_device *dev,
David S. Miller2c2aba62011-12-28 15:06:58 -0500352 __u32 *hash_rnd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
David S. Miller2c2aba62011-12-28 15:06:58 -0500354 return ndisc_hashfn(pkey, dev, hash_rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357static int ndisc_constructor(struct neighbour *neigh)
358{
359 struct in6_addr *addr = (struct in6_addr*)&neigh->primary_key;
360 struct net_device *dev = neigh->dev;
361 struct inet6_dev *in6_dev;
362 struct neigh_parms *parms;
363 int is_multicast = ipv6_addr_is_multicast(addr);
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 in6_dev = in6_dev_get(dev);
366 if (in6_dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -EINVAL;
368 }
369
370 parms = in6_dev->nd_parms;
371 __neigh_parms_put(neigh->parms);
372 neigh->parms = neigh_parms_clone(parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 neigh->type = is_multicast ? RTN_MULTICAST : RTN_UNICAST;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700375 if (!dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 neigh->nud_state = NUD_NOARP;
377 neigh->ops = &ndisc_direct_ops;
David S. Miller8f40b162011-07-17 13:34:11 -0700378 neigh->output = neigh_direct_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 } else {
380 if (is_multicast) {
381 neigh->nud_state = NUD_NOARP;
382 ndisc_mc_map(addr, neigh->ha, dev, 1);
383 } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
384 neigh->nud_state = NUD_NOARP;
385 memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
386 if (dev->flags&IFF_LOOPBACK)
387 neigh->type = RTN_LOCAL;
388 } else if (dev->flags&IFF_POINTOPOINT) {
389 neigh->nud_state = NUD_NOARP;
390 memcpy(neigh->ha, dev->broadcast, dev->addr_len);
391 }
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700392 if (dev->header_ops->cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 neigh->ops = &ndisc_hh_ops;
394 else
395 neigh->ops = &ndisc_generic_ops;
396 if (neigh->nud_state&NUD_VALID)
397 neigh->output = neigh->ops->connected_output;
398 else
399 neigh->output = neigh->ops->output;
400 }
401 in6_dev_put(in6_dev);
402 return 0;
403}
404
405static int pndisc_constructor(struct pneigh_entry *n)
406{
407 struct in6_addr *addr = (struct in6_addr*)&n->key;
408 struct in6_addr maddr;
409 struct net_device *dev = n->dev;
410
411 if (dev == NULL || __in6_dev_get(dev) == NULL)
412 return -EINVAL;
413 addrconf_addr_solict_mult(addr, &maddr);
414 ipv6_dev_mc_inc(dev, &maddr);
415 return 0;
416}
417
418static void pndisc_destructor(struct pneigh_entry *n)
419{
420 struct in6_addr *addr = (struct in6_addr*)&n->key;
421 struct in6_addr maddr;
422 struct net_device *dev = n->dev;
423
424 if (dev == NULL || __in6_dev_get(dev) == NULL)
425 return;
426 addrconf_addr_solict_mult(addr, &maddr);
427 ipv6_dev_mc_dec(dev, &maddr);
428}
429
Brian Haley305d5522008-11-04 17:51:14 -0800430struct sk_buff *ndisc_build_skb(struct net_device *dev,
431 const struct in6_addr *daddr,
432 const struct in6_addr *saddr,
433 struct icmp6hdr *icmp6h,
434 const struct in6_addr *target,
435 int llinfo)
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900436{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900437 struct net *net = dev_net(dev);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -0800438 struct sock *sk = net->ipv6.ndisc_sk;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900439 struct sk_buff *skb;
440 struct icmp6hdr *hdr;
Herbert Xua7ae1992011-11-18 02:20:04 +0000441 int hlen = LL_RESERVED_SPACE(dev);
442 int tlen = dev->needed_tailroom;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900443 int len;
444 int err;
Brian Haley305d5522008-11-04 17:51:14 -0800445 u8 *opt;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900446
447 if (!dev->addr_len)
448 llinfo = 0;
449
450 len = sizeof(struct icmp6hdr) + (target ? sizeof(*target) : 0);
451 if (llinfo)
452 len += ndisc_opt_addr_space(dev);
453
454 skb = sock_alloc_send_skb(sk,
455 (MAX_HEADER + sizeof(struct ipv6hdr) +
Herbert Xua7ae1992011-11-18 02:20:04 +0000456 len + hlen + tlen),
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900457 1, &err);
458 if (!skb) {
459 ND_PRINTK0(KERN_ERR
Brian Haleydae9de82009-06-02 00:20:26 -0700460 "ICMPv6 ND: %s() failed to allocate an skb, err=%d.\n",
461 __func__, err);
Brian Haley305d5522008-11-04 17:51:14 -0800462 return NULL;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900463 }
464
Herbert Xua7ae1992011-11-18 02:20:04 +0000465 skb_reserve(skb, hlen);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900466 ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
467
468 skb->transport_header = skb->tail;
469 skb_put(skb, len);
470
471 hdr = (struct icmp6hdr *)skb_transport_header(skb);
472 memcpy(hdr, icmp6h, sizeof(*hdr));
473
474 opt = skb_transport_header(skb) + sizeof(struct icmp6hdr);
475 if (target) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000476 *(struct in6_addr *)opt = *target;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900477 opt += sizeof(*target);
478 }
479
480 if (llinfo)
481 ndisc_fill_addr_option(opt, llinfo, dev->dev_addr,
482 dev->addr_len, dev->type);
483
484 hdr->icmp6_cksum = csum_ipv6_magic(saddr, daddr, len,
485 IPPROTO_ICMPV6,
Joe Perches07f07572008-11-19 15:44:53 -0800486 csum_partial(hdr,
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900487 len, 0));
488
Brian Haley305d5522008-11-04 17:51:14 -0800489 return skb;
490}
491
492EXPORT_SYMBOL(ndisc_build_skb);
493
494void ndisc_send_skb(struct sk_buff *skb,
495 struct net_device *dev,
496 struct neighbour *neigh,
497 const struct in6_addr *daddr,
498 const struct in6_addr *saddr,
499 struct icmp6hdr *icmp6h)
500{
David S. Miller4c9483b2011-03-12 16:22:43 -0500501 struct flowi6 fl6;
Brian Haley305d5522008-11-04 17:51:14 -0800502 struct dst_entry *dst;
503 struct net *net = dev_net(dev);
504 struct sock *sk = net->ipv6.ndisc_sk;
505 struct inet6_dev *idev;
506 int err;
507 u8 type;
508
509 type = icmp6h->icmp6_type;
510
David S. Miller4c9483b2011-03-12 16:22:43 -0500511 icmpv6_flow_init(sk, &fl6, type, saddr, daddr, dev->ifindex);
David S. Miller87a11572011-12-06 17:04:13 -0500512 dst = icmp6_dst_alloc(dev, neigh, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -0800513 if (IS_ERR(dst)) {
Brian Haley305d5522008-11-04 17:51:14 -0800514 kfree_skb(skb);
515 return;
516 }
517
Eric Dumazetadf30902009-06-02 05:19:30 +0000518 skb_dst_set(skb, dst);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900519
Eric Dumazetcfdf7642011-07-27 21:13:03 +0000520 rcu_read_lock();
521 idev = __in6_dev_get(dst->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -0700522 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900523
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100524 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800525 dst_output);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900526 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -0700527 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -0700528 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900529 }
530
Eric Dumazetcfdf7642011-07-27 21:13:03 +0000531 rcu_read_unlock();
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900532}
533
Brian Haley305d5522008-11-04 17:51:14 -0800534EXPORT_SYMBOL(ndisc_send_skb);
535
536/*
537 * Send a Neighbour Discover packet
538 */
539static void __ndisc_send(struct net_device *dev,
540 struct neighbour *neigh,
541 const struct in6_addr *daddr,
542 const struct in6_addr *saddr,
543 struct icmp6hdr *icmp6h, const struct in6_addr *target,
544 int llinfo)
545{
546 struct sk_buff *skb;
547
548 skb = ndisc_build_skb(dev, daddr, saddr, icmp6h, target, llinfo);
549 if (!skb)
550 return;
551
552 ndisc_send_skb(skb, dev, neigh, daddr, saddr, icmp6h);
553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555static void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900556 const struct in6_addr *daddr,
557 const struct in6_addr *solicited_addr,
558 int router, int solicited, int override, int inc_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct in6_addr tmpaddr;
561 struct inet6_ifaddr *ifp;
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900562 const struct in6_addr *src_addr;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900563 struct icmp6hdr icmp6h = {
564 .icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT,
565 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /* for anycast or proxy, solicited_addr != src_addr */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900568 ifp = ipv6_get_ifaddr(dev_net(dev), solicited_addr, dev, 1);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900569 if (ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 src_addr = solicited_addr;
Neil Horman95c385b2007-04-25 17:08:10 -0700571 if (ifp->flags & IFA_F_OPTIMISTIC)
572 override = 0;
stephen hemminger9f888162010-06-21 11:00:13 +0000573 inc_opt |= ifp->idev->cnf.force_tllao;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 in6_ifa_put(ifp);
575 } else {
Brian Haley191cd582008-08-14 15:33:21 -0700576 if (ipv6_dev_get_saddr(dev_net(dev), dev, daddr,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900577 inet6_sk(dev_net(dev)->ipv6.ndisc_sk)->srcprefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900578 &tmpaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return;
580 src_addr = &tmpaddr;
581 }
582
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900583 icmp6h.icmp6_router = router;
584 icmp6h.icmp6_solicited = solicited;
585 icmp6h.icmp6_override = override;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900587 __ndisc_send(dev, neigh, daddr, src_addr,
588 &icmp6h, solicited_addr,
David L Stevens14878f72007-09-16 16:52:35 -0700589 inc_opt ? ND_OPT_TARGET_LL_ADDR : 0);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900590}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Ben Hutchingsf47b9462011-04-15 13:46:02 +0000592static void ndisc_send_unsol_na(struct net_device *dev)
593{
594 struct inet6_dev *idev;
595 struct inet6_ifaddr *ifa;
Hannes Frederic Sowaf0d67672012-11-06 16:18:41 +0000596 struct in6_addr mcaddr = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
Ben Hutchingsf47b9462011-04-15 13:46:02 +0000597
598 idev = in6_dev_get(dev);
599 if (!idev)
600 return;
601
602 read_lock_bh(&idev->lock);
603 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Ben Hutchingsf47b9462011-04-15 13:46:02 +0000604 ndisc_send_na(dev, NULL, &mcaddr, &ifa->addr,
605 /*router=*/ !!idev->cnf.forwarding,
606 /*solicited=*/ false, /*override=*/ true,
607 /*inc_opt=*/ true);
608 }
609 read_unlock_bh(&idev->lock);
610
611 in6_dev_put(idev);
612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900615 const struct in6_addr *solicit,
616 const struct in6_addr *daddr, const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 struct in6_addr addr_buf;
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900619 struct icmp6hdr icmp6h = {
620 .icmp6_type = NDISC_NEIGHBOUR_SOLICITATION,
621 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (saddr == NULL) {
Neil Horman95c385b2007-04-25 17:08:10 -0700624 if (ipv6_get_lladdr(dev, &addr_buf,
625 (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return;
627 saddr = &addr_buf;
628 }
629
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900630 __ndisc_send(dev, neigh, daddr, saddr,
631 &icmp6h, solicit,
David L Stevens14878f72007-09-16 16:52:35 -0700632 !ipv6_addr_any(saddr) ? ND_OPT_SOURCE_LL_ADDR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900635void ndisc_send_rs(struct net_device *dev, const struct in6_addr *saddr,
636 const struct in6_addr *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900638 struct icmp6hdr icmp6h = {
639 .icmp6_type = NDISC_ROUTER_SOLICITATION,
640 };
Neil Horman95c385b2007-04-25 17:08:10 -0700641 int send_sllao = dev->addr_len;
Neil Horman95c385b2007-04-25 17:08:10 -0700642
643#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
644 /*
645 * According to section 2.2 of RFC 4429, we must not
646 * send router solicitations with a sllao from
647 * optimistic addresses, but we may send the solicitation
648 * if we don't include the sllao. So here we check
649 * if our address is optimistic, and if so, we
Joe Perchesbea85192007-12-20 14:01:35 -0800650 * suppress the inclusion of the sllao.
Neil Horman95c385b2007-04-25 17:08:10 -0700651 */
652 if (send_sllao) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900653 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(dev_net(dev), saddr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -0800654 dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700655 if (ifp) {
656 if (ifp->flags & IFA_F_OPTIMISTIC) {
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900657 send_sllao = 0;
Neil Horman95c385b2007-04-25 17:08:10 -0700658 }
YOSHIFUJI Hideakica043562007-02-28 23:13:20 +0900659 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700660 } else {
661 send_sllao = 0;
662 }
663 }
664#endif
YOSHIFUJI Hideakie1ec7842007-04-24 20:44:52 +0900665 __ndisc_send(dev, NULL, daddr, saddr,
666 &icmp6h, NULL,
David L Stevens14878f72007-09-16 16:52:35 -0700667 send_sllao ? ND_OPT_SOURCE_LL_ADDR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671static void ndisc_error_report(struct neighbour *neigh, struct sk_buff *skb)
672{
673 /*
674 * "The sender MUST return an ICMP
675 * destination unreachable"
676 */
677 dst_link_failure(skb);
678 kfree_skb(skb);
679}
680
681/* Called with locked neigh: either read or both */
682
683static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
684{
685 struct in6_addr *saddr = NULL;
686 struct in6_addr mcaddr;
687 struct net_device *dev = neigh->dev;
688 struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
689 int probes = atomic_read(&neigh->probes);
690
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900691 if (skb && ipv6_chk_addr(dev_net(dev), &ipv6_hdr(skb)->saddr, dev, 1))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700692 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if ((probes -= neigh->parms->ucast_probes) < 0) {
695 if (!(neigh->nud_state & NUD_VALID)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700696 ND_PRINTK1(KERN_DEBUG "%s(): trying to ucast probe in NUD_INVALID: %pI6\n",
Harvey Harrison0c6ce782008-10-28 16:09:23 -0700697 __func__, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699 ndisc_send_ns(dev, neigh, target, target, saddr);
700 } else if ((probes -= neigh->parms->app_probes) < 0) {
701#ifdef CONFIG_ARPD
702 neigh_app_ns(neigh);
703#endif
704 } else {
705 addrconf_addr_solict_mult(target, &mcaddr);
706 ndisc_send_ns(dev, NULL, target, &mcaddr, saddr);
707 }
708}
709
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900710static int pndisc_is_router(const void *pkey,
711 struct net_device *dev)
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700712{
713 struct pneigh_entry *n;
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900714 int ret = -1;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700715
716 read_lock_bh(&nd_tbl.lock);
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900717 n = __pneigh_lookup(&nd_tbl, dev_net(dev), pkey, dev);
718 if (n)
719 ret = !!(n->flags & NTF_ROUTER);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700720 read_unlock_bh(&nd_tbl.lock);
721
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900722 return ret;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725static void ndisc_recv_ns(struct sk_buff *skb)
726{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700727 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000728 const struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
729 const struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700731 u32 ndoptlen = skb->tail - (skb->transport_header +
732 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct ndisc_options ndopts;
734 struct net_device *dev = skb->dev;
735 struct inet6_ifaddr *ifp;
736 struct inet6_dev *idev = NULL;
737 struct neighbour *neigh;
738 int dad = ipv6_addr_any(saddr);
739 int inc;
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900740 int is_router = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (ipv6_addr_is_multicast(&msg->target)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900743 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 "ICMPv6 NS: multicast target address");
745 return;
746 }
747
748 /*
749 * RFC2461 7.1.1:
750 * DAD has to be destined for solicited node multicast address.
751 */
752 if (dad &&
753 !(daddr->s6_addr32[0] == htonl(0xff020000) &&
754 daddr->s6_addr32[1] == htonl(0x00000000) &&
755 daddr->s6_addr32[2] == htonl(0x00000001) &&
756 daddr->s6_addr [12] == 0xff )) {
757 ND_PRINTK2(KERN_WARNING
758 "ICMPv6 NS: bad DAD packet (wrong destination)\n");
759 return;
760 }
761
762 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900763 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 "ICMPv6 NS: invalid ND options\n");
765 return;
766 }
767
768 if (ndopts.nd_opts_src_lladdr) {
769 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr, dev);
770 if (!lladdr) {
771 ND_PRINTK2(KERN_WARNING
772 "ICMPv6 NS: invalid link-layer address length\n");
773 return;
774 }
775
776 /* RFC2461 7.1.1:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900777 * If the IP source address is the unspecified address,
778 * there MUST NOT be source link-layer address option
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 * in the message.
780 */
781 if (dad) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900782 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 "ICMPv6 NS: bad DAD packet (link-layer address option)\n");
784 return;
785 }
786 }
787
788 inc = ipv6_addr_is_multicast(daddr);
789
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900790 ifp = ipv6_get_ifaddr(dev_net(dev), &msg->target, dev, 1);
Daniel Lezcanoa18bc692008-03-07 11:14:49 -0800791 if (ifp) {
Neil Horman95c385b2007-04-25 17:08:10 -0700792
793 if (ifp->flags & (IFA_F_TENTATIVE|IFA_F_OPTIMISTIC)) {
794 if (dad) {
795 if (dev->type == ARPHRD_IEEE802_TR) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700796 const unsigned char *sadr;
797 sadr = skb_mac_header(skb);
Neil Horman95c385b2007-04-25 17:08:10 -0700798 if (((sadr[8] ^ dev->dev_addr[0]) & 0x7f) == 0 &&
799 sadr[9] == dev->dev_addr[1] &&
800 sadr[10] == dev->dev_addr[2] &&
801 sadr[11] == dev->dev_addr[3] &&
802 sadr[12] == dev->dev_addr[4] &&
803 sadr[13] == dev->dev_addr[5]) {
804 /* looped-back to us */
805 goto out;
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Neil Horman95c385b2007-04-25 17:08:10 -0700808
809 /*
810 * We are colliding with another node
811 * who is doing DAD
812 * so fail our DAD process
813 */
814 addrconf_dad_failure(ifp);
Denis V. Lunev9e3be4b2007-09-11 11:04:49 +0200815 return;
Neil Horman95c385b2007-04-25 17:08:10 -0700816 } else {
817 /*
818 * This is not a dad solicitation.
819 * If we are an optimistic node,
820 * we should respond.
821 * Otherwise, we should ignore it.
822 */
823 if (!(ifp->flags & IFA_F_OPTIMISTIC))
824 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
828 idev = ifp->idev;
829 } else {
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700830 struct net *net = dev_net(dev);
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 idev = in6_dev_get(dev);
833 if (!idev) {
834 /* XXX: count this drop? */
835 return;
836 }
837
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700838 if (ipv6_chk_acast_addr(net, dev, &msg->target) ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900839 (idev->cnf.forwarding &&
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700840 (net->ipv6.devconf_all->proxy_ndp || idev->cnf.proxy_ndp) &&
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900841 (is_router = pndisc_is_router(&msg->target, dev)) >= 0)) {
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700842 if (!(NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 skb->pkt_type != PACKET_HOST &&
844 inc != 0 &&
845 idev->nd_parms->proxy_delay != 0) {
846 /*
847 * for anycast or proxy,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900848 * sender should delay its response
849 * by a random time between 0 and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * MAX_ANYCAST_DELAY_TIME seconds.
851 * (RFC2461) -- yoshfuji
852 */
853 struct sk_buff *n = skb_clone(skb, GFP_ATOMIC);
854 if (n)
855 pneigh_enqueue(&nd_tbl, idev->nd_parms, n);
856 goto out;
857 }
858 } else
859 goto out;
860 }
861
YOSHIFUJI Hideaki0736ffc2008-03-28 13:37:58 +0900862 if (is_router < 0)
863 is_router = !!idev->cnf.forwarding;
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (dad) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900866 ndisc_send_na(dev, NULL, &in6addr_linklocal_allnodes, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700867 is_router, 0, (ifp != NULL), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto out;
869 }
870
871 if (inc)
872 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_mcast);
873 else
874 NEIGH_CACHE_STAT_INC(&nd_tbl, rcv_probes_ucast);
875
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900876 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 * update / create cache entry
878 * for the source address
879 */
880 neigh = __neigh_lookup(&nd_tbl, saddr, dev,
881 !inc || lladdr || !dev->addr_len);
882 if (neigh)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900883 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 NEIGH_UPDATE_F_WEAK_OVERRIDE|
885 NEIGH_UPDATE_F_OVERRIDE);
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700886 if (neigh || !dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 ndisc_send_na(dev, neigh, saddr, &msg->target,
Ville Nuorvala62dd9312006-09-22 14:43:19 -0700888 is_router,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 1, (ifp != NULL && inc), inc);
890 if (neigh)
891 neigh_release(neigh);
892 }
893
894out:
895 if (ifp)
896 in6_ifa_put(ifp);
897 else
898 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901static void ndisc_recv_na(struct sk_buff *skb)
902{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700903 struct nd_msg *msg = (struct nd_msg *)skb_transport_header(skb);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000904 const struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
905 const struct in6_addr *daddr = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 u8 *lladdr = NULL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700907 u32 ndoptlen = skb->tail - (skb->transport_header +
908 offsetof(struct nd_msg, opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct ndisc_options ndopts;
910 struct net_device *dev = skb->dev;
911 struct inet6_ifaddr *ifp;
912 struct neighbour *neigh;
913
914 if (skb->len < sizeof(struct nd_msg)) {
915 ND_PRINTK2(KERN_WARNING
916 "ICMPv6 NA: packet too short\n");
917 return;
918 }
919
920 if (ipv6_addr_is_multicast(&msg->target)) {
921 ND_PRINTK2(KERN_WARNING
922 "ICMPv6 NA: target address is multicast.\n");
923 return;
924 }
925
926 if (ipv6_addr_is_multicast(daddr) &&
927 msg->icmph.icmp6_solicited) {
928 ND_PRINTK2(KERN_WARNING
929 "ICMPv6 NA: solicited NA is multicasted.\n");
930 return;
931 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (!ndisc_parse_options(msg->opt, ndoptlen, &ndopts)) {
934 ND_PRINTK2(KERN_WARNING
935 "ICMPv6 NS: invalid ND option\n");
936 return;
937 }
938 if (ndopts.nd_opts_tgt_lladdr) {
939 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, dev);
940 if (!lladdr) {
941 ND_PRINTK2(KERN_WARNING
942 "ICMPv6 NA: invalid link-layer address length\n");
943 return;
944 }
945 }
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900946 ifp = ipv6_get_ifaddr(dev_net(dev), &msg->target, dev, 1);
Daniel Lezcanoa18bc692008-03-07 11:14:49 -0800947 if (ifp) {
Daniel Walterbd015922011-04-13 21:09:25 +0000948 if (skb->pkt_type != PACKET_LOOPBACK
949 && (ifp->flags & IFA_F_TENTATIVE)) {
950 addrconf_dad_failure(ifp);
951 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953 /* What should we make now? The advertisement
954 is invalid, but ndisc specs say nothing
955 about it. It could be misconfiguration, or
956 an smart proxy agent tries to help us :-)
Jan Sembera24fc7b82008-12-09 15:48:32 -0800957
958 We should not print the error if NA has been
959 received from loopback - it is just our own
960 unsolicited advertisement.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 */
Jan Sembera24fc7b82008-12-09 15:48:32 -0800962 if (skb->pkt_type != PACKET_LOOPBACK)
963 ND_PRINTK1(KERN_WARNING
Jens Rosenbooma6fa3282009-08-12 22:16:04 +0000964 "ICMPv6 NA: someone advertises our address %pI6 on %s!\n",
965 &ifp->addr, ifp->idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 in6_ifa_put(ifp);
967 return;
968 }
969 neigh = neigh_lookup(&nd_tbl, &msg->target, dev);
970
971 if (neigh) {
972 u8 old_flags = neigh->flags;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700973 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 if (neigh->nud_state & NUD_FAILED)
976 goto out;
977
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700978 /*
979 * Don't update the neighbor cache entry on a proxy NA from
980 * ourselves because either the proxied node is off link or it
981 * has already sent a NA to us.
982 */
983 if (lladdr && !memcmp(lladdr, dev->dev_addr, dev->addr_len) &&
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700984 net->ipv6.devconf_all->forwarding && net->ipv6.devconf_all->proxy_ndp &&
985 pneigh_lookup(&nd_tbl, net, &msg->target, dev, 0)) {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700986 /* XXX: idev->cnf.prixy_ndp */
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700987 goto out;
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700988 }
Ville Nuorvala5f3e6e92006-09-22 14:42:46 -0700989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 neigh_update(neigh, lladdr,
991 msg->icmph.icmp6_solicited ? NUD_REACHABLE : NUD_STALE,
992 NEIGH_UPDATE_F_WEAK_OVERRIDE|
993 (msg->icmph.icmp6_override ? NEIGH_UPDATE_F_OVERRIDE : 0)|
994 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
995 (msg->icmph.icmp6_router ? NEIGH_UPDATE_F_ISROUTER : 0));
996
997 if ((old_flags & ~neigh->flags) & NTF_ROUTER) {
998 /*
999 * Change: router to host
1000 */
1001 struct rt6_info *rt;
1002 rt = rt6_get_dflt_router(saddr, dev);
1003 if (rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001004 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
1007out:
1008 neigh_release(neigh);
1009 }
1010}
1011
1012static void ndisc_recv_rs(struct sk_buff *skb)
1013{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001014 struct rs_msg *rs_msg = (struct rs_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 unsigned long ndoptlen = skb->len - sizeof(*rs_msg);
1016 struct neighbour *neigh;
1017 struct inet6_dev *idev;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001018 const struct in6_addr *saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 struct ndisc_options ndopts;
1020 u8 *lladdr = NULL;
1021
1022 if (skb->len < sizeof(*rs_msg))
1023 return;
1024
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001025 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (!idev) {
1027 if (net_ratelimit())
1028 ND_PRINTK1("ICMP6 RS: can't find in6 device\n");
1029 return;
1030 }
1031
1032 /* Don't accept RS if we're not in router mode */
1033 if (!idev->cnf.forwarding)
1034 goto out;
1035
1036 /*
1037 * Don't update NCE if src = ::;
1038 * this implies that the source node has no ip address assigned yet.
1039 */
1040 if (ipv6_addr_any(saddr))
1041 goto out;
1042
1043 /* Parse ND options */
1044 if (!ndisc_parse_options(rs_msg->opt, ndoptlen, &ndopts)) {
1045 if (net_ratelimit())
1046 ND_PRINTK2("ICMP6 NS: invalid ND option, ignored\n");
1047 goto out;
1048 }
1049
1050 if (ndopts.nd_opts_src_lladdr) {
1051 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1052 skb->dev);
1053 if (!lladdr)
1054 goto out;
1055 }
1056
1057 neigh = __neigh_lookup(&nd_tbl, saddr, skb->dev, 1);
1058 if (neigh) {
1059 neigh_update(neigh, lladdr, NUD_STALE,
1060 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1061 NEIGH_UPDATE_F_OVERRIDE|
1062 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
1063 neigh_release(neigh);
1064 }
1065out:
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001066 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
Pierre Ynard31910572007-10-10 21:22:05 -07001069static void ndisc_ra_useropt(struct sk_buff *ra, struct nd_opt_hdr *opt)
1070{
1071 struct icmp6hdr *icmp6h = (struct icmp6hdr *)skb_transport_header(ra);
1072 struct sk_buff *skb;
1073 struct nlmsghdr *nlh;
1074 struct nduseroptmsg *ndmsg;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001075 struct net *net = dev_net(ra->dev);
Pierre Ynard31910572007-10-10 21:22:05 -07001076 int err;
1077 int base_size = NLMSG_ALIGN(sizeof(struct nduseroptmsg)
1078 + (opt->nd_opt_len << 3));
1079 size_t msg_size = base_size + nla_total_size(sizeof(struct in6_addr));
1080
1081 skb = nlmsg_new(msg_size, GFP_ATOMIC);
1082 if (skb == NULL) {
1083 err = -ENOBUFS;
1084 goto errout;
1085 }
1086
1087 nlh = nlmsg_put(skb, 0, 0, RTM_NEWNDUSEROPT, base_size, 0);
1088 if (nlh == NULL) {
1089 goto nla_put_failure;
1090 }
1091
1092 ndmsg = nlmsg_data(nlh);
1093 ndmsg->nduseropt_family = AF_INET6;
Pierre Ynarddbb2ed22007-11-12 17:58:35 -08001094 ndmsg->nduseropt_ifindex = ra->dev->ifindex;
Pierre Ynard31910572007-10-10 21:22:05 -07001095 ndmsg->nduseropt_icmp_type = icmp6h->icmp6_type;
1096 ndmsg->nduseropt_icmp_code = icmp6h->icmp6_code;
1097 ndmsg->nduseropt_opts_len = opt->nd_opt_len << 3;
1098
1099 memcpy(ndmsg + 1, opt, opt->nd_opt_len << 3);
1100
1101 NLA_PUT(skb, NDUSEROPT_SRCADDR, sizeof(struct in6_addr),
1102 &ipv6_hdr(ra)->saddr);
1103 nlmsg_end(skb, nlh);
1104
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001105 rtnl_notify(skb, net, 0, RTNLGRP_ND_USEROPT, NULL, GFP_ATOMIC);
Pierre Ynard31910572007-10-10 21:22:05 -07001106 return;
1107
1108nla_put_failure:
1109 nlmsg_free(skb);
1110 err = -EMSGSIZE;
1111errout:
Daniel Lezcanoa18bc692008-03-07 11:14:49 -08001112 rtnl_set_sk_err(net, RTNLGRP_ND_USEROPT, err);
Pierre Ynard31910572007-10-10 21:22:05 -07001113}
1114
Thomas Graf65e9b622010-09-03 02:59:14 +00001115static inline int accept_ra(struct inet6_dev *in6_dev)
1116{
1117 /*
1118 * If forwarding is enabled, RA are not accepted unless the special
1119 * hybrid mode (accept_ra=2) is enabled.
1120 */
1121 if (in6_dev->cnf.forwarding && in6_dev->cnf.accept_ra < 2)
1122 return 0;
1123
1124 return in6_dev->cnf.accept_ra;
1125}
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127static void ndisc_router_discovery(struct sk_buff *skb)
1128{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001129 struct ra_msg *ra_msg = (struct ra_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 struct neighbour *neigh = NULL;
1131 struct inet6_dev *in6_dev;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001132 struct rt6_info *rt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 int lifetime;
1134 struct ndisc_options ndopts;
1135 int optlen;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001136 unsigned int pref = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 __u8 * opt = (__u8 *)(ra_msg + 1);
1139
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001140 optlen = (skb->tail - skb->transport_header) - sizeof(struct ra_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001142 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 ND_PRINTK2(KERN_WARNING
1144 "ICMPv6 RA: source address is not link-local.\n");
1145 return;
1146 }
1147 if (optlen < 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001148 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 "ICMPv6 RA: packet too short\n");
1150 return;
1151 }
1152
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001153#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001154 if (skb->ndisc_nodetype == NDISC_NODETYPE_HOST) {
1155 ND_PRINTK2(KERN_WARNING
1156 "ICMPv6 RA: from host or unauthorized router\n");
1157 return;
1158 }
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001159#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /*
1162 * set the RA_RECV flag in the interface
1163 */
1164
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001165 in6_dev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (in6_dev == NULL) {
1167 ND_PRINTK0(KERN_ERR
1168 "ICMPv6 RA: can't find inet6 device for %s.\n",
1169 skb->dev->name);
1170 return;
1171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 if (!ndisc_parse_options(opt, optlen, &ndopts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 ND_PRINTK2(KERN_WARNING
1175 "ICMP6 RA: invalid ND options\n");
1176 return;
1177 }
1178
Thomas Graf65e9b622010-09-03 02:59:14 +00001179 if (!accept_ra(in6_dev))
David Ward31ce8c72009-08-29 00:04:09 -07001180 goto skip_linkparms;
1181
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001182#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001183 /* skip link-specific parameters from interior routers */
1184 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT)
1185 goto skip_linkparms;
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001186#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (in6_dev->if_flags & IF_RS_SENT) {
1189 /*
1190 * flag that an RA was received after an RS was sent
1191 * out on this interface.
1192 */
1193 in6_dev->if_flags |= IF_RA_RCVD;
1194 }
1195
1196 /*
1197 * Remember the managed/otherconf flags from most recently
1198 * received RA message (RFC 2462) -- yoshfuji
1199 */
1200 in6_dev->if_flags = (in6_dev->if_flags & ~(IF_RA_MANAGED |
1201 IF_RA_OTHERCONF)) |
1202 (ra_msg->icmph.icmp6_addrconf_managed ?
1203 IF_RA_MANAGED : 0) |
1204 (ra_msg->icmph.icmp6_addrconf_other ?
1205 IF_RA_OTHERCONF : 0);
1206
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001207 if (!in6_dev->cnf.accept_ra_defrtr)
1208 goto skip_defrtr;
1209
Andreas Hofmeister9f562202011-10-24 19:13:15 -04001210 if (ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr, NULL, 0))
1211 goto skip_defrtr;
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime);
1214
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001215#ifdef CONFIG_IPV6_ROUTER_PREF
1216 pref = ra_msg->icmph.icmp6_router_pref;
1217 /* 10b is handled as if it were 00b (medium) */
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08001218 if (pref == ICMPV6_ROUTER_PREF_INVALID ||
YOSHIFUJI Hideaki6d5b78c2007-06-22 16:07:04 -07001219 !in6_dev->cnf.accept_ra_rtr_pref)
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001220 pref = ICMPV6_ROUTER_PREF_MEDIUM;
1221#endif
1222
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001223 rt = rt6_get_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
David S. Millereb857182012-01-27 15:07:56 -08001225 if (rt) {
1226 neigh = dst_neigh_lookup(&rt->dst, &ipv6_hdr(skb)->saddr);
1227 if (!neigh) {
1228 ND_PRINTK0(KERN_ERR
1229 "ICMPv6 RA: %s() got default router without neighbour.\n",
1230 __func__);
1231 dst_release(&rt->dst);
1232 return;
1233 }
1234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (rt && lifetime == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001236 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 rt = NULL;
1238 }
1239
1240 if (rt == NULL && lifetime) {
1241 ND_PRINTK3(KERN_DEBUG
1242 "ICMPv6 RA: adding default router.\n");
1243
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001244 rt = rt6_add_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev, pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 if (rt == NULL) {
1246 ND_PRINTK0(KERN_ERR
1247 "ICMPv6 RA: %s() failed to add default route.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001248 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return;
1250 }
1251
David S. Millereb857182012-01-27 15:07:56 -08001252 neigh = dst_neigh_lookup(&rt->dst, &ipv6_hdr(skb)->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (neigh == NULL) {
1254 ND_PRINTK0(KERN_ERR
1255 "ICMPv6 RA: %s() got default router without neighbour.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001256 __func__);
Changli Gaod8d1f302010-06-10 23:31:35 -07001257 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return;
1259 }
1260 neigh->flags |= NTF_ROUTER;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001261 } else if (rt) {
Pedro Ribeiro22441cf2008-10-15 15:47:49 -07001262 rt->rt6i_flags = (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264
1265 if (rt)
Gao feng1716a962012-04-06 00:13:10 +00001266 rt6_set_expires(rt, jiffies + (HZ * lifetime));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (ra_msg->icmph.icmp6_hop_limit) {
1268 in6_dev->cnf.hop_limit = ra_msg->icmph.icmp6_hop_limit;
1269 if (rt)
David S. Millerdefb3512010-12-08 21:16:57 -08001270 dst_metric_set(&rt->dst, RTAX_HOPLIMIT,
1271 ra_msg->icmph.icmp6_hop_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08001274skip_defrtr:
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /*
1277 * Update Reachable Time and Retrans Timer
1278 */
1279
1280 if (in6_dev->nd_parms) {
1281 unsigned long rtime = ntohl(ra_msg->retrans_timer);
1282
1283 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/HZ) {
1284 rtime = (rtime*HZ)/1000;
1285 if (rtime < HZ/10)
1286 rtime = HZ/10;
1287 in6_dev->nd_parms->retrans_time = rtime;
1288 in6_dev->tstamp = jiffies;
1289 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1290 }
1291
1292 rtime = ntohl(ra_msg->reachable_time);
1293 if (rtime && rtime/1000 < MAX_SCHEDULE_TIMEOUT/(3*HZ)) {
1294 rtime = (rtime*HZ)/1000;
1295
1296 if (rtime < HZ/10)
1297 rtime = HZ/10;
1298
1299 if (rtime != in6_dev->nd_parms->base_reachable_time) {
1300 in6_dev->nd_parms->base_reachable_time = rtime;
1301 in6_dev->nd_parms->gc_staletime = 3 * rtime;
1302 in6_dev->nd_parms->reachable_time = neigh_rand_reach_time(rtime);
1303 in6_dev->tstamp = jiffies;
1304 inet6_ifinfo_notify(RTM_NEWLINK, in6_dev);
1305 }
1306 }
1307 }
1308
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001309skip_linkparms:
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /*
1312 * Process options.
1313 */
1314
1315 if (!neigh)
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001316 neigh = __neigh_lookup(&nd_tbl, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 skb->dev, 1);
1318 if (neigh) {
1319 u8 *lladdr = NULL;
1320 if (ndopts.nd_opts_src_lladdr) {
1321 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_src_lladdr,
1322 skb->dev);
1323 if (!lladdr) {
1324 ND_PRINTK2(KERN_WARNING
1325 "ICMPv6 RA: invalid link-layer address length\n");
1326 goto out;
1327 }
1328 }
1329 neigh_update(neigh, lladdr, NUD_STALE,
1330 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1331 NEIGH_UPDATE_F_OVERRIDE|
1332 NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1333 NEIGH_UPDATE_F_ISROUTER);
1334 }
1335
Thomas Graf65e9b622010-09-03 02:59:14 +00001336 if (!accept_ra(in6_dev))
David Ward31ce8c72009-08-29 00:04:09 -07001337 goto out;
1338
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001339#ifdef CONFIG_IPV6_ROUTE_INFO
Andreas Hofmeister9f562202011-10-24 19:13:15 -04001340 if (ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr, NULL, 0))
1341 goto skip_routeinfo;
1342
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001343 if (in6_dev->cnf.accept_ra_rtr_pref && ndopts.nd_opts_ri) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001344 struct nd_opt_hdr *p;
1345 for (p = ndopts.nd_opts_ri;
1346 p;
1347 p = ndisc_next_option(p, ndopts.nd_opts_ri_end)) {
YOSHIFUJI Hideaki6294e002008-03-15 23:56:52 -04001348 struct route_info *ri = (struct route_info *)p;
1349#ifdef CONFIG_IPV6_NDISC_NODETYPE
1350 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT &&
1351 ri->prefix_len == 0)
1352 continue;
1353#endif
1354 if (ri->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen)
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08001355 continue;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001356 rt6_route_rcv(skb->dev, (u8*)p, (p->nd_opt_len) << 3,
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001357 &ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001358 }
1359 }
Andreas Hofmeister9f562202011-10-24 19:13:15 -04001360
1361skip_routeinfo:
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001362#endif
1363
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001364#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001365 /* skip link-specific ndopts from interior routers */
1366 if (skb->ndisc_nodetype == NDISC_NODETYPE_NODEFAULT)
1367 goto out;
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001368#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001369
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08001370 if (in6_dev->cnf.accept_ra_pinfo && ndopts.nd_opts_pi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct nd_opt_hdr *p;
1372 for (p = ndopts.nd_opts_pi;
1373 p;
1374 p = ndisc_next_option(p, ndopts.nd_opts_pi_end)) {
Neil Hormane6bff992012-01-04 10:49:15 +00001375 addrconf_prefix_rcv(skb->dev, (u8 *)p,
1376 (p->nd_opt_len) << 3,
1377 ndopts.nd_opts_src_lladdr != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379 }
1380
1381 if (ndopts.nd_opts_mtu) {
Al Viroe69a4ad2006-11-14 20:56:00 -08001382 __be32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 u32 mtu;
1384
Al Viroe69a4ad2006-11-14 20:56:00 -08001385 memcpy(&n, ((u8*)(ndopts.nd_opts_mtu+1))+2, sizeof(mtu));
1386 mtu = ntohl(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 if (mtu < IPV6_MIN_MTU || mtu > skb->dev->mtu) {
1389 ND_PRINTK2(KERN_WARNING
1390 "ICMPv6 RA: invalid mtu: %d\n",
1391 mtu);
1392 } else if (in6_dev->cnf.mtu6 != mtu) {
1393 in6_dev->cnf.mtu6 = mtu;
1394
1395 if (rt)
David S. Millerdefb3512010-12-08 21:16:57 -08001396 dst_metric_set(&rt->dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 rt6_mtu_change(skb->dev, mtu);
1399 }
1400 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001401
Pierre Ynard31910572007-10-10 21:22:05 -07001402 if (ndopts.nd_useropts) {
YOSHIFUJI Hideaki61cf46a2008-01-22 17:32:53 +09001403 struct nd_opt_hdr *p;
1404 for (p = ndopts.nd_useropts;
1405 p;
1406 p = ndisc_next_useropt(p, ndopts.nd_useropts_end)) {
1407 ndisc_ra_useropt(skb, p);
Pierre Ynard31910572007-10-10 21:22:05 -07001408 }
1409 }
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (ndopts.nd_opts_tgt_lladdr || ndopts.nd_opts_rh) {
1412 ND_PRINTK2(KERN_WARNING
1413 "ICMPv6 RA: invalid RA options");
1414 }
1415out:
1416 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001417 dst_release(&rt->dst);
David S. Millereb857182012-01-27 15:07:56 -08001418 if (neigh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 neigh_release(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
1422static void ndisc_redirect_rcv(struct sk_buff *skb)
1423{
1424 struct inet6_dev *in6_dev;
1425 struct icmp6hdr *icmph;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001426 const struct in6_addr *dest;
1427 const struct in6_addr *target; /* new first hop to destination */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 struct neighbour *neigh;
1429 int on_link = 0;
1430 struct ndisc_options ndopts;
1431 int optlen;
1432 u8 *lladdr = NULL;
1433
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001434#ifdef CONFIG_IPV6_NDISC_NODETYPE
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001435 switch (skb->ndisc_nodetype) {
1436 case NDISC_NODETYPE_HOST:
1437 case NDISC_NODETYPE_NODEFAULT:
1438 ND_PRINTK2(KERN_WARNING
1439 "ICMPv6 Redirect: from host or unauthorized router\n");
1440 return;
1441 }
YOSHIFUJI Hideakide357cc2008-03-15 23:59:18 -04001442#endif
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001443
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001444 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 ND_PRINTK2(KERN_WARNING
1446 "ICMPv6 Redirect: source address is not link-local.\n");
1447 return;
1448 }
1449
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001450 optlen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1452
1453 if (optlen < 0) {
1454 ND_PRINTK2(KERN_WARNING
1455 "ICMPv6 Redirect: packet too short\n");
1456 return;
1457 }
1458
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -03001459 icmph = icmp6_hdr(skb);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001460 target = (const struct in6_addr *) (icmph + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 dest = target + 1;
1462
1463 if (ipv6_addr_is_multicast(dest)) {
1464 ND_PRINTK2(KERN_WARNING
1465 "ICMPv6 Redirect: destination address is multicast.\n");
1466 return;
1467 }
1468
1469 if (ipv6_addr_equal(dest, target)) {
1470 on_link = 1;
Brian Haleybf0b48d2007-10-08 00:12:05 -07001471 } else if (ipv6_addr_type(target) !=
1472 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001473 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001474 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return;
1476 }
1477
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001478 in6_dev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (!in6_dev)
1480 return;
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001481 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001484 /* RFC2461 8.1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 * The IP source address of the Redirect MUST be the same as the current
1486 * first-hop router for the specified ICMP Destination Address.
1487 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) {
1490 ND_PRINTK2(KERN_WARNING
1491 "ICMPv6 Redirect: invalid ND options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return;
1493 }
1494 if (ndopts.nd_opts_tgt_lladdr) {
1495 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1496 skb->dev);
1497 if (!lladdr) {
1498 ND_PRINTK2(KERN_WARNING
1499 "ICMPv6 Redirect: invalid link-layer address length\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return;
1501 }
1502 }
1503
1504 neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
1505 if (neigh) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001506 rt6_redirect(dest, &ipv6_hdr(skb)->daddr,
1507 &ipv6_hdr(skb)->saddr, neigh, lladdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 on_link);
1509 neigh_release(neigh);
1510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
David S. Miller49919692012-01-27 15:30:48 -08001513void ndisc_send_redirect(struct sk_buff *skb, const struct in6_addr *target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001515 struct net_device *dev = skb->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001516 struct net *net = dev_net(dev);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001517 struct sock *sk = net->ipv6.ndisc_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 int len = sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1519 struct sk_buff *buff;
1520 struct icmp6hdr *icmph;
1521 struct in6_addr saddr_buf;
1522 struct in6_addr *addrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 struct rt6_info *rt;
1524 struct dst_entry *dst;
1525 struct inet6_dev *idev;
David S. Miller4c9483b2011-03-12 16:22:43 -05001526 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 u8 *opt;
Herbert Xua7ae1992011-11-18 02:20:04 +00001528 int hlen, tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 int rd_len;
1530 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 u8 ha_buf[MAX_ADDR_LEN], *ha = NULL;
1532
Neil Horman95c385b2007-04-25 17:08:10 -07001533 if (ipv6_get_lladdr(dev, &saddr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 ND_PRINTK2(KERN_WARNING
1535 "ICMPv6 Redirect: no link-local address on %s\n",
1536 dev->name);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001537 return;
1538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001540 if (!ipv6_addr_equal(&ipv6_hdr(skb)->daddr, target) &&
Brian Haleybf0b48d2007-10-08 00:12:05 -07001541 ipv6_addr_type(target) != (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
Li Yewang29556522007-01-30 14:33:20 -08001542 ND_PRINTK2(KERN_WARNING
Brian Haleybf0b48d2007-10-08 00:12:05 -07001543 "ICMPv6 Redirect: target address is not link-local unicast.\n");
Li Yewang29556522007-01-30 14:33:20 -08001544 return;
1545 }
1546
David S. Miller4c9483b2011-03-12 16:22:43 -05001547 icmpv6_flow_init(sk, &fl6, NDISC_REDIRECT,
YOSHIFUJI Hideaki95e41e92007-12-06 15:43:30 -08001548 &saddr_buf, &ipv6_hdr(skb)->saddr, dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
David S. Miller4c9483b2011-03-12 16:22:43 -05001550 dst = ip6_route_output(net, NULL, &fl6);
RongQing.Li5095d642012-02-21 22:10:49 +00001551 if (dst->error) {
1552 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return;
RongQing.Li5095d642012-02-21 22:10:49 +00001554 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001555 dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001556 if (IS_ERR(dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 rt = (struct rt6_info *) dst;
1560
1561 if (rt->rt6i_flags & RTF_GATEWAY) {
1562 ND_PRINTK2(KERN_WARNING
1563 "ICMPv6 Redirect: destination is not a neighbour.\n");
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001564 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
David S. Miller92d86822011-02-04 15:55:25 -08001566 if (!rt->rt6i_peer)
1567 rt6_bind_peer(rt, 1);
Li Wei4d65a242011-11-23 03:51:54 -05001568 if (!inet_peer_xrlim_allow(rt->rt6i_peer, 1*HZ))
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001569 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 if (dev->addr_len) {
David S. Miller49919692012-01-27 15:30:48 -08001572 struct neighbour *neigh = dst_neigh_lookup(skb_dst(skb), target);
1573 if (!neigh) {
1574 ND_PRINTK2(KERN_WARNING
1575 "ICMPv6 Redirect: no neigh for target address\n");
1576 goto release;
1577 }
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 read_lock_bh(&neigh->lock);
1580 if (neigh->nud_state & NUD_VALID) {
1581 memcpy(ha_buf, neigh->ha, dev->addr_len);
1582 read_unlock_bh(&neigh->lock);
1583 ha = ha_buf;
1584 len += ndisc_opt_addr_space(dev);
1585 } else
1586 read_unlock_bh(&neigh->lock);
David S. Miller49919692012-01-27 15:30:48 -08001587
1588 neigh_release(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
1590
1591 rd_len = min_t(unsigned int,
1592 IPV6_MIN_MTU-sizeof(struct ipv6hdr)-len, skb->len + 8);
1593 rd_len &= ~0x7;
1594 len += rd_len;
1595
Herbert Xua7ae1992011-11-18 02:20:04 +00001596 hlen = LL_RESERVED_SPACE(dev);
1597 tlen = dev->needed_tailroom;
David S. Millerd54a81d2006-12-02 21:00:06 -08001598 buff = sock_alloc_send_skb(sk,
1599 (MAX_HEADER + sizeof(struct ipv6hdr) +
Herbert Xua7ae1992011-11-18 02:20:04 +00001600 len + hlen + tlen),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 1, &err);
1602 if (buff == NULL) {
1603 ND_PRINTK0(KERN_ERR
Brian Haleydae9de82009-06-02 00:20:26 -07001604 "ICMPv6 Redirect: %s() failed to allocate an skb, err=%d.\n",
1605 __func__, err);
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001606 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608
Herbert Xua7ae1992011-11-18 02:20:04 +00001609 skb_reserve(buff, hlen);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001610 ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 IPPROTO_ICMPV6, len);
1612
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001613 skb_set_transport_header(buff, skb_tail_pointer(buff) - buff->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001614 skb_put(buff, len);
1615 icmph = icmp6_hdr(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 memset(icmph, 0, sizeof(struct icmp6hdr));
1618 icmph->icmp6_type = NDISC_REDIRECT;
1619
1620 /*
1621 * copy target and destination addresses
1622 */
1623
1624 addrp = (struct in6_addr *)(icmph + 1);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001625 *addrp = *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 addrp++;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001627 *addrp = ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 opt = (u8*) (addrp + 1);
1630
1631 /*
1632 * include target_address option
1633 */
1634
1635 if (ha)
1636 opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, ha,
1637 dev->addr_len, dev->type);
1638
1639 /*
1640 * build redirect option and copy skb over to the new packet.
1641 */
1642
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001643 memset(opt, 0, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 *(opt++) = ND_OPT_REDIRECT_HDR;
1645 *(opt++) = (rd_len >> 3);
1646 opt += 6;
1647
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001648 memcpy(opt, ipv6_hdr(skb), rd_len - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001650 icmph->icmp6_cksum = csum_ipv6_magic(&saddr_buf, &ipv6_hdr(skb)->saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 len, IPPROTO_ICMPV6,
Joe Perches07f07572008-11-19 15:44:53 -08001652 csum_partial(icmph, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Eric Dumazetadf30902009-06-02 05:19:30 +00001654 skb_dst_set(buff, dst);
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001655 rcu_read_lock();
1656 idev = __in6_dev_get(dst->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001657 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001658 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001659 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07001661 ICMP6MSGOUT_INC_STATS(net, idev, NDISC_REDIRECT);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07001662 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664
Eric Dumazetcfdf7642011-07-27 21:13:03 +00001665 rcu_read_unlock();
Ilpo Järvinend73f0802009-02-06 23:47:37 -08001666 return;
1667
1668release:
1669 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670}
1671
1672static void pndisc_redo(struct sk_buff *skb)
1673{
YOSHIFUJI Hideaki140e26fc2005-10-05 12:11:41 -07001674 ndisc_recv_ns(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 kfree_skb(skb);
1676}
1677
1678int ndisc_rcv(struct sk_buff *skb)
1679{
1680 struct nd_msg *msg;
1681
1682 if (!pskb_may_pull(skb, skb->len))
1683 return 0;
1684
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001685 msg = (struct nd_msg *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001687 __skb_push(skb, skb->data - skb_transport_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001689 if (ipv6_hdr(skb)->hop_limit != 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 ND_PRINTK2(KERN_WARNING
1691 "ICMPv6 NDISC: invalid hop-limit: %d\n",
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001692 ipv6_hdr(skb)->hop_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return 0;
1694 }
1695
1696 if (msg->icmph.icmp6_code != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001697 ND_PRINTK2(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 "ICMPv6 NDISC: invalid ICMPv6 code: %d\n",
1699 msg->icmph.icmp6_code);
1700 return 0;
1701 }
1702
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001703 memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 switch (msg->icmph.icmp6_type) {
1706 case NDISC_NEIGHBOUR_SOLICITATION:
1707 ndisc_recv_ns(skb);
1708 break;
1709
1710 case NDISC_NEIGHBOUR_ADVERTISEMENT:
1711 ndisc_recv_na(skb);
1712 break;
1713
1714 case NDISC_ROUTER_SOLICITATION:
1715 ndisc_recv_rs(skb);
1716 break;
1717
1718 case NDISC_ROUTER_ADVERTISEMENT:
1719 ndisc_router_discovery(skb);
1720 break;
1721
1722 case NDISC_REDIRECT:
1723 ndisc_redirect_rcv(skb);
1724 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 return 0;
1728}
1729
1730static int ndisc_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1731{
1732 struct net_device *dev = ptr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001733 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 switch (event) {
1736 case NETDEV_CHANGEADDR:
1737 neigh_changeaddr(&nd_tbl, dev);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001738 fib6_run_gc(~0UL, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 break;
1740 case NETDEV_DOWN:
1741 neigh_ifdown(&nd_tbl, dev);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001742 fib6_run_gc(~0UL, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 break;
Ben Hutchingsf47b9462011-04-15 13:46:02 +00001744 case NETDEV_NOTIFY_PEERS:
1745 ndisc_send_unsol_na(dev);
1746 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 default:
1748 break;
1749 }
1750
1751 return NOTIFY_DONE;
1752}
1753
1754static struct notifier_block ndisc_netdev_notifier = {
1755 .notifier_call = ndisc_netdev_event,
1756};
1757
1758#ifdef CONFIG_SYSCTL
1759static void ndisc_warn_deprecated_sysctl(struct ctl_table *ctl,
1760 const char *func, const char *dev_name)
1761{
1762 static char warncomm[TASK_COMM_LEN];
1763 static int warned;
1764 if (strcmp(warncomm, current->comm) && warned < 5) {
1765 strcpy(warncomm, current->comm);
1766 printk(KERN_WARNING
1767 "process `%s' is using deprecated sysctl (%s) "
1768 "net.ipv6.neigh.%s.%s; "
1769 "Use net.ipv6.neigh.%s.%s_ms "
1770 "instead.\n",
1771 warncomm, func,
1772 dev_name, ctl->procname,
1773 dev_name, ctl->procname);
1774 warned++;
1775 }
1776}
1777
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001778int 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 -07001779{
1780 struct net_device *dev = ctl->extra1;
1781 struct inet6_dev *idev;
1782 int ret;
1783
Eric W. Biedermand12af672007-10-18 03:05:25 -07001784 if ((strcmp(ctl->procname, "retrans_time") == 0) ||
1785 (strcmp(ctl->procname, "base_reachable_time") == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 ndisc_warn_deprecated_sysctl(ctl, "syscall", dev ? dev->name : "default");
1787
Eric W. Biedermand12af672007-10-18 03:05:25 -07001788 if (strcmp(ctl->procname, "retrans_time") == 0)
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001789 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001790
1791 else if (strcmp(ctl->procname, "base_reachable_time") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 ret = proc_dointvec_jiffies(ctl, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001793 buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001794
1795 else if ((strcmp(ctl->procname, "retrans_time_ms") == 0) ||
YOSHIFUJI Hideakiad02ac12007-10-29 01:32:23 -07001796 (strcmp(ctl->procname, "base_reachable_time_ms") == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 ret = proc_dointvec_ms_jiffies(ctl, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001798 buffer, lenp, ppos);
Eric W. Biedermand12af672007-10-18 03:05:25 -07001799 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 ret = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 if (write && ret == 0 && dev && (idev = in6_dev_get(dev)) != NULL) {
Eric W. Biedermand12af672007-10-18 03:05:25 -07001803 if (ctl->data == &idev->nd_parms->base_reachable_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 idev->nd_parms->reachable_time = neigh_rand_reach_time(idev->nd_parms->base_reachable_time);
1805 idev->tstamp = jiffies;
1806 inet6_ifinfo_notify(RTM_NEWLINK, idev);
1807 in6_dev_put(idev);
1808 }
1809 return ret;
1810}
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813#endif
1814
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001815static int __net_init ndisc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
1817 struct ipv6_pinfo *np;
1818 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001819 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001821 err = inet_ctl_sock_create(&sk, PF_INET6,
1822 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (err < 0) {
1824 ND_PRINTK0(KERN_ERR
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001825 "ICMPv6 NDISC: Failed to initialize the control socket (err %d).\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return err;
1828 }
1829
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001830 net->ipv6.ndisc_sk = sk;
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 np->hop_limit = 255;
1834 /* Do not loopback ndisc messages */
1835 np->mc_loop = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001837 return 0;
1838}
1839
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001840static void __net_exit ndisc_net_exit(struct net *net)
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001841{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07001842 inet_ctl_sock_destroy(net->ipv6.ndisc_sk);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001843}
1844
1845static struct pernet_operations ndisc_net_ops = {
1846 .init = ndisc_net_init,
1847 .exit = ndisc_net_exit,
1848};
1849
1850int __init ndisc_init(void)
1851{
1852 int err;
1853
1854 err = register_pernet_subsys(&ndisc_net_ops);
1855 if (err)
1856 return err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001857 /*
1858 * Initialize the neighbour table
1859 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 neigh_table_init(&nd_tbl);
1861
1862#ifdef CONFIG_SYSCTL
Eric W. Biederman54716e32010-02-14 03:27:03 +00001863 err = neigh_sysctl_register(NULL, &nd_tbl.parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001864 &ndisc_ifinfo_sysctl_change);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001865 if (err)
1866 goto out_unregister_pernet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867#endif
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001868 err = register_netdevice_notifier(&ndisc_netdev_notifier);
1869 if (err)
1870 goto out_unregister_sysctl;
1871out:
1872 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001874out_unregister_sysctl:
1875#ifdef CONFIG_SYSCTL
1876 neigh_sysctl_unregister(&nd_tbl.parms);
1877out_unregister_pernet:
1878#endif
1879 unregister_pernet_subsys(&ndisc_net_ops);
1880 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
1883void ndisc_cleanup(void)
1884{
Dmitry Mishin36f73d02006-11-03 16:08:19 -08001885 unregister_netdevice_notifier(&ndisc_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886#ifdef CONFIG_SYSCTL
1887 neigh_sysctl_unregister(&nd_tbl.parms);
1888#endif
1889 neigh_table_clear(&nd_tbl);
Daniel Lezcano1762f7e2008-03-07 11:15:34 -08001890 unregister_pernet_subsys(&ndisc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}