blob: cd2db728d183d031dd9cfa3232d3555950908c8b [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
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020065#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <net/sock.h>
67#include <net/snmp.h>
68
69#include <net/ipv6.h>
70#include <net/protocol.h>
71#include <net/ndisc.h>
72#include <net/ip6_route.h>
73#include <net/addrconf.h>
74#include <net/tcp.h>
75#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070076#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/if_tunnel.h>
78#include <linux/rtnetlink.h>
79
80#ifdef CONFIG_IPV6_PRIVACY
81#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#endif
83
84#include <asm/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070085#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#include <linux/proc_fs.h>
88#include <linux/seq_file.h>
89
90/* Set to 3 to get tracing... */
91#define ACONF_DEBUG 2
92
93#if ACONF_DEBUG >= 3
94#define ADBG(x) printk x
95#else
96#define ADBG(x)
97#endif
98
99#define INFINITY_LIFE_TIME 0xFFFFFFFF
100#define TIME_DELTA(a,b) ((unsigned long)((long)(a) - (long)(b)))
101
102#ifdef CONFIG_SYSCTL
103static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p);
104static void addrconf_sysctl_unregister(struct ipv6_devconf *p);
105#endif
106
107#ifdef CONFIG_IPV6_PRIVACY
108static int __ipv6_regen_rndid(struct inet6_dev *idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900109static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static void ipv6_regen_rndid(unsigned long data);
111
112static int desync_factor = MAX_DESYNC_FACTOR * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#endif
114
115static int ipv6_count_addresses(struct inet6_dev *idev);
116
117/*
118 * Configured unicast address hash table
119 */
120static struct inet6_ifaddr *inet6_addr_lst[IN6_ADDR_HSIZE];
121static DEFINE_RWLOCK(addrconf_hash_lock);
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static void addrconf_verify(unsigned long);
124
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700125static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static DEFINE_SPINLOCK(addrconf_verify_lock);
127
128static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
129static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
130
131static int addrconf_ifdown(struct net_device *dev, int how);
132
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700133static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static void addrconf_dad_timer(unsigned long data);
135static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900136static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static void addrconf_rs_timer(unsigned long data);
138static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
139static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
140
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900141static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct prefix_info *pinfo);
143static int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev);
144
Alan Sterne041c682006-03-27 01:16:30 -0800145static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Brian Haleyab32ea52006-09-22 14:15:41 -0700147struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .forwarding = 0,
149 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
150 .mtu6 = IPV6_MIN_MTU,
151 .accept_ra = 1,
152 .accept_redirects = 1,
153 .autoconf = 1,
154 .force_mld_version = 0,
155 .dad_transmits = 1,
156 .rtr_solicits = MAX_RTR_SOLICITATIONS,
157 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
158 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
159#ifdef CONFIG_IPV6_PRIVACY
160 .use_tempaddr = 0,
161 .temp_valid_lft = TEMP_VALID_LIFETIME,
162 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
163 .regen_max_retry = REGEN_MAX_RETRY,
164 .max_desync_factor = MAX_DESYNC_FACTOR,
165#endif
166 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800167 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800168 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800169#ifdef CONFIG_IPV6_ROUTER_PREF
170 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800171 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800172#ifdef CONFIG_IPV6_ROUTE_INFO
173 .accept_ra_rt_info_max_plen = 0,
174#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800175#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700176 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700177 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Brian Haleyab32ea52006-09-22 14:15:41 -0700180static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .forwarding = 0,
182 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
183 .mtu6 = IPV6_MIN_MTU,
184 .accept_ra = 1,
185 .accept_redirects = 1,
186 .autoconf = 1,
187 .dad_transmits = 1,
188 .rtr_solicits = MAX_RTR_SOLICITATIONS,
189 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
190 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
191#ifdef CONFIG_IPV6_PRIVACY
192 .use_tempaddr = 0,
193 .temp_valid_lft = TEMP_VALID_LIFETIME,
194 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
195 .regen_max_retry = REGEN_MAX_RETRY,
196 .max_desync_factor = MAX_DESYNC_FACTOR,
197#endif
198 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800199 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800200 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800201#ifdef CONFIG_IPV6_ROUTER_PREF
202 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800203 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800204#ifdef CONFIG_IPV6_ROUTE_INFO
205 .accept_ra_rt_info_max_plen = 0,
206#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800207#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700208 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700209 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
212/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static void addrconf_del_timer(struct inet6_ifaddr *ifp)
217{
218 if (del_timer(&ifp->timer))
219 __in6_ifa_put(ifp);
220}
221
222enum addrconf_timer_t
223{
224 AC_NONE,
225 AC_DAD,
226 AC_RS,
227};
228
229static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
230 enum addrconf_timer_t what,
231 unsigned long when)
232{
233 if (!del_timer(&ifp->timer))
234 in6_ifa_hold(ifp);
235
236 switch (what) {
237 case AC_DAD:
238 ifp->timer.function = addrconf_dad_timer;
239 break;
240 case AC_RS:
241 ifp->timer.function = addrconf_rs_timer;
242 break;
243 default:;
244 }
245 ifp->timer.expires = jiffies + when;
246 add_timer(&ifp->timer);
247}
248
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700249static int snmp6_alloc_dev(struct inet6_dev *idev)
250{
251 int err = -ENOMEM;
252
253 if (!idev || !idev->dev)
254 return -EINVAL;
255
256 if (snmp_mib_init((void **)idev->stats.ipv6,
257 sizeof(struct ipstats_mib),
258 __alignof__(struct ipstats_mib)) < 0)
259 goto err_ip;
260 if (snmp_mib_init((void **)idev->stats.icmpv6,
261 sizeof(struct icmpv6_mib),
262 __alignof__(struct icmpv6_mib)) < 0)
263 goto err_icmp;
264
265 return 0;
266
267err_icmp:
268 snmp_mib_free((void **)idev->stats.ipv6);
269err_ip:
270 return err;
271}
272
273static int snmp6_free_dev(struct inet6_dev *idev)
274{
275 snmp_mib_free((void **)idev->stats.icmpv6);
276 snmp_mib_free((void **)idev->stats.ipv6);
277 return 0;
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/* Nobody refers to this device, we may destroy it. */
281
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700282static void in6_dev_finish_destroy_rcu(struct rcu_head *head)
283{
284 struct inet6_dev *idev = container_of(head, struct inet6_dev, rcu);
285 kfree(idev);
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288void in6_dev_finish_destroy(struct inet6_dev *idev)
289{
290 struct net_device *dev = idev->dev;
291 BUG_TRAP(idev->addr_list==NULL);
292 BUG_TRAP(idev->mc_list==NULL);
293#ifdef NET_REFCNT_DEBUG
294 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
295#endif
296 dev_put(dev);
297 if (!idev->dead) {
298 printk("Freeing alive inet6 device %p\n", idev);
299 return;
300 }
301 snmp6_free_dev(idev);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700302 call_rcu(&idev->rcu, in6_dev_finish_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900305EXPORT_SYMBOL(in6_dev_finish_destroy);
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
308{
309 struct inet6_dev *ndev;
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800310 struct in6_addr maddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 ASSERT_RTNL();
313
314 if (dev->mtu < IPV6_MIN_MTU)
315 return NULL;
316
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900317 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900319 if (ndev == NULL)
320 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Ingo Oeser322f74a2006-03-20 23:01:47 -0800322 rwlock_init(&ndev->lock);
323 ndev->dev = dev;
324 memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf));
325 ndev->cnf.mtu6 = dev->mtu;
326 ndev->cnf.sysctl = NULL;
327 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
328 if (ndev->nd_parms == NULL) {
329 kfree(ndev);
330 return NULL;
331 }
332 /* We refer to the device */
333 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Ingo Oeser322f74a2006-03-20 23:01:47 -0800335 if (snmp6_alloc_dev(ndev) < 0) {
336 ADBG((KERN_WARNING
337 "%s(): cannot allocate memory for statistics; dev=%s.\n",
338 __FUNCTION__, dev->name));
339 neigh_parms_release(&nd_tbl, ndev->nd_parms);
340 ndev->dead = 1;
341 in6_dev_finish_destroy(ndev);
342 return NULL;
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ingo Oeser322f74a2006-03-20 23:01:47 -0800345 if (snmp6_register_dev(ndev) < 0) {
346 ADBG((KERN_WARNING
347 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
348 __FUNCTION__, dev->name));
349 neigh_parms_release(&nd_tbl, ndev->nd_parms);
350 ndev->dead = 1;
351 in6_dev_finish_destroy(ndev);
352 return NULL;
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Ingo Oeser322f74a2006-03-20 23:01:47 -0800355 /* One reference from device. We must do this before
356 * we invoke __ipv6_regen_rndid().
357 */
358 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360#ifdef CONFIG_IPV6_PRIVACY
Ingo Oeser322f74a2006-03-20 23:01:47 -0800361 init_timer(&ndev->regen_timer);
362 ndev->regen_timer.function = ipv6_regen_rndid;
363 ndev->regen_timer.data = (unsigned long) ndev;
364 if ((dev->flags&IFF_LOOPBACK) ||
365 dev->type == ARPHRD_TUNNEL ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700366#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
367 dev->type == ARPHRD_SIT ||
368#endif
369 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800370 printk(KERN_INFO
371 "%s: Disabled Privacy Extensions\n",
372 dev->name);
373 ndev->cnf.use_tempaddr = -1;
374 } else {
375 in6_dev_hold(ndev);
376 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800378#endif
379
Herbert Xu53aadcc2007-03-27 14:31:52 -0700380 if (netif_running(dev) && netif_carrier_ok(dev))
381 ndev->if_flags |= IF_READY;
382
Ingo Oeser322f74a2006-03-20 23:01:47 -0800383 ipv6_mc_init_dev(ndev);
384 ndev->tstamp = jiffies;
385#ifdef CONFIG_SYSCTL
386 neigh_sysctl_register(dev, ndev->nd_parms, NET_IPV6,
387 NET_IPV6_NEIGH, "ipv6",
388 &ndisc_ifinfo_sysctl_change,
389 NULL);
390 addrconf_sysctl_register(ndev, &ndev->cnf);
391#endif
David L Stevens30c4cf52007-01-04 12:31:14 -0800392 /* protected by rtnl_lock */
393 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800394
395 /* Join all-node multicast group */
396 ipv6_addr_all_nodes(&maddr);
397 ipv6_dev_mc_inc(dev, &maddr);
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return ndev;
400}
401
402static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
403{
404 struct inet6_dev *idev;
405
406 ASSERT_RTNL();
407
408 if ((idev = __in6_dev_get(dev)) == NULL) {
409 if ((idev = ipv6_add_dev(dev)) == NULL)
410 return NULL;
411 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (dev->flags&IFF_UP)
414 ipv6_mc_up(idev);
415 return idev;
416}
417
418#ifdef CONFIG_SYSCTL
419static void dev_forward_change(struct inet6_dev *idev)
420{
421 struct net_device *dev;
422 struct inet6_ifaddr *ifa;
423 struct in6_addr addr;
424
425 if (!idev)
426 return;
427 dev = idev->dev;
428 if (dev && (dev->flags & IFF_MULTICAST)) {
429 ipv6_addr_all_routers(&addr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (idev->cnf.forwarding)
432 ipv6_dev_mc_inc(dev, &addr);
433 else
434 ipv6_dev_mc_dec(dev, &addr);
435 }
436 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800437 if (ifa->flags&IFA_F_TENTATIVE)
438 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (idev->cnf.forwarding)
440 addrconf_join_anycast(ifa);
441 else
442 addrconf_leave_anycast(ifa);
443 }
444}
445
446
447static void addrconf_forward_change(void)
448{
449 struct net_device *dev;
450 struct inet6_dev *idev;
451
452 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -0700453 for_each_netdev(dev) {
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700454 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 idev = __in6_dev_get(dev);
456 if (idev) {
457 int changed = (!idev->cnf.forwarding) ^ (!ipv6_devconf.forwarding);
458 idev->cnf.forwarding = ipv6_devconf.forwarding;
459 if (changed)
460 dev_forward_change(idev);
461 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700462 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464 read_unlock(&dev_base_lock);
465}
466#endif
467
468/* Nobody refers to this ifaddr, destroy it */
469
470void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
471{
472 BUG_TRAP(ifp->if_next==NULL);
473 BUG_TRAP(ifp->lst_next==NULL);
474#ifdef NET_REFCNT_DEBUG
475 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
476#endif
477
478 in6_dev_put(ifp->idev);
479
480 if (del_timer(&ifp->timer))
481 printk("Timer is still running, when freeing ifa=%p\n", ifp);
482
483 if (!ifp->dead) {
484 printk("Freeing alive inet6 address %p\n", ifp);
485 return;
486 }
487 dst_release(&ifp->rt->u.dst);
488
489 kfree(ifp);
490}
491
Brian Haleye55ffac2006-07-10 15:25:51 -0700492static void
493ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
494{
495 struct inet6_ifaddr *ifa, **ifap;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700496 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700497
498 /*
499 * Each device address list is sorted in order of scope -
500 * global before linklocal.
501 */
502 for (ifap = &idev->addr_list; (ifa = *ifap) != NULL;
503 ifap = &ifa->if_next) {
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700504 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700505 break;
506 }
507
508 ifp->if_next = *ifap;
509 *ifap = ifp;
510}
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/* On success it returns ifp with increased reference count */
513
514static struct inet6_ifaddr *
515ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700516 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 struct inet6_ifaddr *ifa = NULL;
519 struct rt6_info *rt;
520 int hash;
521 int err = 0;
522
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700523 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (idev->dead) {
525 err = -ENODEV; /*XXX*/
526 goto out2;
527 }
528
529 write_lock(&addrconf_hash_lock);
530
531 /* Ignore adding duplicate addresses on an interface */
532 if (ipv6_chk_same_addr(addr, idev->dev)) {
533 ADBG(("ipv6_add_addr: already assigned\n"));
534 err = -EEXIST;
535 goto out;
536 }
537
Ingo Oeser322f74a2006-03-20 23:01:47 -0800538 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (ifa == NULL) {
541 ADBG(("ipv6_add_addr: malloc failed\n"));
542 err = -ENOBUFS;
543 goto out;
544 }
545
546 rt = addrconf_dst_alloc(idev, addr, 0);
547 if (IS_ERR(rt)) {
548 err = PTR_ERR(rt);
549 goto out;
550 }
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ipv6_addr_copy(&ifa->addr, addr);
553
554 spin_lock_init(&ifa->lock);
555 init_timer(&ifa->timer);
556 ifa->timer.data = (unsigned long) ifa;
557 ifa->scope = scope;
558 ifa->prefix_len = pfxlen;
559 ifa->flags = flags | IFA_F_TENTATIVE;
560 ifa->cstamp = ifa->tstamp = jiffies;
561
Keir Fraser57f5f542006-08-29 02:43:49 -0700562 ifa->rt = rt;
563
Neil Horman95c385b2007-04-25 17:08:10 -0700564 /*
565 * part one of RFC 4429, section 3.3
566 * We should not configure an address as
567 * optimistic if we do not yet know the link
568 * layer address of our nexhop router
569 */
570
571 if (rt->rt6i_nexthop == NULL)
572 ifa->flags &= ~IFA_F_OPTIMISTIC;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 ifa->idev = idev;
575 in6_dev_hold(idev);
576 /* For caller */
577 in6_ifa_hold(ifa);
578
579 /* Add to big hash table */
580 hash = ipv6_addr_hash(addr);
581
582 ifa->lst_next = inet6_addr_lst[hash];
583 inet6_addr_lst[hash] = ifa;
584 in6_ifa_hold(ifa);
585 write_unlock(&addrconf_hash_lock);
586
587 write_lock(&idev->lock);
588 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700589 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591#ifdef CONFIG_IPV6_PRIVACY
592 if (ifa->flags&IFA_F_TEMPORARY) {
593 ifa->tmp_next = idev->tempaddr_list;
594 idev->tempaddr_list = ifa;
595 in6_ifa_hold(ifa);
596 }
597#endif
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 in6_ifa_hold(ifa);
600 write_unlock(&idev->lock);
601out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700602 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700604 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800605 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 else {
607 kfree(ifa);
608 ifa = ERR_PTR(err);
609 }
610
611 return ifa;
612out:
613 write_unlock(&addrconf_hash_lock);
614 goto out2;
615}
616
617/* This function wants to get referenced ifp and releases it before return */
618
619static void ipv6_del_addr(struct inet6_ifaddr *ifp)
620{
621 struct inet6_ifaddr *ifa, **ifap;
622 struct inet6_dev *idev = ifp->idev;
623 int hash;
624 int deleted = 0, onlink = 0;
625 unsigned long expires = jiffies;
626
627 hash = ipv6_addr_hash(&ifp->addr);
628
629 ifp->dead = 1;
630
631 write_lock_bh(&addrconf_hash_lock);
632 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
633 ifap = &ifa->lst_next) {
634 if (ifa == ifp) {
635 *ifap = ifa->lst_next;
636 __in6_ifa_put(ifp);
637 ifa->lst_next = NULL;
638 break;
639 }
640 }
641 write_unlock_bh(&addrconf_hash_lock);
642
643 write_lock_bh(&idev->lock);
644#ifdef CONFIG_IPV6_PRIVACY
645 if (ifp->flags&IFA_F_TEMPORARY) {
646 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
647 ifap = &ifa->tmp_next) {
648 if (ifa == ifp) {
649 *ifap = ifa->tmp_next;
650 if (ifp->ifpub) {
651 in6_ifa_put(ifp->ifpub);
652 ifp->ifpub = NULL;
653 }
654 __in6_ifa_put(ifp);
655 ifa->tmp_next = NULL;
656 break;
657 }
658 }
659 }
660#endif
661
Kristian Slavov1d142802005-12-21 18:47:24 -0800662 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (ifa == ifp) {
664 *ifap = ifa->if_next;
665 __in6_ifa_put(ifp);
666 ifa->if_next = NULL;
667 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
668 break;
669 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800670 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 } else if (ifp->flags & IFA_F_PERMANENT) {
672 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
673 ifp->prefix_len)) {
674 if (ifa->flags & IFA_F_PERMANENT) {
675 onlink = 1;
676 if (deleted)
677 break;
678 } else {
679 unsigned long lifetime;
680
681 if (!onlink)
682 onlink = -1;
683
684 spin_lock(&ifa->lock);
685 lifetime = min_t(unsigned long,
686 ifa->valid_lft, 0x7fffffffUL/HZ);
687 if (time_before(expires,
688 ifa->tstamp + lifetime * HZ))
689 expires = ifa->tstamp + lifetime * HZ;
690 spin_unlock(&ifa->lock);
691 }
692 }
693 }
Kristian Slavov1d142802005-12-21 18:47:24 -0800694 ifap = &ifa->if_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696 write_unlock_bh(&idev->lock);
697
698 ipv6_ifa_notify(RTM_DELADDR, ifp);
699
Alan Sterne041c682006-03-27 01:16:30 -0800700 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 addrconf_del_timer(ifp);
703
704 /*
705 * Purge or update corresponding prefix
706 *
707 * 1) we don't purge prefix here if address was not permanent.
708 * prefix is managed by its own lifetime.
709 * 2) if there're no addresses, delete prefix.
710 * 3) if there're still other permanent address(es),
711 * corresponding prefix is still permanent.
712 * 4) otherwise, update prefix lifetime to the
713 * longest valid lifetime among the corresponding
714 * addresses on the device.
715 * Note: subsequent RA will update lifetime.
716 *
717 * --yoshfuji
718 */
719 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
720 struct in6_addr prefix;
721 struct rt6_info *rt;
722
723 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
724 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
725
726 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
727 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700728 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 rt = NULL;
730 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
731 rt->rt6i_expires = expires;
732 rt->rt6i_flags |= RTF_EXPIRES;
733 }
734 }
735 dst_release(&rt->u.dst);
736 }
737
738 in6_ifa_put(ifp);
739}
740
741#ifdef CONFIG_IPV6_PRIVACY
742static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
743{
744 struct inet6_dev *idev = ifp->idev;
745 struct in6_addr addr, *tmpaddr;
746 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
747 int tmp_plen;
748 int ret = 0;
749 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -0700750 u32 addr_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 write_lock(&idev->lock);
753 if (ift) {
754 spin_lock_bh(&ift->lock);
755 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
756 spin_unlock_bh(&ift->lock);
757 tmpaddr = &addr;
758 } else {
759 tmpaddr = NULL;
760 }
761retry:
762 in6_dev_hold(idev);
763 if (idev->cnf.use_tempaddr <= 0) {
764 write_unlock(&idev->lock);
765 printk(KERN_INFO
766 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
767 in6_dev_put(idev);
768 ret = -1;
769 goto out;
770 }
771 spin_lock_bh(&ifp->lock);
772 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
773 idev->cnf.use_tempaddr = -1; /*XXX*/
774 spin_unlock_bh(&ifp->lock);
775 write_unlock(&idev->lock);
776 printk(KERN_WARNING
777 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
778 in6_dev_put(idev);
779 ret = -1;
780 goto out;
781 }
782 in6_ifa_hold(ifp);
783 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
784 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
785 spin_unlock_bh(&ifp->lock);
786 write_unlock(&idev->lock);
787 printk(KERN_WARNING
788 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
789 in6_ifa_put(ifp);
790 in6_dev_put(idev);
791 ret = -1;
792 goto out;
793 }
794 memcpy(&addr.s6_addr[8], idev->rndid, 8);
795 tmp_valid_lft = min_t(__u32,
796 ifp->valid_lft,
797 idev->cnf.temp_valid_lft);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900798 tmp_prefered_lft = min_t(__u32,
799 ifp->prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 idev->cnf.temp_prefered_lft - desync_factor / HZ);
801 tmp_plen = ifp->prefix_len;
802 max_addresses = idev->cnf.max_addresses;
803 tmp_cstamp = ifp->cstamp;
804 tmp_tstamp = ifp->tstamp;
805 spin_unlock_bh(&ifp->lock);
806
807 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -0700808
809 addr_flags = IFA_F_TEMPORARY;
810 /* set in addrconf_prefix_rcv() */
811 if (ifp->flags & IFA_F_OPTIMISTIC)
812 addr_flags |= IFA_F_OPTIMISTIC;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900815 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -0700817 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
818 addr_flags) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (!ift || IS_ERR(ift)) {
820 in6_ifa_put(ifp);
821 in6_dev_put(idev);
822 printk(KERN_INFO
823 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
824 tmpaddr = &addr;
825 write_lock(&idev->lock);
826 goto retry;
827 }
828
829 spin_lock_bh(&ift->lock);
830 ift->ifpub = ifp;
831 ift->valid_lft = tmp_valid_lft;
832 ift->prefered_lft = tmp_prefered_lft;
833 ift->cstamp = tmp_cstamp;
834 ift->tstamp = tmp_tstamp;
835 spin_unlock_bh(&ift->lock);
836
837 addrconf_dad_start(ift, 0);
838 in6_ifa_put(ift);
839 in6_dev_put(idev);
840out:
841 return ret;
842}
843#endif
844
845/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800846 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800848struct ipv6_saddr_score {
849 int addr_type;
850 unsigned int attrs;
851 int matchlen;
Brian Haley0d27b422006-03-11 18:50:14 -0800852 int scope;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800853 unsigned int rule;
854};
855
856#define IPV6_SADDR_SCORE_LOCAL 0x0001
857#define IPV6_SADDR_SCORE_PREFERRED 0x0004
858#define IPV6_SADDR_SCORE_HOA 0x0008
859#define IPV6_SADDR_SCORE_OIF 0x0010
860#define IPV6_SADDR_SCORE_LABEL 0x0020
861#define IPV6_SADDR_SCORE_PRIVACY 0x0040
862
Dave Jonesb6f99a22007-03-22 12:27:49 -0700863static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800865 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
866 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
867 return 1;
868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800871/* static matching label */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700872static inline int ipv6_saddr_label(const struct in6_addr *addr, int type)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800873{
874 /*
875 * prefix (longest match) label
876 * -----------------------------
877 * ::1/128 0
878 * ::/0 1
879 * 2002::/16 2
880 * ::/96 3
881 * ::ffff:0:0/96 4
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700882 * fc00::/7 5
883 * 2001::/32 6
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800884 */
885 if (type & IPV6_ADDR_LOOPBACK)
886 return 0;
887 else if (type & IPV6_ADDR_COMPATv4)
888 return 3;
889 else if (type & IPV6_ADDR_MAPPED)
890 return 4;
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700891 else if (addr->s6_addr32[0] == htonl(0x20010000))
892 return 6;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800893 else if (addr->s6_addr16[0] == htons(0x2002))
894 return 2;
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700895 else if ((addr->s6_addr[0] & 0xfe) == 0xfc)
896 return 5;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800897 return 1;
898}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800900int ipv6_dev_get_saddr(struct net_device *daddr_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct in6_addr *daddr, struct in6_addr *saddr)
902{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800903 struct ipv6_saddr_score hiscore;
904 struct inet6_ifaddr *ifa_result = NULL;
905 int daddr_type = __ipv6_addr_type(daddr);
906 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
907 u32 daddr_label = ipv6_saddr_label(daddr, daddr_type);
908 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800910 memset(&hiscore, 0, sizeof(hiscore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 read_lock(&dev_base_lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700913 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800914
Pavel Emelianov7562f872007-05-03 15:13:45 -0700915 for_each_netdev(dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800916 struct inet6_dev *idev;
917 struct inet6_ifaddr *ifa;
918
919 /* Rule 0: Candidate Source Address (section 4)
920 * - multicast and link-local destination address,
921 * the set of candidate source address MUST only
922 * include addresses assigned to interfaces
923 * belonging to the same link as the outgoing
924 * interface.
925 * (- For site-local destination addresses, the
926 * set of candidate source addresses MUST only
927 * include addresses assigned to interfaces
928 * belonging to the same site as the outgoing
929 * interface.)
930 */
931 if ((daddr_type & IPV6_ADDR_MULTICAST ||
932 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
933 daddr_dev && dev != daddr_dev)
934 continue;
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800937 if (!idev)
938 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800940 read_lock_bh(&idev->lock);
941 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
942 struct ipv6_saddr_score score;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800944 score.addr_type = __ipv6_addr_type(&ifa->addr);
945
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900946 /* Rule 0:
947 * - Tentative Address (RFC2462 section 5.4)
948 * - A tentative address is not considered
949 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -0700950 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900951 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800952 * - In any case, anycast addresses, multicast
953 * addresses, and the unspecified address MUST
954 * NOT be included in a candidate set.
955 */
Neil Horman95c385b2007-04-25 17:08:10 -0700956 if ((ifa->flags & IFA_F_TENTATIVE) &&
957 (!(ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900958 continue;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800959 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
960 score.addr_type & IPV6_ADDR_MULTICAST)) {
961 LIMIT_NETDEBUG(KERN_DEBUG
962 "ADDRCONF: unspecified / multicast address"
963 "assigned as unicast address on %s",
964 dev->name);
965 continue;
966 }
967
968 score.attrs = 0;
969 score.matchlen = 0;
970 score.scope = 0;
971 score.rule = 0;
972
973 if (ifa_result == NULL) {
974 /* record it if the first available entry */
975 goto record_it;
976 }
977
978 /* Rule 1: Prefer same address */
979 if (hiscore.rule < 1) {
980 if (ipv6_addr_equal(&ifa_result->addr, daddr))
981 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
982 hiscore.rule++;
983 }
984 if (ipv6_addr_equal(&ifa->addr, daddr)) {
985 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
986 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
987 score.rule = 1;
988 goto record_it;
989 }
990 } else {
991 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
992 continue;
993 }
994
995 /* Rule 2: Prefer appropriate scope */
996 if (hiscore.rule < 2) {
997 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
998 hiscore.rule++;
999 }
1000 score.scope = __ipv6_addr_src_scope(score.addr_type);
1001 if (hiscore.scope < score.scope) {
1002 if (hiscore.scope < daddr_scope) {
1003 score.rule = 2;
1004 goto record_it;
1005 } else
1006 continue;
1007 } else if (score.scope < hiscore.scope) {
1008 if (score.scope < daddr_scope)
Brian Haleye55ffac2006-07-10 15:25:51 -07001009 break; /* addresses sorted by scope */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001010 else {
1011 score.rule = 2;
1012 goto record_it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
1014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Neil Horman95c385b2007-04-25 17:08:10 -07001016 /* Rule 3: Avoid deprecated and optimistic addresses */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001017 if (hiscore.rule < 3) {
1018 if (ipv6_saddr_preferred(hiscore.addr_type) ||
Neil Horman95c385b2007-04-25 17:08:10 -07001019 (((ifa_result->flags &
1020 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0)))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001021 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1022 hiscore.rule++;
1023 }
1024 if (ipv6_saddr_preferred(score.addr_type) ||
Jiri Kosina6ae5f982007-09-16 14:48:21 -07001025 (((ifa->flags &
Neil Horman95c385b2007-04-25 17:08:10 -07001026 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0))) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001027 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1028 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
1029 score.rule = 3;
1030 goto record_it;
1031 }
1032 } else {
1033 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
1034 continue;
1035 }
1036
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001037 /* Rule 4: Prefer home address */
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -07001038#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001039 if (hiscore.rule < 4) {
1040 if (ifa_result->flags & IFA_F_HOMEADDRESS)
1041 hiscore.attrs |= IPV6_SADDR_SCORE_HOA;
1042 hiscore.rule++;
1043 }
1044 if (ifa->flags & IFA_F_HOMEADDRESS) {
1045 score.attrs |= IPV6_SADDR_SCORE_HOA;
1046 if (!(ifa_result->flags & IFA_F_HOMEADDRESS)) {
1047 score.rule = 4;
1048 goto record_it;
1049 }
1050 } else {
1051 if (hiscore.attrs & IPV6_SADDR_SCORE_HOA)
1052 continue;
1053 }
1054#else
YOSHIFUJI Hideaki220bbd72005-11-28 22:27:11 -08001055 if (hiscore.rule < 4)
1056 hiscore.rule++;
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001057#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001058
1059 /* Rule 5: Prefer outgoing interface */
1060 if (hiscore.rule < 5) {
1061 if (daddr_dev == NULL ||
1062 daddr_dev == ifa_result->idev->dev)
1063 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
1064 hiscore.rule++;
1065 }
1066 if (daddr_dev == NULL ||
1067 daddr_dev == ifa->idev->dev) {
1068 score.attrs |= IPV6_SADDR_SCORE_OIF;
1069 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1070 score.rule = 5;
1071 goto record_it;
1072 }
1073 } else {
1074 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1075 continue;
1076 }
1077
1078 /* Rule 6: Prefer matching label */
1079 if (hiscore.rule < 6) {
1080 if (ipv6_saddr_label(&ifa_result->addr, hiscore.addr_type) == daddr_label)
1081 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1082 hiscore.rule++;
1083 }
1084 if (ipv6_saddr_label(&ifa->addr, score.addr_type) == daddr_label) {
1085 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1086 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1087 score.rule = 6;
1088 goto record_it;
1089 }
1090 } else {
1091 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1092 continue;
1093 }
1094
Peter Chubb44fd0262005-11-09 13:05:47 -08001095#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001096 /* Rule 7: Prefer public address
1097 * Note: prefer temprary address if use_tempaddr >= 2
1098 */
1099 if (hiscore.rule < 7) {
1100 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1101 (ifa_result->idev->cnf.use_tempaddr >= 2))
1102 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1103 hiscore.rule++;
1104 }
1105 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1106 (ifa->idev->cnf.use_tempaddr >= 2)) {
1107 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1108 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1109 score.rule = 7;
1110 goto record_it;
1111 }
1112 } else {
1113 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1114 continue;
1115 }
YOSHIFUJI Hideaki5e2707f2006-06-22 01:41:18 -07001116#else
1117 if (hiscore.rule < 7)
1118 hiscore.rule++;
Peter Chubb44fd0262005-11-09 13:05:47 -08001119#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001120 /* Rule 8: Use longest matching prefix */
Yan Zheng12da2a42005-11-14 21:42:46 -08001121 if (hiscore.rule < 8) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001122 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
Yan Zheng12da2a42005-11-14 21:42:46 -08001123 hiscore.rule++;
1124 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001125 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1126 if (score.matchlen > hiscore.matchlen) {
1127 score.rule = 8;
1128 goto record_it;
1129 }
1130#if 0
1131 else if (score.matchlen < hiscore.matchlen)
1132 continue;
1133#endif
1134
1135 /* Final Rule: choose first available one */
1136 continue;
1137record_it:
1138 if (ifa_result)
1139 in6_ifa_put(ifa_result);
1140 in6_ifa_hold(ifa);
1141 ifa_result = ifa;
1142 hiscore = score;
1143 }
1144 read_unlock_bh(&idev->lock);
1145 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001146 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 read_unlock(&dev_base_lock);
1148
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001149 if (!ifa_result)
1150 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001151
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001152 ipv6_addr_copy(saddr, &ifa_result->addr);
1153 in6_ifa_put(ifa_result);
1154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157
1158int ipv6_get_saddr(struct dst_entry *dst,
1159 struct in6_addr *daddr, struct in6_addr *saddr)
1160{
YOSHIFUJI Hideaki7a3025b2006-10-13 16:17:25 +09001161 return ipv6_dev_get_saddr(dst ? ip6_dst_idev(dst)->dev : NULL, daddr, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001164EXPORT_SYMBOL(ipv6_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Neil Horman95c385b2007-04-25 17:08:10 -07001166int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1167 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 struct inet6_dev *idev;
1170 int err = -EADDRNOTAVAIL;
1171
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001172 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if ((idev = __in6_dev_get(dev)) != NULL) {
1174 struct inet6_ifaddr *ifp;
1175
1176 read_lock_bh(&idev->lock);
1177 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
Neil Horman95c385b2007-04-25 17:08:10 -07001178 if (ifp->scope == IFA_LINK && !(ifp->flags & banned_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 ipv6_addr_copy(addr, &ifp->addr);
1180 err = 0;
1181 break;
1182 }
1183 }
1184 read_unlock_bh(&idev->lock);
1185 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001186 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return err;
1188}
1189
1190static int ipv6_count_addresses(struct inet6_dev *idev)
1191{
1192 int cnt = 0;
1193 struct inet6_ifaddr *ifp;
1194
1195 read_lock_bh(&idev->lock);
1196 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1197 cnt++;
1198 read_unlock_bh(&idev->lock);
1199 return cnt;
1200}
1201
1202int ipv6_chk_addr(struct in6_addr *addr, struct net_device *dev, int strict)
1203{
1204 struct inet6_ifaddr * ifp;
1205 u8 hash = ipv6_addr_hash(addr);
1206
1207 read_lock_bh(&addrconf_hash_lock);
1208 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1209 if (ipv6_addr_equal(&ifp->addr, addr) &&
1210 !(ifp->flags&IFA_F_TENTATIVE)) {
1211 if (dev == NULL || ifp->idev->dev == dev ||
1212 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1213 break;
1214 }
1215 }
1216 read_unlock_bh(&addrconf_hash_lock);
1217 return ifp != NULL;
1218}
1219
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001220EXPORT_SYMBOL(ipv6_chk_addr);
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222static
1223int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev)
1224{
1225 struct inet6_ifaddr * ifp;
1226 u8 hash = ipv6_addr_hash(addr);
1227
1228 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1229 if (ipv6_addr_equal(&ifp->addr, addr)) {
1230 if (dev == NULL || ifp->idev->dev == dev)
1231 break;
1232 }
1233 }
1234 return ifp != NULL;
1235}
1236
1237struct inet6_ifaddr * ipv6_get_ifaddr(struct in6_addr *addr, struct net_device *dev, int strict)
1238{
1239 struct inet6_ifaddr * ifp;
1240 u8 hash = ipv6_addr_hash(addr);
1241
1242 read_lock_bh(&addrconf_hash_lock);
1243 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1244 if (ipv6_addr_equal(&ifp->addr, addr)) {
1245 if (dev == NULL || ifp->idev->dev == dev ||
1246 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1247 in6_ifa_hold(ifp);
1248 break;
1249 }
1250 }
1251 }
1252 read_unlock_bh(&addrconf_hash_lock);
1253
1254 return ifp;
1255}
1256
1257int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1258{
1259 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
Arnaldo Carvalho de Melo0fa1a532005-12-13 23:23:09 -08001260 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
Al Viro82103232006-09-27 18:44:10 -07001261 __be32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1262 __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 int sk_ipv6only = ipv6_only_sock(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001264 int sk2_ipv6only = inet_v6_ipv6only(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1266 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1267
1268 if (!sk2_rcv_saddr && !sk_ipv6only)
1269 return 1;
1270
1271 if (addr_type2 == IPV6_ADDR_ANY &&
1272 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1273 return 1;
1274
1275 if (addr_type == IPV6_ADDR_ANY &&
1276 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1277 return 1;
1278
1279 if (sk2_rcv_saddr6 &&
1280 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1281 return 1;
1282
1283 if (addr_type == IPV6_ADDR_MAPPED &&
1284 !sk2_ipv6only &&
1285 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1286 return 1;
1287
1288 return 0;
1289}
1290
1291/* Gets referenced address, destroys ifaddr */
1292
Adrian Bunk9f5336e2006-01-07 13:24:25 -08001293static void addrconf_dad_stop(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (ifp->flags&IFA_F_PERMANENT) {
1296 spin_lock_bh(&ifp->lock);
1297 addrconf_del_timer(ifp);
1298 ifp->flags |= IFA_F_TENTATIVE;
1299 spin_unlock_bh(&ifp->lock);
1300 in6_ifa_put(ifp);
1301#ifdef CONFIG_IPV6_PRIVACY
1302 } else if (ifp->flags&IFA_F_TEMPORARY) {
1303 struct inet6_ifaddr *ifpub;
1304 spin_lock_bh(&ifp->lock);
1305 ifpub = ifp->ifpub;
1306 if (ifpub) {
1307 in6_ifa_hold(ifpub);
1308 spin_unlock_bh(&ifp->lock);
1309 ipv6_create_tempaddr(ifpub, ifp);
1310 in6_ifa_put(ifpub);
1311 } else {
1312 spin_unlock_bh(&ifp->lock);
1313 }
1314 ipv6_del_addr(ifp);
1315#endif
1316 } else
1317 ipv6_del_addr(ifp);
1318}
1319
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001320void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1321{
1322 if (net_ratelimit())
1323 printk(KERN_INFO "%s: duplicate address detected!\n", ifp->idev->dev->name);
1324 addrconf_dad_stop(ifp);
1325}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327/* Join to solicited addr multicast group. */
1328
1329void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1330{
1331 struct in6_addr maddr;
1332
1333 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1334 return;
1335
1336 addrconf_addr_solict_mult(addr, &maddr);
1337 ipv6_dev_mc_inc(dev, &maddr);
1338}
1339
1340void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1341{
1342 struct in6_addr maddr;
1343
1344 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1345 return;
1346
1347 addrconf_addr_solict_mult(addr, &maddr);
1348 __ipv6_dev_mc_dec(idev, &maddr);
1349}
1350
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001351static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct in6_addr addr;
1354 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1355 if (ipv6_addr_any(&addr))
1356 return;
1357 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1358}
1359
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001360static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 struct in6_addr addr;
1363 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1364 if (ipv6_addr_any(&addr))
1365 return;
1366 __ipv6_dev_ac_dec(ifp->idev, &addr);
1367}
1368
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001369static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1370{
1371 if (dev->addr_len != ETH_ALEN)
1372 return -1;
1373 memcpy(eui, dev->dev_addr, 3);
1374 memcpy(eui + 5, dev->dev_addr + 3, 3);
1375
1376 /*
1377 * The zSeries OSA network cards can be shared among various
1378 * OS instances, but the OSA cards have only one MAC address.
1379 * This leads to duplicate address conflicts in conjunction
1380 * with IPv6 if more than one instance uses the same card.
1381 *
1382 * The driver for these cards can deliver a unique 16-bit
1383 * identifier for each instance sharing the same card. It is
1384 * placed instead of 0xFFFE in the interface identifier. The
1385 * "u" bit of the interface identifier is not inverted in this
1386 * case. Hence the resulting interface identifier has local
1387 * scope according to RFC2373.
1388 */
1389 if (dev->dev_id) {
1390 eui[3] = (dev->dev_id >> 8) & 0xFF;
1391 eui[4] = dev->dev_id & 0xFF;
1392 } else {
1393 eui[3] = 0xFF;
1394 eui[4] = 0xFE;
1395 eui[0] ^= 2;
1396 }
1397 return 0;
1398}
1399
1400static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1401{
1402 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1403 if (dev->addr_len != ARCNET_ALEN)
1404 return -1;
1405 memset(eui, 0, 7);
1406 eui[7] = *(u8*)dev->dev_addr;
1407 return 0;
1408}
1409
1410static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1411{
1412 if (dev->addr_len != INFINIBAND_ALEN)
1413 return -1;
1414 memcpy(eui, dev->dev_addr + 12, 8);
1415 eui[0] |= 2;
1416 return 0;
1417}
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1420{
1421 switch (dev->type) {
1422 case ARPHRD_ETHER:
1423 case ARPHRD_FDDI:
1424 case ARPHRD_IEEE802_TR:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001425 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001427 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001429 return addrconf_ifid_infiniband(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 return -1;
1432}
1433
1434static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1435{
1436 int err = -1;
1437 struct inet6_ifaddr *ifp;
1438
1439 read_lock_bh(&idev->lock);
1440 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1441 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1442 memcpy(eui, ifp->addr.s6_addr+8, 8);
1443 err = 0;
1444 break;
1445 }
1446 }
1447 read_unlock_bh(&idev->lock);
1448 return err;
1449}
1450
1451#ifdef CONFIG_IPV6_PRIVACY
1452/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1453static int __ipv6_regen_rndid(struct inet6_dev *idev)
1454{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001456 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /*
1460 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1461 * check if generated address is not inappropriate
1462 *
1463 * - Reserved subnet anycast (RFC 2526)
1464 * 11111101 11....11 1xxxxxxx
1465 * - ISATAP (draft-ietf-ngtrans-isatap-13.txt) 5.1
1466 * 00-00-5E-FE-xx-xx-xx-xx
1467 * - value 0
1468 * - XXX: already assigned to an address on the device
1469 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001470 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1472 (idev->rndid[7]&0x80))
1473 goto regen;
1474 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1475 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1476 goto regen;
1477 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1478 goto regen;
1479 }
1480
1481 return 0;
1482}
1483
1484static void ipv6_regen_rndid(unsigned long data)
1485{
1486 struct inet6_dev *idev = (struct inet6_dev *) data;
1487 unsigned long expires;
1488
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001489 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 write_lock_bh(&idev->lock);
1491
1492 if (idev->dead)
1493 goto out;
1494
1495 if (__ipv6_regen_rndid(idev) < 0)
1496 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001499 idev->cnf.temp_prefered_lft * HZ -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1501 if (time_before(expires, jiffies)) {
1502 printk(KERN_WARNING
1503 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1504 idev->dev->name);
1505 goto out;
1506 }
1507
1508 if (!mod_timer(&idev->regen_timer, expires))
1509 in6_dev_hold(idev);
1510
1511out:
1512 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001513 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 in6_dev_put(idev);
1515}
1516
1517static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1518 int ret = 0;
1519
1520 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1521 ret = __ipv6_regen_rndid(idev);
1522 return ret;
1523}
1524#endif
1525
1526/*
1527 * Add prefix route.
1528 */
1529
1530static void
1531addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001532 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Thomas Graf86872cb2006-08-22 00:01:08 -07001534 struct fib6_config cfg = {
1535 .fc_table = RT6_TABLE_PREFIX,
1536 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1537 .fc_ifindex = dev->ifindex,
1538 .fc_expires = expires,
1539 .fc_dst_len = plen,
1540 .fc_flags = RTF_UP | flags,
1541 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Thomas Graf86872cb2006-08-22 00:01:08 -07001543 ipv6_addr_copy(&cfg.fc_dst, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /* Prevent useless cloning on PtP SIT.
1546 This thing is done here expecting that the whole
1547 class of non-broadcast devices need not cloning.
1548 */
Joerg Roedel0be669b2006-10-10 14:49:53 -07001549#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Thomas Graf86872cb2006-08-22 00:01:08 -07001550 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1551 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001552#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Thomas Graf86872cb2006-08-22 00:01:08 -07001554 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
1557/* Create "default" multicast route to the interface */
1558
1559static void addrconf_add_mroute(struct net_device *dev)
1560{
Thomas Graf86872cb2006-08-22 00:01:08 -07001561 struct fib6_config cfg = {
1562 .fc_table = RT6_TABLE_LOCAL,
1563 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1564 .fc_ifindex = dev->ifindex,
1565 .fc_dst_len = 8,
1566 .fc_flags = RTF_UP,
1567 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Thomas Graf86872cb2006-08-22 00:01:08 -07001569 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1570
1571 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Joerg Roedel0be669b2006-10-10 14:49:53 -07001574#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575static void sit_route_add(struct net_device *dev)
1576{
Thomas Graf86872cb2006-08-22 00:01:08 -07001577 struct fib6_config cfg = {
1578 .fc_table = RT6_TABLE_MAIN,
1579 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1580 .fc_ifindex = dev->ifindex,
1581 .fc_dst_len = 96,
1582 .fc_flags = RTF_UP | RTF_NONEXTHOP,
1583 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001586 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001588#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590static void addrconf_add_lroute(struct net_device *dev)
1591{
1592 struct in6_addr addr;
1593
1594 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1595 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1596}
1597
1598static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1599{
1600 struct inet6_dev *idev;
1601
1602 ASSERT_RTNL();
1603
1604 if ((idev = ipv6_find_idev(dev)) == NULL)
1605 return NULL;
1606
1607 /* Add default multicast route */
1608 addrconf_add_mroute(dev);
1609
1610 /* Add link local route */
1611 addrconf_add_lroute(dev);
1612 return idev;
1613}
1614
1615void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1616{
1617 struct prefix_info *pinfo;
1618 __u32 valid_lft;
1619 __u32 prefered_lft;
1620 int addr_type;
1621 unsigned long rt_expires;
1622 struct inet6_dev *in6_dev;
1623
1624 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (len < sizeof(struct prefix_info)) {
1627 ADBG(("addrconf: prefix option too short\n"));
1628 return;
1629 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /*
1632 * Validation checks ([ADDRCONF], page 19)
1633 */
1634
1635 addr_type = ipv6_addr_type(&pinfo->prefix);
1636
1637 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1638 return;
1639
1640 valid_lft = ntohl(pinfo->valid);
1641 prefered_lft = ntohl(pinfo->prefered);
1642
1643 if (prefered_lft > valid_lft) {
1644 if (net_ratelimit())
1645 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1646 return;
1647 }
1648
1649 in6_dev = in6_dev_get(dev);
1650
1651 if (in6_dev == NULL) {
1652 if (net_ratelimit())
1653 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1654 return;
1655 }
1656
1657 /*
1658 * Two things going on here:
1659 * 1) Add routes for on-link prefixes
1660 * 2) Configure prefixes with the auto flag set
1661 */
1662
1663 /* Avoid arithmetic overflow. Really, we could
1664 save rt_expires in seconds, likely valid_lft,
1665 but it would require division in fib gc, that it
1666 not good.
1667 */
1668 if (valid_lft >= 0x7FFFFFFF/HZ)
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001669 rt_expires = 0x7FFFFFFF - (0x7FFFFFFF % HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 else
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001671 rt_expires = valid_lft * HZ;
1672
1673 /*
1674 * We convert this (in jiffies) to clock_t later.
1675 * Avoid arithmetic overflow there as well.
1676 * Overflow can happen only if HZ < USER_HZ.
1677 */
1678 if (HZ < USER_HZ && rt_expires > 0x7FFFFFFF / USER_HZ)
1679 rt_expires = 0x7FFFFFFF / USER_HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 if (pinfo->onlink) {
1682 struct rt6_info *rt;
1683 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1684
1685 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1686 if (rt->rt6i_flags&RTF_EXPIRES) {
1687 if (valid_lft == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001688 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 rt = NULL;
1690 } else {
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001691 rt->rt6i_expires = jiffies + rt_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693 }
1694 } else if (valid_lft) {
1695 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001696 dev, jiffies_to_clock_t(rt_expires), RTF_ADDRCONF|RTF_EXPIRES|RTF_PREFIX_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 if (rt)
1699 dst_release(&rt->u.dst);
1700 }
1701
1702 /* Try to figure out our local address for this prefix */
1703
1704 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1705 struct inet6_ifaddr * ifp;
1706 struct in6_addr addr;
1707 int create = 0, update_lft = 0;
1708
1709 if (pinfo->prefix_len == 64) {
1710 memcpy(&addr, &pinfo->prefix, 8);
1711 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1712 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1713 in6_dev_put(in6_dev);
1714 return;
1715 }
1716 goto ok;
1717 }
1718 if (net_ratelimit())
1719 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1720 pinfo->prefix_len);
1721 in6_dev_put(in6_dev);
1722 return;
1723
1724ok:
1725
1726 ifp = ipv6_get_ifaddr(&addr, dev, 1);
1727
1728 if (ifp == NULL && valid_lft) {
1729 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001730 u32 addr_flags = 0;
1731
1732#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1733 if (in6_dev->cnf.optimistic_dad &&
1734 !ipv6_devconf.forwarding)
1735 addr_flags = IFA_F_OPTIMISTIC;
1736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 /* Do not allow to create too much of autoconfigured
1739 * addresses; this would be too easy way to crash kernel.
1740 */
1741 if (!max_addresses ||
1742 ipv6_count_addresses(in6_dev) < max_addresses)
1743 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07001744 addr_type&IPV6_ADDR_SCOPE_MASK,
1745 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 if (!ifp || IS_ERR(ifp)) {
1748 in6_dev_put(in6_dev);
1749 return;
1750 }
1751
1752 update_lft = create = 1;
1753 ifp->cstamp = jiffies;
1754 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1755 }
1756
1757 if (ifp) {
1758 int flags;
1759 unsigned long now;
1760#ifdef CONFIG_IPV6_PRIVACY
1761 struct inet6_ifaddr *ift;
1762#endif
1763 u32 stored_lft;
1764
1765 /* update lifetime (RFC2462 5.5.3 e) */
1766 spin_lock(&ifp->lock);
1767 now = jiffies;
1768 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1769 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1770 else
1771 stored_lft = 0;
1772 if (!update_lft && stored_lft) {
1773 if (valid_lft > MIN_VALID_LIFETIME ||
1774 valid_lft > stored_lft)
1775 update_lft = 1;
1776 else if (stored_lft <= MIN_VALID_LIFETIME) {
1777 /* valid_lft <= stored_lft is always true */
1778 /* XXX: IPsec */
1779 update_lft = 0;
1780 } else {
1781 valid_lft = MIN_VALID_LIFETIME;
1782 if (valid_lft < prefered_lft)
1783 prefered_lft = valid_lft;
1784 update_lft = 1;
1785 }
1786 }
1787
1788 if (update_lft) {
1789 ifp->valid_lft = valid_lft;
1790 ifp->prefered_lft = prefered_lft;
1791 ifp->tstamp = now;
1792 flags = ifp->flags;
1793 ifp->flags &= ~IFA_F_DEPRECATED;
1794 spin_unlock(&ifp->lock);
1795
1796 if (!(flags&IFA_F_TENTATIVE))
1797 ipv6_ifa_notify(0, ifp);
1798 } else
1799 spin_unlock(&ifp->lock);
1800
1801#ifdef CONFIG_IPV6_PRIVACY
1802 read_lock_bh(&in6_dev->lock);
1803 /* update all temporary addresses in the list */
1804 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1805 /*
1806 * When adjusting the lifetimes of an existing
1807 * temporary address, only lower the lifetimes.
1808 * Implementations must not increase the
1809 * lifetimes of an existing temporary address
1810 * when processing a Prefix Information Option.
1811 */
1812 spin_lock(&ift->lock);
1813 flags = ift->flags;
1814 if (ift->valid_lft > valid_lft &&
1815 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1816 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1817 if (ift->prefered_lft > prefered_lft &&
1818 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1819 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1820 spin_unlock(&ift->lock);
1821 if (!(flags&IFA_F_TENTATIVE))
1822 ipv6_ifa_notify(0, ift);
1823 }
1824
1825 if (create && in6_dev->cnf.use_tempaddr > 0) {
1826 /*
1827 * When a new public address is created as described in [ADDRCONF],
1828 * also create a new temporary address.
1829 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001830 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 ipv6_create_tempaddr(ifp, NULL);
1832 } else {
1833 read_unlock_bh(&in6_dev->lock);
1834 }
1835#endif
1836 in6_ifa_put(ifp);
1837 addrconf_verify(0);
1838 }
1839 }
1840 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1841 in6_dev_put(in6_dev);
1842}
1843
1844/*
1845 * Set destination address.
1846 * Special case for SIT interfaces where we create a new "virtual"
1847 * device.
1848 */
1849int addrconf_set_dstaddr(void __user *arg)
1850{
1851 struct in6_ifreq ireq;
1852 struct net_device *dev;
1853 int err = -EINVAL;
1854
1855 rtnl_lock();
1856
1857 err = -EFAULT;
1858 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1859 goto err_exit;
1860
1861 dev = __dev_get_by_index(ireq.ifr6_ifindex);
1862
1863 err = -ENODEV;
1864 if (dev == NULL)
1865 goto err_exit;
1866
Joerg Roedel0be669b2006-10-10 14:49:53 -07001867#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (dev->type == ARPHRD_SIT) {
1869 struct ifreq ifr;
1870 mm_segment_t oldfs;
1871 struct ip_tunnel_parm p;
1872
1873 err = -EADDRNOTAVAIL;
1874 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1875 goto err_exit;
1876
1877 memset(&p, 0, sizeof(p));
1878 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1879 p.iph.saddr = 0;
1880 p.iph.version = 4;
1881 p.iph.ihl = 5;
1882 p.iph.protocol = IPPROTO_IPV6;
1883 p.iph.ttl = 64;
1884 ifr.ifr_ifru.ifru_data = (void __user *)&p;
1885
1886 oldfs = get_fs(); set_fs(KERNEL_DS);
1887 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1888 set_fs(oldfs);
1889
1890 if (err == 0) {
1891 err = -ENOBUFS;
1892 if ((dev = __dev_get_by_name(p.name)) == NULL)
1893 goto err_exit;
1894 err = dev_open(dev);
1895 }
1896 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07001897#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899err_exit:
1900 rtnl_unlock();
1901 return err;
1902}
1903
1904/*
1905 * Manual configuration of address on an interface
1906 */
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001907static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07001908 __u8 ifa_flags, __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 struct inet6_ifaddr *ifp;
1911 struct inet6_dev *idev;
1912 struct net_device *dev;
1913 int scope;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001914 u32 flags = RTF_EXPIRES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001917
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001918 /* check the lifetime */
1919 if (!valid_lft || prefered_lft > valid_lft)
1920 return -EINVAL;
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1923 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if ((idev = addrconf_add_dev(dev)) == NULL)
1926 return -ENOBUFS;
1927
1928 scope = ipv6_addr_scope(pfx);
1929
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001930 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001931 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001932 flags = 0;
1933 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001934 valid_lft = 0x7FFFFFFF/HZ;
1935
1936 if (prefered_lft == 0)
1937 ifa_flags |= IFA_F_DEPRECATED;
1938 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
1939 (prefered_lft != INFINITY_LIFE_TIME))
1940 prefered_lft = 0x7FFFFFFF/HZ;
1941
1942 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07001945 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001946 ifp->valid_lft = valid_lft;
1947 ifp->prefered_lft = prefered_lft;
1948 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07001949 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001950
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001951 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
1952 jiffies_to_clock_t(valid_lft * HZ), flags);
Neil Horman95c385b2007-04-25 17:08:10 -07001953 /*
1954 * Note that section 3.1 of RFC 4429 indicates
1955 * that the Optimistic flag should not be set for
1956 * manually configured addresses
1957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 addrconf_dad_start(ifp, 0);
1959 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001960 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return 0;
1962 }
1963
1964 return PTR_ERR(ifp);
1965}
1966
1967static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
1968{
1969 struct inet6_ifaddr *ifp;
1970 struct inet6_dev *idev;
1971 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1974 return -ENODEV;
1975
1976 if ((idev = __in6_dev_get(dev)) == NULL)
1977 return -ENXIO;
1978
1979 read_lock_bh(&idev->lock);
1980 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
1981 if (ifp->prefix_len == plen &&
1982 ipv6_addr_equal(pfx, &ifp->addr)) {
1983 in6_ifa_hold(ifp);
1984 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 ipv6_del_addr(ifp);
1987
1988 /* If the last address is deleted administratively,
1989 disable IPv6 on this interface.
1990 */
1991 if (idev->addr_list == NULL)
1992 addrconf_ifdown(idev->dev, 1);
1993 return 0;
1994 }
1995 }
1996 read_unlock_bh(&idev->lock);
1997 return -EADDRNOTAVAIL;
1998}
1999
2000
2001int addrconf_add_ifaddr(void __user *arg)
2002{
2003 struct in6_ifreq ireq;
2004 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (!capable(CAP_NET_ADMIN))
2007 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2010 return -EFAULT;
2011
2012 rtnl_lock();
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002013 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002014 IFA_F_PERMANENT, INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 rtnl_unlock();
2016 return err;
2017}
2018
2019int addrconf_del_ifaddr(void __user *arg)
2020{
2021 struct in6_ifreq ireq;
2022 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (!capable(CAP_NET_ADMIN))
2025 return -EPERM;
2026
2027 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2028 return -EFAULT;
2029
2030 rtnl_lock();
2031 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
2032 rtnl_unlock();
2033 return err;
2034}
2035
Joerg Roedel0be669b2006-10-10 14:49:53 -07002036#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037static void sit_add_v4_addrs(struct inet6_dev *idev)
2038{
2039 struct inet6_ifaddr * ifp;
2040 struct in6_addr addr;
2041 struct net_device *dev;
2042 int scope;
2043
2044 ASSERT_RTNL();
2045
2046 memset(&addr, 0, sizeof(struct in6_addr));
2047 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2048
2049 if (idev->dev->flags&IFF_POINTOPOINT) {
2050 addr.s6_addr32[0] = htonl(0xfe800000);
2051 scope = IFA_LINK;
2052 } else {
2053 scope = IPV6_ADDR_COMPATv4;
2054 }
2055
2056 if (addr.s6_addr32[3]) {
2057 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
2058 if (!IS_ERR(ifp)) {
2059 spin_lock_bh(&ifp->lock);
2060 ifp->flags &= ~IFA_F_TENTATIVE;
2061 spin_unlock_bh(&ifp->lock);
2062 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2063 in6_ifa_put(ifp);
2064 }
2065 return;
2066 }
2067
Pavel Emelianov7562f872007-05-03 15:13:45 -07002068 for_each_netdev(dev) {
Herbert Xue5ed6392005-10-03 14:35:55 -07002069 struct in_device * in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (in_dev && (dev->flags & IFF_UP)) {
2071 struct in_ifaddr * ifa;
2072
2073 int flag = scope;
2074
2075 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2076 int plen;
2077
2078 addr.s6_addr32[3] = ifa->ifa_local;
2079
2080 if (ifa->ifa_scope == RT_SCOPE_LINK)
2081 continue;
2082 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2083 if (idev->dev->flags&IFF_POINTOPOINT)
2084 continue;
2085 flag |= IFA_HOST;
2086 }
2087 if (idev->dev->flags&IFF_POINTOPOINT)
2088 plen = 64;
2089 else
2090 plen = 96;
2091
2092 ifp = ipv6_add_addr(idev, &addr, plen, flag,
2093 IFA_F_PERMANENT);
2094 if (!IS_ERR(ifp)) {
2095 spin_lock_bh(&ifp->lock);
2096 ifp->flags &= ~IFA_F_TENTATIVE;
2097 spin_unlock_bh(&ifp->lock);
2098 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2099 in6_ifa_put(ifp);
2100 }
2101 }
2102 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107static void init_loopback(struct net_device *dev)
2108{
2109 struct inet6_dev *idev;
2110 struct inet6_ifaddr * ifp;
2111
2112 /* ::1 */
2113
2114 ASSERT_RTNL();
2115
2116 if ((idev = ipv6_find_idev(dev)) == NULL) {
2117 printk(KERN_DEBUG "init loopback: add_dev failed\n");
2118 return;
2119 }
2120
2121 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
2122 if (!IS_ERR(ifp)) {
2123 spin_lock_bh(&ifp->lock);
2124 ifp->flags &= ~IFA_F_TENTATIVE;
2125 spin_unlock_bh(&ifp->lock);
2126 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2127 in6_ifa_put(ifp);
2128 }
2129}
2130
2131static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2132{
2133 struct inet6_ifaddr * ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002134 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Neil Horman95c385b2007-04-25 17:08:10 -07002136#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2137 if (idev->cnf.optimistic_dad &&
2138 !ipv6_devconf.forwarding)
2139 addr_flags |= IFA_F_OPTIMISTIC;
2140#endif
2141
2142
2143 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002145 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 addrconf_dad_start(ifp, 0);
2147 in6_ifa_put(ifp);
2148 }
2149}
2150
2151static void addrconf_dev_config(struct net_device *dev)
2152{
2153 struct in6_addr addr;
2154 struct inet6_dev * idev;
2155
2156 ASSERT_RTNL();
2157
Herbert Xu74235a22007-06-14 13:02:55 -07002158 if ((dev->type != ARPHRD_ETHER) &&
2159 (dev->type != ARPHRD_FDDI) &&
2160 (dev->type != ARPHRD_IEEE802_TR) &&
2161 (dev->type != ARPHRD_ARCNET) &&
2162 (dev->type != ARPHRD_INFINIBAND)) {
2163 /* Alas, we support only Ethernet autoconfiguration. */
2164 return;
2165 }
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 idev = addrconf_add_dev(dev);
2168 if (idev == NULL)
2169 return;
2170
2171 memset(&addr, 0, sizeof(struct in6_addr));
2172 addr.s6_addr32[0] = htonl(0xFE800000);
2173
2174 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2175 addrconf_add_linklocal(idev, &addr);
2176}
2177
Joerg Roedel0be669b2006-10-10 14:49:53 -07002178#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179static void addrconf_sit_config(struct net_device *dev)
2180{
2181 struct inet6_dev *idev;
2182
2183 ASSERT_RTNL();
2184
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002185 /*
2186 * Configure the tunnel with one of our IPv4
2187 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 * our v4 addrs in the tunnel
2189 */
2190
2191 if ((idev = ipv6_find_idev(dev)) == NULL) {
2192 printk(KERN_DEBUG "init sit: add_dev failed\n");
2193 return;
2194 }
2195
2196 sit_add_v4_addrs(idev);
2197
2198 if (dev->flags&IFF_POINTOPOINT) {
2199 addrconf_add_mroute(dev);
2200 addrconf_add_lroute(dev);
2201 } else
2202 sit_route_add(dev);
2203}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206static inline int
2207ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2208{
2209 struct in6_addr lladdr;
2210
Neil Horman95c385b2007-04-25 17:08:10 -07002211 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 addrconf_add_linklocal(idev, &lladdr);
2213 return 0;
2214 }
2215 return -1;
2216}
2217
2218static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2219{
2220 struct net_device *link_dev;
2221
2222 /* first try to inherit the link-local address from the link device */
2223 if (idev->dev->iflink &&
2224 (link_dev = __dev_get_by_index(idev->dev->iflink))) {
2225 if (!ipv6_inherit_linklocal(idev, link_dev))
2226 return;
2227 }
2228 /* then try to inherit it from any device */
Pavel Emelianov7562f872007-05-03 15:13:45 -07002229 for_each_netdev(link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (!ipv6_inherit_linklocal(idev, link_dev))
2231 return;
2232 }
2233 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2234}
2235
2236/*
2237 * Autoconfigure tunnel with a link-local address so routing protocols,
2238 * DHCPv6, MLD etc. can be run over the virtual link
2239 */
2240
2241static void addrconf_ip6_tnl_config(struct net_device *dev)
2242{
2243 struct inet6_dev *idev;
2244
2245 ASSERT_RTNL();
2246
2247 if ((idev = addrconf_add_dev(dev)) == NULL) {
2248 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2249 return;
2250 }
2251 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252}
2253
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002254static int addrconf_notify(struct notifier_block *this, unsigned long event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 void * data)
2256{
2257 struct net_device *dev = (struct net_device *) data;
Herbert Xu74235a22007-06-14 13:02:55 -07002258 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002259 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002260 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 switch(event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002263 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002264 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002265 idev = ipv6_add_dev(dev);
2266 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002267 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002268 }
2269 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002271 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002272 if (dev->flags & IFF_SLAVE)
2273 break;
2274
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002275 if (event == NETDEV_UP) {
2276 if (!netif_carrier_ok(dev)) {
2277 /* device is not ready yet. */
2278 printk(KERN_INFO
2279 "ADDRCONF(NETDEV_UP): %s: "
2280 "link is not ready\n",
2281 dev->name);
2282 break;
2283 }
Kristian Slavov99081042006-02-08 16:10:53 -08002284
2285 if (idev)
2286 idev->if_flags |= IF_READY;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002287 } else {
2288 if (!netif_carrier_ok(dev)) {
2289 /* device is still not ready. */
2290 break;
2291 }
2292
2293 if (idev) {
2294 if (idev->if_flags & IF_READY) {
2295 /* device is already configured. */
2296 break;
2297 }
2298 idev->if_flags |= IF_READY;
2299 }
2300
2301 printk(KERN_INFO
2302 "ADDRCONF(NETDEV_CHANGE): %s: "
2303 "link becomes ready\n",
2304 dev->name);
2305
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002306 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002307 }
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 switch(dev->type) {
Joerg Roedel0be669b2006-10-10 14:49:53 -07002310#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 case ARPHRD_SIT:
2312 addrconf_sit_config(dev);
2313 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002314#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 case ARPHRD_TUNNEL6:
2316 addrconf_ip6_tnl_config(dev);
2317 break;
2318 case ARPHRD_LOOPBACK:
2319 init_loopback(dev);
2320 break;
2321
2322 default:
2323 addrconf_dev_config(dev);
2324 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002327 if (run_pending)
2328 addrconf_dad_run(idev);
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 /* If the MTU changed during the interface down, when the
2331 interface up, the changed MTU must be reflected in the
2332 idev as well as routers.
2333 */
2334 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2335 rt6_mtu_change(dev, dev->mtu);
2336 idev->cnf.mtu6 = dev->mtu;
2337 }
2338 idev->tstamp = jiffies;
2339 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2340 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2341 stop IPv6 on this interface.
2342 */
2343 if (dev->mtu < IPV6_MIN_MTU)
2344 addrconf_ifdown(dev, event != NETDEV_DOWN);
2345 }
2346 break;
2347
2348 case NETDEV_CHANGEMTU:
2349 if ( idev && dev->mtu >= IPV6_MIN_MTU) {
2350 rt6_mtu_change(dev, dev->mtu);
2351 idev->cnf.mtu6 = dev->mtu;
2352 break;
2353 }
2354
2355 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2356
2357 case NETDEV_DOWN:
2358 case NETDEV_UNREGISTER:
2359 /*
2360 * Remove all addresses from this interface.
2361 */
2362 addrconf_ifdown(dev, event != NETDEV_DOWN);
2363 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002367 snmp6_unregister_dev(idev);
2368#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 addrconf_sysctl_unregister(&idev->cnf);
2370 neigh_sysctl_unregister(idev->nd_parms);
2371 neigh_sysctl_register(dev, idev->nd_parms,
2372 NET_IPV6, NET_IPV6_NEIGH, "ipv6",
2373 &ndisc_ifinfo_sysctl_change,
2374 NULL);
2375 addrconf_sysctl_register(idev, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376#endif
Herbert Xub217d612007-07-30 17:04:52 -07002377 err = snmp6_register_dev(idev);
2378 if (err)
2379 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 return NOTIFY_OK;
2385}
2386
2387/*
2388 * addrconf module should be notified of a device going up
2389 */
2390static struct notifier_block ipv6_dev_notf = {
2391 .notifier_call = addrconf_notify,
2392 .priority = 0
2393};
2394
2395static int addrconf_ifdown(struct net_device *dev, int how)
2396{
2397 struct inet6_dev *idev;
2398 struct inet6_ifaddr *ifa, **bifa;
2399 int i;
2400
2401 ASSERT_RTNL();
2402
2403 if (dev == &loopback_dev && how == 1)
2404 how = 0;
2405
2406 rt6_ifdown(dev);
2407 neigh_ifdown(&nd_tbl, dev);
2408
2409 idev = __in6_dev_get(dev);
2410 if (idev == NULL)
2411 return -ENODEV;
2412
2413 /* Step 1: remove reference to ipv6 device from parent device.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002414 Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 */
2416 if (how == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002418
2419 /* protected by rtnl_lock */
2420 rcu_assign_pointer(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 /* Step 1.5: remove snmp6 entry */
2423 snmp6_unregister_dev(idev);
2424
2425 }
2426
2427 /* Step 2: clear hash table */
2428 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2429 bifa = &inet6_addr_lst[i];
2430
2431 write_lock_bh(&addrconf_hash_lock);
2432 while ((ifa = *bifa) != NULL) {
2433 if (ifa->idev == idev) {
2434 *bifa = ifa->lst_next;
2435 ifa->lst_next = NULL;
2436 addrconf_del_timer(ifa);
2437 in6_ifa_put(ifa);
2438 continue;
2439 }
2440 bifa = &ifa->lst_next;
2441 }
2442 write_unlock_bh(&addrconf_hash_lock);
2443 }
2444
2445 write_lock_bh(&idev->lock);
2446
2447 /* Step 3: clear flags for stateless addrconf */
2448 if (how != 1)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002449 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451 /* Step 4: clear address list */
2452#ifdef CONFIG_IPV6_PRIVACY
2453 if (how == 1 && del_timer(&idev->regen_timer))
2454 in6_dev_put(idev);
2455
2456 /* clear tempaddr list */
2457 while ((ifa = idev->tempaddr_list) != NULL) {
2458 idev->tempaddr_list = ifa->tmp_next;
2459 ifa->tmp_next = NULL;
2460 ifa->dead = 1;
2461 write_unlock_bh(&idev->lock);
2462 spin_lock_bh(&ifa->lock);
2463
2464 if (ifa->ifpub) {
2465 in6_ifa_put(ifa->ifpub);
2466 ifa->ifpub = NULL;
2467 }
2468 spin_unlock_bh(&ifa->lock);
2469 in6_ifa_put(ifa);
2470 write_lock_bh(&idev->lock);
2471 }
2472#endif
2473 while ((ifa = idev->addr_list) != NULL) {
2474 idev->addr_list = ifa->if_next;
2475 ifa->if_next = NULL;
2476 ifa->dead = 1;
2477 addrconf_del_timer(ifa);
2478 write_unlock_bh(&idev->lock);
2479
2480 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Vlad Yasevich063ed362007-07-15 00:16:35 -07002481 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 in6_ifa_put(ifa);
2483
2484 write_lock_bh(&idev->lock);
2485 }
2486 write_unlock_bh(&idev->lock);
2487
2488 /* Step 5: Discard multicast list */
2489
2490 if (how == 1)
2491 ipv6_mc_destroy_dev(idev);
2492 else
2493 ipv6_mc_down(idev);
2494
2495 /* Step 5: netlink notification of this interface */
2496 idev->tstamp = jiffies;
Yan Zheng979ad662005-10-14 18:31:15 +08002497 inet6_ifinfo_notify(RTM_DELLINK, idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 /* Shot the device (if unregistered) */
2500
2501 if (how == 1) {
2502#ifdef CONFIG_SYSCTL
2503 addrconf_sysctl_unregister(&idev->cnf);
2504 neigh_sysctl_unregister(idev->nd_parms);
2505#endif
2506 neigh_parms_release(&nd_tbl, idev->nd_parms);
2507 neigh_ifdown(&nd_tbl, dev);
2508 in6_dev_put(idev);
2509 }
2510 return 0;
2511}
2512
2513static void addrconf_rs_timer(unsigned long data)
2514{
2515 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2516
2517 if (ifp->idev->cnf.forwarding)
2518 goto out;
2519
2520 if (ifp->idev->if_flags & IF_RA_RCVD) {
2521 /*
2522 * Announcement received after solicitation
2523 * was sent
2524 */
2525 goto out;
2526 }
2527
2528 spin_lock(&ifp->lock);
2529 if (ifp->probes++ < ifp->idev->cnf.rtr_solicits) {
2530 struct in6_addr all_routers;
2531
2532 /* The wait after the last probe can be shorter */
2533 addrconf_mod_timer(ifp, AC_RS,
2534 (ifp->probes == ifp->idev->cnf.rtr_solicits) ?
2535 ifp->idev->cnf.rtr_solicit_delay :
2536 ifp->idev->cnf.rtr_solicit_interval);
2537 spin_unlock(&ifp->lock);
2538
2539 ipv6_addr_all_routers(&all_routers);
2540
2541 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2542 } else {
2543 spin_unlock(&ifp->lock);
2544 /*
2545 * Note: we do not support deprecated "all on-link"
2546 * assumption any longer.
2547 */
2548 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2549 ifp->idev->dev->name);
2550 }
2551
2552out:
2553 in6_ifa_put(ifp);
2554}
2555
2556/*
2557 * Duplicate Address Detection
2558 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002559static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2560{
2561 unsigned long rand_num;
2562 struct inet6_dev *idev = ifp->idev;
2563
Neil Horman95c385b2007-04-25 17:08:10 -07002564 if (ifp->flags & IFA_F_OPTIMISTIC)
2565 rand_num = 0;
2566 else
2567 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2568
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002569 ifp->probes = idev->cnf.dad_transmits;
2570 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2571}
2572
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07002573static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
2575 struct inet6_dev *idev = ifp->idev;
2576 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 addrconf_join_solict(dev, &ifp->addr);
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582 read_lock_bh(&idev->lock);
2583 if (ifp->dead)
2584 goto out;
2585 spin_lock_bh(&ifp->lock);
2586
2587 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002588 !(ifp->flags&IFA_F_TENTATIVE) ||
2589 ifp->flags & IFA_F_NODAD) {
Neil Horman95c385b2007-04-25 17:08:10 -07002590 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 spin_unlock_bh(&ifp->lock);
2592 read_unlock_bh(&idev->lock);
2593
2594 addrconf_dad_completed(ifp);
2595 return;
2596 }
2597
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002598 if (!(idev->if_flags & IF_READY)) {
YOSHIFUJI Hideaki3dd3bf82005-12-23 11:23:21 -08002599 spin_unlock_bh(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002600 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002601 /*
2602 * If the defice is not ready:
2603 * - keep it tentative if it is a permanent address.
2604 * - otherwise, kill it.
2605 */
2606 in6_ifa_hold(ifp);
2607 addrconf_dad_stop(ifp);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002608 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002609 }
Neil Horman95c385b2007-04-25 17:08:10 -07002610
2611 /*
2612 * Optimistic nodes can start receiving
2613 * Frames right away
2614 */
2615 if(ifp->flags & IFA_F_OPTIMISTIC)
2616 ip6_ins_rt(ifp->rt);
2617
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002618 addrconf_dad_kick(ifp);
2619 spin_unlock_bh(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620out:
2621 read_unlock_bh(&idev->lock);
2622}
2623
2624static void addrconf_dad_timer(unsigned long data)
2625{
2626 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2627 struct inet6_dev *idev = ifp->idev;
2628 struct in6_addr unspec;
2629 struct in6_addr mcaddr;
2630
2631 read_lock_bh(&idev->lock);
2632 if (idev->dead) {
2633 read_unlock_bh(&idev->lock);
2634 goto out;
2635 }
2636 spin_lock_bh(&ifp->lock);
2637 if (ifp->probes == 0) {
2638 /*
2639 * DAD was successful
2640 */
2641
Neil Horman95c385b2007-04-25 17:08:10 -07002642 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 spin_unlock_bh(&ifp->lock);
2644 read_unlock_bh(&idev->lock);
2645
2646 addrconf_dad_completed(ifp);
2647
2648 goto out;
2649 }
2650
2651 ifp->probes--;
2652 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2653 spin_unlock_bh(&ifp->lock);
2654 read_unlock_bh(&idev->lock);
2655
2656 /* send a neighbour solicitation for our addr */
2657 memset(&unspec, 0, sizeof(unspec));
2658 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2659 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2660out:
2661 in6_ifa_put(ifp);
2662}
2663
2664static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2665{
2666 struct net_device * dev = ifp->idev->dev;
2667
2668 /*
2669 * Configure the address for reception. Now it is valid.
2670 */
2671
2672 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2673
2674 /* If added prefix is link local and forwarding is off,
2675 start sending router solicitations.
2676 */
2677
2678 if (ifp->idev->cnf.forwarding == 0 &&
2679 ifp->idev->cnf.rtr_solicits > 0 &&
2680 (dev->flags&IFF_LOOPBACK) == 0 &&
2681 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2682 struct in6_addr all_routers;
2683
2684 ipv6_addr_all_routers(&all_routers);
2685
2686 /*
2687 * If a host as already performed a random delay
2688 * [...] as part of DAD [...] there is no need
2689 * to delay again before sending the first RS
2690 */
2691 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2692
2693 spin_lock_bh(&ifp->lock);
2694 ifp->probes = 1;
2695 ifp->idev->if_flags |= IF_RS_SENT;
2696 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2697 spin_unlock_bh(&ifp->lock);
2698 }
2699}
2700
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002701static void addrconf_dad_run(struct inet6_dev *idev) {
2702 struct inet6_ifaddr *ifp;
2703
2704 read_lock_bh(&idev->lock);
2705 for (ifp = idev->addr_list; ifp; ifp = ifp->if_next) {
2706 spin_lock_bh(&ifp->lock);
2707 if (!(ifp->flags & IFA_F_TENTATIVE)) {
2708 spin_unlock_bh(&ifp->lock);
2709 continue;
2710 }
2711 spin_unlock_bh(&ifp->lock);
2712 addrconf_dad_kick(ifp);
2713 }
2714 read_unlock_bh(&idev->lock);
2715}
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717#ifdef CONFIG_PROC_FS
2718struct if6_iter_state {
2719 int bucket;
2720};
2721
2722static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2723{
2724 struct inet6_ifaddr *ifa = NULL;
2725 struct if6_iter_state *state = seq->private;
2726
2727 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2728 ifa = inet6_addr_lst[state->bucket];
2729 if (ifa)
2730 break;
2731 }
2732 return ifa;
2733}
2734
2735static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2736{
2737 struct if6_iter_state *state = seq->private;
2738
2739 ifa = ifa->lst_next;
2740try_again:
2741 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2742 ifa = inet6_addr_lst[state->bucket];
2743 goto try_again;
2744 }
2745 return ifa;
2746}
2747
2748static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2749{
2750 struct inet6_ifaddr *ifa = if6_get_first(seq);
2751
2752 if (ifa)
2753 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2754 --pos;
2755 return pos ? NULL : ifa;
2756}
2757
2758static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
2759{
2760 read_lock_bh(&addrconf_hash_lock);
2761 return if6_get_idx(seq, *pos);
2762}
2763
2764static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2765{
2766 struct inet6_ifaddr *ifa;
2767
2768 ifa = if6_get_next(seq, v);
2769 ++*pos;
2770 return ifa;
2771}
2772
2773static void if6_seq_stop(struct seq_file *seq, void *v)
2774{
2775 read_unlock_bh(&addrconf_hash_lock);
2776}
2777
2778static int if6_seq_show(struct seq_file *seq, void *v)
2779{
2780 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2781 seq_printf(seq,
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002782 NIP6_SEQFMT " %02x %02x %02x %02x %8s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 NIP6(ifp->addr),
2784 ifp->idev->dev->ifindex,
2785 ifp->prefix_len,
2786 ifp->scope,
2787 ifp->flags,
2788 ifp->idev->dev->name);
2789 return 0;
2790}
2791
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002792static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 .start = if6_seq_start,
2794 .next = if6_seq_next,
2795 .show = if6_seq_show,
2796 .stop = if6_seq_stop,
2797};
2798
2799static int if6_seq_open(struct inode *inode, struct file *file)
2800{
2801 struct seq_file *seq;
2802 int rc = -ENOMEM;
Ingo Oeser322f74a2006-03-20 23:01:47 -08002803 struct if6_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 if (!s)
2806 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 rc = seq_open(file, &if6_seq_ops);
2809 if (rc)
2810 goto out_kfree;
2811
2812 seq = file->private_data;
2813 seq->private = s;
2814out:
2815 return rc;
2816out_kfree:
2817 kfree(s);
2818 goto out;
2819}
2820
Arjan van de Ven9a321442007-02-12 00:55:35 -08002821static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 .owner = THIS_MODULE,
2823 .open = if6_seq_open,
2824 .read = seq_read,
2825 .llseek = seq_lseek,
2826 .release = seq_release_private,
2827};
2828
2829int __init if6_proc_init(void)
2830{
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002831 if (!proc_net_fops_create(&init_net, "if_inet6", S_IRUGO, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return -ENOMEM;
2833 return 0;
2834}
2835
2836void if6_proc_exit(void)
2837{
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002838 proc_net_remove(&init_net, "if_inet6");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839}
2840#endif /* CONFIG_PROC_FS */
2841
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -07002842#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07002843/* Check if address is a home address configured on any interface. */
2844int ipv6_chk_home_addr(struct in6_addr *addr)
2845{
2846 int ret = 0;
2847 struct inet6_ifaddr * ifp;
2848 u8 hash = ipv6_addr_hash(addr);
2849 read_lock_bh(&addrconf_hash_lock);
2850 for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
2851 if (ipv6_addr_cmp(&ifp->addr, addr) == 0 &&
2852 (ifp->flags & IFA_F_HOMEADDRESS)) {
2853 ret = 1;
2854 break;
2855 }
2856 }
2857 read_unlock_bh(&addrconf_hash_lock);
2858 return ret;
2859}
2860#endif
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862/*
2863 * Periodic address status verification
2864 */
2865
2866static void addrconf_verify(unsigned long foo)
2867{
2868 struct inet6_ifaddr *ifp;
2869 unsigned long now, next;
2870 int i;
2871
2872 spin_lock_bh(&addrconf_verify_lock);
2873 now = jiffies;
2874 next = now + ADDR_CHECK_FREQUENCY;
2875
2876 del_timer(&addr_chk_timer);
2877
2878 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2879
2880restart:
Yan Zheng5d5780d2005-11-20 13:42:20 -08002881 read_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2883 unsigned long age;
2884#ifdef CONFIG_IPV6_PRIVACY
2885 unsigned long regen_advance;
2886#endif
2887
2888 if (ifp->flags & IFA_F_PERMANENT)
2889 continue;
2890
2891 spin_lock(&ifp->lock);
2892 age = (now - ifp->tstamp) / HZ;
2893
2894#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002895 regen_advance = ifp->idev->cnf.regen_max_retry *
2896 ifp->idev->cnf.dad_transmits *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 ifp->idev->nd_parms->retrans_time / HZ;
2898#endif
2899
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002900 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
2901 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 spin_unlock(&ifp->lock);
2903 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002904 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 ipv6_del_addr(ifp);
2906 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002907 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
2908 spin_unlock(&ifp->lock);
2909 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 } else if (age >= ifp->prefered_lft) {
2911 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2912 int deprecate = 0;
2913
2914 if (!(ifp->flags&IFA_F_DEPRECATED)) {
2915 deprecate = 1;
2916 ifp->flags |= IFA_F_DEPRECATED;
2917 }
2918
2919 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
2920 next = ifp->tstamp + ifp->valid_lft * HZ;
2921
2922 spin_unlock(&ifp->lock);
2923
2924 if (deprecate) {
2925 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002926 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
2928 ipv6_ifa_notify(0, ifp);
2929 in6_ifa_put(ifp);
2930 goto restart;
2931 }
2932#ifdef CONFIG_IPV6_PRIVACY
2933 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
2934 !(ifp->flags&IFA_F_TENTATIVE)) {
2935 if (age >= ifp->prefered_lft - regen_advance) {
2936 struct inet6_ifaddr *ifpub = ifp->ifpub;
2937 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2938 next = ifp->tstamp + ifp->prefered_lft * HZ;
2939 if (!ifp->regen_count && ifpub) {
2940 ifp->regen_count++;
2941 in6_ifa_hold(ifp);
2942 in6_ifa_hold(ifpub);
2943 spin_unlock(&ifp->lock);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002944 read_unlock(&addrconf_hash_lock);
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08002945 spin_lock(&ifpub->lock);
2946 ifpub->regen_count = 0;
2947 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 ipv6_create_tempaddr(ifpub, ifp);
2949 in6_ifa_put(ifpub);
2950 in6_ifa_put(ifp);
2951 goto restart;
2952 }
2953 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
2954 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
2955 spin_unlock(&ifp->lock);
2956#endif
2957 } else {
2958 /* ifp->prefered_lft <= ifp->valid_lft */
2959 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2960 next = ifp->tstamp + ifp->prefered_lft * HZ;
2961 spin_unlock(&ifp->lock);
2962 }
2963 }
Yan Zheng5d5780d2005-11-20 13:42:20 -08002964 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 }
2966
2967 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
2968 add_timer(&addr_chk_timer);
2969 spin_unlock_bh(&addrconf_verify_lock);
2970}
2971
Thomas Graf461d8832006-09-18 00:09:49 -07002972static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
2973{
2974 struct in6_addr *pfx = NULL;
2975
2976 if (addr)
2977 pfx = nla_data(addr);
2978
2979 if (local) {
2980 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
2981 pfx = NULL;
2982 else
2983 pfx = nla_data(local);
2984 }
2985
2986 return pfx;
2987}
2988
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002989static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07002990 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
2991 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
2992 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
2993};
2994
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995static int
2996inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2997{
Thomas Grafb933f712006-09-18 00:10:19 -07002998 struct ifaddrmsg *ifm;
2999 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003001 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Thomas Grafb933f712006-09-18 00:10:19 -07003003 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3004 if (err < 0)
3005 return err;
3006
3007 ifm = nlmsg_data(nlh);
3008 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (pfx == NULL)
3010 return -EINVAL;
3011
3012 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
3013}
3014
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003015static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3016 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003017{
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003018 u32 flags = RTF_EXPIRES;
3019
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003020 if (!valid_lft || (prefered_lft > valid_lft))
3021 return -EINVAL;
3022
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003023 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003024 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003025 flags = 0;
3026 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003027 valid_lft = 0x7FFFFFFF/HZ;
3028
3029 if (prefered_lft == 0)
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003030 ifa_flags |= IFA_F_DEPRECATED;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003031 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
3032 (prefered_lft != INFINITY_LIFE_TIME))
3033 prefered_lft = 0x7FFFFFFF/HZ;
3034
3035 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003036 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 +09003037 ifp->tstamp = jiffies;
3038 ifp->valid_lft = valid_lft;
3039 ifp->prefered_lft = prefered_lft;
3040
3041 spin_unlock_bh(&ifp->lock);
3042 if (!(ifp->flags&IFA_F_TENTATIVE))
3043 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003044
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003045 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3046 jiffies_to_clock_t(valid_lft * HZ), flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003047 addrconf_verify(0);
3048
3049 return 0;
3050}
3051
3052static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3054{
Thomas Graf461d8832006-09-18 00:09:49 -07003055 struct ifaddrmsg *ifm;
3056 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003058 struct inet6_ifaddr *ifa;
3059 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003060 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3061 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003062 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Thomas Graf461d8832006-09-18 00:09:49 -07003064 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3065 if (err < 0)
3066 return err;
3067
3068 ifm = nlmsg_data(nlh);
3069 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (pfx == NULL)
3071 return -EINVAL;
3072
Thomas Graf461d8832006-09-18 00:09:49 -07003073 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003074 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003075
3076 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003077 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003078 preferred_lft = ci->ifa_prefered;
3079 } else {
3080 preferred_lft = INFINITY_LIFE_TIME;
3081 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003082 }
3083
Thomas Graf7198f8c2006-09-18 00:13:46 -07003084 dev = __dev_get_by_index(ifm->ifa_index);
3085 if (dev == NULL)
3086 return -ENODEV;
3087
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003088 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003089 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003090
Thomas Graf7198f8c2006-09-18 00:13:46 -07003091 ifa = ipv6_get_ifaddr(pfx, dev, 1);
3092 if (ifa == NULL) {
3093 /*
3094 * It would be best to check for !NLM_F_CREATE here but
3095 * userspace alreay relies on not having to provide this.
3096 */
3097 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003098 ifa_flags, preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003099 }
3100
Thomas Graf7198f8c2006-09-18 00:13:46 -07003101 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3102 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3103 err = -EEXIST;
3104 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003105 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003106
3107 in6_ifa_put(ifa);
3108
3109 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110}
3111
Thomas Graf101bb222006-09-18 00:11:52 -07003112static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3113 u8 scope, int ifindex)
3114{
3115 struct ifaddrmsg *ifm;
3116
3117 ifm = nlmsg_data(nlh);
3118 ifm->ifa_family = AF_INET6;
3119 ifm->ifa_prefixlen = prefixlen;
3120 ifm->ifa_flags = flags;
3121 ifm->ifa_scope = scope;
3122 ifm->ifa_index = ifindex;
3123}
3124
Thomas Graf85486af2006-09-18 00:11:24 -07003125static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3126 unsigned long tstamp, u32 preferred, u32 valid)
3127{
3128 struct ifa_cacheinfo ci;
3129
3130 ci.cstamp = (u32)(TIME_DELTA(cstamp, INITIAL_JIFFIES) / HZ * 100
3131 + TIME_DELTA(cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3132 ci.tstamp = (u32)(TIME_DELTA(tstamp, INITIAL_JIFFIES) / HZ * 100
3133 + TIME_DELTA(tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3134 ci.ifa_prefered = preferred;
3135 ci.ifa_valid = valid;
3136
3137 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3138}
3139
Thomas Graf101bb222006-09-18 00:11:52 -07003140static inline int rt_scope(int ifa_scope)
3141{
3142 if (ifa_scope & IFA_HOST)
3143 return RT_SCOPE_HOST;
3144 else if (ifa_scope & IFA_LINK)
3145 return RT_SCOPE_LINK;
3146 else if (ifa_scope & IFA_SITE)
3147 return RT_SCOPE_SITE;
3148 else
3149 return RT_SCOPE_UNIVERSE;
3150}
3151
Thomas Graf0ab68032006-09-18 00:12:35 -07003152static inline int inet6_ifaddr_msgsize(void)
3153{
Thomas Graf339bf982006-11-10 14:10:15 -08003154 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3155 + nla_total_size(16) /* IFA_ADDRESS */
3156 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003157}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003160 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003163 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Thomas Graf0ab68032006-09-18 00:12:35 -07003165 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3166 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003167 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003168
Thomas Graf101bb222006-09-18 00:11:52 -07003169 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3170 ifa->idev->dev->ifindex);
3171
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003173 preferred = ifa->prefered_lft;
3174 valid = ifa->valid_lft;
3175 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 long tval = (jiffies - ifa->tstamp)/HZ;
Thomas Graf85486af2006-09-18 00:11:24 -07003177 preferred -= tval;
3178 if (valid != INFINITY_LIFE_TIME)
3179 valid -= tval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 }
3181 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003182 preferred = INFINITY_LIFE_TIME;
3183 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
Thomas Graf85486af2006-09-18 00:11:24 -07003185
Thomas Graf0ab68032006-09-18 00:12:35 -07003186 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003187 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3188 nlmsg_cancel(skb, nlh);
3189 return -EMSGSIZE;
3190 }
Thomas Graf85486af2006-09-18 00:11:24 -07003191
Thomas Graf0ab68032006-09-18 00:12:35 -07003192 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
3194
3195static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07003196 u32 pid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003199 u8 scope = RT_SCOPE_UNIVERSE;
3200 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Thomas Graf101bb222006-09-18 00:11:52 -07003202 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3203 scope = RT_SCOPE_SITE;
3204
Thomas Graf0ab68032006-09-18 00:12:35 -07003205 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3206 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003207 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003208
Thomas Graf101bb222006-09-18 00:11:52 -07003209 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003210 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3211 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003212 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3213 nlmsg_cancel(skb, nlh);
3214 return -EMSGSIZE;
3215 }
Thomas Graf85486af2006-09-18 00:11:24 -07003216
Thomas Graf0ab68032006-09-18 00:12:35 -07003217 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218}
3219
3220static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003221 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003224 u8 scope = RT_SCOPE_UNIVERSE;
3225 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Thomas Graf101bb222006-09-18 00:11:52 -07003227 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3228 scope = RT_SCOPE_SITE;
3229
Thomas Graf0ab68032006-09-18 00:12:35 -07003230 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3231 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003232 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003233
Thomas Graf101bb222006-09-18 00:11:52 -07003234 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003235 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3236 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003237 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3238 nlmsg_cancel(skb, nlh);
3239 return -EMSGSIZE;
3240 }
Thomas Graf85486af2006-09-18 00:11:24 -07003241
Thomas Graf0ab68032006-09-18 00:12:35 -07003242 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243}
3244
3245enum addr_type_t
3246{
3247 UNICAST_ADDR,
3248 MULTICAST_ADDR,
3249 ANYCAST_ADDR,
3250};
3251
3252static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3253 enum addr_type_t type)
3254{
3255 int idx, ip_idx;
3256 int s_idx, s_ip_idx;
3257 int err = 1;
3258 struct net_device *dev;
3259 struct inet6_dev *idev = NULL;
3260 struct inet6_ifaddr *ifa;
3261 struct ifmcaddr6 *ifmca;
3262 struct ifacaddr6 *ifaca;
3263
3264 s_idx = cb->args[0];
3265 s_ip_idx = ip_idx = cb->args[1];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003266
Pavel Emelianov7562f872007-05-03 15:13:45 -07003267 idx = 0;
3268 for_each_netdev(dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003270 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (idx > s_idx)
3272 s_ip_idx = 0;
3273 ip_idx = 0;
3274 if ((idev = in6_dev_get(dev)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003275 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 read_lock_bh(&idev->lock);
3277 switch (type) {
3278 case UNICAST_ADDR:
YOSHIFUJI Hideakiae9cda52005-06-28 13:00:30 -07003279 /* unicast address incl. temp addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 for (ifa = idev->addr_list; ifa;
3281 ifa = ifa->if_next, ip_idx++) {
3282 if (ip_idx < s_ip_idx)
3283 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003284 if ((err = inet6_fill_ifaddr(skb, ifa,
3285 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003286 cb->nlh->nlmsg_seq, RTM_NEWADDR,
3287 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 goto done;
3289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 break;
3291 case MULTICAST_ADDR:
3292 /* multicast address */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003293 for (ifmca = idev->mc_list; ifmca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 ifmca = ifmca->next, ip_idx++) {
3295 if (ip_idx < s_ip_idx)
3296 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003297 if ((err = inet6_fill_ifmcaddr(skb, ifmca,
3298 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003299 cb->nlh->nlmsg_seq, RTM_GETMULTICAST,
3300 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 goto done;
3302 }
3303 break;
3304 case ANYCAST_ADDR:
3305 /* anycast address */
3306 for (ifaca = idev->ac_list; ifaca;
3307 ifaca = ifaca->aca_next, ip_idx++) {
3308 if (ip_idx < s_ip_idx)
3309 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003310 if ((err = inet6_fill_ifacaddr(skb, ifaca,
3311 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003312 cb->nlh->nlmsg_seq, RTM_GETANYCAST,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003313 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 goto done;
3315 }
3316 break;
3317 default:
3318 break;
3319 }
3320 read_unlock_bh(&idev->lock);
3321 in6_dev_put(idev);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003322cont:
3323 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 }
3325done:
3326 if (err <= 0) {
3327 read_unlock_bh(&idev->lock);
3328 in6_dev_put(idev);
3329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 cb->args[0] = idx;
3331 cb->args[1] = ip_idx;
3332 return skb->len;
3333}
3334
3335static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3336{
3337 enum addr_type_t type = UNICAST_ADDR;
3338 return inet6_dump_addr(skb, cb, type);
3339}
3340
3341static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3342{
3343 enum addr_type_t type = MULTICAST_ADDR;
3344 return inet6_dump_addr(skb, cb, type);
3345}
3346
3347
3348static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3349{
3350 enum addr_type_t type = ANYCAST_ADDR;
3351 return inet6_dump_addr(skb, cb, type);
3352}
3353
Thomas Graf1b29fc22006-09-18 00:10:50 -07003354static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr* nlh,
3355 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003356{
Thomas Graf1b29fc22006-09-18 00:10:50 -07003357 struct ifaddrmsg *ifm;
3358 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003359 struct in6_addr *addr = NULL;
3360 struct net_device *dev = NULL;
3361 struct inet6_ifaddr *ifa;
3362 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003363 int err;
3364
Thomas Graf1b29fc22006-09-18 00:10:50 -07003365 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3366 if (err < 0)
3367 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003368
Thomas Graf1b29fc22006-09-18 00:10:50 -07003369 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3370 if (addr == NULL) {
3371 err = -EINVAL;
3372 goto errout;
3373 }
3374
3375 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003376 if (ifm->ifa_index)
3377 dev = __dev_get_by_index(ifm->ifa_index);
3378
Thomas Graf1b29fc22006-09-18 00:10:50 -07003379 if ((ifa = ipv6_get_ifaddr(addr, dev, 1)) == NULL) {
3380 err = -EADDRNOTAVAIL;
3381 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003382 }
3383
Thomas Graf0ab68032006-09-18 00:12:35 -07003384 if ((skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL)) == NULL) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003385 err = -ENOBUFS;
3386 goto errout_ifa;
3387 }
3388
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003389 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).pid,
3390 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003391 if (err < 0) {
3392 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3393 WARN_ON(err == -EMSGSIZE);
3394 kfree_skb(skb);
3395 goto errout_ifa;
3396 }
Thomas Graf2942e902006-08-15 00:30:25 -07003397 err = rtnl_unicast(skb, NETLINK_CB(in_skb).pid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003398errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003399 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003400errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003401 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003402}
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3405{
3406 struct sk_buff *skb;
Thomas Graf5d620262006-08-15 00:35:02 -07003407 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Thomas Graf0ab68032006-09-18 00:12:35 -07003409 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003410 if (skb == NULL)
3411 goto errout;
3412
3413 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003414 if (err < 0) {
3415 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3416 WARN_ON(err == -EMSGSIZE);
3417 kfree_skb(skb);
3418 goto errout;
3419 }
Thomas Graf5d620262006-08-15 00:35:02 -07003420 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3421errout:
3422 if (err < 0)
3423 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
Dave Jonesb6f99a22007-03-22 12:27:49 -07003426static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 __s32 *array, int bytes)
3428{
Thomas Graf04561c12006-11-14 19:53:58 -08003429 BUG_ON(bytes < (DEVCONF_MAX * 4));
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 memset(array, 0, bytes);
3432 array[DEVCONF_FORWARDING] = cnf->forwarding;
3433 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3434 array[DEVCONF_MTU6] = cnf->mtu6;
3435 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3436 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3437 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3438 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3439 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3440 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3441 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3442 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3443#ifdef CONFIG_IPV6_PRIVACY
3444 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3445 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3446 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3447 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3448 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3449#endif
3450 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003451 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003452 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003453#ifdef CONFIG_IPV6_ROUTER_PREF
3454 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08003455 array[DEVCONF_RTR_PROBE_INTERVAL] = cnf->rtr_probe_interval;
Neil Hormanfa03ef32007-01-30 14:30:10 -08003456#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08003457 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
3458#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003459#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07003460 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07003461 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07003462#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3463 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
3464#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
Thomas Graf339bf982006-11-10 14:10:15 -08003467static inline size_t inet6_if_nlmsg_size(void)
3468{
3469 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3470 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3471 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3472 + nla_total_size(4) /* IFLA_MTU */
3473 + nla_total_size(4) /* IFLA_LINK */
3474 + nla_total_size( /* IFLA_PROTINFO */
3475 nla_total_size(4) /* IFLA_INET6_FLAGS */
3476 + nla_total_size(sizeof(struct ifla_cacheinfo))
3477 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003478 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
3479 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
Thomas Graf339bf982006-11-10 14:10:15 -08003480 );
3481}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003482
Herbert Xu7f7d9a62007-04-24 21:54:09 -07003483static inline void __snmp6_fill_stats(u64 *stats, void **mib, int items,
3484 int bytes)
3485{
3486 int i;
3487 int pad = bytes - sizeof(u64) * items;
3488 BUG_ON(pad < 0);
3489
3490 /* Use put_unaligned() because stats may not be aligned for u64. */
3491 put_unaligned(items, &stats[0]);
3492 for (i = 1; i < items; i++)
3493 put_unaligned(snmp_fold_field(mib, i), &stats[i]);
3494
3495 memset(&stats[items], 0, pad);
3496}
3497
3498static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
3499 int bytes)
3500{
3501 switch(attrtype) {
3502 case IFLA_INET6_STATS:
3503 __snmp6_fill_stats(stats, (void **)idev->stats.ipv6, IPSTATS_MIB_MAX, bytes);
3504 break;
3505 case IFLA_INET6_ICMP6STATS:
3506 __snmp6_fill_stats(stats, (void **)idev->stats.icmpv6, ICMP6_MIB_MAX, bytes);
3507 break;
3508 }
3509}
3510
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003511static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003512 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513{
Thomas Graf04561c12006-11-14 19:53:58 -08003514 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003515 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08003516 struct ifinfomsg *hdr;
3517 struct nlmsghdr *nlh;
3518 void *protoinfo;
3519 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Thomas Graf04561c12006-11-14 19:53:58 -08003521 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
3522 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003523 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Thomas Graf04561c12006-11-14 19:53:58 -08003525 hdr = nlmsg_data(nlh);
3526 hdr->ifi_family = AF_INET6;
3527 hdr->__ifi_pad = 0;
3528 hdr->ifi_type = dev->type;
3529 hdr->ifi_index = dev->ifindex;
3530 hdr->ifi_flags = dev_get_flags(dev);
3531 hdr->ifi_change = 0;
3532
3533 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
3535 if (dev->addr_len)
Thomas Graf04561c12006-11-14 19:53:58 -08003536 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Thomas Graf04561c12006-11-14 19:53:58 -08003538 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 if (dev->ifindex != dev->iflink)
Thomas Graf04561c12006-11-14 19:53:58 -08003540 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
Thomas Graf04561c12006-11-14 19:53:58 -08003542 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
3543 if (protoinfo == NULL)
3544 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Thomas Graf04561c12006-11-14 19:53:58 -08003546 NLA_PUT_U32(skb, IFLA_INET6_FLAGS, idev->if_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 ci.max_reasm_len = IPV6_MAXPLEN;
3549 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3550 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3551 ci.reachable_time = idev->nd_parms->reachable_time;
3552 ci.retrans_time = idev->nd_parms->retrans_time;
Thomas Graf04561c12006-11-14 19:53:58 -08003553 NLA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3554
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003555 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
3556 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08003557 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003558 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003560 /* XXX - MC not implemented */
3561
3562 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
3563 if (nla == NULL)
3564 goto nla_put_failure;
3565 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
3566
3567 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
3568 if (nla == NULL)
3569 goto nla_put_failure;
3570 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Thomas Graf04561c12006-11-14 19:53:58 -08003572 nla_nest_end(skb, protoinfo);
3573 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Thomas Graf04561c12006-11-14 19:53:58 -08003575nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003576 nlmsg_cancel(skb, nlh);
3577 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578}
3579
3580static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3581{
3582 int idx, err;
3583 int s_idx = cb->args[0];
3584 struct net_device *dev;
3585 struct inet6_dev *idev;
3586
3587 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003588 idx = 0;
3589 for_each_netdev(dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003591 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 if ((idev = in6_dev_get(dev)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003593 goto cont;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003594 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003595 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 in6_dev_put(idev);
3597 if (err <= 0)
3598 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -07003599cont:
3600 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 }
3602 read_unlock(&dev_base_lock);
3603 cb->args[0] = idx;
3604
3605 return skb->len;
3606}
3607
3608void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3609{
3610 struct sk_buff *skb;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003611 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003612
Thomas Graf339bf982006-11-10 14:10:15 -08003613 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003614 if (skb == NULL)
3615 goto errout;
3616
3617 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003618 if (err < 0) {
3619 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
3620 WARN_ON(err == -EMSGSIZE);
3621 kfree_skb(skb);
3622 goto errout;
3623 }
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003624 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3625errout:
3626 if (err < 0)
3627 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628}
3629
Thomas Graf339bf982006-11-10 14:10:15 -08003630static inline size_t inet6_prefix_nlmsg_size(void)
3631{
3632 return NLMSG_ALIGN(sizeof(struct prefixmsg))
3633 + nla_total_size(sizeof(struct in6_addr))
3634 + nla_total_size(sizeof(struct prefix_cacheinfo));
3635}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Thomas Graf6051e2f2006-11-14 19:54:19 -08003638 struct prefix_info *pinfo, u32 pid, u32 seq,
3639 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640{
Thomas Graf6051e2f2006-11-14 19:54:19 -08003641 struct prefixmsg *pmsg;
3642 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 struct prefix_cacheinfo ci;
3644
Thomas Graf6051e2f2006-11-14 19:54:19 -08003645 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*pmsg), flags);
3646 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003647 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08003648
3649 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07003651 pmsg->prefix_pad1 = 0;
3652 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 pmsg->prefix_ifindex = idev->dev->ifindex;
3654 pmsg->prefix_len = pinfo->prefix_len;
3655 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07003656 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 pmsg->prefix_flags = 0;
3658 if (pinfo->onlink)
3659 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3660 if (pinfo->autoconf)
3661 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3662
Thomas Graf6051e2f2006-11-14 19:54:19 -08003663 NLA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
3665 ci.preferred_time = ntohl(pinfo->prefered);
3666 ci.valid_time = ntohl(pinfo->valid);
Thomas Graf6051e2f2006-11-14 19:54:19 -08003667 NLA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Thomas Graf6051e2f2006-11-14 19:54:19 -08003669 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Thomas Graf6051e2f2006-11-14 19:54:19 -08003671nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003672 nlmsg_cancel(skb, nlh);
3673 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674}
3675
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003676static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 struct prefix_info *pinfo)
3678{
3679 struct sk_buff *skb;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003680 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
Thomas Graf339bf982006-11-10 14:10:15 -08003682 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003683 if (skb == NULL)
3684 goto errout;
3685
3686 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003687 if (err < 0) {
3688 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
3689 WARN_ON(err == -EMSGSIZE);
3690 kfree_skb(skb);
3691 goto errout;
3692 }
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003693 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
3694errout:
3695 if (err < 0)
3696 rtnl_set_sk_err(RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697}
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3700{
3701 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3702
3703 switch (event) {
3704 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07003705 /*
3706 * If the address was optimistic
3707 * we inserted the route at the start of
3708 * our DAD process, so we don't need
3709 * to do it again
3710 */
3711 if (!(ifp->rt->rt6i_node))
3712 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 if (ifp->idev->cnf.forwarding)
3714 addrconf_join_anycast(ifp);
3715 break;
3716 case RTM_DELADDR:
3717 if (ifp->idev->cnf.forwarding)
3718 addrconf_leave_anycast(ifp);
3719 addrconf_leave_solict(ifp->idev, &ifp->addr);
3720 dst_hold(&ifp->rt->u.dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003721 if (ip6_del_rt(ifp->rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 dst_free(&ifp->rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 break;
3724 }
3725}
3726
3727static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3728{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003729 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 if (likely(ifp->idev->dead == 0))
3731 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003732 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733}
3734
3735#ifdef CONFIG_SYSCTL
3736
3737static
3738int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3739 void __user *buffer, size_t *lenp, loff_t *ppos)
3740{
3741 int *valp = ctl->data;
3742 int val = *valp;
3743 int ret;
3744
3745 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3746
3747 if (write && valp != &ipv6_devconf_dflt.forwarding) {
3748 if (valp != &ipv6_devconf.forwarding) {
3749 if ((!*valp) ^ (!val)) {
3750 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
3751 if (idev == NULL)
3752 return ret;
3753 dev_forward_change(idev);
3754 }
3755 } else {
3756 ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding;
3757 addrconf_forward_change();
3758 }
3759 if (*valp)
3760 rt6_purge_dflt_routers();
3761 }
3762
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003763 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764}
3765
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003766static int addrconf_sysctl_forward_strategy(ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 int __user *name, int nlen,
3768 void __user *oldval,
3769 size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003770 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771{
3772 int *valp = table->data;
3773 int new;
3774
3775 if (!newval || !newlen)
3776 return 0;
3777 if (newlen != sizeof(int))
3778 return -EINVAL;
3779 if (get_user(new, (int __user *)newval))
3780 return -EFAULT;
3781 if (new == *valp)
3782 return 0;
3783 if (oldval && oldlenp) {
3784 size_t len;
3785 if (get_user(len, oldlenp))
3786 return -EFAULT;
3787 if (len) {
3788 if (len > table->maxlen)
3789 len = table->maxlen;
3790 if (copy_to_user(oldval, valp, len))
3791 return -EFAULT;
3792 if (put_user(len, oldlenp))
3793 return -EFAULT;
3794 }
3795 }
3796
3797 if (valp != &ipv6_devconf_dflt.forwarding) {
3798 if (valp != &ipv6_devconf.forwarding) {
3799 struct inet6_dev *idev = (struct inet6_dev *)table->extra1;
3800 int changed;
3801 if (unlikely(idev == NULL))
3802 return -ENODEV;
3803 changed = (!*valp) ^ (!new);
3804 *valp = new;
3805 if (changed)
3806 dev_forward_change(idev);
3807 } else {
3808 *valp = new;
3809 addrconf_forward_change();
3810 }
3811
3812 if (*valp)
3813 rt6_purge_dflt_routers();
3814 } else
3815 *valp = new;
3816
3817 return 1;
3818}
3819
3820static struct addrconf_sysctl_table
3821{
3822 struct ctl_table_header *sysctl_header;
3823 ctl_table addrconf_vars[__NET_IPV6_MAX];
3824 ctl_table addrconf_dev[2];
3825 ctl_table addrconf_conf_dir[2];
3826 ctl_table addrconf_proto_dir[2];
3827 ctl_table addrconf_root_dir[2];
Brian Haleyab32ea52006-09-22 14:15:41 -07003828} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 .sysctl_header = NULL,
3830 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003831 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 .ctl_name = NET_IPV6_FORWARDING,
3833 .procname = "forwarding",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003834 .data = &ipv6_devconf.forwarding,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 .maxlen = sizeof(int),
3836 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003837 .proc_handler = &addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 .strategy = &addrconf_sysctl_forward_strategy,
3839 },
3840 {
3841 .ctl_name = NET_IPV6_HOP_LIMIT,
3842 .procname = "hop_limit",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003843 .data = &ipv6_devconf.hop_limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 .maxlen = sizeof(int),
3845 .mode = 0644,
3846 .proc_handler = proc_dointvec,
3847 },
3848 {
3849 .ctl_name = NET_IPV6_MTU,
3850 .procname = "mtu",
3851 .data = &ipv6_devconf.mtu6,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003852 .maxlen = sizeof(int),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003854 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 },
3856 {
3857 .ctl_name = NET_IPV6_ACCEPT_RA,
3858 .procname = "accept_ra",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003859 .data = &ipv6_devconf.accept_ra,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 .maxlen = sizeof(int),
3861 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003862 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 },
3864 {
3865 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
3866 .procname = "accept_redirects",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003867 .data = &ipv6_devconf.accept_redirects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 .maxlen = sizeof(int),
3869 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003870 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 },
3872 {
3873 .ctl_name = NET_IPV6_AUTOCONF,
3874 .procname = "autoconf",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003875 .data = &ipv6_devconf.autoconf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 .maxlen = sizeof(int),
3877 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003878 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 },
3880 {
3881 .ctl_name = NET_IPV6_DAD_TRANSMITS,
3882 .procname = "dad_transmits",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003883 .data = &ipv6_devconf.dad_transmits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 .maxlen = sizeof(int),
3885 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003886 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 },
3888 {
3889 .ctl_name = NET_IPV6_RTR_SOLICITS,
3890 .procname = "router_solicitations",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003891 .data = &ipv6_devconf.rtr_solicits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 .maxlen = sizeof(int),
3893 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003894 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 },
3896 {
3897 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
3898 .procname = "router_solicitation_interval",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003899 .data = &ipv6_devconf.rtr_solicit_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 .maxlen = sizeof(int),
3901 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003902 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 .strategy = &sysctl_jiffies,
3904 },
3905 {
3906 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
3907 .procname = "router_solicitation_delay",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003908 .data = &ipv6_devconf.rtr_solicit_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 .maxlen = sizeof(int),
3910 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003911 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 .strategy = &sysctl_jiffies,
3913 },
3914 {
3915 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
3916 .procname = "force_mld_version",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003917 .data = &ipv6_devconf.force_mld_version,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 .maxlen = sizeof(int),
3919 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003920 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 },
3922#ifdef CONFIG_IPV6_PRIVACY
3923 {
3924 .ctl_name = NET_IPV6_USE_TEMPADDR,
3925 .procname = "use_tempaddr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003926 .data = &ipv6_devconf.use_tempaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 .maxlen = sizeof(int),
3928 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003929 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 },
3931 {
3932 .ctl_name = NET_IPV6_TEMP_VALID_LFT,
3933 .procname = "temp_valid_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003934 .data = &ipv6_devconf.temp_valid_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 .maxlen = sizeof(int),
3936 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003937 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 },
3939 {
3940 .ctl_name = NET_IPV6_TEMP_PREFERED_LFT,
3941 .procname = "temp_prefered_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003942 .data = &ipv6_devconf.temp_prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 .maxlen = sizeof(int),
3944 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003945 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 },
3947 {
3948 .ctl_name = NET_IPV6_REGEN_MAX_RETRY,
3949 .procname = "regen_max_retry",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003950 .data = &ipv6_devconf.regen_max_retry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 .maxlen = sizeof(int),
3952 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003953 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 },
3955 {
3956 .ctl_name = NET_IPV6_MAX_DESYNC_FACTOR,
3957 .procname = "max_desync_factor",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003958 .data = &ipv6_devconf.max_desync_factor,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 .maxlen = sizeof(int),
3960 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003961 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 },
3963#endif
3964 {
3965 .ctl_name = NET_IPV6_MAX_ADDRESSES,
3966 .procname = "max_addresses",
3967 .data = &ipv6_devconf.max_addresses,
3968 .maxlen = sizeof(int),
3969 .mode = 0644,
3970 .proc_handler = &proc_dointvec,
3971 },
3972 {
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003973 .ctl_name = NET_IPV6_ACCEPT_RA_DEFRTR,
3974 .procname = "accept_ra_defrtr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003975 .data = &ipv6_devconf.accept_ra_defrtr,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003976 .maxlen = sizeof(int),
3977 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003978 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003979 },
3980 {
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003981 .ctl_name = NET_IPV6_ACCEPT_RA_PINFO,
3982 .procname = "accept_ra_pinfo",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003983 .data = &ipv6_devconf.accept_ra_pinfo,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003984 .maxlen = sizeof(int),
3985 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003986 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003987 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003988#ifdef CONFIG_IPV6_ROUTER_PREF
3989 {
3990 .ctl_name = NET_IPV6_ACCEPT_RA_RTR_PREF,
3991 .procname = "accept_ra_rtr_pref",
3992 .data = &ipv6_devconf.accept_ra_rtr_pref,
3993 .maxlen = sizeof(int),
3994 .mode = 0644,
3995 .proc_handler = &proc_dointvec,
3996 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08003997 {
3998 .ctl_name = NET_IPV6_RTR_PROBE_INTERVAL,
3999 .procname = "router_probe_interval",
4000 .data = &ipv6_devconf.rtr_probe_interval,
4001 .maxlen = sizeof(int),
4002 .mode = 0644,
4003 .proc_handler = &proc_dointvec_jiffies,
4004 .strategy = &sysctl_jiffies,
4005 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004006#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004007 {
4008 .ctl_name = NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN,
4009 .procname = "accept_ra_rt_info_max_plen",
4010 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4011 .maxlen = sizeof(int),
4012 .mode = 0644,
4013 .proc_handler = &proc_dointvec,
4014 },
4015#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004016#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004017 {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004018 .ctl_name = NET_IPV6_PROXY_NDP,
4019 .procname = "proxy_ndp",
4020 .data = &ipv6_devconf.proxy_ndp,
4021 .maxlen = sizeof(int),
4022 .mode = 0644,
4023 .proc_handler = &proc_dointvec,
4024 },
4025 {
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004026 .ctl_name = NET_IPV6_ACCEPT_SOURCE_ROUTE,
4027 .procname = "accept_source_route",
4028 .data = &ipv6_devconf.accept_source_route,
4029 .maxlen = sizeof(int),
4030 .mode = 0644,
4031 .proc_handler = &proc_dointvec,
4032 },
Neil Horman95c385b2007-04-25 17:08:10 -07004033#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4034 {
4035 .ctl_name = CTL_UNNUMBERED,
4036 .procname = "optimistic_dad",
4037 .data = &ipv6_devconf.optimistic_dad,
4038 .maxlen = sizeof(int),
4039 .mode = 0644,
4040 .proc_handler = &proc_dointvec,
4041
4042 },
4043#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004044 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 .ctl_name = 0, /* sentinel */
4046 }
4047 },
4048 .addrconf_dev = {
4049 {
4050 .ctl_name = NET_PROTO_CONF_ALL,
4051 .procname = "all",
4052 .mode = 0555,
4053 .child = addrconf_sysctl.addrconf_vars,
4054 },
4055 {
4056 .ctl_name = 0, /* sentinel */
4057 }
4058 },
4059 .addrconf_conf_dir = {
4060 {
4061 .ctl_name = NET_IPV6_CONF,
4062 .procname = "conf",
4063 .mode = 0555,
4064 .child = addrconf_sysctl.addrconf_dev,
4065 },
4066 {
4067 .ctl_name = 0, /* sentinel */
4068 }
4069 },
4070 .addrconf_proto_dir = {
4071 {
4072 .ctl_name = NET_IPV6,
4073 .procname = "ipv6",
4074 .mode = 0555,
4075 .child = addrconf_sysctl.addrconf_conf_dir,
4076 },
4077 {
4078 .ctl_name = 0, /* sentinel */
4079 }
4080 },
4081 .addrconf_root_dir = {
4082 {
4083 .ctl_name = CTL_NET,
4084 .procname = "net",
4085 .mode = 0555,
4086 .child = addrconf_sysctl.addrconf_proto_dir,
4087 },
4088 {
4089 .ctl_name = 0, /* sentinel */
4090 }
4091 },
4092};
4093
4094static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p)
4095{
4096 int i;
4097 struct net_device *dev = idev ? idev->dev : NULL;
4098 struct addrconf_sysctl_table *t;
4099 char *dev_name = NULL;
4100
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004101 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 if (t == NULL)
4103 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 for (i=0; t->addrconf_vars[i].data; i++) {
4105 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
4107 }
4108 if (dev) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004109 dev_name = dev->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 t->addrconf_dev[0].ctl_name = dev->ifindex;
4111 } else {
4112 dev_name = "default";
4113 t->addrconf_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
4114 }
4115
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004116 /*
4117 * Make a copy of dev_name, because '.procname' is regarded as const
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 * by sysctl and we wouldn't want anyone to change it under our feet
4119 * (see SIOCSIFNAME).
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004120 */
Paulo Marques543537b2005-06-23 00:09:02 -07004121 dev_name = kstrdup(dev_name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 if (!dev_name)
4123 goto free;
4124
4125 t->addrconf_dev[0].procname = dev_name;
4126
4127 t->addrconf_dev[0].child = t->addrconf_vars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 t->addrconf_conf_dir[0].child = t->addrconf_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 t->addrconf_proto_dir[0].child = t->addrconf_conf_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 t->addrconf_root_dir[0].child = t->addrconf_proto_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08004132 t->sysctl_header = register_sysctl_table(t->addrconf_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 if (t->sysctl_header == NULL)
4134 goto free_procname;
4135 else
4136 p->sysctl = t;
4137 return;
4138
4139 /* error path */
4140 free_procname:
4141 kfree(dev_name);
4142 free:
4143 kfree(t);
4144
4145 return;
4146}
4147
4148static void addrconf_sysctl_unregister(struct ipv6_devconf *p)
4149{
4150 if (p->sysctl) {
4151 struct addrconf_sysctl_table *t = p->sysctl;
4152 p->sysctl = NULL;
4153 unregister_sysctl_table(t->sysctl_header);
4154 kfree(t->addrconf_dev[0].procname);
4155 kfree(t);
4156 }
4157}
4158
4159
4160#endif
4161
4162/*
4163 * Device notifier
4164 */
4165
4166int register_inet6addr_notifier(struct notifier_block *nb)
4167{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004168 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169}
4170
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004171EXPORT_SYMBOL(register_inet6addr_notifier);
4172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173int unregister_inet6addr_notifier(struct notifier_block *nb)
4174{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004175 return atomic_notifier_chain_unregister(&inet6addr_chain,nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176}
4177
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004178EXPORT_SYMBOL(unregister_inet6addr_notifier);
4179
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180/*
4181 * Init / cleanup code
4182 */
4183
4184int __init addrconf_init(void)
4185{
4186 int err = 0;
4187
4188 /* The addrconf netdev notifier requires that loopback_dev
4189 * has it's ipv6 private information allocated and setup
4190 * before it can bring up and give link-local addresses
4191 * to other devices which are up.
4192 *
4193 * Unfortunately, loopback_dev is not necessarily the first
4194 * entry in the global dev_base list of net devices. In fact,
4195 * it is likely to be the very last entry on that list.
4196 * So this causes the notifier registry below to try and
4197 * give link-local addresses to all devices besides loopback_dev
4198 * first, then loopback_dev, which cases all the non-loopback_dev
4199 * devices to fail to get a link-local address.
4200 *
4201 * So, as a temporary fix, allocate the ipv6 structure for
4202 * loopback_dev first by hand.
4203 * Longer term, all of the dependencies ipv6 has upon the loopback
4204 * device and it being up should be removed.
4205 */
4206 rtnl_lock();
4207 if (!ipv6_add_dev(&loopback_dev))
4208 err = -ENOMEM;
4209 rtnl_unlock();
4210 if (err)
4211 return err;
4212
Herbert Xuc62dba92005-09-26 15:10:16 -07004213 ip6_null_entry.rt6i_idev = in6_dev_get(&loopback_dev);
YOSHIFUJI Hideaki9a6bf6f2007-05-09 14:03:28 -07004214#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4215 ip6_prohibit_entry.rt6i_idev = in6_dev_get(&loopback_dev);
4216 ip6_blk_hole_entry.rt6i_idev = in6_dev_get(&loopback_dev);
4217#endif
Herbert Xuc62dba92005-09-26 15:10:16 -07004218
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 register_netdevice_notifier(&ipv6_dev_notf);
4220
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004222
4223 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo);
4224 if (err < 0)
4225 goto errout;
4226
4227 /* Only the first call to __rtnl_register can fail */
4228 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL);
4229 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL);
4230 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr, inet6_dump_ifaddr);
4231 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL, inet6_dump_ifmcaddr);
4232 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL, inet6_dump_ifacaddr);
4233
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234#ifdef CONFIG_SYSCTL
4235 addrconf_sysctl.sysctl_header =
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08004236 register_sysctl_table(addrconf_sysctl.addrconf_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 addrconf_sysctl_register(NULL, &ipv6_devconf_dflt);
4238#endif
4239
4240 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07004241errout:
4242 unregister_netdevice_notifier(&ipv6_dev_notf);
4243
4244 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245}
4246
4247void __exit addrconf_cleanup(void)
4248{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004249 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004250 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 int i;
4252
4253 unregister_netdevice_notifier(&ipv6_dev_notf);
4254
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255#ifdef CONFIG_SYSCTL
4256 addrconf_sysctl_unregister(&ipv6_devconf_dflt);
4257 addrconf_sysctl_unregister(&ipv6_devconf);
4258#endif
4259
4260 rtnl_lock();
4261
4262 /*
4263 * clean dev list.
4264 */
4265
Pavel Emelianov7562f872007-05-03 15:13:45 -07004266 for_each_netdev(dev) {
Micah Gruberdffe4f02007-07-10 23:04:19 -07004267 if (__in6_dev_get(dev) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 continue;
4269 addrconf_ifdown(dev, 1);
4270 }
4271 addrconf_ifdown(&loopback_dev, 2);
4272
4273 /*
4274 * Check hash table.
4275 */
4276
4277 write_lock_bh(&addrconf_hash_lock);
4278 for (i=0; i < IN6_ADDR_HSIZE; i++) {
4279 for (ifa=inet6_addr_lst[i]; ifa; ) {
4280 struct inet6_ifaddr *bifa;
4281
4282 bifa = ifa;
4283 ifa = ifa->lst_next;
4284 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
4285 /* Do not free it; something is wrong.
4286 Now we can investigate it with debugger.
4287 */
4288 }
4289 }
4290 write_unlock_bh(&addrconf_hash_lock);
4291
4292 del_timer(&addr_chk_timer);
4293
4294 rtnl_unlock();
4295
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02004297 proc_net_remove(&init_net, "if_inet6");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298#endif
4299}