blob: ea86bf4bfe0aa6603792b34b689a7e284bed995a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
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 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
9 * $Id: addrconf.c,v 1.69 2001/10/31 21:55:54 davem Exp $
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
17/*
18 * Changes:
19 *
20 * Janos Farkas : delete timer on ifdown
21 * <chexum@bankinf.banki.hu>
22 * Andi Kleen : kill double kfree on module
23 * unload.
24 * Maciej W. Rozycki : FDDI support
25 * sekiya@USAGI : Don't send too many RS
26 * packets.
27 * yoshfuji@USAGI : Fixed interval between DAD
28 * packets.
29 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
30 * address validation timer.
31 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
32 * support.
33 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
34 * address on a same interface.
35 * YOSHIFUJI Hideaki @USAGI : ARCnet support
36 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
37 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080038 * YOSHIFUJI Hideaki @USAGI : improved source address
39 * selection; consider scope,
40 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
45#include <linux/socket.h>
46#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/net.h>
48#include <linux/in6.h>
49#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070050#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/if_arp.h>
52#include <linux/if_arcnet.h>
53#include <linux/if_infiniband.h>
54#include <linux/route.h>
55#include <linux/inetdevice.h>
56#include <linux/init.h>
57#ifdef CONFIG_SYSCTL
58#include <linux/sysctl.h>
59#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080060#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/delay.h>
62#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070063#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include <net/sock.h>
66#include <net/snmp.h>
67
68#include <net/ipv6.h>
69#include <net/protocol.h>
70#include <net/ndisc.h>
71#include <net/ip6_route.h>
72#include <net/addrconf.h>
73#include <net/tcp.h>
74#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070075#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/if_tunnel.h>
77#include <linux/rtnetlink.h>
78
79#ifdef CONFIG_IPV6_PRIVACY
80#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
83#include <asm/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070084#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#include <linux/proc_fs.h>
87#include <linux/seq_file.h>
88
89/* Set to 3 to get tracing... */
90#define ACONF_DEBUG 2
91
92#if ACONF_DEBUG >= 3
93#define ADBG(x) printk x
94#else
95#define ADBG(x)
96#endif
97
98#define INFINITY_LIFE_TIME 0xFFFFFFFF
99#define TIME_DELTA(a,b) ((unsigned long)((long)(a) - (long)(b)))
100
101#ifdef CONFIG_SYSCTL
102static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p);
103static void addrconf_sysctl_unregister(struct ipv6_devconf *p);
104#endif
105
106#ifdef CONFIG_IPV6_PRIVACY
107static int __ipv6_regen_rndid(struct inet6_dev *idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900108static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static void ipv6_regen_rndid(unsigned long data);
110
111static int desync_factor = MAX_DESYNC_FACTOR * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#endif
113
114static int ipv6_count_addresses(struct inet6_dev *idev);
115
116/*
117 * Configured unicast address hash table
118 */
119static struct inet6_ifaddr *inet6_addr_lst[IN6_ADDR_HSIZE];
120static DEFINE_RWLOCK(addrconf_hash_lock);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static void addrconf_verify(unsigned long);
123
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700124static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static DEFINE_SPINLOCK(addrconf_verify_lock);
126
127static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
128static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
129
130static int addrconf_ifdown(struct net_device *dev, int how);
131
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700132static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static void addrconf_dad_timer(unsigned long data);
134static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900135static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static void addrconf_rs_timer(unsigned long data);
137static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
138static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
139
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900140static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct prefix_info *pinfo);
142static int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev);
143
Alan Sterne041c682006-03-27 01:16:30 -0800144static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Brian Haleyab32ea52006-09-22 14:15:41 -0700146struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .forwarding = 0,
148 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
149 .mtu6 = IPV6_MIN_MTU,
150 .accept_ra = 1,
151 .accept_redirects = 1,
152 .autoconf = 1,
153 .force_mld_version = 0,
154 .dad_transmits = 1,
155 .rtr_solicits = MAX_RTR_SOLICITATIONS,
156 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
157 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
158#ifdef CONFIG_IPV6_PRIVACY
159 .use_tempaddr = 0,
160 .temp_valid_lft = TEMP_VALID_LIFETIME,
161 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
162 .regen_max_retry = REGEN_MAX_RETRY,
163 .max_desync_factor = MAX_DESYNC_FACTOR,
164#endif
165 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800166 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800167 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800168#ifdef CONFIG_IPV6_ROUTER_PREF
169 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800170 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800171#ifdef CONFIG_IPV6_ROUTE_INFO
172 .accept_ra_rt_info_max_plen = 0,
173#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800174#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700175 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700176 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
Brian Haleyab32ea52006-09-22 14:15:41 -0700179static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .forwarding = 0,
181 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
182 .mtu6 = IPV6_MIN_MTU,
183 .accept_ra = 1,
184 .accept_redirects = 1,
185 .autoconf = 1,
186 .dad_transmits = 1,
187 .rtr_solicits = MAX_RTR_SOLICITATIONS,
188 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
189 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
190#ifdef CONFIG_IPV6_PRIVACY
191 .use_tempaddr = 0,
192 .temp_valid_lft = TEMP_VALID_LIFETIME,
193 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
194 .regen_max_retry = REGEN_MAX_RETRY,
195 .max_desync_factor = MAX_DESYNC_FACTOR,
196#endif
197 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800198 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800199 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800200#ifdef CONFIG_IPV6_ROUTER_PREF
201 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800202 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800203#ifdef CONFIG_IPV6_ROUTE_INFO
204 .accept_ra_rt_info_max_plen = 0,
205#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800206#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700207 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700208 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
211/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
212#if 0
213const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
214#endif
215const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static void addrconf_del_timer(struct inet6_ifaddr *ifp)
218{
219 if (del_timer(&ifp->timer))
220 __in6_ifa_put(ifp);
221}
222
223enum addrconf_timer_t
224{
225 AC_NONE,
226 AC_DAD,
227 AC_RS,
228};
229
230static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
231 enum addrconf_timer_t what,
232 unsigned long when)
233{
234 if (!del_timer(&ifp->timer))
235 in6_ifa_hold(ifp);
236
237 switch (what) {
238 case AC_DAD:
239 ifp->timer.function = addrconf_dad_timer;
240 break;
241 case AC_RS:
242 ifp->timer.function = addrconf_rs_timer;
243 break;
244 default:;
245 }
246 ifp->timer.expires = jiffies + when;
247 add_timer(&ifp->timer);
248}
249
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700250static int snmp6_alloc_dev(struct inet6_dev *idev)
251{
252 int err = -ENOMEM;
253
254 if (!idev || !idev->dev)
255 return -EINVAL;
256
257 if (snmp_mib_init((void **)idev->stats.ipv6,
258 sizeof(struct ipstats_mib),
259 __alignof__(struct ipstats_mib)) < 0)
260 goto err_ip;
261 if (snmp_mib_init((void **)idev->stats.icmpv6,
262 sizeof(struct icmpv6_mib),
263 __alignof__(struct icmpv6_mib)) < 0)
264 goto err_icmp;
265
266 return 0;
267
268err_icmp:
269 snmp_mib_free((void **)idev->stats.ipv6);
270err_ip:
271 return err;
272}
273
274static int snmp6_free_dev(struct inet6_dev *idev)
275{
276 snmp_mib_free((void **)idev->stats.icmpv6);
277 snmp_mib_free((void **)idev->stats.ipv6);
278 return 0;
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/* Nobody refers to this device, we may destroy it. */
282
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700283static void in6_dev_finish_destroy_rcu(struct rcu_head *head)
284{
285 struct inet6_dev *idev = container_of(head, struct inet6_dev, rcu);
286 kfree(idev);
287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289void in6_dev_finish_destroy(struct inet6_dev *idev)
290{
291 struct net_device *dev = idev->dev;
292 BUG_TRAP(idev->addr_list==NULL);
293 BUG_TRAP(idev->mc_list==NULL);
294#ifdef NET_REFCNT_DEBUG
295 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
296#endif
297 dev_put(dev);
298 if (!idev->dead) {
299 printk("Freeing alive inet6 device %p\n", idev);
300 return;
301 }
302 snmp6_free_dev(idev);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700303 call_rcu(&idev->rcu, in6_dev_finish_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900306EXPORT_SYMBOL(in6_dev_finish_destroy);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
309{
310 struct inet6_dev *ndev;
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800311 struct in6_addr maddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 ASSERT_RTNL();
314
315 if (dev->mtu < IPV6_MIN_MTU)
316 return NULL;
317
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900318 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900320 if (ndev == NULL)
321 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Ingo Oeser322f74a2006-03-20 23:01:47 -0800323 rwlock_init(&ndev->lock);
324 ndev->dev = dev;
325 memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf));
326 ndev->cnf.mtu6 = dev->mtu;
327 ndev->cnf.sysctl = NULL;
328 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
329 if (ndev->nd_parms == NULL) {
330 kfree(ndev);
331 return NULL;
332 }
333 /* We refer to the device */
334 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Ingo Oeser322f74a2006-03-20 23:01:47 -0800336 if (snmp6_alloc_dev(ndev) < 0) {
337 ADBG((KERN_WARNING
338 "%s(): cannot allocate memory for statistics; dev=%s.\n",
339 __FUNCTION__, dev->name));
340 neigh_parms_release(&nd_tbl, ndev->nd_parms);
341 ndev->dead = 1;
342 in6_dev_finish_destroy(ndev);
343 return NULL;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Ingo Oeser322f74a2006-03-20 23:01:47 -0800346 if (snmp6_register_dev(ndev) < 0) {
347 ADBG((KERN_WARNING
348 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
349 __FUNCTION__, dev->name));
350 neigh_parms_release(&nd_tbl, ndev->nd_parms);
351 ndev->dead = 1;
352 in6_dev_finish_destroy(ndev);
353 return NULL;
354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Ingo Oeser322f74a2006-03-20 23:01:47 -0800356 /* One reference from device. We must do this before
357 * we invoke __ipv6_regen_rndid().
358 */
359 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361#ifdef CONFIG_IPV6_PRIVACY
Ingo Oeser322f74a2006-03-20 23:01:47 -0800362 init_timer(&ndev->regen_timer);
363 ndev->regen_timer.function = ipv6_regen_rndid;
364 ndev->regen_timer.data = (unsigned long) ndev;
365 if ((dev->flags&IFF_LOOPBACK) ||
366 dev->type == ARPHRD_TUNNEL ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700367#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
368 dev->type == ARPHRD_SIT ||
369#endif
370 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800371 printk(KERN_INFO
372 "%s: Disabled Privacy Extensions\n",
373 dev->name);
374 ndev->cnf.use_tempaddr = -1;
375 } else {
376 in6_dev_hold(ndev);
377 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800379#endif
380
Herbert Xu53aadcc2007-03-27 14:31:52 -0700381 if (netif_running(dev) && netif_carrier_ok(dev))
382 ndev->if_flags |= IF_READY;
383
Ingo Oeser322f74a2006-03-20 23:01:47 -0800384 ipv6_mc_init_dev(ndev);
385 ndev->tstamp = jiffies;
386#ifdef CONFIG_SYSCTL
387 neigh_sysctl_register(dev, ndev->nd_parms, NET_IPV6,
388 NET_IPV6_NEIGH, "ipv6",
389 &ndisc_ifinfo_sysctl_change,
390 NULL);
391 addrconf_sysctl_register(ndev, &ndev->cnf);
392#endif
David L Stevens30c4cf52007-01-04 12:31:14 -0800393 /* protected by rtnl_lock */
394 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800395
396 /* Join all-node multicast group */
397 ipv6_addr_all_nodes(&maddr);
398 ipv6_dev_mc_inc(dev, &maddr);
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return ndev;
401}
402
403static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
404{
405 struct inet6_dev *idev;
406
407 ASSERT_RTNL();
408
409 if ((idev = __in6_dev_get(dev)) == NULL) {
410 if ((idev = ipv6_add_dev(dev)) == NULL)
411 return NULL;
412 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (dev->flags&IFF_UP)
415 ipv6_mc_up(idev);
416 return idev;
417}
418
419#ifdef CONFIG_SYSCTL
420static void dev_forward_change(struct inet6_dev *idev)
421{
422 struct net_device *dev;
423 struct inet6_ifaddr *ifa;
424 struct in6_addr addr;
425
426 if (!idev)
427 return;
428 dev = idev->dev;
429 if (dev && (dev->flags & IFF_MULTICAST)) {
430 ipv6_addr_all_routers(&addr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (idev->cnf.forwarding)
433 ipv6_dev_mc_inc(dev, &addr);
434 else
435 ipv6_dev_mc_dec(dev, &addr);
436 }
437 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800438 if (ifa->flags&IFA_F_TENTATIVE)
439 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (idev->cnf.forwarding)
441 addrconf_join_anycast(ifa);
442 else
443 addrconf_leave_anycast(ifa);
444 }
445}
446
447
448static void addrconf_forward_change(void)
449{
450 struct net_device *dev;
451 struct inet6_dev *idev;
452
453 read_lock(&dev_base_lock);
454 for (dev=dev_base; dev; dev=dev->next) {
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700455 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 idev = __in6_dev_get(dev);
457 if (idev) {
458 int changed = (!idev->cnf.forwarding) ^ (!ipv6_devconf.forwarding);
459 idev->cnf.forwarding = ipv6_devconf.forwarding;
460 if (changed)
461 dev_forward_change(idev);
462 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700463 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 read_unlock(&dev_base_lock);
466}
467#endif
468
469/* Nobody refers to this ifaddr, destroy it */
470
471void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
472{
473 BUG_TRAP(ifp->if_next==NULL);
474 BUG_TRAP(ifp->lst_next==NULL);
475#ifdef NET_REFCNT_DEBUG
476 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
477#endif
478
479 in6_dev_put(ifp->idev);
480
481 if (del_timer(&ifp->timer))
482 printk("Timer is still running, when freeing ifa=%p\n", ifp);
483
484 if (!ifp->dead) {
485 printk("Freeing alive inet6 address %p\n", ifp);
486 return;
487 }
488 dst_release(&ifp->rt->u.dst);
489
490 kfree(ifp);
491}
492
Brian Haleye55ffac2006-07-10 15:25:51 -0700493static void
494ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
495{
496 struct inet6_ifaddr *ifa, **ifap;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700497 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700498
499 /*
500 * Each device address list is sorted in order of scope -
501 * global before linklocal.
502 */
503 for (ifap = &idev->addr_list; (ifa = *ifap) != NULL;
504 ifap = &ifa->if_next) {
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700505 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700506 break;
507 }
508
509 ifp->if_next = *ifap;
510 *ifap = ifp;
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* On success it returns ifp with increased reference count */
514
515static struct inet6_ifaddr *
516ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700517 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 struct inet6_ifaddr *ifa = NULL;
520 struct rt6_info *rt;
521 int hash;
522 int err = 0;
523
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700524 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (idev->dead) {
526 err = -ENODEV; /*XXX*/
527 goto out2;
528 }
529
530 write_lock(&addrconf_hash_lock);
531
532 /* Ignore adding duplicate addresses on an interface */
533 if (ipv6_chk_same_addr(addr, idev->dev)) {
534 ADBG(("ipv6_add_addr: already assigned\n"));
535 err = -EEXIST;
536 goto out;
537 }
538
Ingo Oeser322f74a2006-03-20 23:01:47 -0800539 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 if (ifa == NULL) {
542 ADBG(("ipv6_add_addr: malloc failed\n"));
543 err = -ENOBUFS;
544 goto out;
545 }
546
547 rt = addrconf_dst_alloc(idev, addr, 0);
548 if (IS_ERR(rt)) {
549 err = PTR_ERR(rt);
550 goto out;
551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 ipv6_addr_copy(&ifa->addr, addr);
554
555 spin_lock_init(&ifa->lock);
556 init_timer(&ifa->timer);
557 ifa->timer.data = (unsigned long) ifa;
558 ifa->scope = scope;
559 ifa->prefix_len = pfxlen;
560 ifa->flags = flags | IFA_F_TENTATIVE;
561 ifa->cstamp = ifa->tstamp = jiffies;
562
Keir Fraser57f5f542006-08-29 02:43:49 -0700563 ifa->rt = rt;
564
Neil Horman95c385b2007-04-25 17:08:10 -0700565 /*
566 * part one of RFC 4429, section 3.3
567 * We should not configure an address as
568 * optimistic if we do not yet know the link
569 * layer address of our nexhop router
570 */
571
572 if (rt->rt6i_nexthop == NULL)
573 ifa->flags &= ~IFA_F_OPTIMISTIC;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 ifa->idev = idev;
576 in6_dev_hold(idev);
577 /* For caller */
578 in6_ifa_hold(ifa);
579
580 /* Add to big hash table */
581 hash = ipv6_addr_hash(addr);
582
583 ifa->lst_next = inet6_addr_lst[hash];
584 inet6_addr_lst[hash] = ifa;
585 in6_ifa_hold(ifa);
586 write_unlock(&addrconf_hash_lock);
587
588 write_lock(&idev->lock);
589 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700590 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592#ifdef CONFIG_IPV6_PRIVACY
593 if (ifa->flags&IFA_F_TEMPORARY) {
594 ifa->tmp_next = idev->tempaddr_list;
595 idev->tempaddr_list = ifa;
596 in6_ifa_hold(ifa);
597 }
598#endif
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 in6_ifa_hold(ifa);
601 write_unlock(&idev->lock);
602out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700603 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700605 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800606 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 else {
608 kfree(ifa);
609 ifa = ERR_PTR(err);
610 }
611
612 return ifa;
613out:
614 write_unlock(&addrconf_hash_lock);
615 goto out2;
616}
617
618/* This function wants to get referenced ifp and releases it before return */
619
620static void ipv6_del_addr(struct inet6_ifaddr *ifp)
621{
622 struct inet6_ifaddr *ifa, **ifap;
623 struct inet6_dev *idev = ifp->idev;
624 int hash;
625 int deleted = 0, onlink = 0;
626 unsigned long expires = jiffies;
627
628 hash = ipv6_addr_hash(&ifp->addr);
629
630 ifp->dead = 1;
631
632 write_lock_bh(&addrconf_hash_lock);
633 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
634 ifap = &ifa->lst_next) {
635 if (ifa == ifp) {
636 *ifap = ifa->lst_next;
637 __in6_ifa_put(ifp);
638 ifa->lst_next = NULL;
639 break;
640 }
641 }
642 write_unlock_bh(&addrconf_hash_lock);
643
644 write_lock_bh(&idev->lock);
645#ifdef CONFIG_IPV6_PRIVACY
646 if (ifp->flags&IFA_F_TEMPORARY) {
647 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
648 ifap = &ifa->tmp_next) {
649 if (ifa == ifp) {
650 *ifap = ifa->tmp_next;
651 if (ifp->ifpub) {
652 in6_ifa_put(ifp->ifpub);
653 ifp->ifpub = NULL;
654 }
655 __in6_ifa_put(ifp);
656 ifa->tmp_next = NULL;
657 break;
658 }
659 }
660 }
661#endif
662
Kristian Slavov1d142802005-12-21 18:47:24 -0800663 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (ifa == ifp) {
665 *ifap = ifa->if_next;
666 __in6_ifa_put(ifp);
667 ifa->if_next = NULL;
668 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
669 break;
670 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800671 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 } else if (ifp->flags & IFA_F_PERMANENT) {
673 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
674 ifp->prefix_len)) {
675 if (ifa->flags & IFA_F_PERMANENT) {
676 onlink = 1;
677 if (deleted)
678 break;
679 } else {
680 unsigned long lifetime;
681
682 if (!onlink)
683 onlink = -1;
684
685 spin_lock(&ifa->lock);
686 lifetime = min_t(unsigned long,
687 ifa->valid_lft, 0x7fffffffUL/HZ);
688 if (time_before(expires,
689 ifa->tstamp + lifetime * HZ))
690 expires = ifa->tstamp + lifetime * HZ;
691 spin_unlock(&ifa->lock);
692 }
693 }
694 }
Kristian Slavov1d142802005-12-21 18:47:24 -0800695 ifap = &ifa->if_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697 write_unlock_bh(&idev->lock);
698
699 ipv6_ifa_notify(RTM_DELADDR, ifp);
700
Alan Sterne041c682006-03-27 01:16:30 -0800701 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 addrconf_del_timer(ifp);
704
705 /*
706 * Purge or update corresponding prefix
707 *
708 * 1) we don't purge prefix here if address was not permanent.
709 * prefix is managed by its own lifetime.
710 * 2) if there're no addresses, delete prefix.
711 * 3) if there're still other permanent address(es),
712 * corresponding prefix is still permanent.
713 * 4) otherwise, update prefix lifetime to the
714 * longest valid lifetime among the corresponding
715 * addresses on the device.
716 * Note: subsequent RA will update lifetime.
717 *
718 * --yoshfuji
719 */
720 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
721 struct in6_addr prefix;
722 struct rt6_info *rt;
723
724 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
725 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
726
727 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
728 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700729 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 rt = NULL;
731 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
732 rt->rt6i_expires = expires;
733 rt->rt6i_flags |= RTF_EXPIRES;
734 }
735 }
736 dst_release(&rt->u.dst);
737 }
738
739 in6_ifa_put(ifp);
740}
741
742#ifdef CONFIG_IPV6_PRIVACY
743static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
744{
745 struct inet6_dev *idev = ifp->idev;
746 struct in6_addr addr, *tmpaddr;
747 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
748 int tmp_plen;
749 int ret = 0;
750 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -0700751 u32 addr_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 write_lock(&idev->lock);
754 if (ift) {
755 spin_lock_bh(&ift->lock);
756 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
757 spin_unlock_bh(&ift->lock);
758 tmpaddr = &addr;
759 } else {
760 tmpaddr = NULL;
761 }
762retry:
763 in6_dev_hold(idev);
764 if (idev->cnf.use_tempaddr <= 0) {
765 write_unlock(&idev->lock);
766 printk(KERN_INFO
767 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
768 in6_dev_put(idev);
769 ret = -1;
770 goto out;
771 }
772 spin_lock_bh(&ifp->lock);
773 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
774 idev->cnf.use_tempaddr = -1; /*XXX*/
775 spin_unlock_bh(&ifp->lock);
776 write_unlock(&idev->lock);
777 printk(KERN_WARNING
778 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
779 in6_dev_put(idev);
780 ret = -1;
781 goto out;
782 }
783 in6_ifa_hold(ifp);
784 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
785 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
786 spin_unlock_bh(&ifp->lock);
787 write_unlock(&idev->lock);
788 printk(KERN_WARNING
789 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
790 in6_ifa_put(ifp);
791 in6_dev_put(idev);
792 ret = -1;
793 goto out;
794 }
795 memcpy(&addr.s6_addr[8], idev->rndid, 8);
796 tmp_valid_lft = min_t(__u32,
797 ifp->valid_lft,
798 idev->cnf.temp_valid_lft);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900799 tmp_prefered_lft = min_t(__u32,
800 ifp->prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 idev->cnf.temp_prefered_lft - desync_factor / HZ);
802 tmp_plen = ifp->prefix_len;
803 max_addresses = idev->cnf.max_addresses;
804 tmp_cstamp = ifp->cstamp;
805 tmp_tstamp = ifp->tstamp;
806 spin_unlock_bh(&ifp->lock);
807
808 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -0700809
810 addr_flags = IFA_F_TEMPORARY;
811 /* set in addrconf_prefix_rcv() */
812 if (ifp->flags & IFA_F_OPTIMISTIC)
813 addr_flags |= IFA_F_OPTIMISTIC;
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900816 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -0700818 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
819 addr_flags) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (!ift || IS_ERR(ift)) {
821 in6_ifa_put(ifp);
822 in6_dev_put(idev);
823 printk(KERN_INFO
824 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
825 tmpaddr = &addr;
826 write_lock(&idev->lock);
827 goto retry;
828 }
829
830 spin_lock_bh(&ift->lock);
831 ift->ifpub = ifp;
832 ift->valid_lft = tmp_valid_lft;
833 ift->prefered_lft = tmp_prefered_lft;
834 ift->cstamp = tmp_cstamp;
835 ift->tstamp = tmp_tstamp;
836 spin_unlock_bh(&ift->lock);
837
838 addrconf_dad_start(ift, 0);
839 in6_ifa_put(ift);
840 in6_dev_put(idev);
841out:
842 return ret;
843}
844#endif
845
846/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800847 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800849struct ipv6_saddr_score {
850 int addr_type;
851 unsigned int attrs;
852 int matchlen;
Brian Haley0d27b422006-03-11 18:50:14 -0800853 int scope;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800854 unsigned int rule;
855};
856
857#define IPV6_SADDR_SCORE_LOCAL 0x0001
858#define IPV6_SADDR_SCORE_PREFERRED 0x0004
859#define IPV6_SADDR_SCORE_HOA 0x0008
860#define IPV6_SADDR_SCORE_OIF 0x0010
861#define IPV6_SADDR_SCORE_LABEL 0x0020
862#define IPV6_SADDR_SCORE_PRIVACY 0x0040
863
Dave Jonesb6f99a22007-03-22 12:27:49 -0700864static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800866 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
867 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
868 return 1;
869 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800872/* static matching label */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700873static inline int ipv6_saddr_label(const struct in6_addr *addr, int type)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800874{
875 /*
876 * prefix (longest match) label
877 * -----------------------------
878 * ::1/128 0
879 * ::/0 1
880 * 2002::/16 2
881 * ::/96 3
882 * ::ffff:0:0/96 4
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700883 * fc00::/7 5
884 * 2001::/32 6
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800885 */
886 if (type & IPV6_ADDR_LOOPBACK)
887 return 0;
888 else if (type & IPV6_ADDR_COMPATv4)
889 return 3;
890 else if (type & IPV6_ADDR_MAPPED)
891 return 4;
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700892 else if (addr->s6_addr32[0] == htonl(0x20010000))
893 return 6;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800894 else if (addr->s6_addr16[0] == htons(0x2002))
895 return 2;
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700896 else if ((addr->s6_addr[0] & 0xfe) == 0xfc)
897 return 5;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800898 return 1;
899}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800901int ipv6_dev_get_saddr(struct net_device *daddr_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 struct in6_addr *daddr, struct in6_addr *saddr)
903{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800904 struct ipv6_saddr_score hiscore;
905 struct inet6_ifaddr *ifa_result = NULL;
906 int daddr_type = __ipv6_addr_type(daddr);
907 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
908 u32 daddr_label = ipv6_saddr_label(daddr, daddr_type);
909 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800911 memset(&hiscore, 0, sizeof(hiscore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 read_lock(&dev_base_lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700914 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 for (dev = dev_base; dev; dev=dev->next) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800917 struct inet6_dev *idev;
918 struct inet6_ifaddr *ifa;
919
920 /* Rule 0: Candidate Source Address (section 4)
921 * - multicast and link-local destination address,
922 * the set of candidate source address MUST only
923 * include addresses assigned to interfaces
924 * belonging to the same link as the outgoing
925 * interface.
926 * (- For site-local destination addresses, the
927 * set of candidate source addresses MUST only
928 * include addresses assigned to interfaces
929 * belonging to the same site as the outgoing
930 * interface.)
931 */
932 if ((daddr_type & IPV6_ADDR_MULTICAST ||
933 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
934 daddr_dev && dev != daddr_dev)
935 continue;
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800938 if (!idev)
939 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800941 read_lock_bh(&idev->lock);
942 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
943 struct ipv6_saddr_score score;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800945 score.addr_type = __ipv6_addr_type(&ifa->addr);
946
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900947 /* Rule 0:
948 * - Tentative Address (RFC2462 section 5.4)
949 * - A tentative address is not considered
950 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -0700951 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900952 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800953 * - In any case, anycast addresses, multicast
954 * addresses, and the unspecified address MUST
955 * NOT be included in a candidate set.
956 */
Neil Horman95c385b2007-04-25 17:08:10 -0700957 if ((ifa->flags & IFA_F_TENTATIVE) &&
958 (!(ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900959 continue;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800960 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
961 score.addr_type & IPV6_ADDR_MULTICAST)) {
962 LIMIT_NETDEBUG(KERN_DEBUG
963 "ADDRCONF: unspecified / multicast address"
964 "assigned as unicast address on %s",
965 dev->name);
966 continue;
967 }
968
969 score.attrs = 0;
970 score.matchlen = 0;
971 score.scope = 0;
972 score.rule = 0;
973
974 if (ifa_result == NULL) {
975 /* record it if the first available entry */
976 goto record_it;
977 }
978
979 /* Rule 1: Prefer same address */
980 if (hiscore.rule < 1) {
981 if (ipv6_addr_equal(&ifa_result->addr, daddr))
982 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
983 hiscore.rule++;
984 }
985 if (ipv6_addr_equal(&ifa->addr, daddr)) {
986 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
987 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
988 score.rule = 1;
989 goto record_it;
990 }
991 } else {
992 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
993 continue;
994 }
995
996 /* Rule 2: Prefer appropriate scope */
997 if (hiscore.rule < 2) {
998 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
999 hiscore.rule++;
1000 }
1001 score.scope = __ipv6_addr_src_scope(score.addr_type);
1002 if (hiscore.scope < score.scope) {
1003 if (hiscore.scope < daddr_scope) {
1004 score.rule = 2;
1005 goto record_it;
1006 } else
1007 continue;
1008 } else if (score.scope < hiscore.scope) {
1009 if (score.scope < daddr_scope)
Brian Haleye55ffac2006-07-10 15:25:51 -07001010 break; /* addresses sorted by scope */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001011 else {
1012 score.rule = 2;
1013 goto record_it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Neil Horman95c385b2007-04-25 17:08:10 -07001017 /* Rule 3: Avoid deprecated and optimistic addresses */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001018 if (hiscore.rule < 3) {
1019 if (ipv6_saddr_preferred(hiscore.addr_type) ||
Neil Horman95c385b2007-04-25 17:08:10 -07001020 (((ifa_result->flags &
1021 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0)))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001022 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1023 hiscore.rule++;
1024 }
1025 if (ipv6_saddr_preferred(score.addr_type) ||
Neil Horman95c385b2007-04-25 17:08:10 -07001026 (((ifa_result->flags &
1027 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0))) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001028 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1029 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
1030 score.rule = 3;
1031 goto record_it;
1032 }
1033 } else {
1034 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
1035 continue;
1036 }
1037
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001038 /* Rule 4: Prefer home address */
1039#ifdef CONFIG_IPV6_MIP6
1040 if (hiscore.rule < 4) {
1041 if (ifa_result->flags & IFA_F_HOMEADDRESS)
1042 hiscore.attrs |= IPV6_SADDR_SCORE_HOA;
1043 hiscore.rule++;
1044 }
1045 if (ifa->flags & IFA_F_HOMEADDRESS) {
1046 score.attrs |= IPV6_SADDR_SCORE_HOA;
1047 if (!(ifa_result->flags & IFA_F_HOMEADDRESS)) {
1048 score.rule = 4;
1049 goto record_it;
1050 }
1051 } else {
1052 if (hiscore.attrs & IPV6_SADDR_SCORE_HOA)
1053 continue;
1054 }
1055#else
YOSHIFUJI Hideaki220bbd72005-11-28 22:27:11 -08001056 if (hiscore.rule < 4)
1057 hiscore.rule++;
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001058#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001059
1060 /* Rule 5: Prefer outgoing interface */
1061 if (hiscore.rule < 5) {
1062 if (daddr_dev == NULL ||
1063 daddr_dev == ifa_result->idev->dev)
1064 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
1065 hiscore.rule++;
1066 }
1067 if (daddr_dev == NULL ||
1068 daddr_dev == ifa->idev->dev) {
1069 score.attrs |= IPV6_SADDR_SCORE_OIF;
1070 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1071 score.rule = 5;
1072 goto record_it;
1073 }
1074 } else {
1075 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1076 continue;
1077 }
1078
1079 /* Rule 6: Prefer matching label */
1080 if (hiscore.rule < 6) {
1081 if (ipv6_saddr_label(&ifa_result->addr, hiscore.addr_type) == daddr_label)
1082 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1083 hiscore.rule++;
1084 }
1085 if (ipv6_saddr_label(&ifa->addr, score.addr_type) == daddr_label) {
1086 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1087 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1088 score.rule = 6;
1089 goto record_it;
1090 }
1091 } else {
1092 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1093 continue;
1094 }
1095
Peter Chubb44fd0262005-11-09 13:05:47 -08001096#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001097 /* Rule 7: Prefer public address
1098 * Note: prefer temprary address if use_tempaddr >= 2
1099 */
1100 if (hiscore.rule < 7) {
1101 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1102 (ifa_result->idev->cnf.use_tempaddr >= 2))
1103 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1104 hiscore.rule++;
1105 }
1106 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1107 (ifa->idev->cnf.use_tempaddr >= 2)) {
1108 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1109 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1110 score.rule = 7;
1111 goto record_it;
1112 }
1113 } else {
1114 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1115 continue;
1116 }
YOSHIFUJI Hideaki5e2707f2006-06-22 01:41:18 -07001117#else
1118 if (hiscore.rule < 7)
1119 hiscore.rule++;
Peter Chubb44fd0262005-11-09 13:05:47 -08001120#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001121 /* Rule 8: Use longest matching prefix */
Yan Zheng12da2a42005-11-14 21:42:46 -08001122 if (hiscore.rule < 8) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001123 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
Yan Zheng12da2a42005-11-14 21:42:46 -08001124 hiscore.rule++;
1125 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001126 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1127 if (score.matchlen > hiscore.matchlen) {
1128 score.rule = 8;
1129 goto record_it;
1130 }
1131#if 0
1132 else if (score.matchlen < hiscore.matchlen)
1133 continue;
1134#endif
1135
1136 /* Final Rule: choose first available one */
1137 continue;
1138record_it:
1139 if (ifa_result)
1140 in6_ifa_put(ifa_result);
1141 in6_ifa_hold(ifa);
1142 ifa_result = ifa;
1143 hiscore = score;
1144 }
1145 read_unlock_bh(&idev->lock);
1146 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001147 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 read_unlock(&dev_base_lock);
1149
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001150 if (!ifa_result)
1151 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001152
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001153 ipv6_addr_copy(saddr, &ifa_result->addr);
1154 in6_ifa_put(ifa_result);
1155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158
1159int ipv6_get_saddr(struct dst_entry *dst,
1160 struct in6_addr *daddr, struct in6_addr *saddr)
1161{
YOSHIFUJI Hideaki7a3025b2006-10-13 16:17:25 +09001162 return ipv6_dev_get_saddr(dst ? ip6_dst_idev(dst)->dev : NULL, daddr, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001165EXPORT_SYMBOL(ipv6_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Neil Horman95c385b2007-04-25 17:08:10 -07001167int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1168 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
1170 struct inet6_dev *idev;
1171 int err = -EADDRNOTAVAIL;
1172
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001173 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if ((idev = __in6_dev_get(dev)) != NULL) {
1175 struct inet6_ifaddr *ifp;
1176
1177 read_lock_bh(&idev->lock);
1178 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
Neil Horman95c385b2007-04-25 17:08:10 -07001179 if (ifp->scope == IFA_LINK && !(ifp->flags & banned_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 ipv6_addr_copy(addr, &ifp->addr);
1181 err = 0;
1182 break;
1183 }
1184 }
1185 read_unlock_bh(&idev->lock);
1186 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001187 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return err;
1189}
1190
1191static int ipv6_count_addresses(struct inet6_dev *idev)
1192{
1193 int cnt = 0;
1194 struct inet6_ifaddr *ifp;
1195
1196 read_lock_bh(&idev->lock);
1197 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1198 cnt++;
1199 read_unlock_bh(&idev->lock);
1200 return cnt;
1201}
1202
1203int ipv6_chk_addr(struct in6_addr *addr, struct net_device *dev, int strict)
1204{
1205 struct inet6_ifaddr * ifp;
1206 u8 hash = ipv6_addr_hash(addr);
1207
1208 read_lock_bh(&addrconf_hash_lock);
1209 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1210 if (ipv6_addr_equal(&ifp->addr, addr) &&
1211 !(ifp->flags&IFA_F_TENTATIVE)) {
1212 if (dev == NULL || ifp->idev->dev == dev ||
1213 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1214 break;
1215 }
1216 }
1217 read_unlock_bh(&addrconf_hash_lock);
1218 return ifp != NULL;
1219}
1220
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001221EXPORT_SYMBOL(ipv6_chk_addr);
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223static
1224int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev)
1225{
1226 struct inet6_ifaddr * ifp;
1227 u8 hash = ipv6_addr_hash(addr);
1228
1229 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1230 if (ipv6_addr_equal(&ifp->addr, addr)) {
1231 if (dev == NULL || ifp->idev->dev == dev)
1232 break;
1233 }
1234 }
1235 return ifp != NULL;
1236}
1237
1238struct inet6_ifaddr * ipv6_get_ifaddr(struct in6_addr *addr, struct net_device *dev, int strict)
1239{
1240 struct inet6_ifaddr * ifp;
1241 u8 hash = ipv6_addr_hash(addr);
1242
1243 read_lock_bh(&addrconf_hash_lock);
1244 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1245 if (ipv6_addr_equal(&ifp->addr, addr)) {
1246 if (dev == NULL || ifp->idev->dev == dev ||
1247 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1248 in6_ifa_hold(ifp);
1249 break;
1250 }
1251 }
1252 }
1253 read_unlock_bh(&addrconf_hash_lock);
1254
1255 return ifp;
1256}
1257
1258int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1259{
1260 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
Arnaldo Carvalho de Melo0fa1a532005-12-13 23:23:09 -08001261 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
Al Viro82103232006-09-27 18:44:10 -07001262 __be32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1263 __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 int sk_ipv6only = ipv6_only_sock(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001265 int sk2_ipv6only = inet_v6_ipv6only(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1267 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1268
1269 if (!sk2_rcv_saddr && !sk_ipv6only)
1270 return 1;
1271
1272 if (addr_type2 == IPV6_ADDR_ANY &&
1273 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1274 return 1;
1275
1276 if (addr_type == IPV6_ADDR_ANY &&
1277 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1278 return 1;
1279
1280 if (sk2_rcv_saddr6 &&
1281 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1282 return 1;
1283
1284 if (addr_type == IPV6_ADDR_MAPPED &&
1285 !sk2_ipv6only &&
1286 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1287 return 1;
1288
1289 return 0;
1290}
1291
1292/* Gets referenced address, destroys ifaddr */
1293
Adrian Bunk9f5336e2006-01-07 13:24:25 -08001294static void addrconf_dad_stop(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (ifp->flags&IFA_F_PERMANENT) {
1297 spin_lock_bh(&ifp->lock);
1298 addrconf_del_timer(ifp);
1299 ifp->flags |= IFA_F_TENTATIVE;
1300 spin_unlock_bh(&ifp->lock);
1301 in6_ifa_put(ifp);
1302#ifdef CONFIG_IPV6_PRIVACY
1303 } else if (ifp->flags&IFA_F_TEMPORARY) {
1304 struct inet6_ifaddr *ifpub;
1305 spin_lock_bh(&ifp->lock);
1306 ifpub = ifp->ifpub;
1307 if (ifpub) {
1308 in6_ifa_hold(ifpub);
1309 spin_unlock_bh(&ifp->lock);
1310 ipv6_create_tempaddr(ifpub, ifp);
1311 in6_ifa_put(ifpub);
1312 } else {
1313 spin_unlock_bh(&ifp->lock);
1314 }
1315 ipv6_del_addr(ifp);
1316#endif
1317 } else
1318 ipv6_del_addr(ifp);
1319}
1320
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001321void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1322{
1323 if (net_ratelimit())
1324 printk(KERN_INFO "%s: duplicate address detected!\n", ifp->idev->dev->name);
1325 addrconf_dad_stop(ifp);
1326}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328/* Join to solicited addr multicast group. */
1329
1330void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1331{
1332 struct in6_addr maddr;
1333
1334 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1335 return;
1336
1337 addrconf_addr_solict_mult(addr, &maddr);
1338 ipv6_dev_mc_inc(dev, &maddr);
1339}
1340
1341void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1342{
1343 struct in6_addr maddr;
1344
1345 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1346 return;
1347
1348 addrconf_addr_solict_mult(addr, &maddr);
1349 __ipv6_dev_mc_dec(idev, &maddr);
1350}
1351
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001352static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354 struct in6_addr addr;
1355 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1356 if (ipv6_addr_any(&addr))
1357 return;
1358 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1359}
1360
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001361static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
1363 struct in6_addr addr;
1364 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1365 if (ipv6_addr_any(&addr))
1366 return;
1367 __ipv6_dev_ac_dec(ifp->idev, &addr);
1368}
1369
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001370static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1371{
1372 if (dev->addr_len != ETH_ALEN)
1373 return -1;
1374 memcpy(eui, dev->dev_addr, 3);
1375 memcpy(eui + 5, dev->dev_addr + 3, 3);
1376
1377 /*
1378 * The zSeries OSA network cards can be shared among various
1379 * OS instances, but the OSA cards have only one MAC address.
1380 * This leads to duplicate address conflicts in conjunction
1381 * with IPv6 if more than one instance uses the same card.
1382 *
1383 * The driver for these cards can deliver a unique 16-bit
1384 * identifier for each instance sharing the same card. It is
1385 * placed instead of 0xFFFE in the interface identifier. The
1386 * "u" bit of the interface identifier is not inverted in this
1387 * case. Hence the resulting interface identifier has local
1388 * scope according to RFC2373.
1389 */
1390 if (dev->dev_id) {
1391 eui[3] = (dev->dev_id >> 8) & 0xFF;
1392 eui[4] = dev->dev_id & 0xFF;
1393 } else {
1394 eui[3] = 0xFF;
1395 eui[4] = 0xFE;
1396 eui[0] ^= 2;
1397 }
1398 return 0;
1399}
1400
1401static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1402{
1403 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1404 if (dev->addr_len != ARCNET_ALEN)
1405 return -1;
1406 memset(eui, 0, 7);
1407 eui[7] = *(u8*)dev->dev_addr;
1408 return 0;
1409}
1410
1411static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1412{
1413 if (dev->addr_len != INFINIBAND_ALEN)
1414 return -1;
1415 memcpy(eui, dev->dev_addr + 12, 8);
1416 eui[0] |= 2;
1417 return 0;
1418}
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1421{
1422 switch (dev->type) {
1423 case ARPHRD_ETHER:
1424 case ARPHRD_FDDI:
1425 case ARPHRD_IEEE802_TR:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001426 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001428 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001430 return addrconf_ifid_infiniband(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432 return -1;
1433}
1434
1435static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1436{
1437 int err = -1;
1438 struct inet6_ifaddr *ifp;
1439
1440 read_lock_bh(&idev->lock);
1441 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1442 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1443 memcpy(eui, ifp->addr.s6_addr+8, 8);
1444 err = 0;
1445 break;
1446 }
1447 }
1448 read_unlock_bh(&idev->lock);
1449 return err;
1450}
1451
1452#ifdef CONFIG_IPV6_PRIVACY
1453/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1454static int __ipv6_regen_rndid(struct inet6_dev *idev)
1455{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001457 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /*
1461 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1462 * check if generated address is not inappropriate
1463 *
1464 * - Reserved subnet anycast (RFC 2526)
1465 * 11111101 11....11 1xxxxxxx
1466 * - ISATAP (draft-ietf-ngtrans-isatap-13.txt) 5.1
1467 * 00-00-5E-FE-xx-xx-xx-xx
1468 * - value 0
1469 * - XXX: already assigned to an address on the device
1470 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001471 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1473 (idev->rndid[7]&0x80))
1474 goto regen;
1475 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1476 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1477 goto regen;
1478 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1479 goto regen;
1480 }
1481
1482 return 0;
1483}
1484
1485static void ipv6_regen_rndid(unsigned long data)
1486{
1487 struct inet6_dev *idev = (struct inet6_dev *) data;
1488 unsigned long expires;
1489
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001490 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 write_lock_bh(&idev->lock);
1492
1493 if (idev->dead)
1494 goto out;
1495
1496 if (__ipv6_regen_rndid(idev) < 0)
1497 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001500 idev->cnf.temp_prefered_lft * HZ -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1502 if (time_before(expires, jiffies)) {
1503 printk(KERN_WARNING
1504 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1505 idev->dev->name);
1506 goto out;
1507 }
1508
1509 if (!mod_timer(&idev->regen_timer, expires))
1510 in6_dev_hold(idev);
1511
1512out:
1513 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001514 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 in6_dev_put(idev);
1516}
1517
1518static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1519 int ret = 0;
1520
1521 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1522 ret = __ipv6_regen_rndid(idev);
1523 return ret;
1524}
1525#endif
1526
1527/*
1528 * Add prefix route.
1529 */
1530
1531static void
1532addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001533 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Thomas Graf86872cb2006-08-22 00:01:08 -07001535 struct fib6_config cfg = {
1536 .fc_table = RT6_TABLE_PREFIX,
1537 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1538 .fc_ifindex = dev->ifindex,
1539 .fc_expires = expires,
1540 .fc_dst_len = plen,
1541 .fc_flags = RTF_UP | flags,
1542 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Thomas Graf86872cb2006-08-22 00:01:08 -07001544 ipv6_addr_copy(&cfg.fc_dst, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* Prevent useless cloning on PtP SIT.
1547 This thing is done here expecting that the whole
1548 class of non-broadcast devices need not cloning.
1549 */
Joerg Roedel0be669b2006-10-10 14:49:53 -07001550#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Thomas Graf86872cb2006-08-22 00:01:08 -07001551 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1552 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001553#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Thomas Graf86872cb2006-08-22 00:01:08 -07001555 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
1558/* Create "default" multicast route to the interface */
1559
1560static void addrconf_add_mroute(struct net_device *dev)
1561{
Thomas Graf86872cb2006-08-22 00:01:08 -07001562 struct fib6_config cfg = {
1563 .fc_table = RT6_TABLE_LOCAL,
1564 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1565 .fc_ifindex = dev->ifindex,
1566 .fc_dst_len = 8,
1567 .fc_flags = RTF_UP,
1568 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Thomas Graf86872cb2006-08-22 00:01:08 -07001570 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1571
1572 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
Joerg Roedel0be669b2006-10-10 14:49:53 -07001575#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576static void sit_route_add(struct net_device *dev)
1577{
Thomas Graf86872cb2006-08-22 00:01:08 -07001578 struct fib6_config cfg = {
1579 .fc_table = RT6_TABLE_MAIN,
1580 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1581 .fc_ifindex = dev->ifindex,
1582 .fc_dst_len = 96,
1583 .fc_flags = RTF_UP | RTF_NONEXTHOP,
1584 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001587 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001589#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591static void addrconf_add_lroute(struct net_device *dev)
1592{
1593 struct in6_addr addr;
1594
1595 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1596 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1597}
1598
1599static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1600{
1601 struct inet6_dev *idev;
1602
1603 ASSERT_RTNL();
1604
1605 if ((idev = ipv6_find_idev(dev)) == NULL)
1606 return NULL;
1607
1608 /* Add default multicast route */
1609 addrconf_add_mroute(dev);
1610
1611 /* Add link local route */
1612 addrconf_add_lroute(dev);
1613 return idev;
1614}
1615
1616void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1617{
1618 struct prefix_info *pinfo;
1619 __u32 valid_lft;
1620 __u32 prefered_lft;
1621 int addr_type;
1622 unsigned long rt_expires;
1623 struct inet6_dev *in6_dev;
1624
1625 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (len < sizeof(struct prefix_info)) {
1628 ADBG(("addrconf: prefix option too short\n"));
1629 return;
1630 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /*
1633 * Validation checks ([ADDRCONF], page 19)
1634 */
1635
1636 addr_type = ipv6_addr_type(&pinfo->prefix);
1637
1638 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1639 return;
1640
1641 valid_lft = ntohl(pinfo->valid);
1642 prefered_lft = ntohl(pinfo->prefered);
1643
1644 if (prefered_lft > valid_lft) {
1645 if (net_ratelimit())
1646 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1647 return;
1648 }
1649
1650 in6_dev = in6_dev_get(dev);
1651
1652 if (in6_dev == NULL) {
1653 if (net_ratelimit())
1654 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1655 return;
1656 }
1657
1658 /*
1659 * Two things going on here:
1660 * 1) Add routes for on-link prefixes
1661 * 2) Configure prefixes with the auto flag set
1662 */
1663
1664 /* Avoid arithmetic overflow. Really, we could
1665 save rt_expires in seconds, likely valid_lft,
1666 but it would require division in fib gc, that it
1667 not good.
1668 */
1669 if (valid_lft >= 0x7FFFFFFF/HZ)
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001670 rt_expires = 0x7FFFFFFF - (0x7FFFFFFF % HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 else
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001672 rt_expires = valid_lft * HZ;
1673
1674 /*
1675 * We convert this (in jiffies) to clock_t later.
1676 * Avoid arithmetic overflow there as well.
1677 * Overflow can happen only if HZ < USER_HZ.
1678 */
1679 if (HZ < USER_HZ && rt_expires > 0x7FFFFFFF / USER_HZ)
1680 rt_expires = 0x7FFFFFFF / USER_HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 if (pinfo->onlink) {
1683 struct rt6_info *rt;
1684 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1685
1686 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1687 if (rt->rt6i_flags&RTF_EXPIRES) {
1688 if (valid_lft == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001689 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 rt = NULL;
1691 } else {
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001692 rt->rt6i_expires = jiffies + rt_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694 }
1695 } else if (valid_lft) {
1696 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001697 dev, jiffies_to_clock_t(rt_expires), RTF_ADDRCONF|RTF_EXPIRES|RTF_PREFIX_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
1699 if (rt)
1700 dst_release(&rt->u.dst);
1701 }
1702
1703 /* Try to figure out our local address for this prefix */
1704
1705 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1706 struct inet6_ifaddr * ifp;
1707 struct in6_addr addr;
1708 int create = 0, update_lft = 0;
1709
1710 if (pinfo->prefix_len == 64) {
1711 memcpy(&addr, &pinfo->prefix, 8);
1712 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1713 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1714 in6_dev_put(in6_dev);
1715 return;
1716 }
1717 goto ok;
1718 }
1719 if (net_ratelimit())
1720 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1721 pinfo->prefix_len);
1722 in6_dev_put(in6_dev);
1723 return;
1724
1725ok:
1726
1727 ifp = ipv6_get_ifaddr(&addr, dev, 1);
1728
1729 if (ifp == NULL && valid_lft) {
1730 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001731 u32 addr_flags = 0;
1732
1733#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1734 if (in6_dev->cnf.optimistic_dad &&
1735 !ipv6_devconf.forwarding)
1736 addr_flags = IFA_F_OPTIMISTIC;
1737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 /* Do not allow to create too much of autoconfigured
1740 * addresses; this would be too easy way to crash kernel.
1741 */
1742 if (!max_addresses ||
1743 ipv6_count_addresses(in6_dev) < max_addresses)
1744 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07001745 addr_type&IPV6_ADDR_SCOPE_MASK,
1746 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 if (!ifp || IS_ERR(ifp)) {
1749 in6_dev_put(in6_dev);
1750 return;
1751 }
1752
1753 update_lft = create = 1;
1754 ifp->cstamp = jiffies;
1755 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1756 }
1757
1758 if (ifp) {
1759 int flags;
1760 unsigned long now;
1761#ifdef CONFIG_IPV6_PRIVACY
1762 struct inet6_ifaddr *ift;
1763#endif
1764 u32 stored_lft;
1765
1766 /* update lifetime (RFC2462 5.5.3 e) */
1767 spin_lock(&ifp->lock);
1768 now = jiffies;
1769 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1770 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1771 else
1772 stored_lft = 0;
1773 if (!update_lft && stored_lft) {
1774 if (valid_lft > MIN_VALID_LIFETIME ||
1775 valid_lft > stored_lft)
1776 update_lft = 1;
1777 else if (stored_lft <= MIN_VALID_LIFETIME) {
1778 /* valid_lft <= stored_lft is always true */
1779 /* XXX: IPsec */
1780 update_lft = 0;
1781 } else {
1782 valid_lft = MIN_VALID_LIFETIME;
1783 if (valid_lft < prefered_lft)
1784 prefered_lft = valid_lft;
1785 update_lft = 1;
1786 }
1787 }
1788
1789 if (update_lft) {
1790 ifp->valid_lft = valid_lft;
1791 ifp->prefered_lft = prefered_lft;
1792 ifp->tstamp = now;
1793 flags = ifp->flags;
1794 ifp->flags &= ~IFA_F_DEPRECATED;
1795 spin_unlock(&ifp->lock);
1796
1797 if (!(flags&IFA_F_TENTATIVE))
1798 ipv6_ifa_notify(0, ifp);
1799 } else
1800 spin_unlock(&ifp->lock);
1801
1802#ifdef CONFIG_IPV6_PRIVACY
1803 read_lock_bh(&in6_dev->lock);
1804 /* update all temporary addresses in the list */
1805 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1806 /*
1807 * When adjusting the lifetimes of an existing
1808 * temporary address, only lower the lifetimes.
1809 * Implementations must not increase the
1810 * lifetimes of an existing temporary address
1811 * when processing a Prefix Information Option.
1812 */
1813 spin_lock(&ift->lock);
1814 flags = ift->flags;
1815 if (ift->valid_lft > valid_lft &&
1816 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1817 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1818 if (ift->prefered_lft > prefered_lft &&
1819 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1820 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1821 spin_unlock(&ift->lock);
1822 if (!(flags&IFA_F_TENTATIVE))
1823 ipv6_ifa_notify(0, ift);
1824 }
1825
1826 if (create && in6_dev->cnf.use_tempaddr > 0) {
1827 /*
1828 * When a new public address is created as described in [ADDRCONF],
1829 * also create a new temporary address.
1830 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001831 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 ipv6_create_tempaddr(ifp, NULL);
1833 } else {
1834 read_unlock_bh(&in6_dev->lock);
1835 }
1836#endif
1837 in6_ifa_put(ifp);
1838 addrconf_verify(0);
1839 }
1840 }
1841 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1842 in6_dev_put(in6_dev);
1843}
1844
1845/*
1846 * Set destination address.
1847 * Special case for SIT interfaces where we create a new "virtual"
1848 * device.
1849 */
1850int addrconf_set_dstaddr(void __user *arg)
1851{
1852 struct in6_ifreq ireq;
1853 struct net_device *dev;
1854 int err = -EINVAL;
1855
1856 rtnl_lock();
1857
1858 err = -EFAULT;
1859 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1860 goto err_exit;
1861
1862 dev = __dev_get_by_index(ireq.ifr6_ifindex);
1863
1864 err = -ENODEV;
1865 if (dev == NULL)
1866 goto err_exit;
1867
Joerg Roedel0be669b2006-10-10 14:49:53 -07001868#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 if (dev->type == ARPHRD_SIT) {
1870 struct ifreq ifr;
1871 mm_segment_t oldfs;
1872 struct ip_tunnel_parm p;
1873
1874 err = -EADDRNOTAVAIL;
1875 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1876 goto err_exit;
1877
1878 memset(&p, 0, sizeof(p));
1879 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1880 p.iph.saddr = 0;
1881 p.iph.version = 4;
1882 p.iph.ihl = 5;
1883 p.iph.protocol = IPPROTO_IPV6;
1884 p.iph.ttl = 64;
1885 ifr.ifr_ifru.ifru_data = (void __user *)&p;
1886
1887 oldfs = get_fs(); set_fs(KERNEL_DS);
1888 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1889 set_fs(oldfs);
1890
1891 if (err == 0) {
1892 err = -ENOBUFS;
1893 if ((dev = __dev_get_by_name(p.name)) == NULL)
1894 goto err_exit;
1895 err = dev_open(dev);
1896 }
1897 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07001898#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900err_exit:
1901 rtnl_unlock();
1902 return err;
1903}
1904
1905/*
1906 * Manual configuration of address on an interface
1907 */
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001908static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07001909 __u8 ifa_flags, __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 struct inet6_ifaddr *ifp;
1912 struct inet6_dev *idev;
1913 struct net_device *dev;
1914 int scope;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001915 u32 flags = RTF_EXPIRES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001918
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001919 /* check the lifetime */
1920 if (!valid_lft || prefered_lft > valid_lft)
1921 return -EINVAL;
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1924 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if ((idev = addrconf_add_dev(dev)) == NULL)
1927 return -ENOBUFS;
1928
1929 scope = ipv6_addr_scope(pfx);
1930
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001931 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001932 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001933 flags = 0;
1934 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001935 valid_lft = 0x7FFFFFFF/HZ;
1936
1937 if (prefered_lft == 0)
1938 ifa_flags |= IFA_F_DEPRECATED;
1939 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
1940 (prefered_lft != INFINITY_LIFE_TIME))
1941 prefered_lft = 0x7FFFFFFF/HZ;
1942
1943 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07001946 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001947 ifp->valid_lft = valid_lft;
1948 ifp->prefered_lft = prefered_lft;
1949 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07001950 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001951
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001952 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
1953 jiffies_to_clock_t(valid_lft * HZ), flags);
Neil Horman95c385b2007-04-25 17:08:10 -07001954 /*
1955 * Note that section 3.1 of RFC 4429 indicates
1956 * that the Optimistic flag should not be set for
1957 * manually configured addresses
1958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 addrconf_dad_start(ifp, 0);
1960 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001961 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return 0;
1963 }
1964
1965 return PTR_ERR(ifp);
1966}
1967
1968static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
1969{
1970 struct inet6_ifaddr *ifp;
1971 struct inet6_dev *idev;
1972 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1975 return -ENODEV;
1976
1977 if ((idev = __in6_dev_get(dev)) == NULL)
1978 return -ENXIO;
1979
1980 read_lock_bh(&idev->lock);
1981 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
1982 if (ifp->prefix_len == plen &&
1983 ipv6_addr_equal(pfx, &ifp->addr)) {
1984 in6_ifa_hold(ifp);
1985 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 ipv6_del_addr(ifp);
1988
1989 /* If the last address is deleted administratively,
1990 disable IPv6 on this interface.
1991 */
1992 if (idev->addr_list == NULL)
1993 addrconf_ifdown(idev->dev, 1);
1994 return 0;
1995 }
1996 }
1997 read_unlock_bh(&idev->lock);
1998 return -EADDRNOTAVAIL;
1999}
2000
2001
2002int addrconf_add_ifaddr(void __user *arg)
2003{
2004 struct in6_ifreq ireq;
2005 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (!capable(CAP_NET_ADMIN))
2008 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2011 return -EFAULT;
2012
2013 rtnl_lock();
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002014 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002015 IFA_F_PERMANENT, INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 rtnl_unlock();
2017 return err;
2018}
2019
2020int addrconf_del_ifaddr(void __user *arg)
2021{
2022 struct in6_ifreq ireq;
2023 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 if (!capable(CAP_NET_ADMIN))
2026 return -EPERM;
2027
2028 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2029 return -EFAULT;
2030
2031 rtnl_lock();
2032 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
2033 rtnl_unlock();
2034 return err;
2035}
2036
Joerg Roedel0be669b2006-10-10 14:49:53 -07002037#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038static void sit_add_v4_addrs(struct inet6_dev *idev)
2039{
2040 struct inet6_ifaddr * ifp;
2041 struct in6_addr addr;
2042 struct net_device *dev;
2043 int scope;
2044
2045 ASSERT_RTNL();
2046
2047 memset(&addr, 0, sizeof(struct in6_addr));
2048 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2049
2050 if (idev->dev->flags&IFF_POINTOPOINT) {
2051 addr.s6_addr32[0] = htonl(0xfe800000);
2052 scope = IFA_LINK;
2053 } else {
2054 scope = IPV6_ADDR_COMPATv4;
2055 }
2056
2057 if (addr.s6_addr32[3]) {
2058 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
2059 if (!IS_ERR(ifp)) {
2060 spin_lock_bh(&ifp->lock);
2061 ifp->flags &= ~IFA_F_TENTATIVE;
2062 spin_unlock_bh(&ifp->lock);
2063 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2064 in6_ifa_put(ifp);
2065 }
2066 return;
2067 }
2068
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002069 for (dev = dev_base; dev != NULL; dev = dev->next) {
Herbert Xue5ed6392005-10-03 14:35:55 -07002070 struct in_device * in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (in_dev && (dev->flags & IFF_UP)) {
2072 struct in_ifaddr * ifa;
2073
2074 int flag = scope;
2075
2076 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2077 int plen;
2078
2079 addr.s6_addr32[3] = ifa->ifa_local;
2080
2081 if (ifa->ifa_scope == RT_SCOPE_LINK)
2082 continue;
2083 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2084 if (idev->dev->flags&IFF_POINTOPOINT)
2085 continue;
2086 flag |= IFA_HOST;
2087 }
2088 if (idev->dev->flags&IFF_POINTOPOINT)
2089 plen = 64;
2090 else
2091 plen = 96;
2092
2093 ifp = ipv6_add_addr(idev, &addr, plen, flag,
2094 IFA_F_PERMANENT);
2095 if (!IS_ERR(ifp)) {
2096 spin_lock_bh(&ifp->lock);
2097 ifp->flags &= ~IFA_F_TENTATIVE;
2098 spin_unlock_bh(&ifp->lock);
2099 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2100 in6_ifa_put(ifp);
2101 }
2102 }
2103 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108static void init_loopback(struct net_device *dev)
2109{
2110 struct inet6_dev *idev;
2111 struct inet6_ifaddr * ifp;
2112
2113 /* ::1 */
2114
2115 ASSERT_RTNL();
2116
2117 if ((idev = ipv6_find_idev(dev)) == NULL) {
2118 printk(KERN_DEBUG "init loopback: add_dev failed\n");
2119 return;
2120 }
2121
2122 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
2123 if (!IS_ERR(ifp)) {
2124 spin_lock_bh(&ifp->lock);
2125 ifp->flags &= ~IFA_F_TENTATIVE;
2126 spin_unlock_bh(&ifp->lock);
2127 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2128 in6_ifa_put(ifp);
2129 }
2130}
2131
2132static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2133{
2134 struct inet6_ifaddr * ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002135 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Neil Horman95c385b2007-04-25 17:08:10 -07002137#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2138 if (idev->cnf.optimistic_dad &&
2139 !ipv6_devconf.forwarding)
2140 addr_flags |= IFA_F_OPTIMISTIC;
2141#endif
2142
2143
2144 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002146 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 addrconf_dad_start(ifp, 0);
2148 in6_ifa_put(ifp);
2149 }
2150}
2151
2152static void addrconf_dev_config(struct net_device *dev)
2153{
2154 struct in6_addr addr;
2155 struct inet6_dev * idev;
2156
2157 ASSERT_RTNL();
2158
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002159 if ((dev->type != ARPHRD_ETHER) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 (dev->type != ARPHRD_FDDI) &&
2161 (dev->type != ARPHRD_IEEE802_TR) &&
2162 (dev->type != ARPHRD_ARCNET) &&
2163 (dev->type != ARPHRD_INFINIBAND)) {
2164 /* Alas, we support only Ethernet autoconfiguration. */
2165 return;
2166 }
2167
2168 idev = addrconf_add_dev(dev);
2169 if (idev == NULL)
2170 return;
2171
2172 memset(&addr, 0, sizeof(struct in6_addr));
2173 addr.s6_addr32[0] = htonl(0xFE800000);
2174
2175 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2176 addrconf_add_linklocal(idev, &addr);
2177}
2178
Joerg Roedel0be669b2006-10-10 14:49:53 -07002179#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180static void addrconf_sit_config(struct net_device *dev)
2181{
2182 struct inet6_dev *idev;
2183
2184 ASSERT_RTNL();
2185
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002186 /*
2187 * Configure the tunnel with one of our IPv4
2188 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 * our v4 addrs in the tunnel
2190 */
2191
2192 if ((idev = ipv6_find_idev(dev)) == NULL) {
2193 printk(KERN_DEBUG "init sit: add_dev failed\n");
2194 return;
2195 }
2196
2197 sit_add_v4_addrs(idev);
2198
2199 if (dev->flags&IFF_POINTOPOINT) {
2200 addrconf_add_mroute(dev);
2201 addrconf_add_lroute(dev);
2202 } else
2203 sit_route_add(dev);
2204}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002205#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207static inline int
2208ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2209{
2210 struct in6_addr lladdr;
2211
Neil Horman95c385b2007-04-25 17:08:10 -07002212 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 addrconf_add_linklocal(idev, &lladdr);
2214 return 0;
2215 }
2216 return -1;
2217}
2218
2219static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2220{
2221 struct net_device *link_dev;
2222
2223 /* first try to inherit the link-local address from the link device */
2224 if (idev->dev->iflink &&
2225 (link_dev = __dev_get_by_index(idev->dev->iflink))) {
2226 if (!ipv6_inherit_linklocal(idev, link_dev))
2227 return;
2228 }
2229 /* then try to inherit it from any device */
2230 for (link_dev = dev_base; link_dev; link_dev = link_dev->next) {
2231 if (!ipv6_inherit_linklocal(idev, link_dev))
2232 return;
2233 }
2234 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2235}
2236
2237/*
2238 * Autoconfigure tunnel with a link-local address so routing protocols,
2239 * DHCPv6, MLD etc. can be run over the virtual link
2240 */
2241
2242static void addrconf_ip6_tnl_config(struct net_device *dev)
2243{
2244 struct inet6_dev *idev;
2245
2246 ASSERT_RTNL();
2247
2248 if ((idev = addrconf_add_dev(dev)) == NULL) {
2249 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2250 return;
2251 }
2252 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002255static int addrconf_notify(struct notifier_block *this, unsigned long event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 void * data)
2257{
2258 struct net_device *dev = (struct net_device *) data;
2259 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002260 int run_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 switch(event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002263 case NETDEV_REGISTER:
2264 if (!idev) {
2265 idev = ipv6_add_dev(dev);
2266 if (!idev)
2267 printk(KERN_WARNING "IPv6: add_dev failed for %s\n",
2268 dev->name);
2269 }
2270 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002272 case NETDEV_CHANGE:
2273 if (event == NETDEV_UP) {
2274 if (!netif_carrier_ok(dev)) {
2275 /* device is not ready yet. */
2276 printk(KERN_INFO
2277 "ADDRCONF(NETDEV_UP): %s: "
2278 "link is not ready\n",
2279 dev->name);
2280 break;
2281 }
Kristian Slavov99081042006-02-08 16:10:53 -08002282
2283 if (idev)
2284 idev->if_flags |= IF_READY;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002285 } else {
2286 if (!netif_carrier_ok(dev)) {
2287 /* device is still not ready. */
2288 break;
2289 }
2290
2291 if (idev) {
2292 if (idev->if_flags & IF_READY) {
2293 /* device is already configured. */
2294 break;
2295 }
2296 idev->if_flags |= IF_READY;
2297 }
2298
2299 printk(KERN_INFO
2300 "ADDRCONF(NETDEV_CHANGE): %s: "
2301 "link becomes ready\n",
2302 dev->name);
2303
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002304 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002305 }
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 switch(dev->type) {
Joerg Roedel0be669b2006-10-10 14:49:53 -07002308#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 case ARPHRD_SIT:
2310 addrconf_sit_config(dev);
2311 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002312#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 case ARPHRD_TUNNEL6:
2314 addrconf_ip6_tnl_config(dev);
2315 break;
2316 case ARPHRD_LOOPBACK:
2317 init_loopback(dev);
2318 break;
2319
2320 default:
2321 addrconf_dev_config(dev);
2322 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002325 if (run_pending)
2326 addrconf_dad_run(idev);
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 /* If the MTU changed during the interface down, when the
2329 interface up, the changed MTU must be reflected in the
2330 idev as well as routers.
2331 */
2332 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2333 rt6_mtu_change(dev, dev->mtu);
2334 idev->cnf.mtu6 = dev->mtu;
2335 }
2336 idev->tstamp = jiffies;
2337 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2338 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2339 stop IPv6 on this interface.
2340 */
2341 if (dev->mtu < IPV6_MIN_MTU)
2342 addrconf_ifdown(dev, event != NETDEV_DOWN);
2343 }
2344 break;
2345
2346 case NETDEV_CHANGEMTU:
2347 if ( idev && dev->mtu >= IPV6_MIN_MTU) {
2348 rt6_mtu_change(dev, dev->mtu);
2349 idev->cnf.mtu6 = dev->mtu;
2350 break;
2351 }
2352
2353 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2354
2355 case NETDEV_DOWN:
2356 case NETDEV_UNREGISTER:
2357 /*
2358 * Remove all addresses from this interface.
2359 */
2360 addrconf_ifdown(dev, event != NETDEV_DOWN);
2361 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 case NETDEV_CHANGENAME:
2364#ifdef CONFIG_SYSCTL
2365 if (idev) {
2366 addrconf_sysctl_unregister(&idev->cnf);
2367 neigh_sysctl_unregister(idev->nd_parms);
2368 neigh_sysctl_register(dev, idev->nd_parms,
2369 NET_IPV6, NET_IPV6_NEIGH, "ipv6",
2370 &ndisc_ifinfo_sysctl_change,
2371 NULL);
2372 addrconf_sysctl_register(idev, &idev->cnf);
2373 }
2374#endif
2375 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
2378 return NOTIFY_OK;
2379}
2380
2381/*
2382 * addrconf module should be notified of a device going up
2383 */
2384static struct notifier_block ipv6_dev_notf = {
2385 .notifier_call = addrconf_notify,
2386 .priority = 0
2387};
2388
2389static int addrconf_ifdown(struct net_device *dev, int how)
2390{
2391 struct inet6_dev *idev;
2392 struct inet6_ifaddr *ifa, **bifa;
2393 int i;
2394
2395 ASSERT_RTNL();
2396
2397 if (dev == &loopback_dev && how == 1)
2398 how = 0;
2399
2400 rt6_ifdown(dev);
2401 neigh_ifdown(&nd_tbl, dev);
2402
2403 idev = __in6_dev_get(dev);
2404 if (idev == NULL)
2405 return -ENODEV;
2406
2407 /* Step 1: remove reference to ipv6 device from parent device.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002408 Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 */
2410 if (how == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002412
2413 /* protected by rtnl_lock */
2414 rcu_assign_pointer(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 /* Step 1.5: remove snmp6 entry */
2417 snmp6_unregister_dev(idev);
2418
2419 }
2420
2421 /* Step 2: clear hash table */
2422 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2423 bifa = &inet6_addr_lst[i];
2424
2425 write_lock_bh(&addrconf_hash_lock);
2426 while ((ifa = *bifa) != NULL) {
2427 if (ifa->idev == idev) {
2428 *bifa = ifa->lst_next;
2429 ifa->lst_next = NULL;
2430 addrconf_del_timer(ifa);
2431 in6_ifa_put(ifa);
2432 continue;
2433 }
2434 bifa = &ifa->lst_next;
2435 }
2436 write_unlock_bh(&addrconf_hash_lock);
2437 }
2438
2439 write_lock_bh(&idev->lock);
2440
2441 /* Step 3: clear flags for stateless addrconf */
2442 if (how != 1)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002443 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 /* Step 4: clear address list */
2446#ifdef CONFIG_IPV6_PRIVACY
2447 if (how == 1 && del_timer(&idev->regen_timer))
2448 in6_dev_put(idev);
2449
2450 /* clear tempaddr list */
2451 while ((ifa = idev->tempaddr_list) != NULL) {
2452 idev->tempaddr_list = ifa->tmp_next;
2453 ifa->tmp_next = NULL;
2454 ifa->dead = 1;
2455 write_unlock_bh(&idev->lock);
2456 spin_lock_bh(&ifa->lock);
2457
2458 if (ifa->ifpub) {
2459 in6_ifa_put(ifa->ifpub);
2460 ifa->ifpub = NULL;
2461 }
2462 spin_unlock_bh(&ifa->lock);
2463 in6_ifa_put(ifa);
2464 write_lock_bh(&idev->lock);
2465 }
2466#endif
2467 while ((ifa = idev->addr_list) != NULL) {
2468 idev->addr_list = ifa->if_next;
2469 ifa->if_next = NULL;
2470 ifa->dead = 1;
2471 addrconf_del_timer(ifa);
2472 write_unlock_bh(&idev->lock);
2473
2474 __ipv6_ifa_notify(RTM_DELADDR, ifa);
2475 in6_ifa_put(ifa);
2476
2477 write_lock_bh(&idev->lock);
2478 }
2479 write_unlock_bh(&idev->lock);
2480
2481 /* Step 5: Discard multicast list */
2482
2483 if (how == 1)
2484 ipv6_mc_destroy_dev(idev);
2485 else
2486 ipv6_mc_down(idev);
2487
2488 /* Step 5: netlink notification of this interface */
2489 idev->tstamp = jiffies;
Yan Zheng979ad662005-10-14 18:31:15 +08002490 inet6_ifinfo_notify(RTM_DELLINK, idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 /* Shot the device (if unregistered) */
2493
2494 if (how == 1) {
2495#ifdef CONFIG_SYSCTL
2496 addrconf_sysctl_unregister(&idev->cnf);
2497 neigh_sysctl_unregister(idev->nd_parms);
2498#endif
2499 neigh_parms_release(&nd_tbl, idev->nd_parms);
2500 neigh_ifdown(&nd_tbl, dev);
2501 in6_dev_put(idev);
2502 }
2503 return 0;
2504}
2505
2506static void addrconf_rs_timer(unsigned long data)
2507{
2508 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2509
2510 if (ifp->idev->cnf.forwarding)
2511 goto out;
2512
2513 if (ifp->idev->if_flags & IF_RA_RCVD) {
2514 /*
2515 * Announcement received after solicitation
2516 * was sent
2517 */
2518 goto out;
2519 }
2520
2521 spin_lock(&ifp->lock);
2522 if (ifp->probes++ < ifp->idev->cnf.rtr_solicits) {
2523 struct in6_addr all_routers;
2524
2525 /* The wait after the last probe can be shorter */
2526 addrconf_mod_timer(ifp, AC_RS,
2527 (ifp->probes == ifp->idev->cnf.rtr_solicits) ?
2528 ifp->idev->cnf.rtr_solicit_delay :
2529 ifp->idev->cnf.rtr_solicit_interval);
2530 spin_unlock(&ifp->lock);
2531
2532 ipv6_addr_all_routers(&all_routers);
2533
2534 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2535 } else {
2536 spin_unlock(&ifp->lock);
2537 /*
2538 * Note: we do not support deprecated "all on-link"
2539 * assumption any longer.
2540 */
2541 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2542 ifp->idev->dev->name);
2543 }
2544
2545out:
2546 in6_ifa_put(ifp);
2547}
2548
2549/*
2550 * Duplicate Address Detection
2551 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002552static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2553{
2554 unsigned long rand_num;
2555 struct inet6_dev *idev = ifp->idev;
2556
Neil Horman95c385b2007-04-25 17:08:10 -07002557 if (ifp->flags & IFA_F_OPTIMISTIC)
2558 rand_num = 0;
2559 else
2560 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2561
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002562 ifp->probes = idev->cnf.dad_transmits;
2563 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2564}
2565
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07002566static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
2568 struct inet6_dev *idev = ifp->idev;
2569 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 addrconf_join_solict(dev, &ifp->addr);
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
2575 read_lock_bh(&idev->lock);
2576 if (ifp->dead)
2577 goto out;
2578 spin_lock_bh(&ifp->lock);
2579
2580 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002581 !(ifp->flags&IFA_F_TENTATIVE) ||
2582 ifp->flags & IFA_F_NODAD) {
Neil Horman95c385b2007-04-25 17:08:10 -07002583 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 spin_unlock_bh(&ifp->lock);
2585 read_unlock_bh(&idev->lock);
2586
2587 addrconf_dad_completed(ifp);
2588 return;
2589 }
2590
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002591 if (!(idev->if_flags & IF_READY)) {
YOSHIFUJI Hideaki3dd3bf82005-12-23 11:23:21 -08002592 spin_unlock_bh(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002593 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002594 /*
2595 * If the defice is not ready:
2596 * - keep it tentative if it is a permanent address.
2597 * - otherwise, kill it.
2598 */
2599 in6_ifa_hold(ifp);
2600 addrconf_dad_stop(ifp);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002601 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002602 }
Neil Horman95c385b2007-04-25 17:08:10 -07002603
2604 /*
2605 * Optimistic nodes can start receiving
2606 * Frames right away
2607 */
2608 if(ifp->flags & IFA_F_OPTIMISTIC)
2609 ip6_ins_rt(ifp->rt);
2610
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002611 addrconf_dad_kick(ifp);
2612 spin_unlock_bh(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613out:
2614 read_unlock_bh(&idev->lock);
2615}
2616
2617static void addrconf_dad_timer(unsigned long data)
2618{
2619 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2620 struct inet6_dev *idev = ifp->idev;
2621 struct in6_addr unspec;
2622 struct in6_addr mcaddr;
2623
2624 read_lock_bh(&idev->lock);
2625 if (idev->dead) {
2626 read_unlock_bh(&idev->lock);
2627 goto out;
2628 }
2629 spin_lock_bh(&ifp->lock);
2630 if (ifp->probes == 0) {
2631 /*
2632 * DAD was successful
2633 */
2634
Neil Horman95c385b2007-04-25 17:08:10 -07002635 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 spin_unlock_bh(&ifp->lock);
2637 read_unlock_bh(&idev->lock);
2638
2639 addrconf_dad_completed(ifp);
2640
2641 goto out;
2642 }
2643
2644 ifp->probes--;
2645 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2646 spin_unlock_bh(&ifp->lock);
2647 read_unlock_bh(&idev->lock);
2648
2649 /* send a neighbour solicitation for our addr */
2650 memset(&unspec, 0, sizeof(unspec));
2651 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2652 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2653out:
2654 in6_ifa_put(ifp);
2655}
2656
2657static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2658{
2659 struct net_device * dev = ifp->idev->dev;
2660
2661 /*
2662 * Configure the address for reception. Now it is valid.
2663 */
2664
2665 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2666
2667 /* If added prefix is link local and forwarding is off,
2668 start sending router solicitations.
2669 */
2670
2671 if (ifp->idev->cnf.forwarding == 0 &&
2672 ifp->idev->cnf.rtr_solicits > 0 &&
2673 (dev->flags&IFF_LOOPBACK) == 0 &&
2674 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2675 struct in6_addr all_routers;
2676
2677 ipv6_addr_all_routers(&all_routers);
2678
2679 /*
2680 * If a host as already performed a random delay
2681 * [...] as part of DAD [...] there is no need
2682 * to delay again before sending the first RS
2683 */
2684 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2685
2686 spin_lock_bh(&ifp->lock);
2687 ifp->probes = 1;
2688 ifp->idev->if_flags |= IF_RS_SENT;
2689 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2690 spin_unlock_bh(&ifp->lock);
2691 }
2692}
2693
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002694static void addrconf_dad_run(struct inet6_dev *idev) {
2695 struct inet6_ifaddr *ifp;
2696
2697 read_lock_bh(&idev->lock);
2698 for (ifp = idev->addr_list; ifp; ifp = ifp->if_next) {
2699 spin_lock_bh(&ifp->lock);
2700 if (!(ifp->flags & IFA_F_TENTATIVE)) {
2701 spin_unlock_bh(&ifp->lock);
2702 continue;
2703 }
2704 spin_unlock_bh(&ifp->lock);
2705 addrconf_dad_kick(ifp);
2706 }
2707 read_unlock_bh(&idev->lock);
2708}
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710#ifdef CONFIG_PROC_FS
2711struct if6_iter_state {
2712 int bucket;
2713};
2714
2715static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2716{
2717 struct inet6_ifaddr *ifa = NULL;
2718 struct if6_iter_state *state = seq->private;
2719
2720 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2721 ifa = inet6_addr_lst[state->bucket];
2722 if (ifa)
2723 break;
2724 }
2725 return ifa;
2726}
2727
2728static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2729{
2730 struct if6_iter_state *state = seq->private;
2731
2732 ifa = ifa->lst_next;
2733try_again:
2734 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2735 ifa = inet6_addr_lst[state->bucket];
2736 goto try_again;
2737 }
2738 return ifa;
2739}
2740
2741static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2742{
2743 struct inet6_ifaddr *ifa = if6_get_first(seq);
2744
2745 if (ifa)
2746 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2747 --pos;
2748 return pos ? NULL : ifa;
2749}
2750
2751static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
2752{
2753 read_lock_bh(&addrconf_hash_lock);
2754 return if6_get_idx(seq, *pos);
2755}
2756
2757static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2758{
2759 struct inet6_ifaddr *ifa;
2760
2761 ifa = if6_get_next(seq, v);
2762 ++*pos;
2763 return ifa;
2764}
2765
2766static void if6_seq_stop(struct seq_file *seq, void *v)
2767{
2768 read_unlock_bh(&addrconf_hash_lock);
2769}
2770
2771static int if6_seq_show(struct seq_file *seq, void *v)
2772{
2773 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2774 seq_printf(seq,
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002775 NIP6_SEQFMT " %02x %02x %02x %02x %8s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 NIP6(ifp->addr),
2777 ifp->idev->dev->ifindex,
2778 ifp->prefix_len,
2779 ifp->scope,
2780 ifp->flags,
2781 ifp->idev->dev->name);
2782 return 0;
2783}
2784
2785static struct seq_operations if6_seq_ops = {
2786 .start = if6_seq_start,
2787 .next = if6_seq_next,
2788 .show = if6_seq_show,
2789 .stop = if6_seq_stop,
2790};
2791
2792static int if6_seq_open(struct inode *inode, struct file *file)
2793{
2794 struct seq_file *seq;
2795 int rc = -ENOMEM;
Ingo Oeser322f74a2006-03-20 23:01:47 -08002796 struct if6_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 if (!s)
2799 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 rc = seq_open(file, &if6_seq_ops);
2802 if (rc)
2803 goto out_kfree;
2804
2805 seq = file->private_data;
2806 seq->private = s;
2807out:
2808 return rc;
2809out_kfree:
2810 kfree(s);
2811 goto out;
2812}
2813
Arjan van de Ven9a321442007-02-12 00:55:35 -08002814static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 .owner = THIS_MODULE,
2816 .open = if6_seq_open,
2817 .read = seq_read,
2818 .llseek = seq_lseek,
2819 .release = seq_release_private,
2820};
2821
2822int __init if6_proc_init(void)
2823{
2824 if (!proc_net_fops_create("if_inet6", S_IRUGO, &if6_fops))
2825 return -ENOMEM;
2826 return 0;
2827}
2828
2829void if6_proc_exit(void)
2830{
2831 proc_net_remove("if_inet6");
2832}
2833#endif /* CONFIG_PROC_FS */
2834
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07002835#ifdef CONFIG_IPV6_MIP6
2836/* Check if address is a home address configured on any interface. */
2837int ipv6_chk_home_addr(struct in6_addr *addr)
2838{
2839 int ret = 0;
2840 struct inet6_ifaddr * ifp;
2841 u8 hash = ipv6_addr_hash(addr);
2842 read_lock_bh(&addrconf_hash_lock);
2843 for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
2844 if (ipv6_addr_cmp(&ifp->addr, addr) == 0 &&
2845 (ifp->flags & IFA_F_HOMEADDRESS)) {
2846 ret = 1;
2847 break;
2848 }
2849 }
2850 read_unlock_bh(&addrconf_hash_lock);
2851 return ret;
2852}
2853#endif
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855/*
2856 * Periodic address status verification
2857 */
2858
2859static void addrconf_verify(unsigned long foo)
2860{
2861 struct inet6_ifaddr *ifp;
2862 unsigned long now, next;
2863 int i;
2864
2865 spin_lock_bh(&addrconf_verify_lock);
2866 now = jiffies;
2867 next = now + ADDR_CHECK_FREQUENCY;
2868
2869 del_timer(&addr_chk_timer);
2870
2871 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2872
2873restart:
Yan Zheng5d5780d2005-11-20 13:42:20 -08002874 read_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2876 unsigned long age;
2877#ifdef CONFIG_IPV6_PRIVACY
2878 unsigned long regen_advance;
2879#endif
2880
2881 if (ifp->flags & IFA_F_PERMANENT)
2882 continue;
2883
2884 spin_lock(&ifp->lock);
2885 age = (now - ifp->tstamp) / HZ;
2886
2887#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002888 regen_advance = ifp->idev->cnf.regen_max_retry *
2889 ifp->idev->cnf.dad_transmits *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 ifp->idev->nd_parms->retrans_time / HZ;
2891#endif
2892
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002893 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
2894 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 spin_unlock(&ifp->lock);
2896 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002897 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 ipv6_del_addr(ifp);
2899 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002900 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
2901 spin_unlock(&ifp->lock);
2902 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 } else if (age >= ifp->prefered_lft) {
2904 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2905 int deprecate = 0;
2906
2907 if (!(ifp->flags&IFA_F_DEPRECATED)) {
2908 deprecate = 1;
2909 ifp->flags |= IFA_F_DEPRECATED;
2910 }
2911
2912 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
2913 next = ifp->tstamp + ifp->valid_lft * HZ;
2914
2915 spin_unlock(&ifp->lock);
2916
2917 if (deprecate) {
2918 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002919 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921 ipv6_ifa_notify(0, ifp);
2922 in6_ifa_put(ifp);
2923 goto restart;
2924 }
2925#ifdef CONFIG_IPV6_PRIVACY
2926 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
2927 !(ifp->flags&IFA_F_TENTATIVE)) {
2928 if (age >= ifp->prefered_lft - regen_advance) {
2929 struct inet6_ifaddr *ifpub = ifp->ifpub;
2930 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2931 next = ifp->tstamp + ifp->prefered_lft * HZ;
2932 if (!ifp->regen_count && ifpub) {
2933 ifp->regen_count++;
2934 in6_ifa_hold(ifp);
2935 in6_ifa_hold(ifpub);
2936 spin_unlock(&ifp->lock);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002937 read_unlock(&addrconf_hash_lock);
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08002938 spin_lock(&ifpub->lock);
2939 ifpub->regen_count = 0;
2940 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 ipv6_create_tempaddr(ifpub, ifp);
2942 in6_ifa_put(ifpub);
2943 in6_ifa_put(ifp);
2944 goto restart;
2945 }
2946 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
2947 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
2948 spin_unlock(&ifp->lock);
2949#endif
2950 } else {
2951 /* ifp->prefered_lft <= ifp->valid_lft */
2952 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2953 next = ifp->tstamp + ifp->prefered_lft * HZ;
2954 spin_unlock(&ifp->lock);
2955 }
2956 }
Yan Zheng5d5780d2005-11-20 13:42:20 -08002957 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 }
2959
2960 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
2961 add_timer(&addr_chk_timer);
2962 spin_unlock_bh(&addrconf_verify_lock);
2963}
2964
Thomas Graf461d8832006-09-18 00:09:49 -07002965static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
2966{
2967 struct in6_addr *pfx = NULL;
2968
2969 if (addr)
2970 pfx = nla_data(addr);
2971
2972 if (local) {
2973 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
2974 pfx = NULL;
2975 else
2976 pfx = nla_data(local);
2977 }
2978
2979 return pfx;
2980}
2981
2982static struct nla_policy ifa_ipv6_policy[IFA_MAX+1] __read_mostly = {
2983 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
2984 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
2985 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
2986};
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988static int
2989inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2990{
Thomas Grafb933f712006-09-18 00:10:19 -07002991 struct ifaddrmsg *ifm;
2992 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07002994 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Thomas Grafb933f712006-09-18 00:10:19 -07002996 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
2997 if (err < 0)
2998 return err;
2999
3000 ifm = nlmsg_data(nlh);
3001 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (pfx == NULL)
3003 return -EINVAL;
3004
3005 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
3006}
3007
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003008static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3009 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003010{
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003011 u32 flags = RTF_EXPIRES;
3012
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003013 if (!valid_lft || (prefered_lft > valid_lft))
3014 return -EINVAL;
3015
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003016 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003017 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003018 flags = 0;
3019 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003020 valid_lft = 0x7FFFFFFF/HZ;
3021
3022 if (prefered_lft == 0)
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003023 ifa_flags |= IFA_F_DEPRECATED;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003024 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
3025 (prefered_lft != INFINITY_LIFE_TIME))
3026 prefered_lft = 0x7FFFFFFF/HZ;
3027
3028 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003029 ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003030 ifp->tstamp = jiffies;
3031 ifp->valid_lft = valid_lft;
3032 ifp->prefered_lft = prefered_lft;
3033
3034 spin_unlock_bh(&ifp->lock);
3035 if (!(ifp->flags&IFA_F_TENTATIVE))
3036 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003037
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003038 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3039 jiffies_to_clock_t(valid_lft * HZ), flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003040 addrconf_verify(0);
3041
3042 return 0;
3043}
3044
3045static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3047{
Thomas Graf461d8832006-09-18 00:09:49 -07003048 struct ifaddrmsg *ifm;
3049 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003051 struct inet6_ifaddr *ifa;
3052 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003053 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3054 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003055 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Thomas Graf461d8832006-09-18 00:09:49 -07003057 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3058 if (err < 0)
3059 return err;
3060
3061 ifm = nlmsg_data(nlh);
3062 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 if (pfx == NULL)
3064 return -EINVAL;
3065
Thomas Graf461d8832006-09-18 00:09:49 -07003066 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003067 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003068
3069 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003070 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003071 preferred_lft = ci->ifa_prefered;
3072 } else {
3073 preferred_lft = INFINITY_LIFE_TIME;
3074 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003075 }
3076
Thomas Graf7198f8c2006-09-18 00:13:46 -07003077 dev = __dev_get_by_index(ifm->ifa_index);
3078 if (dev == NULL)
3079 return -ENODEV;
3080
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003081 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003082 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003083
Thomas Graf7198f8c2006-09-18 00:13:46 -07003084 ifa = ipv6_get_ifaddr(pfx, dev, 1);
3085 if (ifa == NULL) {
3086 /*
3087 * It would be best to check for !NLM_F_CREATE here but
3088 * userspace alreay relies on not having to provide this.
3089 */
3090 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003091 ifa_flags, preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003092 }
3093
Thomas Graf7198f8c2006-09-18 00:13:46 -07003094 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3095 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3096 err = -EEXIST;
3097 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003098 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003099
3100 in6_ifa_put(ifa);
3101
3102 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103}
3104
Thomas Graf101bb222006-09-18 00:11:52 -07003105static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3106 u8 scope, int ifindex)
3107{
3108 struct ifaddrmsg *ifm;
3109
3110 ifm = nlmsg_data(nlh);
3111 ifm->ifa_family = AF_INET6;
3112 ifm->ifa_prefixlen = prefixlen;
3113 ifm->ifa_flags = flags;
3114 ifm->ifa_scope = scope;
3115 ifm->ifa_index = ifindex;
3116}
3117
Thomas Graf85486af2006-09-18 00:11:24 -07003118static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3119 unsigned long tstamp, u32 preferred, u32 valid)
3120{
3121 struct ifa_cacheinfo ci;
3122
3123 ci.cstamp = (u32)(TIME_DELTA(cstamp, INITIAL_JIFFIES) / HZ * 100
3124 + TIME_DELTA(cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3125 ci.tstamp = (u32)(TIME_DELTA(tstamp, INITIAL_JIFFIES) / HZ * 100
3126 + TIME_DELTA(tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3127 ci.ifa_prefered = preferred;
3128 ci.ifa_valid = valid;
3129
3130 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3131}
3132
Thomas Graf101bb222006-09-18 00:11:52 -07003133static inline int rt_scope(int ifa_scope)
3134{
3135 if (ifa_scope & IFA_HOST)
3136 return RT_SCOPE_HOST;
3137 else if (ifa_scope & IFA_LINK)
3138 return RT_SCOPE_LINK;
3139 else if (ifa_scope & IFA_SITE)
3140 return RT_SCOPE_SITE;
3141 else
3142 return RT_SCOPE_UNIVERSE;
3143}
3144
Thomas Graf0ab68032006-09-18 00:12:35 -07003145static inline int inet6_ifaddr_msgsize(void)
3146{
Thomas Graf339bf982006-11-10 14:10:15 -08003147 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3148 + nla_total_size(16) /* IFA_ADDRESS */
3149 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003150}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003153 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003156 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
Thomas Graf0ab68032006-09-18 00:12:35 -07003158 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3159 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003160 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003161
Thomas Graf101bb222006-09-18 00:11:52 -07003162 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3163 ifa->idev->dev->ifindex);
3164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003166 preferred = ifa->prefered_lft;
3167 valid = ifa->valid_lft;
3168 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 long tval = (jiffies - ifa->tstamp)/HZ;
Thomas Graf85486af2006-09-18 00:11:24 -07003170 preferred -= tval;
3171 if (valid != INFINITY_LIFE_TIME)
3172 valid -= tval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 }
3174 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003175 preferred = INFINITY_LIFE_TIME;
3176 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 }
Thomas Graf85486af2006-09-18 00:11:24 -07003178
Thomas Graf0ab68032006-09-18 00:12:35 -07003179 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003180 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3181 nlmsg_cancel(skb, nlh);
3182 return -EMSGSIZE;
3183 }
Thomas Graf85486af2006-09-18 00:11:24 -07003184
Thomas Graf0ab68032006-09-18 00:12:35 -07003185 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186}
3187
3188static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07003189 u32 pid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003192 u8 scope = RT_SCOPE_UNIVERSE;
3193 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Thomas Graf101bb222006-09-18 00:11:52 -07003195 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3196 scope = RT_SCOPE_SITE;
3197
Thomas Graf0ab68032006-09-18 00:12:35 -07003198 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3199 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003200 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003201
Thomas Graf101bb222006-09-18 00:11:52 -07003202 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003203 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3204 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003205 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3206 nlmsg_cancel(skb, nlh);
3207 return -EMSGSIZE;
3208 }
Thomas Graf85486af2006-09-18 00:11:24 -07003209
Thomas Graf0ab68032006-09-18 00:12:35 -07003210 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211}
3212
3213static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003214 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003217 u8 scope = RT_SCOPE_UNIVERSE;
3218 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Thomas Graf101bb222006-09-18 00:11:52 -07003220 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3221 scope = RT_SCOPE_SITE;
3222
Thomas Graf0ab68032006-09-18 00:12:35 -07003223 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3224 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003225 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003226
Thomas Graf101bb222006-09-18 00:11:52 -07003227 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003228 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3229 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003230 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3231 nlmsg_cancel(skb, nlh);
3232 return -EMSGSIZE;
3233 }
Thomas Graf85486af2006-09-18 00:11:24 -07003234
Thomas Graf0ab68032006-09-18 00:12:35 -07003235 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
3238enum addr_type_t
3239{
3240 UNICAST_ADDR,
3241 MULTICAST_ADDR,
3242 ANYCAST_ADDR,
3243};
3244
3245static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3246 enum addr_type_t type)
3247{
3248 int idx, ip_idx;
3249 int s_idx, s_ip_idx;
3250 int err = 1;
3251 struct net_device *dev;
3252 struct inet6_dev *idev = NULL;
3253 struct inet6_ifaddr *ifa;
3254 struct ifmcaddr6 *ifmca;
3255 struct ifacaddr6 *ifaca;
3256
3257 s_idx = cb->args[0];
3258 s_ip_idx = ip_idx = cb->args[1];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003259
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 for (dev = dev_base, idx = 0; dev; dev = dev->next, idx++) {
3261 if (idx < s_idx)
3262 continue;
3263 if (idx > s_idx)
3264 s_ip_idx = 0;
3265 ip_idx = 0;
3266 if ((idev = in6_dev_get(dev)) == NULL)
3267 continue;
3268 read_lock_bh(&idev->lock);
3269 switch (type) {
3270 case UNICAST_ADDR:
YOSHIFUJI Hideakiae9cda52005-06-28 13:00:30 -07003271 /* unicast address incl. temp addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 for (ifa = idev->addr_list; ifa;
3273 ifa = ifa->if_next, ip_idx++) {
3274 if (ip_idx < s_ip_idx)
3275 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003276 if ((err = inet6_fill_ifaddr(skb, ifa,
3277 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003278 cb->nlh->nlmsg_seq, RTM_NEWADDR,
3279 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 goto done;
3281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 break;
3283 case MULTICAST_ADDR:
3284 /* multicast address */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003285 for (ifmca = idev->mc_list; ifmca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 ifmca = ifmca->next, ip_idx++) {
3287 if (ip_idx < s_ip_idx)
3288 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003289 if ((err = inet6_fill_ifmcaddr(skb, ifmca,
3290 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003291 cb->nlh->nlmsg_seq, RTM_GETMULTICAST,
3292 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 goto done;
3294 }
3295 break;
3296 case ANYCAST_ADDR:
3297 /* anycast address */
3298 for (ifaca = idev->ac_list; ifaca;
3299 ifaca = ifaca->aca_next, ip_idx++) {
3300 if (ip_idx < s_ip_idx)
3301 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003302 if ((err = inet6_fill_ifacaddr(skb, ifaca,
3303 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003304 cb->nlh->nlmsg_seq, RTM_GETANYCAST,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003305 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 goto done;
3307 }
3308 break;
3309 default:
3310 break;
3311 }
3312 read_unlock_bh(&idev->lock);
3313 in6_dev_put(idev);
3314 }
3315done:
3316 if (err <= 0) {
3317 read_unlock_bh(&idev->lock);
3318 in6_dev_put(idev);
3319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 cb->args[0] = idx;
3321 cb->args[1] = ip_idx;
3322 return skb->len;
3323}
3324
3325static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3326{
3327 enum addr_type_t type = UNICAST_ADDR;
3328 return inet6_dump_addr(skb, cb, type);
3329}
3330
3331static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3332{
3333 enum addr_type_t type = MULTICAST_ADDR;
3334 return inet6_dump_addr(skb, cb, type);
3335}
3336
3337
3338static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3339{
3340 enum addr_type_t type = ANYCAST_ADDR;
3341 return inet6_dump_addr(skb, cb, type);
3342}
3343
Thomas Graf1b29fc22006-09-18 00:10:50 -07003344static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr* nlh,
3345 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003346{
Thomas Graf1b29fc22006-09-18 00:10:50 -07003347 struct ifaddrmsg *ifm;
3348 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003349 struct in6_addr *addr = NULL;
3350 struct net_device *dev = NULL;
3351 struct inet6_ifaddr *ifa;
3352 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003353 int err;
3354
Thomas Graf1b29fc22006-09-18 00:10:50 -07003355 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3356 if (err < 0)
3357 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003358
Thomas Graf1b29fc22006-09-18 00:10:50 -07003359 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3360 if (addr == NULL) {
3361 err = -EINVAL;
3362 goto errout;
3363 }
3364
3365 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003366 if (ifm->ifa_index)
3367 dev = __dev_get_by_index(ifm->ifa_index);
3368
Thomas Graf1b29fc22006-09-18 00:10:50 -07003369 if ((ifa = ipv6_get_ifaddr(addr, dev, 1)) == NULL) {
3370 err = -EADDRNOTAVAIL;
3371 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003372 }
3373
Thomas Graf0ab68032006-09-18 00:12:35 -07003374 if ((skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL)) == NULL) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003375 err = -ENOBUFS;
3376 goto errout_ifa;
3377 }
3378
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003379 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).pid,
3380 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003381 if (err < 0) {
3382 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3383 WARN_ON(err == -EMSGSIZE);
3384 kfree_skb(skb);
3385 goto errout_ifa;
3386 }
Thomas Graf2942e902006-08-15 00:30:25 -07003387 err = rtnl_unicast(skb, NETLINK_CB(in_skb).pid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003388errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003389 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003390errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003391 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003392}
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3395{
3396 struct sk_buff *skb;
Thomas Graf5d620262006-08-15 00:35:02 -07003397 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Thomas Graf0ab68032006-09-18 00:12:35 -07003399 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003400 if (skb == NULL)
3401 goto errout;
3402
3403 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003404 if (err < 0) {
3405 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3406 WARN_ON(err == -EMSGSIZE);
3407 kfree_skb(skb);
3408 goto errout;
3409 }
Thomas Graf5d620262006-08-15 00:35:02 -07003410 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3411errout:
3412 if (err < 0)
3413 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414}
3415
Dave Jonesb6f99a22007-03-22 12:27:49 -07003416static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 __s32 *array, int bytes)
3418{
Thomas Graf04561c12006-11-14 19:53:58 -08003419 BUG_ON(bytes < (DEVCONF_MAX * 4));
3420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 memset(array, 0, bytes);
3422 array[DEVCONF_FORWARDING] = cnf->forwarding;
3423 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3424 array[DEVCONF_MTU6] = cnf->mtu6;
3425 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3426 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3427 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3428 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3429 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3430 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3431 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3432 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3433#ifdef CONFIG_IPV6_PRIVACY
3434 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3435 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3436 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3437 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3438 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3439#endif
3440 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003441 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003442 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003443#ifdef CONFIG_IPV6_ROUTER_PREF
3444 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08003445 array[DEVCONF_RTR_PROBE_INTERVAL] = cnf->rtr_probe_interval;
Neil Hormanfa03ef32007-01-30 14:30:10 -08003446#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08003447 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
3448#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003449#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07003450 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07003451 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07003452#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3453 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
3454#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}
3456
Thomas Graf339bf982006-11-10 14:10:15 -08003457static inline size_t inet6_if_nlmsg_size(void)
3458{
3459 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3460 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3461 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3462 + nla_total_size(4) /* IFLA_MTU */
3463 + nla_total_size(4) /* IFLA_LINK */
3464 + nla_total_size( /* IFLA_PROTINFO */
3465 nla_total_size(4) /* IFLA_INET6_FLAGS */
3466 + nla_total_size(sizeof(struct ifla_cacheinfo))
3467 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003468 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
3469 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
Thomas Graf339bf982006-11-10 14:10:15 -08003470 );
3471}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003472
Herbert Xu7f7d9a62007-04-24 21:54:09 -07003473static inline void __snmp6_fill_stats(u64 *stats, void **mib, int items,
3474 int bytes)
3475{
3476 int i;
3477 int pad = bytes - sizeof(u64) * items;
3478 BUG_ON(pad < 0);
3479
3480 /* Use put_unaligned() because stats may not be aligned for u64. */
3481 put_unaligned(items, &stats[0]);
3482 for (i = 1; i < items; i++)
3483 put_unaligned(snmp_fold_field(mib, i), &stats[i]);
3484
3485 memset(&stats[items], 0, pad);
3486}
3487
3488static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
3489 int bytes)
3490{
3491 switch(attrtype) {
3492 case IFLA_INET6_STATS:
3493 __snmp6_fill_stats(stats, (void **)idev->stats.ipv6, IPSTATS_MIB_MAX, bytes);
3494 break;
3495 case IFLA_INET6_ICMP6STATS:
3496 __snmp6_fill_stats(stats, (void **)idev->stats.icmpv6, ICMP6_MIB_MAX, bytes);
3497 break;
3498 }
3499}
3500
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003501static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003502 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503{
Thomas Graf04561c12006-11-14 19:53:58 -08003504 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003505 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08003506 struct ifinfomsg *hdr;
3507 struct nlmsghdr *nlh;
3508 void *protoinfo;
3509 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
Thomas Graf04561c12006-11-14 19:53:58 -08003511 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
3512 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003513 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
Thomas Graf04561c12006-11-14 19:53:58 -08003515 hdr = nlmsg_data(nlh);
3516 hdr->ifi_family = AF_INET6;
3517 hdr->__ifi_pad = 0;
3518 hdr->ifi_type = dev->type;
3519 hdr->ifi_index = dev->ifindex;
3520 hdr->ifi_flags = dev_get_flags(dev);
3521 hdr->ifi_change = 0;
3522
3523 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
3525 if (dev->addr_len)
Thomas Graf04561c12006-11-14 19:53:58 -08003526 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
Thomas Graf04561c12006-11-14 19:53:58 -08003528 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 if (dev->ifindex != dev->iflink)
Thomas Graf04561c12006-11-14 19:53:58 -08003530 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Thomas Graf04561c12006-11-14 19:53:58 -08003532 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
3533 if (protoinfo == NULL)
3534 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
Thomas Graf04561c12006-11-14 19:53:58 -08003536 NLA_PUT_U32(skb, IFLA_INET6_FLAGS, idev->if_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 ci.max_reasm_len = IPV6_MAXPLEN;
3539 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3540 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3541 ci.reachable_time = idev->nd_parms->reachable_time;
3542 ci.retrans_time = idev->nd_parms->retrans_time;
Thomas Graf04561c12006-11-14 19:53:58 -08003543 NLA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3544
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003545 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
3546 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08003547 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003548 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003550 /* XXX - MC not implemented */
3551
3552 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
3553 if (nla == NULL)
3554 goto nla_put_failure;
3555 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
3556
3557 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
3558 if (nla == NULL)
3559 goto nla_put_failure;
3560 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
Thomas Graf04561c12006-11-14 19:53:58 -08003562 nla_nest_end(skb, protoinfo);
3563 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Thomas Graf04561c12006-11-14 19:53:58 -08003565nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003566 nlmsg_cancel(skb, nlh);
3567 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568}
3569
3570static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3571{
3572 int idx, err;
3573 int s_idx = cb->args[0];
3574 struct net_device *dev;
3575 struct inet6_dev *idev;
3576
3577 read_lock(&dev_base_lock);
3578 for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
3579 if (idx < s_idx)
3580 continue;
3581 if ((idev = in6_dev_get(dev)) == NULL)
3582 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003583 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003584 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 in6_dev_put(idev);
3586 if (err <= 0)
3587 break;
3588 }
3589 read_unlock(&dev_base_lock);
3590 cb->args[0] = idx;
3591
3592 return skb->len;
3593}
3594
3595void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3596{
3597 struct sk_buff *skb;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003598 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003599
Thomas Graf339bf982006-11-10 14:10:15 -08003600 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003601 if (skb == NULL)
3602 goto errout;
3603
3604 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003605 if (err < 0) {
3606 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
3607 WARN_ON(err == -EMSGSIZE);
3608 kfree_skb(skb);
3609 goto errout;
3610 }
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003611 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3612errout:
3613 if (err < 0)
3614 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
Thomas Graf339bf982006-11-10 14:10:15 -08003617static inline size_t inet6_prefix_nlmsg_size(void)
3618{
3619 return NLMSG_ALIGN(sizeof(struct prefixmsg))
3620 + nla_total_size(sizeof(struct in6_addr))
3621 + nla_total_size(sizeof(struct prefix_cacheinfo));
3622}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003623
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Thomas Graf6051e2f2006-11-14 19:54:19 -08003625 struct prefix_info *pinfo, u32 pid, u32 seq,
3626 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627{
Thomas Graf6051e2f2006-11-14 19:54:19 -08003628 struct prefixmsg *pmsg;
3629 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 struct prefix_cacheinfo ci;
3631
Thomas Graf6051e2f2006-11-14 19:54:19 -08003632 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*pmsg), flags);
3633 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003634 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08003635
3636 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07003638 pmsg->prefix_pad1 = 0;
3639 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 pmsg->prefix_ifindex = idev->dev->ifindex;
3641 pmsg->prefix_len = pinfo->prefix_len;
3642 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07003643 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 pmsg->prefix_flags = 0;
3645 if (pinfo->onlink)
3646 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3647 if (pinfo->autoconf)
3648 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3649
Thomas Graf6051e2f2006-11-14 19:54:19 -08003650 NLA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
3652 ci.preferred_time = ntohl(pinfo->prefered);
3653 ci.valid_time = ntohl(pinfo->valid);
Thomas Graf6051e2f2006-11-14 19:54:19 -08003654 NLA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Thomas Graf6051e2f2006-11-14 19:54:19 -08003656 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
Thomas Graf6051e2f2006-11-14 19:54:19 -08003658nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003659 nlmsg_cancel(skb, nlh);
3660 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661}
3662
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003663static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 struct prefix_info *pinfo)
3665{
3666 struct sk_buff *skb;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003667 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Thomas Graf339bf982006-11-10 14:10:15 -08003669 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003670 if (skb == NULL)
3671 goto errout;
3672
3673 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003674 if (err < 0) {
3675 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
3676 WARN_ON(err == -EMSGSIZE);
3677 kfree_skb(skb);
3678 goto errout;
3679 }
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003680 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
3681errout:
3682 if (err < 0)
3683 rtnl_set_sk_err(RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684}
3685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3687{
3688 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3689
3690 switch (event) {
3691 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07003692 /*
3693 * If the address was optimistic
3694 * we inserted the route at the start of
3695 * our DAD process, so we don't need
3696 * to do it again
3697 */
3698 if (!(ifp->rt->rt6i_node))
3699 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 if (ifp->idev->cnf.forwarding)
3701 addrconf_join_anycast(ifp);
3702 break;
3703 case RTM_DELADDR:
3704 if (ifp->idev->cnf.forwarding)
3705 addrconf_leave_anycast(ifp);
3706 addrconf_leave_solict(ifp->idev, &ifp->addr);
3707 dst_hold(&ifp->rt->u.dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003708 if (ip6_del_rt(ifp->rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 dst_free(&ifp->rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 break;
3711 }
3712}
3713
3714static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3715{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003716 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (likely(ifp->idev->dead == 0))
3718 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003719 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720}
3721
3722#ifdef CONFIG_SYSCTL
3723
3724static
3725int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3726 void __user *buffer, size_t *lenp, loff_t *ppos)
3727{
3728 int *valp = ctl->data;
3729 int val = *valp;
3730 int ret;
3731
3732 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3733
3734 if (write && valp != &ipv6_devconf_dflt.forwarding) {
3735 if (valp != &ipv6_devconf.forwarding) {
3736 if ((!*valp) ^ (!val)) {
3737 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
3738 if (idev == NULL)
3739 return ret;
3740 dev_forward_change(idev);
3741 }
3742 } else {
3743 ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding;
3744 addrconf_forward_change();
3745 }
3746 if (*valp)
3747 rt6_purge_dflt_routers();
3748 }
3749
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003750 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751}
3752
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003753static int addrconf_sysctl_forward_strategy(ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 int __user *name, int nlen,
3755 void __user *oldval,
3756 size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003757 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758{
3759 int *valp = table->data;
3760 int new;
3761
3762 if (!newval || !newlen)
3763 return 0;
3764 if (newlen != sizeof(int))
3765 return -EINVAL;
3766 if (get_user(new, (int __user *)newval))
3767 return -EFAULT;
3768 if (new == *valp)
3769 return 0;
3770 if (oldval && oldlenp) {
3771 size_t len;
3772 if (get_user(len, oldlenp))
3773 return -EFAULT;
3774 if (len) {
3775 if (len > table->maxlen)
3776 len = table->maxlen;
3777 if (copy_to_user(oldval, valp, len))
3778 return -EFAULT;
3779 if (put_user(len, oldlenp))
3780 return -EFAULT;
3781 }
3782 }
3783
3784 if (valp != &ipv6_devconf_dflt.forwarding) {
3785 if (valp != &ipv6_devconf.forwarding) {
3786 struct inet6_dev *idev = (struct inet6_dev *)table->extra1;
3787 int changed;
3788 if (unlikely(idev == NULL))
3789 return -ENODEV;
3790 changed = (!*valp) ^ (!new);
3791 *valp = new;
3792 if (changed)
3793 dev_forward_change(idev);
3794 } else {
3795 *valp = new;
3796 addrconf_forward_change();
3797 }
3798
3799 if (*valp)
3800 rt6_purge_dflt_routers();
3801 } else
3802 *valp = new;
3803
3804 return 1;
3805}
3806
3807static struct addrconf_sysctl_table
3808{
3809 struct ctl_table_header *sysctl_header;
3810 ctl_table addrconf_vars[__NET_IPV6_MAX];
3811 ctl_table addrconf_dev[2];
3812 ctl_table addrconf_conf_dir[2];
3813 ctl_table addrconf_proto_dir[2];
3814 ctl_table addrconf_root_dir[2];
Brian Haleyab32ea52006-09-22 14:15:41 -07003815} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 .sysctl_header = NULL,
3817 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003818 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 .ctl_name = NET_IPV6_FORWARDING,
3820 .procname = "forwarding",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003821 .data = &ipv6_devconf.forwarding,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 .maxlen = sizeof(int),
3823 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003824 .proc_handler = &addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 .strategy = &addrconf_sysctl_forward_strategy,
3826 },
3827 {
3828 .ctl_name = NET_IPV6_HOP_LIMIT,
3829 .procname = "hop_limit",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003830 .data = &ipv6_devconf.hop_limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 .maxlen = sizeof(int),
3832 .mode = 0644,
3833 .proc_handler = proc_dointvec,
3834 },
3835 {
3836 .ctl_name = NET_IPV6_MTU,
3837 .procname = "mtu",
3838 .data = &ipv6_devconf.mtu6,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003839 .maxlen = sizeof(int),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003841 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 },
3843 {
3844 .ctl_name = NET_IPV6_ACCEPT_RA,
3845 .procname = "accept_ra",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003846 .data = &ipv6_devconf.accept_ra,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 .maxlen = sizeof(int),
3848 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003849 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 },
3851 {
3852 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
3853 .procname = "accept_redirects",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003854 .data = &ipv6_devconf.accept_redirects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 .maxlen = sizeof(int),
3856 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003857 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 },
3859 {
3860 .ctl_name = NET_IPV6_AUTOCONF,
3861 .procname = "autoconf",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003862 .data = &ipv6_devconf.autoconf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 .maxlen = sizeof(int),
3864 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003865 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 },
3867 {
3868 .ctl_name = NET_IPV6_DAD_TRANSMITS,
3869 .procname = "dad_transmits",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003870 .data = &ipv6_devconf.dad_transmits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 .maxlen = sizeof(int),
3872 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003873 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 },
3875 {
3876 .ctl_name = NET_IPV6_RTR_SOLICITS,
3877 .procname = "router_solicitations",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003878 .data = &ipv6_devconf.rtr_solicits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 .maxlen = sizeof(int),
3880 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003881 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 },
3883 {
3884 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
3885 .procname = "router_solicitation_interval",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003886 .data = &ipv6_devconf.rtr_solicit_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 .maxlen = sizeof(int),
3888 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003889 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 .strategy = &sysctl_jiffies,
3891 },
3892 {
3893 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
3894 .procname = "router_solicitation_delay",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003895 .data = &ipv6_devconf.rtr_solicit_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 .maxlen = sizeof(int),
3897 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003898 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 .strategy = &sysctl_jiffies,
3900 },
3901 {
3902 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
3903 .procname = "force_mld_version",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003904 .data = &ipv6_devconf.force_mld_version,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 .maxlen = sizeof(int),
3906 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003907 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 },
3909#ifdef CONFIG_IPV6_PRIVACY
3910 {
3911 .ctl_name = NET_IPV6_USE_TEMPADDR,
3912 .procname = "use_tempaddr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003913 .data = &ipv6_devconf.use_tempaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 .maxlen = sizeof(int),
3915 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003916 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 },
3918 {
3919 .ctl_name = NET_IPV6_TEMP_VALID_LFT,
3920 .procname = "temp_valid_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003921 .data = &ipv6_devconf.temp_valid_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 .maxlen = sizeof(int),
3923 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003924 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 },
3926 {
3927 .ctl_name = NET_IPV6_TEMP_PREFERED_LFT,
3928 .procname = "temp_prefered_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003929 .data = &ipv6_devconf.temp_prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 .maxlen = sizeof(int),
3931 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003932 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 },
3934 {
3935 .ctl_name = NET_IPV6_REGEN_MAX_RETRY,
3936 .procname = "regen_max_retry",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003937 .data = &ipv6_devconf.regen_max_retry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 .maxlen = sizeof(int),
3939 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003940 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 },
3942 {
3943 .ctl_name = NET_IPV6_MAX_DESYNC_FACTOR,
3944 .procname = "max_desync_factor",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003945 .data = &ipv6_devconf.max_desync_factor,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 .maxlen = sizeof(int),
3947 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003948 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 },
3950#endif
3951 {
3952 .ctl_name = NET_IPV6_MAX_ADDRESSES,
3953 .procname = "max_addresses",
3954 .data = &ipv6_devconf.max_addresses,
3955 .maxlen = sizeof(int),
3956 .mode = 0644,
3957 .proc_handler = &proc_dointvec,
3958 },
3959 {
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003960 .ctl_name = NET_IPV6_ACCEPT_RA_DEFRTR,
3961 .procname = "accept_ra_defrtr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003962 .data = &ipv6_devconf.accept_ra_defrtr,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003963 .maxlen = sizeof(int),
3964 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003965 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003966 },
3967 {
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003968 .ctl_name = NET_IPV6_ACCEPT_RA_PINFO,
3969 .procname = "accept_ra_pinfo",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003970 .data = &ipv6_devconf.accept_ra_pinfo,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003971 .maxlen = sizeof(int),
3972 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003973 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003974 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003975#ifdef CONFIG_IPV6_ROUTER_PREF
3976 {
3977 .ctl_name = NET_IPV6_ACCEPT_RA_RTR_PREF,
3978 .procname = "accept_ra_rtr_pref",
3979 .data = &ipv6_devconf.accept_ra_rtr_pref,
3980 .maxlen = sizeof(int),
3981 .mode = 0644,
3982 .proc_handler = &proc_dointvec,
3983 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08003984 {
3985 .ctl_name = NET_IPV6_RTR_PROBE_INTERVAL,
3986 .procname = "router_probe_interval",
3987 .data = &ipv6_devconf.rtr_probe_interval,
3988 .maxlen = sizeof(int),
3989 .mode = 0644,
3990 .proc_handler = &proc_dointvec_jiffies,
3991 .strategy = &sysctl_jiffies,
3992 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08003993#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08003994 {
3995 .ctl_name = NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN,
3996 .procname = "accept_ra_rt_info_max_plen",
3997 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
3998 .maxlen = sizeof(int),
3999 .mode = 0644,
4000 .proc_handler = &proc_dointvec,
4001 },
4002#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004003#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004004 {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004005 .ctl_name = NET_IPV6_PROXY_NDP,
4006 .procname = "proxy_ndp",
4007 .data = &ipv6_devconf.proxy_ndp,
4008 .maxlen = sizeof(int),
4009 .mode = 0644,
4010 .proc_handler = &proc_dointvec,
4011 },
4012 {
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004013 .ctl_name = NET_IPV6_ACCEPT_SOURCE_ROUTE,
4014 .procname = "accept_source_route",
4015 .data = &ipv6_devconf.accept_source_route,
4016 .maxlen = sizeof(int),
4017 .mode = 0644,
4018 .proc_handler = &proc_dointvec,
4019 },
Neil Horman95c385b2007-04-25 17:08:10 -07004020#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4021 {
4022 .ctl_name = CTL_UNNUMBERED,
4023 .procname = "optimistic_dad",
4024 .data = &ipv6_devconf.optimistic_dad,
4025 .maxlen = sizeof(int),
4026 .mode = 0644,
4027 .proc_handler = &proc_dointvec,
4028
4029 },
4030#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004031 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 .ctl_name = 0, /* sentinel */
4033 }
4034 },
4035 .addrconf_dev = {
4036 {
4037 .ctl_name = NET_PROTO_CONF_ALL,
4038 .procname = "all",
4039 .mode = 0555,
4040 .child = addrconf_sysctl.addrconf_vars,
4041 },
4042 {
4043 .ctl_name = 0, /* sentinel */
4044 }
4045 },
4046 .addrconf_conf_dir = {
4047 {
4048 .ctl_name = NET_IPV6_CONF,
4049 .procname = "conf",
4050 .mode = 0555,
4051 .child = addrconf_sysctl.addrconf_dev,
4052 },
4053 {
4054 .ctl_name = 0, /* sentinel */
4055 }
4056 },
4057 .addrconf_proto_dir = {
4058 {
4059 .ctl_name = NET_IPV6,
4060 .procname = "ipv6",
4061 .mode = 0555,
4062 .child = addrconf_sysctl.addrconf_conf_dir,
4063 },
4064 {
4065 .ctl_name = 0, /* sentinel */
4066 }
4067 },
4068 .addrconf_root_dir = {
4069 {
4070 .ctl_name = CTL_NET,
4071 .procname = "net",
4072 .mode = 0555,
4073 .child = addrconf_sysctl.addrconf_proto_dir,
4074 },
4075 {
4076 .ctl_name = 0, /* sentinel */
4077 }
4078 },
4079};
4080
4081static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p)
4082{
4083 int i;
4084 struct net_device *dev = idev ? idev->dev : NULL;
4085 struct addrconf_sysctl_table *t;
4086 char *dev_name = NULL;
4087
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004088 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 if (t == NULL)
4090 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 for (i=0; t->addrconf_vars[i].data; i++) {
4092 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
4094 }
4095 if (dev) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004096 dev_name = dev->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 t->addrconf_dev[0].ctl_name = dev->ifindex;
4098 } else {
4099 dev_name = "default";
4100 t->addrconf_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
4101 }
4102
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004103 /*
4104 * Make a copy of dev_name, because '.procname' is regarded as const
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 * by sysctl and we wouldn't want anyone to change it under our feet
4106 * (see SIOCSIFNAME).
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004107 */
Paulo Marques543537b2005-06-23 00:09:02 -07004108 dev_name = kstrdup(dev_name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 if (!dev_name)
4110 goto free;
4111
4112 t->addrconf_dev[0].procname = dev_name;
4113
4114 t->addrconf_dev[0].child = t->addrconf_vars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 t->addrconf_conf_dir[0].child = t->addrconf_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 t->addrconf_proto_dir[0].child = t->addrconf_conf_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 t->addrconf_root_dir[0].child = t->addrconf_proto_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08004119 t->sysctl_header = register_sysctl_table(t->addrconf_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 if (t->sysctl_header == NULL)
4121 goto free_procname;
4122 else
4123 p->sysctl = t;
4124 return;
4125
4126 /* error path */
4127 free_procname:
4128 kfree(dev_name);
4129 free:
4130 kfree(t);
4131
4132 return;
4133}
4134
4135static void addrconf_sysctl_unregister(struct ipv6_devconf *p)
4136{
4137 if (p->sysctl) {
4138 struct addrconf_sysctl_table *t = p->sysctl;
4139 p->sysctl = NULL;
4140 unregister_sysctl_table(t->sysctl_header);
4141 kfree(t->addrconf_dev[0].procname);
4142 kfree(t);
4143 }
4144}
4145
4146
4147#endif
4148
4149/*
4150 * Device notifier
4151 */
4152
4153int register_inet6addr_notifier(struct notifier_block *nb)
4154{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004155 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156}
4157
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004158EXPORT_SYMBOL(register_inet6addr_notifier);
4159
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160int unregister_inet6addr_notifier(struct notifier_block *nb)
4161{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004162 return atomic_notifier_chain_unregister(&inet6addr_chain,nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163}
4164
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004165EXPORT_SYMBOL(unregister_inet6addr_notifier);
4166
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167/*
4168 * Init / cleanup code
4169 */
4170
4171int __init addrconf_init(void)
4172{
4173 int err = 0;
4174
4175 /* The addrconf netdev notifier requires that loopback_dev
4176 * has it's ipv6 private information allocated and setup
4177 * before it can bring up and give link-local addresses
4178 * to other devices which are up.
4179 *
4180 * Unfortunately, loopback_dev is not necessarily the first
4181 * entry in the global dev_base list of net devices. In fact,
4182 * it is likely to be the very last entry on that list.
4183 * So this causes the notifier registry below to try and
4184 * give link-local addresses to all devices besides loopback_dev
4185 * first, then loopback_dev, which cases all the non-loopback_dev
4186 * devices to fail to get a link-local address.
4187 *
4188 * So, as a temporary fix, allocate the ipv6 structure for
4189 * loopback_dev first by hand.
4190 * Longer term, all of the dependencies ipv6 has upon the loopback
4191 * device and it being up should be removed.
4192 */
4193 rtnl_lock();
4194 if (!ipv6_add_dev(&loopback_dev))
4195 err = -ENOMEM;
4196 rtnl_unlock();
4197 if (err)
4198 return err;
4199
Herbert Xuc62dba92005-09-26 15:10:16 -07004200 ip6_null_entry.rt6i_idev = in6_dev_get(&loopback_dev);
4201
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 register_netdevice_notifier(&ipv6_dev_notf);
4203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004205
4206 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo);
4207 if (err < 0)
4208 goto errout;
4209
4210 /* Only the first call to __rtnl_register can fail */
4211 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL);
4212 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL);
4213 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr, inet6_dump_ifaddr);
4214 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL, inet6_dump_ifmcaddr);
4215 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL, inet6_dump_ifacaddr);
4216
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217#ifdef CONFIG_SYSCTL
4218 addrconf_sysctl.sysctl_header =
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08004219 register_sysctl_table(addrconf_sysctl.addrconf_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 addrconf_sysctl_register(NULL, &ipv6_devconf_dflt);
4221#endif
4222
4223 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07004224errout:
4225 unregister_netdevice_notifier(&ipv6_dev_notf);
4226
4227 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
4230void __exit addrconf_cleanup(void)
4231{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004232 struct net_device *dev;
4233 struct inet6_dev *idev;
4234 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 int i;
4236
4237 unregister_netdevice_notifier(&ipv6_dev_notf);
4238
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239#ifdef CONFIG_SYSCTL
4240 addrconf_sysctl_unregister(&ipv6_devconf_dflt);
4241 addrconf_sysctl_unregister(&ipv6_devconf);
4242#endif
4243
4244 rtnl_lock();
4245
4246 /*
4247 * clean dev list.
4248 */
4249
4250 for (dev=dev_base; dev; dev=dev->next) {
4251 if ((idev = __in6_dev_get(dev)) == NULL)
4252 continue;
4253 addrconf_ifdown(dev, 1);
4254 }
4255 addrconf_ifdown(&loopback_dev, 2);
4256
4257 /*
4258 * Check hash table.
4259 */
4260
4261 write_lock_bh(&addrconf_hash_lock);
4262 for (i=0; i < IN6_ADDR_HSIZE; i++) {
4263 for (ifa=inet6_addr_lst[i]; ifa; ) {
4264 struct inet6_ifaddr *bifa;
4265
4266 bifa = ifa;
4267 ifa = ifa->lst_next;
4268 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
4269 /* Do not free it; something is wrong.
4270 Now we can investigate it with debugger.
4271 */
4272 }
4273 }
4274 write_unlock_bh(&addrconf_hash_lock);
4275
4276 del_timer(&addr_chk_timer);
4277
4278 rtnl_unlock();
4279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280#ifdef CONFIG_PROC_FS
4281 proc_net_remove("if_inet6");
4282#endif
4283}