blob: b9eeb4f51d48c73a34e22d421c9b9149e66ce84f [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>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070077#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/if_tunnel.h>
79#include <linux/rtnetlink.h>
80
81#ifdef CONFIG_IPV6_PRIVACY
82#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84
85#include <asm/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070086#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#include <linux/proc_fs.h>
89#include <linux/seq_file.h>
90
91/* Set to 3 to get tracing... */
92#define ACONF_DEBUG 2
93
94#if ACONF_DEBUG >= 3
95#define ADBG(x) printk x
96#else
97#define ADBG(x)
98#endif
99
100#define INFINITY_LIFE_TIME 0xFFFFFFFF
101#define TIME_DELTA(a,b) ((unsigned long)((long)(a) - (long)(b)))
102
103#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100104static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800105static void addrconf_sysctl_unregister(struct inet6_dev *idev);
106#else
107static inline void addrconf_sysctl_register(struct inet6_dev *idev)
108{
109}
110
111static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
112{
113}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif
115
116#ifdef CONFIG_IPV6_PRIVACY
117static int __ipv6_regen_rndid(struct inet6_dev *idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900118static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static void ipv6_regen_rndid(unsigned long data);
120
121static int desync_factor = MAX_DESYNC_FACTOR * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif
123
124static int ipv6_count_addresses(struct inet6_dev *idev);
125
126/*
127 * Configured unicast address hash table
128 */
129static struct inet6_ifaddr *inet6_addr_lst[IN6_ADDR_HSIZE];
130static DEFINE_RWLOCK(addrconf_hash_lock);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static void addrconf_verify(unsigned long);
133
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700134static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static DEFINE_SPINLOCK(addrconf_verify_lock);
136
137static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
138static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
139
140static int addrconf_ifdown(struct net_device *dev, int how);
141
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700142static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static void addrconf_dad_timer(unsigned long data);
144static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900145static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static void addrconf_rs_timer(unsigned long data);
147static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
148static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
149
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900150static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct prefix_info *pinfo);
Daniel Lezcano06bfe652008-01-10 22:43:42 -0800152static int ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
153 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Alan Sterne041c682006-03-27 01:16:30 -0800155static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Brian Haleyab32ea52006-09-22 14:15:41 -0700157struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .forwarding = 0,
159 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
160 .mtu6 = IPV6_MIN_MTU,
161 .accept_ra = 1,
162 .accept_redirects = 1,
163 .autoconf = 1,
164 .force_mld_version = 0,
165 .dad_transmits = 1,
166 .rtr_solicits = MAX_RTR_SOLICITATIONS,
167 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
168 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
169#ifdef CONFIG_IPV6_PRIVACY
170 .use_tempaddr = 0,
171 .temp_valid_lft = TEMP_VALID_LIFETIME,
172 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
173 .regen_max_retry = REGEN_MAX_RETRY,
174 .max_desync_factor = MAX_DESYNC_FACTOR,
175#endif
176 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800177 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800178 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800179#ifdef CONFIG_IPV6_ROUTER_PREF
180 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800181 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800182#ifdef CONFIG_IPV6_ROUTE_INFO
183 .accept_ra_rt_info_max_plen = 0,
184#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800185#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700186 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700187 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Brian Haleyab32ea52006-09-22 14:15:41 -0700190static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .forwarding = 0,
192 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
193 .mtu6 = IPV6_MIN_MTU,
194 .accept_ra = 1,
195 .accept_redirects = 1,
196 .autoconf = 1,
197 .dad_transmits = 1,
198 .rtr_solicits = MAX_RTR_SOLICITATIONS,
199 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
200 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
201#ifdef CONFIG_IPV6_PRIVACY
202 .use_tempaddr = 0,
203 .temp_valid_lft = TEMP_VALID_LIFETIME,
204 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
205 .regen_max_retry = REGEN_MAX_RETRY,
206 .max_desync_factor = MAX_DESYNC_FACTOR,
207#endif
208 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800209 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800210 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800211#ifdef CONFIG_IPV6_ROUTER_PREF
212 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800213 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800214#ifdef CONFIG_IPV6_ROUTE_INFO
215 .accept_ra_rt_info_max_plen = 0,
216#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800217#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700218 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700219 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
222/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
225
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700226/* Check if a valid qdisc is available */
227static inline int addrconf_qdisc_ok(struct net_device *dev)
228{
229 return (dev->qdisc != &noop_qdisc);
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static void addrconf_del_timer(struct inet6_ifaddr *ifp)
233{
234 if (del_timer(&ifp->timer))
235 __in6_ifa_put(ifp);
236}
237
238enum addrconf_timer_t
239{
240 AC_NONE,
241 AC_DAD,
242 AC_RS,
243};
244
245static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
246 enum addrconf_timer_t what,
247 unsigned long when)
248{
249 if (!del_timer(&ifp->timer))
250 in6_ifa_hold(ifp);
251
252 switch (what) {
253 case AC_DAD:
254 ifp->timer.function = addrconf_dad_timer;
255 break;
256 case AC_RS:
257 ifp->timer.function = addrconf_rs_timer;
258 break;
259 default:;
260 }
261 ifp->timer.expires = jiffies + when;
262 add_timer(&ifp->timer);
263}
264
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700265static int snmp6_alloc_dev(struct inet6_dev *idev)
266{
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700267 if (snmp_mib_init((void **)idev->stats.ipv6,
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800268 sizeof(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700269 goto err_ip;
270 if (snmp_mib_init((void **)idev->stats.icmpv6,
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800271 sizeof(struct icmpv6_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700272 goto err_icmp;
David L Stevens14878f72007-09-16 16:52:35 -0700273 if (snmp_mib_init((void **)idev->stats.icmpv6msg,
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800274 sizeof(struct icmpv6msg_mib)) < 0)
David L Stevens14878f72007-09-16 16:52:35 -0700275 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700276
277 return 0;
278
David L Stevens14878f72007-09-16 16:52:35 -0700279err_icmpmsg:
280 snmp_mib_free((void **)idev->stats.icmpv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700281err_icmp:
282 snmp_mib_free((void **)idev->stats.ipv6);
283err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700284 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700285}
286
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700287static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700288{
David L Stevens14878f72007-09-16 16:52:35 -0700289 snmp_mib_free((void **)idev->stats.icmpv6msg);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700290 snmp_mib_free((void **)idev->stats.icmpv6);
291 snmp_mib_free((void **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/* Nobody refers to this device, we may destroy it. */
295
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700296static void in6_dev_finish_destroy_rcu(struct rcu_head *head)
297{
298 struct inet6_dev *idev = container_of(head, struct inet6_dev, rcu);
299 kfree(idev);
300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302void in6_dev_finish_destroy(struct inet6_dev *idev)
303{
304 struct net_device *dev = idev->dev;
305 BUG_TRAP(idev->addr_list==NULL);
306 BUG_TRAP(idev->mc_list==NULL);
307#ifdef NET_REFCNT_DEBUG
308 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
309#endif
310 dev_put(dev);
311 if (!idev->dead) {
312 printk("Freeing alive inet6 device %p\n", idev);
313 return;
314 }
315 snmp6_free_dev(idev);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700316 call_rcu(&idev->rcu, in6_dev_finish_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900319EXPORT_SYMBOL(in6_dev_finish_destroy);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
322{
323 struct inet6_dev *ndev;
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800324 struct in6_addr maddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 ASSERT_RTNL();
327
328 if (dev->mtu < IPV6_MIN_MTU)
329 return NULL;
330
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900331 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900333 if (ndev == NULL)
334 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Ingo Oeser322f74a2006-03-20 23:01:47 -0800336 rwlock_init(&ndev->lock);
337 ndev->dev = dev;
Pavel Emelyanov441fc2a2008-01-10 17:43:22 -0800338 memcpy(&ndev->cnf, dev->nd_net->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800339 ndev->cnf.mtu6 = dev->mtu;
340 ndev->cnf.sysctl = NULL;
341 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
342 if (ndev->nd_parms == NULL) {
343 kfree(ndev);
344 return NULL;
345 }
346 /* We refer to the device */
347 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Ingo Oeser322f74a2006-03-20 23:01:47 -0800349 if (snmp6_alloc_dev(ndev) < 0) {
350 ADBG((KERN_WARNING
351 "%s(): cannot allocate memory for statistics; dev=%s.\n",
352 __FUNCTION__, dev->name));
353 neigh_parms_release(&nd_tbl, ndev->nd_parms);
354 ndev->dead = 1;
355 in6_dev_finish_destroy(ndev);
356 return NULL;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Ingo Oeser322f74a2006-03-20 23:01:47 -0800359 if (snmp6_register_dev(ndev) < 0) {
360 ADBG((KERN_WARNING
361 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
362 __FUNCTION__, dev->name));
363 neigh_parms_release(&nd_tbl, ndev->nd_parms);
364 ndev->dead = 1;
365 in6_dev_finish_destroy(ndev);
366 return NULL;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Ingo Oeser322f74a2006-03-20 23:01:47 -0800369 /* One reference from device. We must do this before
370 * we invoke __ipv6_regen_rndid().
371 */
372 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700374#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
375 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
376 printk(KERN_INFO
377 "%s: Disabled Multicast RS\n",
378 dev->name);
379 ndev->cnf.rtr_solicits = 0;
380 }
381#endif
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#ifdef CONFIG_IPV6_PRIVACY
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800384 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800385 if ((dev->flags&IFF_LOOPBACK) ||
386 dev->type == ARPHRD_TUNNEL ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700387#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
388 dev->type == ARPHRD_SIT ||
389#endif
390 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391 printk(KERN_INFO
392 "%s: Disabled Privacy Extensions\n",
393 dev->name);
394 ndev->cnf.use_tempaddr = -1;
395 } else {
396 in6_dev_hold(ndev);
397 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800399#endif
400
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700401 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700402 ndev->if_flags |= IF_READY;
403
Ingo Oeser322f74a2006-03-20 23:01:47 -0800404 ipv6_mc_init_dev(ndev);
405 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100406 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800407 /* protected by rtnl_lock */
408 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800409
410 /* Join all-node multicast group */
411 ipv6_addr_all_nodes(&maddr);
412 ipv6_dev_mc_inc(dev, &maddr);
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return ndev;
415}
416
417static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
418{
419 struct inet6_dev *idev;
420
421 ASSERT_RTNL();
422
423 if ((idev = __in6_dev_get(dev)) == NULL) {
424 if ((idev = ipv6_add_dev(dev)) == NULL)
425 return NULL;
426 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (dev->flags&IFF_UP)
429 ipv6_mc_up(idev);
430 return idev;
431}
432
433#ifdef CONFIG_SYSCTL
434static void dev_forward_change(struct inet6_dev *idev)
435{
436 struct net_device *dev;
437 struct inet6_ifaddr *ifa;
438 struct in6_addr addr;
439
440 if (!idev)
441 return;
442 dev = idev->dev;
443 if (dev && (dev->flags & IFF_MULTICAST)) {
444 ipv6_addr_all_routers(&addr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (idev->cnf.forwarding)
447 ipv6_dev_mc_inc(dev, &addr);
448 else
449 ipv6_dev_mc_dec(dev, &addr);
450 }
451 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800452 if (ifa->flags&IFA_F_TENTATIVE)
453 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (idev->cnf.forwarding)
455 addrconf_join_anycast(ifa);
456 else
457 addrconf_leave_anycast(ifa);
458 }
459}
460
461
Pavel Emelyanove1869322008-01-10 17:43:50 -0800462static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct net_device *dev;
465 struct inet6_dev *idev;
466
467 read_lock(&dev_base_lock);
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800468 for_each_netdev(net, dev) {
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700469 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 idev = __in6_dev_get(dev);
471 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800472 int changed = (!idev->cnf.forwarding) ^ (!newf);
473 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (changed)
475 dev_forward_change(idev);
476 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700477 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479 read_unlock(&dev_base_lock);
480}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800481
482static void addrconf_fixup_forwarding(struct ctl_table *table, int *p, int old)
483{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800484 struct net *net;
485
486 net = (struct net *)table->extra2;
Pavel Emelyanov441fc2a2008-01-10 17:43:22 -0800487 if (p == &net->ipv6.devconf_dflt->forwarding)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800488 return;
489
Pavel Emelyanove1869322008-01-10 17:43:50 -0800490 if (p == &net->ipv6.devconf_all->forwarding) {
491 __s32 newf = net->ipv6.devconf_all->forwarding;
492 net->ipv6.devconf_dflt->forwarding = newf;
493 addrconf_forward_change(net, newf);
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800494 } else if ((!*p) ^ (!old))
495 dev_forward_change((struct inet6_dev *)table->extra1);
496
497 if (*p)
498 rt6_purge_dflt_routers();
499}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500#endif
501
502/* Nobody refers to this ifaddr, destroy it */
503
504void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
505{
506 BUG_TRAP(ifp->if_next==NULL);
507 BUG_TRAP(ifp->lst_next==NULL);
508#ifdef NET_REFCNT_DEBUG
509 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
510#endif
511
512 in6_dev_put(ifp->idev);
513
514 if (del_timer(&ifp->timer))
515 printk("Timer is still running, when freeing ifa=%p\n", ifp);
516
517 if (!ifp->dead) {
518 printk("Freeing alive inet6 address %p\n", ifp);
519 return;
520 }
521 dst_release(&ifp->rt->u.dst);
522
523 kfree(ifp);
524}
525
Brian Haleye55ffac2006-07-10 15:25:51 -0700526static void
527ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
528{
529 struct inet6_ifaddr *ifa, **ifap;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700530 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700531
532 /*
533 * Each device address list is sorted in order of scope -
534 * global before linklocal.
535 */
536 for (ifap = &idev->addr_list; (ifa = *ifap) != NULL;
537 ifap = &ifa->if_next) {
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700538 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700539 break;
540 }
541
542 ifp->if_next = *ifap;
543 *ifap = ifp;
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/* On success it returns ifp with increased reference count */
547
548static struct inet6_ifaddr *
549ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700550 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
552 struct inet6_ifaddr *ifa = NULL;
553 struct rt6_info *rt;
554 int hash;
555 int err = 0;
556
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700557 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (idev->dead) {
559 err = -ENODEV; /*XXX*/
560 goto out2;
561 }
562
563 write_lock(&addrconf_hash_lock);
564
565 /* Ignore adding duplicate addresses on an interface */
Daniel Lezcano06bfe652008-01-10 22:43:42 -0800566 if (ipv6_chk_same_addr(&init_net, addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 ADBG(("ipv6_add_addr: already assigned\n"));
568 err = -EEXIST;
569 goto out;
570 }
571
Ingo Oeser322f74a2006-03-20 23:01:47 -0800572 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 if (ifa == NULL) {
575 ADBG(("ipv6_add_addr: malloc failed\n"));
576 err = -ENOBUFS;
577 goto out;
578 }
579
580 rt = addrconf_dst_alloc(idev, addr, 0);
581 if (IS_ERR(rt)) {
582 err = PTR_ERR(rt);
583 goto out;
584 }
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 ipv6_addr_copy(&ifa->addr, addr);
587
588 spin_lock_init(&ifa->lock);
589 init_timer(&ifa->timer);
590 ifa->timer.data = (unsigned long) ifa;
591 ifa->scope = scope;
592 ifa->prefix_len = pfxlen;
593 ifa->flags = flags | IFA_F_TENTATIVE;
594 ifa->cstamp = ifa->tstamp = jiffies;
595
Keir Fraser57f5f542006-08-29 02:43:49 -0700596 ifa->rt = rt;
597
Neil Horman95c385b2007-04-25 17:08:10 -0700598 /*
599 * part one of RFC 4429, section 3.3
600 * We should not configure an address as
601 * optimistic if we do not yet know the link
602 * layer address of our nexhop router
603 */
604
605 if (rt->rt6i_nexthop == NULL)
606 ifa->flags &= ~IFA_F_OPTIMISTIC;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ifa->idev = idev;
609 in6_dev_hold(idev);
610 /* For caller */
611 in6_ifa_hold(ifa);
612
613 /* Add to big hash table */
614 hash = ipv6_addr_hash(addr);
615
616 ifa->lst_next = inet6_addr_lst[hash];
617 inet6_addr_lst[hash] = ifa;
618 in6_ifa_hold(ifa);
619 write_unlock(&addrconf_hash_lock);
620
621 write_lock(&idev->lock);
622 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700623 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625#ifdef CONFIG_IPV6_PRIVACY
626 if (ifa->flags&IFA_F_TEMPORARY) {
627 ifa->tmp_next = idev->tempaddr_list;
628 idev->tempaddr_list = ifa;
629 in6_ifa_hold(ifa);
630 }
631#endif
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 in6_ifa_hold(ifa);
634 write_unlock(&idev->lock);
635out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700636 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700638 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800639 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 else {
641 kfree(ifa);
642 ifa = ERR_PTR(err);
643 }
644
645 return ifa;
646out:
647 write_unlock(&addrconf_hash_lock);
648 goto out2;
649}
650
651/* This function wants to get referenced ifp and releases it before return */
652
653static void ipv6_del_addr(struct inet6_ifaddr *ifp)
654{
655 struct inet6_ifaddr *ifa, **ifap;
656 struct inet6_dev *idev = ifp->idev;
657 int hash;
658 int deleted = 0, onlink = 0;
659 unsigned long expires = jiffies;
660
661 hash = ipv6_addr_hash(&ifp->addr);
662
663 ifp->dead = 1;
664
665 write_lock_bh(&addrconf_hash_lock);
666 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
667 ifap = &ifa->lst_next) {
668 if (ifa == ifp) {
669 *ifap = ifa->lst_next;
670 __in6_ifa_put(ifp);
671 ifa->lst_next = NULL;
672 break;
673 }
674 }
675 write_unlock_bh(&addrconf_hash_lock);
676
677 write_lock_bh(&idev->lock);
678#ifdef CONFIG_IPV6_PRIVACY
679 if (ifp->flags&IFA_F_TEMPORARY) {
680 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
681 ifap = &ifa->tmp_next) {
682 if (ifa == ifp) {
683 *ifap = ifa->tmp_next;
684 if (ifp->ifpub) {
685 in6_ifa_put(ifp->ifpub);
686 ifp->ifpub = NULL;
687 }
688 __in6_ifa_put(ifp);
689 ifa->tmp_next = NULL;
690 break;
691 }
692 }
693 }
694#endif
695
Kristian Slavov1d142802005-12-21 18:47:24 -0800696 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (ifa == ifp) {
698 *ifap = ifa->if_next;
699 __in6_ifa_put(ifp);
700 ifa->if_next = NULL;
701 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
702 break;
703 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800704 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 } else if (ifp->flags & IFA_F_PERMANENT) {
706 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
707 ifp->prefix_len)) {
708 if (ifa->flags & IFA_F_PERMANENT) {
709 onlink = 1;
710 if (deleted)
711 break;
712 } else {
713 unsigned long lifetime;
714
715 if (!onlink)
716 onlink = -1;
717
718 spin_lock(&ifa->lock);
719 lifetime = min_t(unsigned long,
720 ifa->valid_lft, 0x7fffffffUL/HZ);
721 if (time_before(expires,
722 ifa->tstamp + lifetime * HZ))
723 expires = ifa->tstamp + lifetime * HZ;
724 spin_unlock(&ifa->lock);
725 }
726 }
727 }
Kristian Slavov1d142802005-12-21 18:47:24 -0800728 ifap = &ifa->if_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 write_unlock_bh(&idev->lock);
731
732 ipv6_ifa_notify(RTM_DELADDR, ifp);
733
Alan Sterne041c682006-03-27 01:16:30 -0800734 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 addrconf_del_timer(ifp);
737
738 /*
739 * Purge or update corresponding prefix
740 *
741 * 1) we don't purge prefix here if address was not permanent.
742 * prefix is managed by its own lifetime.
743 * 2) if there're no addresses, delete prefix.
744 * 3) if there're still other permanent address(es),
745 * corresponding prefix is still permanent.
746 * 4) otherwise, update prefix lifetime to the
747 * longest valid lifetime among the corresponding
748 * addresses on the device.
749 * Note: subsequent RA will update lifetime.
750 *
751 * --yoshfuji
752 */
753 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
754 struct in6_addr prefix;
755 struct rt6_info *rt;
756
757 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
758 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
759
760 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
761 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700762 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 rt = NULL;
764 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
765 rt->rt6i_expires = expires;
766 rt->rt6i_flags |= RTF_EXPIRES;
767 }
768 }
769 dst_release(&rt->u.dst);
770 }
771
772 in6_ifa_put(ifp);
773}
774
775#ifdef CONFIG_IPV6_PRIVACY
776static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
777{
778 struct inet6_dev *idev = ifp->idev;
779 struct in6_addr addr, *tmpaddr;
780 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700781 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 int tmp_plen;
783 int ret = 0;
784 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -0700785 u32 addr_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 write_lock(&idev->lock);
788 if (ift) {
789 spin_lock_bh(&ift->lock);
790 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
791 spin_unlock_bh(&ift->lock);
792 tmpaddr = &addr;
793 } else {
794 tmpaddr = NULL;
795 }
796retry:
797 in6_dev_hold(idev);
798 if (idev->cnf.use_tempaddr <= 0) {
799 write_unlock(&idev->lock);
800 printk(KERN_INFO
801 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
802 in6_dev_put(idev);
803 ret = -1;
804 goto out;
805 }
806 spin_lock_bh(&ifp->lock);
807 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
808 idev->cnf.use_tempaddr = -1; /*XXX*/
809 spin_unlock_bh(&ifp->lock);
810 write_unlock(&idev->lock);
811 printk(KERN_WARNING
812 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
813 in6_dev_put(idev);
814 ret = -1;
815 goto out;
816 }
817 in6_ifa_hold(ifp);
818 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
819 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
820 spin_unlock_bh(&ifp->lock);
821 write_unlock(&idev->lock);
822 printk(KERN_WARNING
823 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
824 in6_ifa_put(ifp);
825 in6_dev_put(idev);
826 ret = -1;
827 goto out;
828 }
829 memcpy(&addr.s6_addr[8], idev->rndid, 8);
830 tmp_valid_lft = min_t(__u32,
831 ifp->valid_lft,
832 idev->cnf.temp_valid_lft);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900833 tmp_prefered_lft = min_t(__u32,
834 ifp->prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 idev->cnf.temp_prefered_lft - desync_factor / HZ);
836 tmp_plen = ifp->prefix_len;
837 max_addresses = idev->cnf.max_addresses;
838 tmp_cstamp = ifp->cstamp;
839 tmp_tstamp = ifp->tstamp;
840 spin_unlock_bh(&ifp->lock);
841
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700842 regen_advance = idev->cnf.regen_max_retry *
843 idev->cnf.dad_transmits *
844 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -0700846
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700847 /* A temporary address is created only if this calculated Preferred
848 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
849 * an implementation must not create a temporary address with a zero
850 * Preferred Lifetime.
851 */
852 if (tmp_prefered_lft <= regen_advance) {
853 in6_ifa_put(ifp);
854 in6_dev_put(idev);
855 ret = -1;
856 goto out;
857 }
858
Neil Horman95c385b2007-04-25 17:08:10 -0700859 addr_flags = IFA_F_TEMPORARY;
860 /* set in addrconf_prefix_rcv() */
861 if (ifp->flags & IFA_F_OPTIMISTIC)
862 addr_flags |= IFA_F_OPTIMISTIC;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900865 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -0700867 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
868 addr_flags) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (!ift || IS_ERR(ift)) {
870 in6_ifa_put(ifp);
871 in6_dev_put(idev);
872 printk(KERN_INFO
873 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
874 tmpaddr = &addr;
875 write_lock(&idev->lock);
876 goto retry;
877 }
878
879 spin_lock_bh(&ift->lock);
880 ift->ifpub = ifp;
881 ift->valid_lft = tmp_valid_lft;
882 ift->prefered_lft = tmp_prefered_lft;
883 ift->cstamp = tmp_cstamp;
884 ift->tstamp = tmp_tstamp;
885 spin_unlock_bh(&ift->lock);
886
887 addrconf_dad_start(ift, 0);
888 in6_ifa_put(ift);
889 in6_dev_put(idev);
890out:
891 return ret;
892}
893#endif
894
895/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800896 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800898struct ipv6_saddr_score {
899 int addr_type;
900 unsigned int attrs;
901 int matchlen;
Brian Haley0d27b422006-03-11 18:50:14 -0800902 int scope;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800903 unsigned int rule;
904};
905
906#define IPV6_SADDR_SCORE_LOCAL 0x0001
907#define IPV6_SADDR_SCORE_PREFERRED 0x0004
908#define IPV6_SADDR_SCORE_HOA 0x0008
909#define IPV6_SADDR_SCORE_OIF 0x0010
910#define IPV6_SADDR_SCORE_LABEL 0x0020
911#define IPV6_SADDR_SCORE_PRIVACY 0x0040
912
Dave Jonesb6f99a22007-03-22 12:27:49 -0700913static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800915 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
916 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
917 return 1;
918 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800921int ipv6_dev_get_saddr(struct net_device *daddr_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct in6_addr *daddr, struct in6_addr *saddr)
923{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800924 struct ipv6_saddr_score hiscore;
925 struct inet6_ifaddr *ifa_result = NULL;
926 int daddr_type = __ipv6_addr_type(daddr);
927 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
YOSHIFUJI Hideaki303065a2007-11-14 15:56:15 +0900928 int daddr_ifindex = daddr_dev ? daddr_dev->ifindex : 0;
929 u32 daddr_label = ipv6_addr_label(daddr, daddr_type, daddr_ifindex);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800930 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800932 memset(&hiscore, 0, sizeof(hiscore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 read_lock(&dev_base_lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700935 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800936
Eric W. Biederman881d9662007-09-17 11:56:21 -0700937 for_each_netdev(&init_net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800938 struct inet6_dev *idev;
939 struct inet6_ifaddr *ifa;
940
941 /* Rule 0: Candidate Source Address (section 4)
942 * - multicast and link-local destination address,
943 * the set of candidate source address MUST only
944 * include addresses assigned to interfaces
945 * belonging to the same link as the outgoing
946 * interface.
947 * (- For site-local destination addresses, the
948 * set of candidate source addresses MUST only
949 * include addresses assigned to interfaces
950 * belonging to the same site as the outgoing
951 * interface.)
952 */
953 if ((daddr_type & IPV6_ADDR_MULTICAST ||
954 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
955 daddr_dev && dev != daddr_dev)
956 continue;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800959 if (!idev)
960 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800962 read_lock_bh(&idev->lock);
963 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
964 struct ipv6_saddr_score score;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800966 score.addr_type = __ipv6_addr_type(&ifa->addr);
967
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900968 /* Rule 0:
969 * - Tentative Address (RFC2462 section 5.4)
970 * - A tentative address is not considered
971 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -0700972 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900973 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800974 * - In any case, anycast addresses, multicast
975 * addresses, and the unspecified address MUST
976 * NOT be included in a candidate set.
977 */
Neil Horman95c385b2007-04-25 17:08:10 -0700978 if ((ifa->flags & IFA_F_TENTATIVE) &&
979 (!(ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900980 continue;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800981 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
982 score.addr_type & IPV6_ADDR_MULTICAST)) {
983 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -0800984 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800985 "assigned as unicast address on %s",
986 dev->name);
987 continue;
988 }
989
990 score.attrs = 0;
991 score.matchlen = 0;
992 score.scope = 0;
993 score.rule = 0;
994
995 if (ifa_result == NULL) {
996 /* record it if the first available entry */
997 goto record_it;
998 }
999
1000 /* Rule 1: Prefer same address */
1001 if (hiscore.rule < 1) {
1002 if (ipv6_addr_equal(&ifa_result->addr, daddr))
1003 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
1004 hiscore.rule++;
1005 }
1006 if (ipv6_addr_equal(&ifa->addr, daddr)) {
1007 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
1008 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
1009 score.rule = 1;
1010 goto record_it;
1011 }
1012 } else {
1013 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
1014 continue;
1015 }
1016
1017 /* Rule 2: Prefer appropriate scope */
1018 if (hiscore.rule < 2) {
1019 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
1020 hiscore.rule++;
1021 }
1022 score.scope = __ipv6_addr_src_scope(score.addr_type);
1023 if (hiscore.scope < score.scope) {
1024 if (hiscore.scope < daddr_scope) {
1025 score.rule = 2;
1026 goto record_it;
1027 } else
1028 continue;
1029 } else if (score.scope < hiscore.scope) {
1030 if (score.scope < daddr_scope)
Brian Haleye55ffac2006-07-10 15:25:51 -07001031 break; /* addresses sorted by scope */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001032 else {
1033 score.rule = 2;
1034 goto record_it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Neil Horman95c385b2007-04-25 17:08:10 -07001038 /* Rule 3: Avoid deprecated and optimistic addresses */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001039 if (hiscore.rule < 3) {
1040 if (ipv6_saddr_preferred(hiscore.addr_type) ||
Neil Horman95c385b2007-04-25 17:08:10 -07001041 (((ifa_result->flags &
1042 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0)))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001043 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1044 hiscore.rule++;
1045 }
1046 if (ipv6_saddr_preferred(score.addr_type) ||
Jiri Kosina6ae5f982007-09-16 14:48:21 -07001047 (((ifa->flags &
Neil Horman95c385b2007-04-25 17:08:10 -07001048 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0))) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001049 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1050 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
1051 score.rule = 3;
1052 goto record_it;
1053 }
1054 } else {
1055 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
1056 continue;
1057 }
1058
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001059 /* Rule 4: Prefer home address */
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -07001060#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001061 if (hiscore.rule < 4) {
1062 if (ifa_result->flags & IFA_F_HOMEADDRESS)
1063 hiscore.attrs |= IPV6_SADDR_SCORE_HOA;
1064 hiscore.rule++;
1065 }
1066 if (ifa->flags & IFA_F_HOMEADDRESS) {
1067 score.attrs |= IPV6_SADDR_SCORE_HOA;
1068 if (!(ifa_result->flags & IFA_F_HOMEADDRESS)) {
1069 score.rule = 4;
1070 goto record_it;
1071 }
1072 } else {
1073 if (hiscore.attrs & IPV6_SADDR_SCORE_HOA)
1074 continue;
1075 }
1076#else
YOSHIFUJI Hideaki220bbd72005-11-28 22:27:11 -08001077 if (hiscore.rule < 4)
1078 hiscore.rule++;
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001079#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001080
1081 /* Rule 5: Prefer outgoing interface */
1082 if (hiscore.rule < 5) {
1083 if (daddr_dev == NULL ||
1084 daddr_dev == ifa_result->idev->dev)
1085 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
1086 hiscore.rule++;
1087 }
1088 if (daddr_dev == NULL ||
1089 daddr_dev == ifa->idev->dev) {
1090 score.attrs |= IPV6_SADDR_SCORE_OIF;
1091 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1092 score.rule = 5;
1093 goto record_it;
1094 }
1095 } else {
1096 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1097 continue;
1098 }
1099
1100 /* Rule 6: Prefer matching label */
1101 if (hiscore.rule < 6) {
YOSHIFUJI Hideakic1ee6562007-11-14 15:55:29 +09001102 if (ipv6_addr_label(&ifa_result->addr,
YOSHIFUJI Hideaki303065a2007-11-14 15:56:15 +09001103 hiscore.addr_type,
1104 ifa_result->idev->dev->ifindex) == daddr_label)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001105 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1106 hiscore.rule++;
1107 }
YOSHIFUJI Hideakic1ee6562007-11-14 15:55:29 +09001108 if (ipv6_addr_label(&ifa->addr,
YOSHIFUJI Hideaki303065a2007-11-14 15:56:15 +09001109 score.addr_type,
1110 ifa->idev->dev->ifindex) == daddr_label) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001111 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1112 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1113 score.rule = 6;
1114 goto record_it;
1115 }
1116 } else {
1117 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1118 continue;
1119 }
1120
Peter Chubb44fd0262005-11-09 13:05:47 -08001121#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001122 /* Rule 7: Prefer public address
1123 * Note: prefer temprary address if use_tempaddr >= 2
1124 */
1125 if (hiscore.rule < 7) {
1126 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1127 (ifa_result->idev->cnf.use_tempaddr >= 2))
1128 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1129 hiscore.rule++;
1130 }
1131 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1132 (ifa->idev->cnf.use_tempaddr >= 2)) {
1133 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1134 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1135 score.rule = 7;
1136 goto record_it;
1137 }
1138 } else {
1139 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1140 continue;
1141 }
YOSHIFUJI Hideaki5e2707f2006-06-22 01:41:18 -07001142#else
1143 if (hiscore.rule < 7)
1144 hiscore.rule++;
Peter Chubb44fd0262005-11-09 13:05:47 -08001145#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001146 /* Rule 8: Use longest matching prefix */
Yan Zheng12da2a42005-11-14 21:42:46 -08001147 if (hiscore.rule < 8) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001148 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
Yan Zheng12da2a42005-11-14 21:42:46 -08001149 hiscore.rule++;
1150 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001151 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1152 if (score.matchlen > hiscore.matchlen) {
1153 score.rule = 8;
1154 goto record_it;
1155 }
1156#if 0
1157 else if (score.matchlen < hiscore.matchlen)
1158 continue;
1159#endif
1160
1161 /* Final Rule: choose first available one */
1162 continue;
1163record_it:
1164 if (ifa_result)
1165 in6_ifa_put(ifa_result);
1166 in6_ifa_hold(ifa);
1167 ifa_result = ifa;
1168 hiscore = score;
1169 }
1170 read_unlock_bh(&idev->lock);
1171 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001172 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 read_unlock(&dev_base_lock);
1174
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001175 if (!ifa_result)
1176 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001177
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001178 ipv6_addr_copy(saddr, &ifa_result->addr);
1179 in6_ifa_put(ifa_result);
1180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183
1184int ipv6_get_saddr(struct dst_entry *dst,
1185 struct in6_addr *daddr, struct in6_addr *saddr)
1186{
YOSHIFUJI Hideaki7a3025b2006-10-13 16:17:25 +09001187 return ipv6_dev_get_saddr(dst ? ip6_dst_idev(dst)->dev : NULL, daddr, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001190EXPORT_SYMBOL(ipv6_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Neil Horman95c385b2007-04-25 17:08:10 -07001192int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1193 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 struct inet6_dev *idev;
1196 int err = -EADDRNOTAVAIL;
1197
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001198 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 if ((idev = __in6_dev_get(dev)) != NULL) {
1200 struct inet6_ifaddr *ifp;
1201
1202 read_lock_bh(&idev->lock);
1203 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
Neil Horman95c385b2007-04-25 17:08:10 -07001204 if (ifp->scope == IFA_LINK && !(ifp->flags & banned_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 ipv6_addr_copy(addr, &ifp->addr);
1206 err = 0;
1207 break;
1208 }
1209 }
1210 read_unlock_bh(&idev->lock);
1211 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001212 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return err;
1214}
1215
1216static int ipv6_count_addresses(struct inet6_dev *idev)
1217{
1218 int cnt = 0;
1219 struct inet6_ifaddr *ifp;
1220
1221 read_lock_bh(&idev->lock);
1222 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1223 cnt++;
1224 read_unlock_bh(&idev->lock);
1225 return cnt;
1226}
1227
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001228int ipv6_chk_addr(struct net *net, struct in6_addr *addr,
1229 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 struct inet6_ifaddr * ifp;
1232 u8 hash = ipv6_addr_hash(addr);
1233
1234 read_lock_bh(&addrconf_hash_lock);
1235 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001236 if (ifp->idev->dev->nd_net != net)
1237 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (ipv6_addr_equal(&ifp->addr, addr) &&
1239 !(ifp->flags&IFA_F_TENTATIVE)) {
1240 if (dev == NULL || ifp->idev->dev == dev ||
1241 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1242 break;
1243 }
1244 }
1245 read_unlock_bh(&addrconf_hash_lock);
1246 return ifp != NULL;
1247}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001248EXPORT_SYMBOL(ipv6_chk_addr);
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250static
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001251int ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1252 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
1254 struct inet6_ifaddr * ifp;
1255 u8 hash = ipv6_addr_hash(addr);
1256
1257 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001258 if (ifp->idev->dev->nd_net != net)
1259 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (ipv6_addr_equal(&ifp->addr, addr)) {
1261 if (dev == NULL || ifp->idev->dev == dev)
1262 break;
1263 }
1264 }
1265 return ifp != NULL;
1266}
1267
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001268struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, struct in6_addr *addr,
1269 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 struct inet6_ifaddr * ifp;
1272 u8 hash = ipv6_addr_hash(addr);
1273
1274 read_lock_bh(&addrconf_hash_lock);
1275 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001276 if (ifp->idev->dev->nd_net != net)
1277 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (ipv6_addr_equal(&ifp->addr, addr)) {
1279 if (dev == NULL || ifp->idev->dev == dev ||
1280 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1281 in6_ifa_hold(ifp);
1282 break;
1283 }
1284 }
1285 }
1286 read_unlock_bh(&addrconf_hash_lock);
1287
1288 return ifp;
1289}
1290
1291int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1292{
1293 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
Arnaldo Carvalho de Melo0fa1a532005-12-13 23:23:09 -08001294 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
Al Viro82103232006-09-27 18:44:10 -07001295 __be32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1296 __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 int sk_ipv6only = ipv6_only_sock(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001298 int sk2_ipv6only = inet_v6_ipv6only(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1300 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1301
1302 if (!sk2_rcv_saddr && !sk_ipv6only)
1303 return 1;
1304
1305 if (addr_type2 == IPV6_ADDR_ANY &&
1306 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1307 return 1;
1308
1309 if (addr_type == IPV6_ADDR_ANY &&
1310 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1311 return 1;
1312
1313 if (sk2_rcv_saddr6 &&
1314 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1315 return 1;
1316
1317 if (addr_type == IPV6_ADDR_MAPPED &&
1318 !sk2_ipv6only &&
1319 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1320 return 1;
1321
1322 return 0;
1323}
1324
1325/* Gets referenced address, destroys ifaddr */
1326
Adrian Bunk9f5336e2006-01-07 13:24:25 -08001327static void addrconf_dad_stop(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (ifp->flags&IFA_F_PERMANENT) {
1330 spin_lock_bh(&ifp->lock);
1331 addrconf_del_timer(ifp);
1332 ifp->flags |= IFA_F_TENTATIVE;
1333 spin_unlock_bh(&ifp->lock);
1334 in6_ifa_put(ifp);
1335#ifdef CONFIG_IPV6_PRIVACY
1336 } else if (ifp->flags&IFA_F_TEMPORARY) {
1337 struct inet6_ifaddr *ifpub;
1338 spin_lock_bh(&ifp->lock);
1339 ifpub = ifp->ifpub;
1340 if (ifpub) {
1341 in6_ifa_hold(ifpub);
1342 spin_unlock_bh(&ifp->lock);
1343 ipv6_create_tempaddr(ifpub, ifp);
1344 in6_ifa_put(ifpub);
1345 } else {
1346 spin_unlock_bh(&ifp->lock);
1347 }
1348 ipv6_del_addr(ifp);
1349#endif
1350 } else
1351 ipv6_del_addr(ifp);
1352}
1353
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001354void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1355{
1356 if (net_ratelimit())
1357 printk(KERN_INFO "%s: duplicate address detected!\n", ifp->idev->dev->name);
1358 addrconf_dad_stop(ifp);
1359}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361/* Join to solicited addr multicast group. */
1362
1363void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1364{
1365 struct in6_addr maddr;
1366
1367 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1368 return;
1369
1370 addrconf_addr_solict_mult(addr, &maddr);
1371 ipv6_dev_mc_inc(dev, &maddr);
1372}
1373
1374void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1375{
1376 struct in6_addr maddr;
1377
1378 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1379 return;
1380
1381 addrconf_addr_solict_mult(addr, &maddr);
1382 __ipv6_dev_mc_dec(idev, &maddr);
1383}
1384
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001385static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 struct in6_addr addr;
1388 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1389 if (ipv6_addr_any(&addr))
1390 return;
1391 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1392}
1393
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001394static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 struct in6_addr addr;
1397 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1398 if (ipv6_addr_any(&addr))
1399 return;
1400 __ipv6_dev_ac_dec(ifp->idev, &addr);
1401}
1402
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001403static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1404{
1405 if (dev->addr_len != ETH_ALEN)
1406 return -1;
1407 memcpy(eui, dev->dev_addr, 3);
1408 memcpy(eui + 5, dev->dev_addr + 3, 3);
1409
1410 /*
1411 * The zSeries OSA network cards can be shared among various
1412 * OS instances, but the OSA cards have only one MAC address.
1413 * This leads to duplicate address conflicts in conjunction
1414 * with IPv6 if more than one instance uses the same card.
1415 *
1416 * The driver for these cards can deliver a unique 16-bit
1417 * identifier for each instance sharing the same card. It is
1418 * placed instead of 0xFFFE in the interface identifier. The
1419 * "u" bit of the interface identifier is not inverted in this
1420 * case. Hence the resulting interface identifier has local
1421 * scope according to RFC2373.
1422 */
1423 if (dev->dev_id) {
1424 eui[3] = (dev->dev_id >> 8) & 0xFF;
1425 eui[4] = dev->dev_id & 0xFF;
1426 } else {
1427 eui[3] = 0xFF;
1428 eui[4] = 0xFE;
1429 eui[0] ^= 2;
1430 }
1431 return 0;
1432}
1433
1434static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1435{
1436 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1437 if (dev->addr_len != ARCNET_ALEN)
1438 return -1;
1439 memset(eui, 0, 7);
1440 eui[7] = *(u8*)dev->dev_addr;
1441 return 0;
1442}
1443
1444static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1445{
1446 if (dev->addr_len != INFINIBAND_ALEN)
1447 return -1;
1448 memcpy(eui, dev->dev_addr + 12, 8);
1449 eui[0] |= 2;
1450 return 0;
1451}
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1454{
1455 switch (dev->type) {
1456 case ARPHRD_ETHER:
1457 case ARPHRD_FDDI:
1458 case ARPHRD_IEEE802_TR:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001459 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001461 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001463 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001464 case ARPHRD_SIT:
1465 if (dev->priv_flags & IFF_ISATAP)
1466 return ipv6_isatap_eui64(eui, *(__be32 *)dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468 return -1;
1469}
1470
1471static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1472{
1473 int err = -1;
1474 struct inet6_ifaddr *ifp;
1475
1476 read_lock_bh(&idev->lock);
1477 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1478 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1479 memcpy(eui, ifp->addr.s6_addr+8, 8);
1480 err = 0;
1481 break;
1482 }
1483 }
1484 read_unlock_bh(&idev->lock);
1485 return err;
1486}
1487
1488#ifdef CONFIG_IPV6_PRIVACY
1489/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1490static int __ipv6_regen_rndid(struct inet6_dev *idev)
1491{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001493 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 /*
1497 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1498 * check if generated address is not inappropriate
1499 *
1500 * - Reserved subnet anycast (RFC 2526)
1501 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001502 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 * 00-00-5E-FE-xx-xx-xx-xx
1504 * - value 0
1505 * - XXX: already assigned to an address on the device
1506 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001507 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1509 (idev->rndid[7]&0x80))
1510 goto regen;
1511 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1512 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1513 goto regen;
1514 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1515 goto regen;
1516 }
1517
1518 return 0;
1519}
1520
1521static void ipv6_regen_rndid(unsigned long data)
1522{
1523 struct inet6_dev *idev = (struct inet6_dev *) data;
1524 unsigned long expires;
1525
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001526 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 write_lock_bh(&idev->lock);
1528
1529 if (idev->dead)
1530 goto out;
1531
1532 if (__ipv6_regen_rndid(idev) < 0)
1533 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001536 idev->cnf.temp_prefered_lft * HZ -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1538 if (time_before(expires, jiffies)) {
1539 printk(KERN_WARNING
1540 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1541 idev->dev->name);
1542 goto out;
1543 }
1544
1545 if (!mod_timer(&idev->regen_timer, expires))
1546 in6_dev_hold(idev);
1547
1548out:
1549 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001550 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 in6_dev_put(idev);
1552}
1553
1554static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1555 int ret = 0;
1556
1557 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1558 ret = __ipv6_regen_rndid(idev);
1559 return ret;
1560}
1561#endif
1562
1563/*
1564 * Add prefix route.
1565 */
1566
1567static void
1568addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001569 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Thomas Graf86872cb2006-08-22 00:01:08 -07001571 struct fib6_config cfg = {
1572 .fc_table = RT6_TABLE_PREFIX,
1573 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1574 .fc_ifindex = dev->ifindex,
1575 .fc_expires = expires,
1576 .fc_dst_len = plen,
1577 .fc_flags = RTF_UP | flags,
Benjamin Theryf1243c22008-02-26 18:10:03 -08001578 .fc_nlinfo.nl_net = &init_net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001579 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Thomas Graf86872cb2006-08-22 00:01:08 -07001581 ipv6_addr_copy(&cfg.fc_dst, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 /* Prevent useless cloning on PtP SIT.
1584 This thing is done here expecting that the whole
1585 class of non-broadcast devices need not cloning.
1586 */
Joerg Roedel0be669b2006-10-10 14:49:53 -07001587#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Thomas Graf86872cb2006-08-22 00:01:08 -07001588 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1589 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001590#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Thomas Graf86872cb2006-08-22 00:01:08 -07001592 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
1595/* Create "default" multicast route to the interface */
1596
1597static void addrconf_add_mroute(struct net_device *dev)
1598{
Thomas Graf86872cb2006-08-22 00:01:08 -07001599 struct fib6_config cfg = {
1600 .fc_table = RT6_TABLE_LOCAL,
1601 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1602 .fc_ifindex = dev->ifindex,
1603 .fc_dst_len = 8,
1604 .fc_flags = RTF_UP,
Benjamin Theryf1243c22008-02-26 18:10:03 -08001605 .fc_nlinfo.nl_net = &init_net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001606 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Thomas Graf86872cb2006-08-22 00:01:08 -07001608 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1609
1610 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Joerg Roedel0be669b2006-10-10 14:49:53 -07001613#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614static void sit_route_add(struct net_device *dev)
1615{
Thomas Graf86872cb2006-08-22 00:01:08 -07001616 struct fib6_config cfg = {
1617 .fc_table = RT6_TABLE_MAIN,
1618 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1619 .fc_ifindex = dev->ifindex,
1620 .fc_dst_len = 96,
1621 .fc_flags = RTF_UP | RTF_NONEXTHOP,
Benjamin Theryf1243c22008-02-26 18:10:03 -08001622 .fc_nlinfo.nl_net = &init_net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001623 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001626 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001628#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630static void addrconf_add_lroute(struct net_device *dev)
1631{
1632 struct in6_addr addr;
1633
1634 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1635 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1636}
1637
1638static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1639{
1640 struct inet6_dev *idev;
1641
1642 ASSERT_RTNL();
1643
1644 if ((idev = ipv6_find_idev(dev)) == NULL)
1645 return NULL;
1646
1647 /* Add default multicast route */
1648 addrconf_add_mroute(dev);
1649
1650 /* Add link local route */
1651 addrconf_add_lroute(dev);
1652 return idev;
1653}
1654
1655void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1656{
1657 struct prefix_info *pinfo;
1658 __u32 valid_lft;
1659 __u32 prefered_lft;
1660 int addr_type;
1661 unsigned long rt_expires;
1662 struct inet6_dev *in6_dev;
1663
1664 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (len < sizeof(struct prefix_info)) {
1667 ADBG(("addrconf: prefix option too short\n"));
1668 return;
1669 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 /*
1672 * Validation checks ([ADDRCONF], page 19)
1673 */
1674
1675 addr_type = ipv6_addr_type(&pinfo->prefix);
1676
1677 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1678 return;
1679
1680 valid_lft = ntohl(pinfo->valid);
1681 prefered_lft = ntohl(pinfo->prefered);
1682
1683 if (prefered_lft > valid_lft) {
1684 if (net_ratelimit())
1685 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1686 return;
1687 }
1688
1689 in6_dev = in6_dev_get(dev);
1690
1691 if (in6_dev == NULL) {
1692 if (net_ratelimit())
1693 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1694 return;
1695 }
1696
1697 /*
1698 * Two things going on here:
1699 * 1) Add routes for on-link prefixes
1700 * 2) Configure prefixes with the auto flag set
1701 */
1702
1703 /* Avoid arithmetic overflow. Really, we could
1704 save rt_expires in seconds, likely valid_lft,
1705 but it would require division in fib gc, that it
1706 not good.
1707 */
1708 if (valid_lft >= 0x7FFFFFFF/HZ)
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001709 rt_expires = 0x7FFFFFFF - (0x7FFFFFFF % HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 else
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001711 rt_expires = valid_lft * HZ;
1712
1713 /*
1714 * We convert this (in jiffies) to clock_t later.
1715 * Avoid arithmetic overflow there as well.
1716 * Overflow can happen only if HZ < USER_HZ.
1717 */
1718 if (HZ < USER_HZ && rt_expires > 0x7FFFFFFF / USER_HZ)
1719 rt_expires = 0x7FFFFFFF / USER_HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 if (pinfo->onlink) {
1722 struct rt6_info *rt;
1723 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1724
1725 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1726 if (rt->rt6i_flags&RTF_EXPIRES) {
1727 if (valid_lft == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001728 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 rt = NULL;
1730 } else {
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001731 rt->rt6i_expires = jiffies + rt_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733 }
1734 } else if (valid_lft) {
1735 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001736 dev, jiffies_to_clock_t(rt_expires), RTF_ADDRCONF|RTF_EXPIRES|RTF_PREFIX_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
1738 if (rt)
1739 dst_release(&rt->u.dst);
1740 }
1741
1742 /* Try to figure out our local address for this prefix */
1743
1744 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1745 struct inet6_ifaddr * ifp;
1746 struct in6_addr addr;
1747 int create = 0, update_lft = 0;
1748
1749 if (pinfo->prefix_len == 64) {
1750 memcpy(&addr, &pinfo->prefix, 8);
1751 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1752 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1753 in6_dev_put(in6_dev);
1754 return;
1755 }
1756 goto ok;
1757 }
1758 if (net_ratelimit())
1759 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1760 pinfo->prefix_len);
1761 in6_dev_put(in6_dev);
1762 return;
1763
1764ok:
1765
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001766 ifp = ipv6_get_ifaddr(&init_net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 if (ifp == NULL && valid_lft) {
1769 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001770 u32 addr_flags = 0;
1771
1772#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1773 if (in6_dev->cnf.optimistic_dad &&
1774 !ipv6_devconf.forwarding)
1775 addr_flags = IFA_F_OPTIMISTIC;
1776#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 /* Do not allow to create too much of autoconfigured
1779 * addresses; this would be too easy way to crash kernel.
1780 */
1781 if (!max_addresses ||
1782 ipv6_count_addresses(in6_dev) < max_addresses)
1783 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07001784 addr_type&IPV6_ADDR_SCOPE_MASK,
1785 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
1787 if (!ifp || IS_ERR(ifp)) {
1788 in6_dev_put(in6_dev);
1789 return;
1790 }
1791
1792 update_lft = create = 1;
1793 ifp->cstamp = jiffies;
1794 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1795 }
1796
1797 if (ifp) {
1798 int flags;
1799 unsigned long now;
1800#ifdef CONFIG_IPV6_PRIVACY
1801 struct inet6_ifaddr *ift;
1802#endif
1803 u32 stored_lft;
1804
1805 /* update lifetime (RFC2462 5.5.3 e) */
1806 spin_lock(&ifp->lock);
1807 now = jiffies;
1808 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1809 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1810 else
1811 stored_lft = 0;
1812 if (!update_lft && stored_lft) {
1813 if (valid_lft > MIN_VALID_LIFETIME ||
1814 valid_lft > stored_lft)
1815 update_lft = 1;
1816 else if (stored_lft <= MIN_VALID_LIFETIME) {
1817 /* valid_lft <= stored_lft is always true */
1818 /* XXX: IPsec */
1819 update_lft = 0;
1820 } else {
1821 valid_lft = MIN_VALID_LIFETIME;
1822 if (valid_lft < prefered_lft)
1823 prefered_lft = valid_lft;
1824 update_lft = 1;
1825 }
1826 }
1827
1828 if (update_lft) {
1829 ifp->valid_lft = valid_lft;
1830 ifp->prefered_lft = prefered_lft;
1831 ifp->tstamp = now;
1832 flags = ifp->flags;
1833 ifp->flags &= ~IFA_F_DEPRECATED;
1834 spin_unlock(&ifp->lock);
1835
1836 if (!(flags&IFA_F_TENTATIVE))
1837 ipv6_ifa_notify(0, ifp);
1838 } else
1839 spin_unlock(&ifp->lock);
1840
1841#ifdef CONFIG_IPV6_PRIVACY
1842 read_lock_bh(&in6_dev->lock);
1843 /* update all temporary addresses in the list */
1844 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1845 /*
1846 * When adjusting the lifetimes of an existing
1847 * temporary address, only lower the lifetimes.
1848 * Implementations must not increase the
1849 * lifetimes of an existing temporary address
1850 * when processing a Prefix Information Option.
1851 */
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07001852 if (ifp != ift->ifpub)
1853 continue;
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 spin_lock(&ift->lock);
1856 flags = ift->flags;
1857 if (ift->valid_lft > valid_lft &&
1858 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1859 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1860 if (ift->prefered_lft > prefered_lft &&
1861 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1862 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1863 spin_unlock(&ift->lock);
1864 if (!(flags&IFA_F_TENTATIVE))
1865 ipv6_ifa_notify(0, ift);
1866 }
1867
1868 if (create && in6_dev->cnf.use_tempaddr > 0) {
1869 /*
1870 * When a new public address is created as described in [ADDRCONF],
1871 * also create a new temporary address.
1872 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001873 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 ipv6_create_tempaddr(ifp, NULL);
1875 } else {
1876 read_unlock_bh(&in6_dev->lock);
1877 }
1878#endif
1879 in6_ifa_put(ifp);
1880 addrconf_verify(0);
1881 }
1882 }
1883 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1884 in6_dev_put(in6_dev);
1885}
1886
1887/*
1888 * Set destination address.
1889 * Special case for SIT interfaces where we create a new "virtual"
1890 * device.
1891 */
1892int addrconf_set_dstaddr(void __user *arg)
1893{
1894 struct in6_ifreq ireq;
1895 struct net_device *dev;
1896 int err = -EINVAL;
1897
1898 rtnl_lock();
1899
1900 err = -EFAULT;
1901 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1902 goto err_exit;
1903
Eric W. Biederman881d9662007-09-17 11:56:21 -07001904 dev = __dev_get_by_index(&init_net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 err = -ENODEV;
1907 if (dev == NULL)
1908 goto err_exit;
1909
Joerg Roedel0be669b2006-10-10 14:49:53 -07001910#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (dev->type == ARPHRD_SIT) {
1912 struct ifreq ifr;
1913 mm_segment_t oldfs;
1914 struct ip_tunnel_parm p;
1915
1916 err = -EADDRNOTAVAIL;
1917 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1918 goto err_exit;
1919
1920 memset(&p, 0, sizeof(p));
1921 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1922 p.iph.saddr = 0;
1923 p.iph.version = 4;
1924 p.iph.ihl = 5;
1925 p.iph.protocol = IPPROTO_IPV6;
1926 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08001927 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 oldfs = get_fs(); set_fs(KERNEL_DS);
1930 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1931 set_fs(oldfs);
1932
1933 if (err == 0) {
1934 err = -ENOBUFS;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001935 if ((dev = __dev_get_by_name(&init_net, p.name)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 goto err_exit;
1937 err = dev_open(dev);
1938 }
1939 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07001940#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942err_exit:
1943 rtnl_unlock();
1944 return err;
1945}
1946
1947/*
1948 * Manual configuration of address on an interface
1949 */
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001950static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07001951 __u8 ifa_flags, __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
1953 struct inet6_ifaddr *ifp;
1954 struct inet6_dev *idev;
1955 struct net_device *dev;
1956 int scope;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001957 u32 flags = RTF_EXPIRES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001960
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001961 /* check the lifetime */
1962 if (!valid_lft || prefered_lft > valid_lft)
1963 return -EINVAL;
1964
Eric W. Biederman881d9662007-09-17 11:56:21 -07001965 if ((dev = __dev_get_by_index(&init_net, ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 if ((idev = addrconf_add_dev(dev)) == NULL)
1969 return -ENOBUFS;
1970
1971 scope = ipv6_addr_scope(pfx);
1972
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001973 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001974 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001975 flags = 0;
1976 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001977 valid_lft = 0x7FFFFFFF/HZ;
1978
1979 if (prefered_lft == 0)
1980 ifa_flags |= IFA_F_DEPRECATED;
1981 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
1982 (prefered_lft != INFINITY_LIFE_TIME))
1983 prefered_lft = 0x7FFFFFFF/HZ;
1984
1985 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07001988 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001989 ifp->valid_lft = valid_lft;
1990 ifp->prefered_lft = prefered_lft;
1991 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07001992 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09001993
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001994 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
1995 jiffies_to_clock_t(valid_lft * HZ), flags);
Neil Horman95c385b2007-04-25 17:08:10 -07001996 /*
1997 * Note that section 3.1 of RFC 4429 indicates
1998 * that the Optimistic flag should not be set for
1999 * manually configured addresses
2000 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 addrconf_dad_start(ifp, 0);
2002 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002003 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return 0;
2005 }
2006
2007 return PTR_ERR(ifp);
2008}
2009
2010static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
2011{
2012 struct inet6_ifaddr *ifp;
2013 struct inet6_dev *idev;
2014 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002015
Eric W. Biederman881d9662007-09-17 11:56:21 -07002016 if ((dev = __dev_get_by_index(&init_net, ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return -ENODEV;
2018
2019 if ((idev = __in6_dev_get(dev)) == NULL)
2020 return -ENXIO;
2021
2022 read_lock_bh(&idev->lock);
2023 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
2024 if (ifp->prefix_len == plen &&
2025 ipv6_addr_equal(pfx, &ifp->addr)) {
2026 in6_ifa_hold(ifp);
2027 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 ipv6_del_addr(ifp);
2030
2031 /* If the last address is deleted administratively,
2032 disable IPv6 on this interface.
2033 */
2034 if (idev->addr_list == NULL)
2035 addrconf_ifdown(idev->dev, 1);
2036 return 0;
2037 }
2038 }
2039 read_unlock_bh(&idev->lock);
2040 return -EADDRNOTAVAIL;
2041}
2042
2043
2044int addrconf_add_ifaddr(void __user *arg)
2045{
2046 struct in6_ifreq ireq;
2047 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (!capable(CAP_NET_ADMIN))
2050 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2053 return -EFAULT;
2054
2055 rtnl_lock();
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002056 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002057 IFA_F_PERMANENT, INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 rtnl_unlock();
2059 return err;
2060}
2061
2062int addrconf_del_ifaddr(void __user *arg)
2063{
2064 struct in6_ifreq ireq;
2065 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (!capable(CAP_NET_ADMIN))
2068 return -EPERM;
2069
2070 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2071 return -EFAULT;
2072
2073 rtnl_lock();
2074 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
2075 rtnl_unlock();
2076 return err;
2077}
2078
Joerg Roedel0be669b2006-10-10 14:49:53 -07002079#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080static void sit_add_v4_addrs(struct inet6_dev *idev)
2081{
2082 struct inet6_ifaddr * ifp;
2083 struct in6_addr addr;
2084 struct net_device *dev;
2085 int scope;
2086
2087 ASSERT_RTNL();
2088
2089 memset(&addr, 0, sizeof(struct in6_addr));
2090 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2091
2092 if (idev->dev->flags&IFF_POINTOPOINT) {
2093 addr.s6_addr32[0] = htonl(0xfe800000);
2094 scope = IFA_LINK;
2095 } else {
2096 scope = IPV6_ADDR_COMPATv4;
2097 }
2098
2099 if (addr.s6_addr32[3]) {
2100 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
2101 if (!IS_ERR(ifp)) {
2102 spin_lock_bh(&ifp->lock);
2103 ifp->flags &= ~IFA_F_TENTATIVE;
2104 spin_unlock_bh(&ifp->lock);
2105 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2106 in6_ifa_put(ifp);
2107 }
2108 return;
2109 }
2110
Eric W. Biederman881d9662007-09-17 11:56:21 -07002111 for_each_netdev(&init_net, dev) {
Herbert Xue5ed6392005-10-03 14:35:55 -07002112 struct in_device * in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if (in_dev && (dev->flags & IFF_UP)) {
2114 struct in_ifaddr * ifa;
2115
2116 int flag = scope;
2117
2118 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2119 int plen;
2120
2121 addr.s6_addr32[3] = ifa->ifa_local;
2122
2123 if (ifa->ifa_scope == RT_SCOPE_LINK)
2124 continue;
2125 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2126 if (idev->dev->flags&IFF_POINTOPOINT)
2127 continue;
2128 flag |= IFA_HOST;
2129 }
2130 if (idev->dev->flags&IFF_POINTOPOINT)
2131 plen = 64;
2132 else
2133 plen = 96;
2134
2135 ifp = ipv6_add_addr(idev, &addr, plen, flag,
2136 IFA_F_PERMANENT);
2137 if (!IS_ERR(ifp)) {
2138 spin_lock_bh(&ifp->lock);
2139 ifp->flags &= ~IFA_F_TENTATIVE;
2140 spin_unlock_bh(&ifp->lock);
2141 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2142 in6_ifa_put(ifp);
2143 }
2144 }
2145 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002148#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150static void init_loopback(struct net_device *dev)
2151{
2152 struct inet6_dev *idev;
2153 struct inet6_ifaddr * ifp;
2154
2155 /* ::1 */
2156
2157 ASSERT_RTNL();
2158
2159 if ((idev = ipv6_find_idev(dev)) == NULL) {
2160 printk(KERN_DEBUG "init loopback: add_dev failed\n");
2161 return;
2162 }
2163
2164 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
2165 if (!IS_ERR(ifp)) {
2166 spin_lock_bh(&ifp->lock);
2167 ifp->flags &= ~IFA_F_TENTATIVE;
2168 spin_unlock_bh(&ifp->lock);
2169 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2170 in6_ifa_put(ifp);
2171 }
2172}
2173
2174static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2175{
2176 struct inet6_ifaddr * ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002177 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Neil Horman95c385b2007-04-25 17:08:10 -07002179#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2180 if (idev->cnf.optimistic_dad &&
2181 !ipv6_devconf.forwarding)
2182 addr_flags |= IFA_F_OPTIMISTIC;
2183#endif
2184
2185
2186 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002188 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 addrconf_dad_start(ifp, 0);
2190 in6_ifa_put(ifp);
2191 }
2192}
2193
2194static void addrconf_dev_config(struct net_device *dev)
2195{
2196 struct in6_addr addr;
2197 struct inet6_dev * idev;
2198
2199 ASSERT_RTNL();
2200
Herbert Xu74235a22007-06-14 13:02:55 -07002201 if ((dev->type != ARPHRD_ETHER) &&
2202 (dev->type != ARPHRD_FDDI) &&
2203 (dev->type != ARPHRD_IEEE802_TR) &&
2204 (dev->type != ARPHRD_ARCNET) &&
2205 (dev->type != ARPHRD_INFINIBAND)) {
2206 /* Alas, we support only Ethernet autoconfiguration. */
2207 return;
2208 }
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 idev = addrconf_add_dev(dev);
2211 if (idev == NULL)
2212 return;
2213
2214 memset(&addr, 0, sizeof(struct in6_addr));
2215 addr.s6_addr32[0] = htonl(0xFE800000);
2216
2217 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2218 addrconf_add_linklocal(idev, &addr);
2219}
2220
Joerg Roedel0be669b2006-10-10 14:49:53 -07002221#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222static void addrconf_sit_config(struct net_device *dev)
2223{
2224 struct inet6_dev *idev;
2225
2226 ASSERT_RTNL();
2227
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002228 /*
2229 * Configure the tunnel with one of our IPv4
2230 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 * our v4 addrs in the tunnel
2232 */
2233
2234 if ((idev = ipv6_find_idev(dev)) == NULL) {
2235 printk(KERN_DEBUG "init sit: add_dev failed\n");
2236 return;
2237 }
2238
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002239 if (dev->priv_flags & IFF_ISATAP) {
2240 struct in6_addr addr;
2241
2242 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2243 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2244 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2245 addrconf_add_linklocal(idev, &addr);
2246 return;
2247 }
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 sit_add_v4_addrs(idev);
2250
2251 if (dev->flags&IFF_POINTOPOINT) {
2252 addrconf_add_mroute(dev);
2253 addrconf_add_lroute(dev);
2254 } else
2255 sit_route_add(dev);
2256}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259static inline int
2260ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2261{
2262 struct in6_addr lladdr;
2263
Neil Horman95c385b2007-04-25 17:08:10 -07002264 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 addrconf_add_linklocal(idev, &lladdr);
2266 return 0;
2267 }
2268 return -1;
2269}
2270
2271static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2272{
2273 struct net_device *link_dev;
2274
2275 /* first try to inherit the link-local address from the link device */
2276 if (idev->dev->iflink &&
Eric W. Biederman881d9662007-09-17 11:56:21 -07002277 (link_dev = __dev_get_by_index(&init_net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (!ipv6_inherit_linklocal(idev, link_dev))
2279 return;
2280 }
2281 /* then try to inherit it from any device */
Eric W. Biederman881d9662007-09-17 11:56:21 -07002282 for_each_netdev(&init_net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (!ipv6_inherit_linklocal(idev, link_dev))
2284 return;
2285 }
2286 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2287}
2288
2289/*
2290 * Autoconfigure tunnel with a link-local address so routing protocols,
2291 * DHCPv6, MLD etc. can be run over the virtual link
2292 */
2293
2294static void addrconf_ip6_tnl_config(struct net_device *dev)
2295{
2296 struct inet6_dev *idev;
2297
2298 ASSERT_RTNL();
2299
2300 if ((idev = addrconf_add_dev(dev)) == NULL) {
2301 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2302 return;
2303 }
2304 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305}
2306
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002307static int addrconf_notify(struct notifier_block *this, unsigned long event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 void * data)
2309{
2310 struct net_device *dev = (struct net_device *) data;
Herbert Xu74235a22007-06-14 13:02:55 -07002311 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002312 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002313 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002315 if (dev->nd_net != &init_net)
2316 return NOTIFY_DONE;
2317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 switch(event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002319 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002320 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002321 idev = ipv6_add_dev(dev);
2322 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002323 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002324 }
2325 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002327 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002328 if (dev->flags & IFF_SLAVE)
2329 break;
2330
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002331 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002332 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002333 /* device is not ready yet. */
2334 printk(KERN_INFO
2335 "ADDRCONF(NETDEV_UP): %s: "
2336 "link is not ready\n",
2337 dev->name);
2338 break;
2339 }
Kristian Slavov99081042006-02-08 16:10:53 -08002340
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002341 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2342 idev = ipv6_add_dev(dev);
2343
Kristian Slavov99081042006-02-08 16:10:53 -08002344 if (idev)
2345 idev->if_flags |= IF_READY;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002346 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002347 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002348 /* device is still not ready. */
2349 break;
2350 }
2351
2352 if (idev) {
2353 if (idev->if_flags & IF_READY) {
2354 /* device is already configured. */
2355 break;
2356 }
2357 idev->if_flags |= IF_READY;
2358 }
2359
2360 printk(KERN_INFO
2361 "ADDRCONF(NETDEV_CHANGE): %s: "
2362 "link becomes ready\n",
2363 dev->name);
2364
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002365 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002366 }
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 switch(dev->type) {
Joerg Roedel0be669b2006-10-10 14:49:53 -07002369#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 case ARPHRD_SIT:
2371 addrconf_sit_config(dev);
2372 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002373#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 case ARPHRD_TUNNEL6:
2375 addrconf_ip6_tnl_config(dev);
2376 break;
2377 case ARPHRD_LOOPBACK:
2378 init_loopback(dev);
2379 break;
2380
2381 default:
2382 addrconf_dev_config(dev);
2383 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002386 if (run_pending)
2387 addrconf_dad_run(idev);
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 /* If the MTU changed during the interface down, when the
2390 interface up, the changed MTU must be reflected in the
2391 idev as well as routers.
2392 */
2393 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2394 rt6_mtu_change(dev, dev->mtu);
2395 idev->cnf.mtu6 = dev->mtu;
2396 }
2397 idev->tstamp = jiffies;
2398 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2399 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2400 stop IPv6 on this interface.
2401 */
2402 if (dev->mtu < IPV6_MIN_MTU)
2403 addrconf_ifdown(dev, event != NETDEV_DOWN);
2404 }
2405 break;
2406
2407 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002408 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 rt6_mtu_change(dev, dev->mtu);
2410 idev->cnf.mtu6 = dev->mtu;
2411 break;
2412 }
2413
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002414 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2415 idev = ipv6_add_dev(dev);
2416 if (idev)
2417 break;
2418 }
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2421
2422 case NETDEV_DOWN:
2423 case NETDEV_UNREGISTER:
2424 /*
2425 * Remove all addresses from this interface.
2426 */
2427 addrconf_ifdown(dev, event != NETDEV_DOWN);
2428 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002432 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002433 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002434 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002435 err = snmp6_register_dev(idev);
2436 if (err)
2437 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 return NOTIFY_OK;
2443}
2444
2445/*
2446 * addrconf module should be notified of a device going up
2447 */
2448static struct notifier_block ipv6_dev_notf = {
2449 .notifier_call = addrconf_notify,
2450 .priority = 0
2451};
2452
2453static int addrconf_ifdown(struct net_device *dev, int how)
2454{
2455 struct inet6_dev *idev;
2456 struct inet6_ifaddr *ifa, **bifa;
2457 int i;
2458
2459 ASSERT_RTNL();
2460
Denis V. Luneveb867572008-04-03 13:31:53 -07002461 if ((dev->flags & IFF_LOOPBACK) && how == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 how = 0;
2463
2464 rt6_ifdown(dev);
2465 neigh_ifdown(&nd_tbl, dev);
2466
2467 idev = __in6_dev_get(dev);
2468 if (idev == NULL)
2469 return -ENODEV;
2470
2471 /* Step 1: remove reference to ipv6 device from parent device.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002472 Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002474 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002476
2477 /* protected by rtnl_lock */
2478 rcu_assign_pointer(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 /* Step 1.5: remove snmp6 entry */
2481 snmp6_unregister_dev(idev);
2482
2483 }
2484
2485 /* Step 2: clear hash table */
2486 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2487 bifa = &inet6_addr_lst[i];
2488
2489 write_lock_bh(&addrconf_hash_lock);
2490 while ((ifa = *bifa) != NULL) {
2491 if (ifa->idev == idev) {
2492 *bifa = ifa->lst_next;
2493 ifa->lst_next = NULL;
2494 addrconf_del_timer(ifa);
2495 in6_ifa_put(ifa);
2496 continue;
2497 }
2498 bifa = &ifa->lst_next;
2499 }
2500 write_unlock_bh(&addrconf_hash_lock);
2501 }
2502
2503 write_lock_bh(&idev->lock);
2504
2505 /* Step 3: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002506 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002507 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 /* Step 4: clear address list */
2510#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07002511 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 in6_dev_put(idev);
2513
2514 /* clear tempaddr list */
2515 while ((ifa = idev->tempaddr_list) != NULL) {
2516 idev->tempaddr_list = ifa->tmp_next;
2517 ifa->tmp_next = NULL;
2518 ifa->dead = 1;
2519 write_unlock_bh(&idev->lock);
2520 spin_lock_bh(&ifa->lock);
2521
2522 if (ifa->ifpub) {
2523 in6_ifa_put(ifa->ifpub);
2524 ifa->ifpub = NULL;
2525 }
2526 spin_unlock_bh(&ifa->lock);
2527 in6_ifa_put(ifa);
2528 write_lock_bh(&idev->lock);
2529 }
2530#endif
2531 while ((ifa = idev->addr_list) != NULL) {
2532 idev->addr_list = ifa->if_next;
2533 ifa->if_next = NULL;
2534 ifa->dead = 1;
2535 addrconf_del_timer(ifa);
2536 write_unlock_bh(&idev->lock);
2537
2538 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Vlad Yasevich063ed362007-07-15 00:16:35 -07002539 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 in6_ifa_put(ifa);
2541
2542 write_lock_bh(&idev->lock);
2543 }
2544 write_unlock_bh(&idev->lock);
2545
2546 /* Step 5: Discard multicast list */
2547
Denis V. Lunev439e2382008-04-03 13:30:17 -07002548 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 ipv6_mc_destroy_dev(idev);
2550 else
2551 ipv6_mc_down(idev);
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 /* Shot the device (if unregistered) */
2556
Denis V. Lunev439e2382008-04-03 13:30:17 -07002557 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002558 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 neigh_parms_release(&nd_tbl, idev->nd_parms);
2560 neigh_ifdown(&nd_tbl, dev);
2561 in6_dev_put(idev);
2562 }
2563 return 0;
2564}
2565
2566static void addrconf_rs_timer(unsigned long data)
2567{
2568 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2569
2570 if (ifp->idev->cnf.forwarding)
2571 goto out;
2572
2573 if (ifp->idev->if_flags & IF_RA_RCVD) {
2574 /*
2575 * Announcement received after solicitation
2576 * was sent
2577 */
2578 goto out;
2579 }
2580
2581 spin_lock(&ifp->lock);
2582 if (ifp->probes++ < ifp->idev->cnf.rtr_solicits) {
2583 struct in6_addr all_routers;
2584
2585 /* The wait after the last probe can be shorter */
2586 addrconf_mod_timer(ifp, AC_RS,
2587 (ifp->probes == ifp->idev->cnf.rtr_solicits) ?
2588 ifp->idev->cnf.rtr_solicit_delay :
2589 ifp->idev->cnf.rtr_solicit_interval);
2590 spin_unlock(&ifp->lock);
2591
2592 ipv6_addr_all_routers(&all_routers);
2593
2594 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2595 } else {
2596 spin_unlock(&ifp->lock);
2597 /*
2598 * Note: we do not support deprecated "all on-link"
2599 * assumption any longer.
2600 */
2601 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2602 ifp->idev->dev->name);
2603 }
2604
2605out:
2606 in6_ifa_put(ifp);
2607}
2608
2609/*
2610 * Duplicate Address Detection
2611 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002612static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2613{
2614 unsigned long rand_num;
2615 struct inet6_dev *idev = ifp->idev;
2616
Neil Horman95c385b2007-04-25 17:08:10 -07002617 if (ifp->flags & IFA_F_OPTIMISTIC)
2618 rand_num = 0;
2619 else
2620 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2621
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002622 ifp->probes = idev->cnf.dad_transmits;
2623 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2624}
2625
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07002626static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
2628 struct inet6_dev *idev = ifp->idev;
2629 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631 addrconf_join_solict(dev, &ifp->addr);
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 read_lock_bh(&idev->lock);
2636 if (ifp->dead)
2637 goto out;
2638 spin_lock_bh(&ifp->lock);
2639
2640 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002641 !(ifp->flags&IFA_F_TENTATIVE) ||
2642 ifp->flags & IFA_F_NODAD) {
Neil Horman95c385b2007-04-25 17:08:10 -07002643 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 spin_unlock_bh(&ifp->lock);
2645 read_unlock_bh(&idev->lock);
2646
2647 addrconf_dad_completed(ifp);
2648 return;
2649 }
2650
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002651 if (!(idev->if_flags & IF_READY)) {
YOSHIFUJI Hideaki3dd3bf82005-12-23 11:23:21 -08002652 spin_unlock_bh(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002653 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002654 /*
2655 * If the defice is not ready:
2656 * - keep it tentative if it is a permanent address.
2657 * - otherwise, kill it.
2658 */
2659 in6_ifa_hold(ifp);
2660 addrconf_dad_stop(ifp);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002661 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002662 }
Neil Horman95c385b2007-04-25 17:08:10 -07002663
2664 /*
2665 * Optimistic nodes can start receiving
2666 * Frames right away
2667 */
2668 if(ifp->flags & IFA_F_OPTIMISTIC)
2669 ip6_ins_rt(ifp->rt);
2670
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002671 addrconf_dad_kick(ifp);
2672 spin_unlock_bh(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673out:
2674 read_unlock_bh(&idev->lock);
2675}
2676
2677static void addrconf_dad_timer(unsigned long data)
2678{
2679 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2680 struct inet6_dev *idev = ifp->idev;
2681 struct in6_addr unspec;
2682 struct in6_addr mcaddr;
2683
2684 read_lock_bh(&idev->lock);
2685 if (idev->dead) {
2686 read_unlock_bh(&idev->lock);
2687 goto out;
2688 }
2689 spin_lock_bh(&ifp->lock);
2690 if (ifp->probes == 0) {
2691 /*
2692 * DAD was successful
2693 */
2694
Neil Horman95c385b2007-04-25 17:08:10 -07002695 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 spin_unlock_bh(&ifp->lock);
2697 read_unlock_bh(&idev->lock);
2698
2699 addrconf_dad_completed(ifp);
2700
2701 goto out;
2702 }
2703
2704 ifp->probes--;
2705 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2706 spin_unlock_bh(&ifp->lock);
2707 read_unlock_bh(&idev->lock);
2708
2709 /* send a neighbour solicitation for our addr */
2710 memset(&unspec, 0, sizeof(unspec));
2711 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2712 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2713out:
2714 in6_ifa_put(ifp);
2715}
2716
2717static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2718{
2719 struct net_device * dev = ifp->idev->dev;
2720
2721 /*
2722 * Configure the address for reception. Now it is valid.
2723 */
2724
2725 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2726
2727 /* If added prefix is link local and forwarding is off,
2728 start sending router solicitations.
2729 */
2730
2731 if (ifp->idev->cnf.forwarding == 0 &&
2732 ifp->idev->cnf.rtr_solicits > 0 &&
2733 (dev->flags&IFF_LOOPBACK) == 0 &&
2734 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2735 struct in6_addr all_routers;
2736
2737 ipv6_addr_all_routers(&all_routers);
2738
2739 /*
2740 * If a host as already performed a random delay
2741 * [...] as part of DAD [...] there is no need
2742 * to delay again before sending the first RS
2743 */
2744 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2745
2746 spin_lock_bh(&ifp->lock);
2747 ifp->probes = 1;
2748 ifp->idev->if_flags |= IF_RS_SENT;
2749 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2750 spin_unlock_bh(&ifp->lock);
2751 }
2752}
2753
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002754static void addrconf_dad_run(struct inet6_dev *idev) {
2755 struct inet6_ifaddr *ifp;
2756
2757 read_lock_bh(&idev->lock);
2758 for (ifp = idev->addr_list; ifp; ifp = ifp->if_next) {
2759 spin_lock_bh(&ifp->lock);
2760 if (!(ifp->flags & IFA_F_TENTATIVE)) {
2761 spin_unlock_bh(&ifp->lock);
2762 continue;
2763 }
2764 spin_unlock_bh(&ifp->lock);
2765 addrconf_dad_kick(ifp);
2766 }
2767 read_unlock_bh(&idev->lock);
2768}
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770#ifdef CONFIG_PROC_FS
2771struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08002772 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 int bucket;
2774};
2775
2776static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2777{
2778 struct inet6_ifaddr *ifa = NULL;
2779 struct if6_iter_state *state = seq->private;
Daniel Lezcano3c400902008-01-10 22:42:49 -08002780 struct net *net = state->p.net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2783 ifa = inet6_addr_lst[state->bucket];
Daniel Lezcano3c400902008-01-10 22:42:49 -08002784
2785 while (ifa && ifa->idev->dev->nd_net != net)
2786 ifa = ifa->lst_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (ifa)
2788 break;
2789 }
2790 return ifa;
2791}
2792
2793static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2794{
2795 struct if6_iter_state *state = seq->private;
Daniel Lezcano3c400902008-01-10 22:42:49 -08002796 struct net *net = state->p.net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 ifa = ifa->lst_next;
2799try_again:
Daniel Lezcano3c400902008-01-10 22:42:49 -08002800 if (ifa) {
2801 if (ifa->idev->dev->nd_net != net) {
2802 ifa = ifa->lst_next;
2803 goto try_again;
2804 }
2805 }
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2808 ifa = inet6_addr_lst[state->bucket];
2809 goto try_again;
2810 }
Daniel Lezcano3c400902008-01-10 22:42:49 -08002811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 return ifa;
2813}
2814
2815static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2816{
2817 struct inet6_ifaddr *ifa = if6_get_first(seq);
2818
2819 if (ifa)
2820 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2821 --pos;
2822 return pos ? NULL : ifa;
2823}
2824
2825static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002826 __acquires(addrconf_hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827{
2828 read_lock_bh(&addrconf_hash_lock);
2829 return if6_get_idx(seq, *pos);
2830}
2831
2832static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2833{
2834 struct inet6_ifaddr *ifa;
2835
2836 ifa = if6_get_next(seq, v);
2837 ++*pos;
2838 return ifa;
2839}
2840
2841static void if6_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002842 __releases(addrconf_hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
2844 read_unlock_bh(&addrconf_hash_lock);
2845}
2846
2847static int if6_seq_show(struct seq_file *seq, void *v)
2848{
2849 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2850 seq_printf(seq,
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002851 NIP6_SEQFMT " %02x %02x %02x %02x %8s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 NIP6(ifp->addr),
2853 ifp->idev->dev->ifindex,
2854 ifp->prefix_len,
2855 ifp->scope,
2856 ifp->flags,
2857 ifp->idev->dev->name);
2858 return 0;
2859}
2860
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002861static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 .start = if6_seq_start,
2863 .next = if6_seq_next,
2864 .show = if6_seq_show,
2865 .stop = if6_seq_stop,
2866};
2867
2868static int if6_seq_open(struct inode *inode, struct file *file)
2869{
Daniel Lezcano3c400902008-01-10 22:42:49 -08002870 return seq_open_net(inode, file, &if6_seq_ops,
2871 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872}
2873
Arjan van de Ven9a321442007-02-12 00:55:35 -08002874static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 .owner = THIS_MODULE,
2876 .open = if6_seq_open,
2877 .read = seq_read,
2878 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08002879 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880};
2881
Daniel Lezcano3c400902008-01-10 22:42:49 -08002882static int if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
Daniel Lezcano3c400902008-01-10 22:42:49 -08002884 if (!proc_net_fops_create(net, "if_inet6", S_IRUGO, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 return -ENOMEM;
2886 return 0;
2887}
2888
Daniel Lezcano3c400902008-01-10 22:42:49 -08002889static void if6_proc_net_exit(struct net *net)
2890{
2891 proc_net_remove(net, "if_inet6");
2892}
2893
2894static struct pernet_operations if6_proc_net_ops = {
2895 .init = if6_proc_net_init,
2896 .exit = if6_proc_net_exit,
2897};
2898
2899int __init if6_proc_init(void)
2900{
2901 return register_pernet_subsys(&if6_proc_net_ops);
2902}
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904void if6_proc_exit(void)
2905{
Daniel Lezcano3c400902008-01-10 22:42:49 -08002906 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907}
2908#endif /* CONFIG_PROC_FS */
2909
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -07002910#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07002911/* Check if address is a home address configured on any interface. */
Daniel Lezcano389f6612008-01-10 22:44:40 -08002912int ipv6_chk_home_addr(struct net *net, struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07002913{
2914 int ret = 0;
2915 struct inet6_ifaddr * ifp;
2916 u8 hash = ipv6_addr_hash(addr);
2917 read_lock_bh(&addrconf_hash_lock);
2918 for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
Daniel Lezcano389f6612008-01-10 22:44:40 -08002919 if (ifp->idev->dev->nd_net != net)
2920 continue;
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07002921 if (ipv6_addr_cmp(&ifp->addr, addr) == 0 &&
2922 (ifp->flags & IFA_F_HOMEADDRESS)) {
2923 ret = 1;
2924 break;
2925 }
2926 }
2927 read_unlock_bh(&addrconf_hash_lock);
2928 return ret;
2929}
2930#endif
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932/*
2933 * Periodic address status verification
2934 */
2935
2936static void addrconf_verify(unsigned long foo)
2937{
2938 struct inet6_ifaddr *ifp;
2939 unsigned long now, next;
2940 int i;
2941
2942 spin_lock_bh(&addrconf_verify_lock);
2943 now = jiffies;
2944 next = now + ADDR_CHECK_FREQUENCY;
2945
2946 del_timer(&addr_chk_timer);
2947
2948 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2949
2950restart:
Yan Zheng5d5780d2005-11-20 13:42:20 -08002951 read_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2953 unsigned long age;
2954#ifdef CONFIG_IPV6_PRIVACY
2955 unsigned long regen_advance;
2956#endif
2957
2958 if (ifp->flags & IFA_F_PERMANENT)
2959 continue;
2960
2961 spin_lock(&ifp->lock);
2962 age = (now - ifp->tstamp) / HZ;
2963
2964#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002965 regen_advance = ifp->idev->cnf.regen_max_retry *
2966 ifp->idev->cnf.dad_transmits *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 ifp->idev->nd_parms->retrans_time / HZ;
2968#endif
2969
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002970 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
2971 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 spin_unlock(&ifp->lock);
2973 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002974 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 ipv6_del_addr(ifp);
2976 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002977 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
2978 spin_unlock(&ifp->lock);
2979 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 } else if (age >= ifp->prefered_lft) {
2981 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2982 int deprecate = 0;
2983
2984 if (!(ifp->flags&IFA_F_DEPRECATED)) {
2985 deprecate = 1;
2986 ifp->flags |= IFA_F_DEPRECATED;
2987 }
2988
2989 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
2990 next = ifp->tstamp + ifp->valid_lft * HZ;
2991
2992 spin_unlock(&ifp->lock);
2993
2994 if (deprecate) {
2995 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002996 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
2998 ipv6_ifa_notify(0, ifp);
2999 in6_ifa_put(ifp);
3000 goto restart;
3001 }
3002#ifdef CONFIG_IPV6_PRIVACY
3003 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3004 !(ifp->flags&IFA_F_TENTATIVE)) {
3005 if (age >= ifp->prefered_lft - regen_advance) {
3006 struct inet6_ifaddr *ifpub = ifp->ifpub;
3007 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3008 next = ifp->tstamp + ifp->prefered_lft * HZ;
3009 if (!ifp->regen_count && ifpub) {
3010 ifp->regen_count++;
3011 in6_ifa_hold(ifp);
3012 in6_ifa_hold(ifpub);
3013 spin_unlock(&ifp->lock);
Yan Zheng5d5780d2005-11-20 13:42:20 -08003014 read_unlock(&addrconf_hash_lock);
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003015 spin_lock(&ifpub->lock);
3016 ifpub->regen_count = 0;
3017 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 ipv6_create_tempaddr(ifpub, ifp);
3019 in6_ifa_put(ifpub);
3020 in6_ifa_put(ifp);
3021 goto restart;
3022 }
3023 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3024 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3025 spin_unlock(&ifp->lock);
3026#endif
3027 } else {
3028 /* ifp->prefered_lft <= ifp->valid_lft */
3029 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3030 next = ifp->tstamp + ifp->prefered_lft * HZ;
3031 spin_unlock(&ifp->lock);
3032 }
3033 }
Yan Zheng5d5780d2005-11-20 13:42:20 -08003034 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 }
3036
3037 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
3038 add_timer(&addr_chk_timer);
3039 spin_unlock_bh(&addrconf_verify_lock);
3040}
3041
Thomas Graf461d8832006-09-18 00:09:49 -07003042static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3043{
3044 struct in6_addr *pfx = NULL;
3045
3046 if (addr)
3047 pfx = nla_data(addr);
3048
3049 if (local) {
3050 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3051 pfx = NULL;
3052 else
3053 pfx = nla_data(local);
3054 }
3055
3056 return pfx;
3057}
3058
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003059static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003060 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3061 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3062 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3063};
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065static int
3066inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3067{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003068 struct net *net = skb->sk->sk_net;
Thomas Grafb933f712006-09-18 00:10:19 -07003069 struct ifaddrmsg *ifm;
3070 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003072 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
Denis V. Lunevb8542722007-12-01 00:21:31 +11003074 if (net != &init_net)
3075 return -EINVAL;
3076
Thomas Grafb933f712006-09-18 00:10:19 -07003077 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3078 if (err < 0)
3079 return err;
3080
3081 ifm = nlmsg_data(nlh);
3082 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 if (pfx == NULL)
3084 return -EINVAL;
3085
3086 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
3087}
3088
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003089static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3090 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003091{
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003092 u32 flags = RTF_EXPIRES;
3093
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003094 if (!valid_lft || (prefered_lft > valid_lft))
3095 return -EINVAL;
3096
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003097 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003098 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003099 flags = 0;
3100 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003101 valid_lft = 0x7FFFFFFF/HZ;
3102
3103 if (prefered_lft == 0)
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003104 ifa_flags |= IFA_F_DEPRECATED;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003105 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
3106 (prefered_lft != INFINITY_LIFE_TIME))
3107 prefered_lft = 0x7FFFFFFF/HZ;
3108
3109 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003110 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 +09003111 ifp->tstamp = jiffies;
3112 ifp->valid_lft = valid_lft;
3113 ifp->prefered_lft = prefered_lft;
3114
3115 spin_unlock_bh(&ifp->lock);
3116 if (!(ifp->flags&IFA_F_TENTATIVE))
3117 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003118
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003119 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3120 jiffies_to_clock_t(valid_lft * HZ), flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003121 addrconf_verify(0);
3122
3123 return 0;
3124}
3125
3126static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3128{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003129 struct net *net = skb->sk->sk_net;
Thomas Graf461d8832006-09-18 00:09:49 -07003130 struct ifaddrmsg *ifm;
3131 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003133 struct inet6_ifaddr *ifa;
3134 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003135 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3136 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003137 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Denis V. Lunevb8542722007-12-01 00:21:31 +11003139 if (net != &init_net)
3140 return -EINVAL;
3141
Thomas Graf461d8832006-09-18 00:09:49 -07003142 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3143 if (err < 0)
3144 return err;
3145
3146 ifm = nlmsg_data(nlh);
3147 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 if (pfx == NULL)
3149 return -EINVAL;
3150
Thomas Graf461d8832006-09-18 00:09:49 -07003151 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003152 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003153
3154 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003155 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003156 preferred_lft = ci->ifa_prefered;
3157 } else {
3158 preferred_lft = INFINITY_LIFE_TIME;
3159 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003160 }
3161
Eric W. Biederman881d9662007-09-17 11:56:21 -07003162 dev = __dev_get_by_index(&init_net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003163 if (dev == NULL)
3164 return -ENODEV;
3165
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003166 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003167 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003168
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003169 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003170 if (ifa == NULL) {
3171 /*
3172 * It would be best to check for !NLM_F_CREATE here but
3173 * userspace alreay relies on not having to provide this.
3174 */
3175 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003176 ifa_flags, preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003177 }
3178
Thomas Graf7198f8c2006-09-18 00:13:46 -07003179 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3180 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3181 err = -EEXIST;
3182 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003183 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003184
3185 in6_ifa_put(ifa);
3186
3187 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
3189
Thomas Graf101bb222006-09-18 00:11:52 -07003190static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3191 u8 scope, int ifindex)
3192{
3193 struct ifaddrmsg *ifm;
3194
3195 ifm = nlmsg_data(nlh);
3196 ifm->ifa_family = AF_INET6;
3197 ifm->ifa_prefixlen = prefixlen;
3198 ifm->ifa_flags = flags;
3199 ifm->ifa_scope = scope;
3200 ifm->ifa_index = ifindex;
3201}
3202
Thomas Graf85486af2006-09-18 00:11:24 -07003203static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3204 unsigned long tstamp, u32 preferred, u32 valid)
3205{
3206 struct ifa_cacheinfo ci;
3207
3208 ci.cstamp = (u32)(TIME_DELTA(cstamp, INITIAL_JIFFIES) / HZ * 100
3209 + TIME_DELTA(cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3210 ci.tstamp = (u32)(TIME_DELTA(tstamp, INITIAL_JIFFIES) / HZ * 100
3211 + TIME_DELTA(tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3212 ci.ifa_prefered = preferred;
3213 ci.ifa_valid = valid;
3214
3215 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3216}
3217
Thomas Graf101bb222006-09-18 00:11:52 -07003218static inline int rt_scope(int ifa_scope)
3219{
3220 if (ifa_scope & IFA_HOST)
3221 return RT_SCOPE_HOST;
3222 else if (ifa_scope & IFA_LINK)
3223 return RT_SCOPE_LINK;
3224 else if (ifa_scope & IFA_SITE)
3225 return RT_SCOPE_SITE;
3226 else
3227 return RT_SCOPE_UNIVERSE;
3228}
3229
Thomas Graf0ab68032006-09-18 00:12:35 -07003230static inline int inet6_ifaddr_msgsize(void)
3231{
Thomas Graf339bf982006-11-10 14:10:15 -08003232 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3233 + nla_total_size(16) /* IFA_ADDRESS */
3234 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003235}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003238 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003241 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
Thomas Graf0ab68032006-09-18 00:12:35 -07003243 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3244 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003245 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003246
Thomas Graf101bb222006-09-18 00:11:52 -07003247 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3248 ifa->idev->dev->ifindex);
3249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003251 preferred = ifa->prefered_lft;
3252 valid = ifa->valid_lft;
3253 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 long tval = (jiffies - ifa->tstamp)/HZ;
Thomas Graf85486af2006-09-18 00:11:24 -07003255 preferred -= tval;
3256 if (valid != INFINITY_LIFE_TIME)
3257 valid -= tval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 }
3259 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003260 preferred = INFINITY_LIFE_TIME;
3261 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 }
Thomas Graf85486af2006-09-18 00:11:24 -07003263
Thomas Graf0ab68032006-09-18 00:12:35 -07003264 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003265 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3266 nlmsg_cancel(skb, nlh);
3267 return -EMSGSIZE;
3268 }
Thomas Graf85486af2006-09-18 00:11:24 -07003269
Thomas Graf0ab68032006-09-18 00:12:35 -07003270 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271}
3272
3273static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07003274 u32 pid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003277 u8 scope = RT_SCOPE_UNIVERSE;
3278 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Thomas Graf101bb222006-09-18 00:11:52 -07003280 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3281 scope = RT_SCOPE_SITE;
3282
Thomas Graf0ab68032006-09-18 00:12:35 -07003283 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3284 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003285 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003286
Thomas Graf101bb222006-09-18 00:11:52 -07003287 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003288 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3289 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003290 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3291 nlmsg_cancel(skb, nlh);
3292 return -EMSGSIZE;
3293 }
Thomas Graf85486af2006-09-18 00:11:24 -07003294
Thomas Graf0ab68032006-09-18 00:12:35 -07003295 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296}
3297
3298static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003299 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003302 u8 scope = RT_SCOPE_UNIVERSE;
3303 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Thomas Graf101bb222006-09-18 00:11:52 -07003305 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3306 scope = RT_SCOPE_SITE;
3307
Thomas Graf0ab68032006-09-18 00:12:35 -07003308 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3309 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003310 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003311
Thomas Graf101bb222006-09-18 00:11:52 -07003312 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003313 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3314 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003315 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3316 nlmsg_cancel(skb, nlh);
3317 return -EMSGSIZE;
3318 }
Thomas Graf85486af2006-09-18 00:11:24 -07003319
Thomas Graf0ab68032006-09-18 00:12:35 -07003320 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321}
3322
3323enum addr_type_t
3324{
3325 UNICAST_ADDR,
3326 MULTICAST_ADDR,
3327 ANYCAST_ADDR,
3328};
3329
3330static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3331 enum addr_type_t type)
3332{
3333 int idx, ip_idx;
3334 int s_idx, s_ip_idx;
3335 int err = 1;
3336 struct net_device *dev;
3337 struct inet6_dev *idev = NULL;
3338 struct inet6_ifaddr *ifa;
3339 struct ifmcaddr6 *ifmca;
3340 struct ifacaddr6 *ifaca;
3341
3342 s_idx = cb->args[0];
3343 s_ip_idx = ip_idx = cb->args[1];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003344
Pavel Emelianov7562f872007-05-03 15:13:45 -07003345 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003346 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003348 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 if (idx > s_idx)
3350 s_ip_idx = 0;
3351 ip_idx = 0;
3352 if ((idev = in6_dev_get(dev)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003353 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 read_lock_bh(&idev->lock);
3355 switch (type) {
3356 case UNICAST_ADDR:
YOSHIFUJI Hideakiae9cda52005-06-28 13:00:30 -07003357 /* unicast address incl. temp addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 for (ifa = idev->addr_list; ifa;
3359 ifa = ifa->if_next, ip_idx++) {
3360 if (ip_idx < s_ip_idx)
3361 continue;
YOSHIFUJI Hideaki5d5619b2008-01-22 17:29:40 +09003362 err = inet6_fill_ifaddr(skb, ifa,
3363 NETLINK_CB(cb->skb).pid,
3364 cb->nlh->nlmsg_seq,
3365 RTM_NEWADDR,
3366 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 break;
3369 case MULTICAST_ADDR:
3370 /* multicast address */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003371 for (ifmca = idev->mc_list; ifmca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 ifmca = ifmca->next, ip_idx++) {
3373 if (ip_idx < s_ip_idx)
3374 continue;
YOSHIFUJI Hideaki5d5619b2008-01-22 17:29:40 +09003375 err = inet6_fill_ifmcaddr(skb, ifmca,
3376 NETLINK_CB(cb->skb).pid,
3377 cb->nlh->nlmsg_seq,
3378 RTM_GETMULTICAST,
3379 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 }
3381 break;
3382 case ANYCAST_ADDR:
3383 /* anycast address */
3384 for (ifaca = idev->ac_list; ifaca;
3385 ifaca = ifaca->aca_next, ip_idx++) {
3386 if (ip_idx < s_ip_idx)
3387 continue;
YOSHIFUJI Hideaki5d5619b2008-01-22 17:29:40 +09003388 err = inet6_fill_ifacaddr(skb, ifaca,
3389 NETLINK_CB(cb->skb).pid,
3390 cb->nlh->nlmsg_seq,
3391 RTM_GETANYCAST,
3392 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 }
3394 break;
3395 default:
3396 break;
3397 }
3398 read_unlock_bh(&idev->lock);
3399 in6_dev_put(idev);
YOSHIFUJI Hideaki5d5619b2008-01-22 17:29:40 +09003400
3401 if (err <= 0)
3402 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -07003403cont:
3404 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 cb->args[0] = idx;
3407 cb->args[1] = ip_idx;
3408 return skb->len;
3409}
3410
3411static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3412{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003413 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003415
3416 if (net != &init_net)
3417 return 0;
3418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 return inet6_dump_addr(skb, cb, type);
3420}
3421
3422static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3423{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003424 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003426
3427 if (net != &init_net)
3428 return 0;
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 return inet6_dump_addr(skb, cb, type);
3431}
3432
3433
3434static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3435{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003436 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003438
3439 if (net != &init_net)
3440 return 0;
3441
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 return inet6_dump_addr(skb, cb, type);
3443}
3444
Thomas Graf1b29fc22006-09-18 00:10:50 -07003445static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr* nlh,
3446 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003447{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003448 struct net *net = in_skb->sk->sk_net;
Thomas Graf1b29fc22006-09-18 00:10:50 -07003449 struct ifaddrmsg *ifm;
3450 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003451 struct in6_addr *addr = NULL;
3452 struct net_device *dev = NULL;
3453 struct inet6_ifaddr *ifa;
3454 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003455 int err;
3456
Denis V. Lunevb8542722007-12-01 00:21:31 +11003457 if (net != &init_net)
3458 return -EINVAL;
3459
Thomas Graf1b29fc22006-09-18 00:10:50 -07003460 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3461 if (err < 0)
3462 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003463
Thomas Graf1b29fc22006-09-18 00:10:50 -07003464 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3465 if (addr == NULL) {
3466 err = -EINVAL;
3467 goto errout;
3468 }
3469
3470 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003471 if (ifm->ifa_index)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003472 dev = __dev_get_by_index(&init_net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003473
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003474 if ((ifa = ipv6_get_ifaddr(net, addr, dev, 1)) == NULL) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003475 err = -EADDRNOTAVAIL;
3476 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003477 }
3478
Thomas Graf0ab68032006-09-18 00:12:35 -07003479 if ((skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL)) == NULL) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003480 err = -ENOBUFS;
3481 goto errout_ifa;
3482 }
3483
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003484 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).pid,
3485 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003486 if (err < 0) {
3487 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3488 WARN_ON(err == -EMSGSIZE);
3489 kfree_skb(skb);
3490 goto errout_ifa;
3491 }
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003492 err = rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003493errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003494 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003495errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003496 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003497}
3498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3500{
3501 struct sk_buff *skb;
Thomas Graf5d620262006-08-15 00:35:02 -07003502 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
Thomas Graf0ab68032006-09-18 00:12:35 -07003504 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003505 if (skb == NULL)
3506 goto errout;
3507
3508 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003509 if (err < 0) {
3510 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3511 WARN_ON(err == -EMSGSIZE);
3512 kfree_skb(skb);
3513 goto errout;
3514 }
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003515 err = rtnl_notify(skb, &init_net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003516errout:
3517 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003518 rtnl_set_sk_err(&init_net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519}
3520
Dave Jonesb6f99a22007-03-22 12:27:49 -07003521static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 __s32 *array, int bytes)
3523{
Thomas Graf04561c12006-11-14 19:53:58 -08003524 BUG_ON(bytes < (DEVCONF_MAX * 4));
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 memset(array, 0, bytes);
3527 array[DEVCONF_FORWARDING] = cnf->forwarding;
3528 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3529 array[DEVCONF_MTU6] = cnf->mtu6;
3530 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3531 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3532 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3533 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3534 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3535 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3536 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3537 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3538#ifdef CONFIG_IPV6_PRIVACY
3539 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3540 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3541 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3542 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3543 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3544#endif
3545 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003546 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003547 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003548#ifdef CONFIG_IPV6_ROUTER_PREF
3549 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08003550 array[DEVCONF_RTR_PROBE_INTERVAL] = cnf->rtr_probe_interval;
Neil Hormanfa03ef32007-01-30 14:30:10 -08003551#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08003552 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
3553#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003554#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07003555 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07003556 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07003557#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3558 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
3559#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560}
3561
Thomas Graf339bf982006-11-10 14:10:15 -08003562static inline size_t inet6_if_nlmsg_size(void)
3563{
3564 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3565 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3566 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3567 + nla_total_size(4) /* IFLA_MTU */
3568 + nla_total_size(4) /* IFLA_LINK */
3569 + nla_total_size( /* IFLA_PROTINFO */
3570 nla_total_size(4) /* IFLA_INET6_FLAGS */
3571 + nla_total_size(sizeof(struct ifla_cacheinfo))
3572 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003573 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
3574 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
Thomas Graf339bf982006-11-10 14:10:15 -08003575 );
3576}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003577
Herbert Xu7f7d9a62007-04-24 21:54:09 -07003578static inline void __snmp6_fill_stats(u64 *stats, void **mib, int items,
3579 int bytes)
3580{
3581 int i;
3582 int pad = bytes - sizeof(u64) * items;
3583 BUG_ON(pad < 0);
3584
3585 /* Use put_unaligned() because stats may not be aligned for u64. */
3586 put_unaligned(items, &stats[0]);
3587 for (i = 1; i < items; i++)
3588 put_unaligned(snmp_fold_field(mib, i), &stats[i]);
3589
3590 memset(&stats[items], 0, pad);
3591}
3592
3593static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
3594 int bytes)
3595{
3596 switch(attrtype) {
3597 case IFLA_INET6_STATS:
3598 __snmp6_fill_stats(stats, (void **)idev->stats.ipv6, IPSTATS_MIB_MAX, bytes);
3599 break;
3600 case IFLA_INET6_ICMP6STATS:
3601 __snmp6_fill_stats(stats, (void **)idev->stats.icmpv6, ICMP6_MIB_MAX, bytes);
3602 break;
3603 }
3604}
3605
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003606static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003607 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
Thomas Graf04561c12006-11-14 19:53:58 -08003609 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003610 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08003611 struct ifinfomsg *hdr;
3612 struct nlmsghdr *nlh;
3613 void *protoinfo;
3614 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Thomas Graf04561c12006-11-14 19:53:58 -08003616 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
3617 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003618 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Thomas Graf04561c12006-11-14 19:53:58 -08003620 hdr = nlmsg_data(nlh);
3621 hdr->ifi_family = AF_INET6;
3622 hdr->__ifi_pad = 0;
3623 hdr->ifi_type = dev->type;
3624 hdr->ifi_index = dev->ifindex;
3625 hdr->ifi_flags = dev_get_flags(dev);
3626 hdr->ifi_change = 0;
3627
3628 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
3630 if (dev->addr_len)
Thomas Graf04561c12006-11-14 19:53:58 -08003631 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
Thomas Graf04561c12006-11-14 19:53:58 -08003633 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 if (dev->ifindex != dev->iflink)
Thomas Graf04561c12006-11-14 19:53:58 -08003635 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Thomas Graf04561c12006-11-14 19:53:58 -08003637 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
3638 if (protoinfo == NULL)
3639 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Thomas Graf04561c12006-11-14 19:53:58 -08003641 NLA_PUT_U32(skb, IFLA_INET6_FLAGS, idev->if_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 ci.max_reasm_len = IPV6_MAXPLEN;
3644 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3645 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3646 ci.reachable_time = idev->nd_parms->reachable_time;
3647 ci.retrans_time = idev->nd_parms->retrans_time;
Thomas Graf04561c12006-11-14 19:53:58 -08003648 NLA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3649
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003650 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
3651 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08003652 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003653 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003655 /* XXX - MC not implemented */
3656
3657 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
3658 if (nla == NULL)
3659 goto nla_put_failure;
3660 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
3661
3662 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
3663 if (nla == NULL)
3664 goto nla_put_failure;
3665 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Thomas Graf04561c12006-11-14 19:53:58 -08003667 nla_nest_end(skb, protoinfo);
3668 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
Thomas Graf04561c12006-11-14 19:53:58 -08003670nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003671 nlmsg_cancel(skb, nlh);
3672 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673}
3674
3675static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3676{
Denis V. Lunevb8542722007-12-01 00:21:31 +11003677 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 int idx, err;
3679 int s_idx = cb->args[0];
3680 struct net_device *dev;
3681 struct inet6_dev *idev;
3682
Denis V. Lunevb8542722007-12-01 00:21:31 +11003683 if (net != &init_net)
3684 return 0;
3685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003687 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003688 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003690 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 if ((idev = in6_dev_get(dev)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003692 goto cont;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003693 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003694 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 in6_dev_put(idev);
3696 if (err <= 0)
3697 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -07003698cont:
3699 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 }
3701 read_unlock(&dev_base_lock);
3702 cb->args[0] = idx;
3703
3704 return skb->len;
3705}
3706
3707void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3708{
3709 struct sk_buff *skb;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003710 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003711
Thomas Graf339bf982006-11-10 14:10:15 -08003712 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003713 if (skb == NULL)
3714 goto errout;
3715
3716 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003717 if (err < 0) {
3718 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
3719 WARN_ON(err == -EMSGSIZE);
3720 kfree_skb(skb);
3721 goto errout;
3722 }
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003723 err = rtnl_notify(skb, &init_net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003724errout:
3725 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003726 rtnl_set_sk_err(&init_net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727}
3728
Thomas Graf339bf982006-11-10 14:10:15 -08003729static inline size_t inet6_prefix_nlmsg_size(void)
3730{
3731 return NLMSG_ALIGN(sizeof(struct prefixmsg))
3732 + nla_total_size(sizeof(struct in6_addr))
3733 + nla_total_size(sizeof(struct prefix_cacheinfo));
3734}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Thomas Graf6051e2f2006-11-14 19:54:19 -08003737 struct prefix_info *pinfo, u32 pid, u32 seq,
3738 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739{
Thomas Graf6051e2f2006-11-14 19:54:19 -08003740 struct prefixmsg *pmsg;
3741 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 struct prefix_cacheinfo ci;
3743
Thomas Graf6051e2f2006-11-14 19:54:19 -08003744 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*pmsg), flags);
3745 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003746 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08003747
3748 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07003750 pmsg->prefix_pad1 = 0;
3751 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 pmsg->prefix_ifindex = idev->dev->ifindex;
3753 pmsg->prefix_len = pinfo->prefix_len;
3754 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07003755 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 pmsg->prefix_flags = 0;
3757 if (pinfo->onlink)
3758 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3759 if (pinfo->autoconf)
3760 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3761
Thomas Graf6051e2f2006-11-14 19:54:19 -08003762 NLA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
3764 ci.preferred_time = ntohl(pinfo->prefered);
3765 ci.valid_time = ntohl(pinfo->valid);
Thomas Graf6051e2f2006-11-14 19:54:19 -08003766 NLA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Thomas Graf6051e2f2006-11-14 19:54:19 -08003768 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
Thomas Graf6051e2f2006-11-14 19:54:19 -08003770nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003771 nlmsg_cancel(skb, nlh);
3772 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773}
3774
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003775static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 struct prefix_info *pinfo)
3777{
3778 struct sk_buff *skb;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003779 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Thomas Graf339bf982006-11-10 14:10:15 -08003781 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003782 if (skb == NULL)
3783 goto errout;
3784
3785 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003786 if (err < 0) {
3787 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
3788 WARN_ON(err == -EMSGSIZE);
3789 kfree_skb(skb);
3790 goto errout;
3791 }
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003792 err = rtnl_notify(skb, &init_net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003793errout:
3794 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08003795 rtnl_set_sk_err(&init_net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796}
3797
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3799{
3800 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3801
3802 switch (event) {
3803 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07003804 /*
3805 * If the address was optimistic
3806 * we inserted the route at the start of
3807 * our DAD process, so we don't need
3808 * to do it again
3809 */
3810 if (!(ifp->rt->rt6i_node))
3811 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 if (ifp->idev->cnf.forwarding)
3813 addrconf_join_anycast(ifp);
3814 break;
3815 case RTM_DELADDR:
3816 if (ifp->idev->cnf.forwarding)
3817 addrconf_leave_anycast(ifp);
3818 addrconf_leave_solict(ifp->idev, &ifp->addr);
3819 dst_hold(&ifp->rt->u.dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003820 if (ip6_del_rt(ifp->rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 dst_free(&ifp->rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 break;
3823 }
3824}
3825
3826static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3827{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003828 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 if (likely(ifp->idev->dead == 0))
3830 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003831 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832}
3833
3834#ifdef CONFIG_SYSCTL
3835
3836static
3837int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3838 void __user *buffer, size_t *lenp, loff_t *ppos)
3839{
3840 int *valp = ctl->data;
3841 int val = *valp;
3842 int ret;
3843
3844 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3845
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08003846 if (write)
3847 addrconf_fixup_forwarding(ctl, valp, val);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003848 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849}
3850
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003851static int addrconf_sysctl_forward_strategy(ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 int __user *name, int nlen,
3853 void __user *oldval,
3854 size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003855 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
3857 int *valp = table->data;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08003858 int val = *valp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 int new;
3860
3861 if (!newval || !newlen)
3862 return 0;
3863 if (newlen != sizeof(int))
3864 return -EINVAL;
3865 if (get_user(new, (int __user *)newval))
3866 return -EFAULT;
3867 if (new == *valp)
3868 return 0;
3869 if (oldval && oldlenp) {
3870 size_t len;
3871 if (get_user(len, oldlenp))
3872 return -EFAULT;
3873 if (len) {
3874 if (len > table->maxlen)
3875 len = table->maxlen;
3876 if (copy_to_user(oldval, valp, len))
3877 return -EFAULT;
3878 if (put_user(len, oldlenp))
3879 return -EFAULT;
3880 }
3881 }
3882
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08003883 *valp = new;
3884 addrconf_fixup_forwarding(table, valp, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 return 1;
3886}
3887
3888static struct addrconf_sysctl_table
3889{
3890 struct ctl_table_header *sysctl_header;
3891 ctl_table addrconf_vars[__NET_IPV6_MAX];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11003892 char *dev_name;
Brian Haleyab32ea52006-09-22 14:15:41 -07003893} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 .sysctl_header = NULL,
3895 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003896 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 .ctl_name = NET_IPV6_FORWARDING,
3898 .procname = "forwarding",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003899 .data = &ipv6_devconf.forwarding,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 .maxlen = sizeof(int),
3901 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003902 .proc_handler = &addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 .strategy = &addrconf_sysctl_forward_strategy,
3904 },
3905 {
3906 .ctl_name = NET_IPV6_HOP_LIMIT,
3907 .procname = "hop_limit",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003908 .data = &ipv6_devconf.hop_limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 .maxlen = sizeof(int),
3910 .mode = 0644,
3911 .proc_handler = proc_dointvec,
3912 },
3913 {
3914 .ctl_name = NET_IPV6_MTU,
3915 .procname = "mtu",
3916 .data = &ipv6_devconf.mtu6,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003917 .maxlen = sizeof(int),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003919 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 },
3921 {
3922 .ctl_name = NET_IPV6_ACCEPT_RA,
3923 .procname = "accept_ra",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003924 .data = &ipv6_devconf.accept_ra,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 .maxlen = sizeof(int),
3926 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003927 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 },
3929 {
3930 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
3931 .procname = "accept_redirects",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003932 .data = &ipv6_devconf.accept_redirects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 .maxlen = sizeof(int),
3934 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003935 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 },
3937 {
3938 .ctl_name = NET_IPV6_AUTOCONF,
3939 .procname = "autoconf",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003940 .data = &ipv6_devconf.autoconf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 .maxlen = sizeof(int),
3942 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003943 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 },
3945 {
3946 .ctl_name = NET_IPV6_DAD_TRANSMITS,
3947 .procname = "dad_transmits",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003948 .data = &ipv6_devconf.dad_transmits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 .maxlen = sizeof(int),
3950 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003951 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 },
3953 {
3954 .ctl_name = NET_IPV6_RTR_SOLICITS,
3955 .procname = "router_solicitations",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003956 .data = &ipv6_devconf.rtr_solicits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 .maxlen = sizeof(int),
3958 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003959 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 },
3961 {
3962 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
3963 .procname = "router_solicitation_interval",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003964 .data = &ipv6_devconf.rtr_solicit_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 .maxlen = sizeof(int),
3966 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003967 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 .strategy = &sysctl_jiffies,
3969 },
3970 {
3971 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
3972 .procname = "router_solicitation_delay",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003973 .data = &ipv6_devconf.rtr_solicit_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 .maxlen = sizeof(int),
3975 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003976 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 .strategy = &sysctl_jiffies,
3978 },
3979 {
3980 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
3981 .procname = "force_mld_version",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003982 .data = &ipv6_devconf.force_mld_version,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 .maxlen = sizeof(int),
3984 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003985 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 },
3987#ifdef CONFIG_IPV6_PRIVACY
3988 {
3989 .ctl_name = NET_IPV6_USE_TEMPADDR,
3990 .procname = "use_tempaddr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003991 .data = &ipv6_devconf.use_tempaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 .maxlen = sizeof(int),
3993 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003994 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 },
3996 {
3997 .ctl_name = NET_IPV6_TEMP_VALID_LFT,
3998 .procname = "temp_valid_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003999 .data = &ipv6_devconf.temp_valid_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 .maxlen = sizeof(int),
4001 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004002 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 },
4004 {
4005 .ctl_name = NET_IPV6_TEMP_PREFERED_LFT,
4006 .procname = "temp_prefered_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004007 .data = &ipv6_devconf.temp_prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 .maxlen = sizeof(int),
4009 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004010 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 },
4012 {
4013 .ctl_name = NET_IPV6_REGEN_MAX_RETRY,
4014 .procname = "regen_max_retry",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004015 .data = &ipv6_devconf.regen_max_retry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 .maxlen = sizeof(int),
4017 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004018 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 },
4020 {
4021 .ctl_name = NET_IPV6_MAX_DESYNC_FACTOR,
4022 .procname = "max_desync_factor",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004023 .data = &ipv6_devconf.max_desync_factor,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 .maxlen = sizeof(int),
4025 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004026 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 },
4028#endif
4029 {
4030 .ctl_name = NET_IPV6_MAX_ADDRESSES,
4031 .procname = "max_addresses",
4032 .data = &ipv6_devconf.max_addresses,
4033 .maxlen = sizeof(int),
4034 .mode = 0644,
4035 .proc_handler = &proc_dointvec,
4036 },
4037 {
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004038 .ctl_name = NET_IPV6_ACCEPT_RA_DEFRTR,
4039 .procname = "accept_ra_defrtr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004040 .data = &ipv6_devconf.accept_ra_defrtr,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004041 .maxlen = sizeof(int),
4042 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004043 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004044 },
4045 {
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004046 .ctl_name = NET_IPV6_ACCEPT_RA_PINFO,
4047 .procname = "accept_ra_pinfo",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004048 .data = &ipv6_devconf.accept_ra_pinfo,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004049 .maxlen = sizeof(int),
4050 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004051 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004052 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004053#ifdef CONFIG_IPV6_ROUTER_PREF
4054 {
4055 .ctl_name = NET_IPV6_ACCEPT_RA_RTR_PREF,
4056 .procname = "accept_ra_rtr_pref",
4057 .data = &ipv6_devconf.accept_ra_rtr_pref,
4058 .maxlen = sizeof(int),
4059 .mode = 0644,
4060 .proc_handler = &proc_dointvec,
4061 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004062 {
4063 .ctl_name = NET_IPV6_RTR_PROBE_INTERVAL,
4064 .procname = "router_probe_interval",
4065 .data = &ipv6_devconf.rtr_probe_interval,
4066 .maxlen = sizeof(int),
4067 .mode = 0644,
4068 .proc_handler = &proc_dointvec_jiffies,
4069 .strategy = &sysctl_jiffies,
4070 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004071#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004072 {
4073 .ctl_name = NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN,
4074 .procname = "accept_ra_rt_info_max_plen",
4075 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4076 .maxlen = sizeof(int),
4077 .mode = 0644,
4078 .proc_handler = &proc_dointvec,
4079 },
4080#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004081#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004082 {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004083 .ctl_name = NET_IPV6_PROXY_NDP,
4084 .procname = "proxy_ndp",
4085 .data = &ipv6_devconf.proxy_ndp,
4086 .maxlen = sizeof(int),
4087 .mode = 0644,
4088 .proc_handler = &proc_dointvec,
4089 },
4090 {
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004091 .ctl_name = NET_IPV6_ACCEPT_SOURCE_ROUTE,
4092 .procname = "accept_source_route",
4093 .data = &ipv6_devconf.accept_source_route,
4094 .maxlen = sizeof(int),
4095 .mode = 0644,
4096 .proc_handler = &proc_dointvec,
4097 },
Neil Horman95c385b2007-04-25 17:08:10 -07004098#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4099 {
4100 .ctl_name = CTL_UNNUMBERED,
4101 .procname = "optimistic_dad",
4102 .data = &ipv6_devconf.optimistic_dad,
4103 .maxlen = sizeof(int),
4104 .mode = 0644,
4105 .proc_handler = &proc_dointvec,
4106
4107 },
4108#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004109 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 .ctl_name = 0, /* sentinel */
4111 }
4112 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113};
4114
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004115static int __addrconf_sysctl_register(struct net *net, char *dev_name,
4116 int ctl_name, struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117{
4118 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 struct addrconf_sysctl_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004121#define ADDRCONF_CTL_PATH_DEV 3
4122
4123 struct ctl_path addrconf_ctl_path[] = {
4124 { .procname = "net", .ctl_name = CTL_NET, },
4125 { .procname = "ipv6", .ctl_name = NET_IPV6, },
4126 { .procname = "conf", .ctl_name = NET_IPV6_CONF, },
4127 { /* to be set */ },
4128 { },
4129 };
4130
4131
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004132 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004134 goto out;
4135
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 for (i=0; t->addrconf_vars[i].data; i++) {
4137 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004139 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004142 /*
4143 * Make a copy of dev_name, because '.procname' is regarded as const
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 * by sysctl and we wouldn't want anyone to change it under our feet
4145 * (see SIOCSIFNAME).
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004146 */
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004147 t->dev_name = kstrdup(dev_name, GFP_KERNEL);
4148 if (!t->dev_name)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004149 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004151 addrconf_ctl_path[ADDRCONF_CTL_PATH_DEV].procname = t->dev_name;
4152 addrconf_ctl_path[ADDRCONF_CTL_PATH_DEV].ctl_name = ctl_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004154 t->sysctl_header = register_net_sysctl_table(net, addrconf_ctl_path,
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004155 t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 if (t->sysctl_header == NULL)
4157 goto free_procname;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004158
4159 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004162free_procname:
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004163 kfree(t->dev_name);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004164free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004166out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004167 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168}
4169
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004170static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4171{
4172 struct addrconf_sysctl_table *t;
4173
4174 if (p->sysctl == NULL)
4175 return;
4176
4177 t = p->sysctl;
4178 p->sysctl = NULL;
4179 unregister_sysctl_table(t->sysctl_header);
4180 kfree(t->dev_name);
4181 kfree(t);
4182}
4183
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004184static void addrconf_sysctl_register(struct inet6_dev *idev)
4185{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004186 neigh_sysctl_register(idev->dev, idev->nd_parms, NET_IPV6,
4187 NET_IPV6_NEIGH, "ipv6",
4188 &ndisc_ifinfo_sysctl_change,
4189 NULL);
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004190 __addrconf_sysctl_register(idev->dev->nd_net, idev->dev->name,
4191 idev->dev->ifindex, idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004192}
4193
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004194static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004196 __addrconf_sysctl_unregister(&idev->cnf);
4197 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198}
4199
4200
4201#endif
4202
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004203static int addrconf_init_net(struct net *net)
4204{
4205 int err;
4206 struct ipv6_devconf *all, *dflt;
4207
4208 err = -ENOMEM;
4209 all = &ipv6_devconf;
4210 dflt = &ipv6_devconf_dflt;
4211
4212 if (net != &init_net) {
4213 all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
4214 if (all == NULL)
4215 goto err_alloc_all;
4216
4217 dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
4218 if (dflt == NULL)
4219 goto err_alloc_dflt;
4220 }
4221
4222 net->ipv6.devconf_all = all;
4223 net->ipv6.devconf_dflt = dflt;
4224
4225#ifdef CONFIG_SYSCTL
4226 err = __addrconf_sysctl_register(net, "all", NET_PROTO_CONF_ALL,
4227 NULL, all);
4228 if (err < 0)
4229 goto err_reg_all;
4230
4231 err = __addrconf_sysctl_register(net, "default", NET_PROTO_CONF_DEFAULT,
4232 NULL, dflt);
4233 if (err < 0)
4234 goto err_reg_dflt;
4235#endif
4236 return 0;
4237
4238#ifdef CONFIG_SYSCTL
4239err_reg_dflt:
4240 __addrconf_sysctl_unregister(all);
4241err_reg_all:
4242 kfree(dflt);
4243#endif
4244err_alloc_dflt:
4245 kfree(all);
4246err_alloc_all:
4247 return err;
4248}
4249
4250static void addrconf_exit_net(struct net *net)
4251{
4252#ifdef CONFIG_SYSCTL
4253 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
4254 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
4255#endif
4256 if (net != &init_net) {
4257 kfree(net->ipv6.devconf_dflt);
4258 kfree(net->ipv6.devconf_all);
4259 }
4260}
4261
4262static struct pernet_operations addrconf_ops = {
4263 .init = addrconf_init_net,
4264 .exit = addrconf_exit_net,
4265};
4266
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267/*
4268 * Device notifier
4269 */
4270
4271int register_inet6addr_notifier(struct notifier_block *nb)
4272{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004273 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274}
4275
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004276EXPORT_SYMBOL(register_inet6addr_notifier);
4277
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278int unregister_inet6addr_notifier(struct notifier_block *nb)
4279{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004280 return atomic_notifier_chain_unregister(&inet6addr_chain,nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281}
4282
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004283EXPORT_SYMBOL(unregister_inet6addr_notifier);
4284
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285/*
4286 * Init / cleanup code
4287 */
4288
4289int __init addrconf_init(void)
4290{
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004291 int err;
4292
4293 if ((err = ipv6_addr_label_init()) < 0) {
4294 printk(KERN_CRIT "IPv6 Addrconf: cannot initialize default policy table: %d.\n",
4295 err);
4296 return err;
4297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004299 register_pernet_subsys(&addrconf_ops);
4300
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 /* The addrconf netdev notifier requires that loopback_dev
4302 * has it's ipv6 private information allocated and setup
4303 * before it can bring up and give link-local addresses
4304 * to other devices which are up.
4305 *
4306 * Unfortunately, loopback_dev is not necessarily the first
4307 * entry in the global dev_base list of net devices. In fact,
4308 * it is likely to be the very last entry on that list.
4309 * So this causes the notifier registry below to try and
4310 * give link-local addresses to all devices besides loopback_dev
4311 * first, then loopback_dev, which cases all the non-loopback_dev
4312 * devices to fail to get a link-local address.
4313 *
4314 * So, as a temporary fix, allocate the ipv6 structure for
4315 * loopback_dev first by hand.
4316 * Longer term, all of the dependencies ipv6 has upon the loopback
4317 * device and it being up should be removed.
4318 */
4319 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004320 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 err = -ENOMEM;
4322 rtnl_unlock();
4323 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004324 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004326 ip6_null_entry.u.dst.dev = init_net.loopback_dev;
4327 ip6_null_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
YOSHIFUJI Hideaki9a6bf6f2007-05-09 14:03:28 -07004328#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004329 ip6_prohibit_entry.u.dst.dev = init_net.loopback_dev;
4330 ip6_prohibit_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
4331 ip6_blk_hole_entry.u.dst.dev = init_net.loopback_dev;
4332 ip6_blk_hole_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
YOSHIFUJI Hideaki9a6bf6f2007-05-09 14:03:28 -07004333#endif
Herbert Xuc62dba92005-09-26 15:10:16 -07004334
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 register_netdevice_notifier(&ipv6_dev_notf);
4336
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004338
4339 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo);
4340 if (err < 0)
4341 goto errout;
4342
4343 /* Only the first call to __rtnl_register can fail */
4344 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL);
4345 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL);
4346 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr, inet6_dump_ifaddr);
4347 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL, inet6_dump_ifmcaddr);
4348 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL, inet6_dump_ifacaddr);
4349
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004350 ipv6_addr_label_rtnl_register();
4351
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07004353errout:
4354 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004355errlo:
4356 unregister_pernet_subsys(&addrconf_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07004357
4358 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359}
4360
Daniel Lezcano09f77092007-12-13 05:34:58 -08004361void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004363 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004364 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 int i;
4366
4367 unregister_netdevice_notifier(&ipv6_dev_notf);
4368
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004369 unregister_pernet_subsys(&addrconf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
4371 rtnl_lock();
4372
4373 /*
4374 * clean dev list.
4375 */
4376
Eric W. Biederman881d9662007-09-17 11:56:21 -07004377 for_each_netdev(&init_net, dev) {
Micah Gruberdffe4f02007-07-10 23:04:19 -07004378 if (__in6_dev_get(dev) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 continue;
4380 addrconf_ifdown(dev, 1);
4381 }
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004382 addrconf_ifdown(init_net.loopback_dev, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
4384 /*
4385 * Check hash table.
4386 */
4387
4388 write_lock_bh(&addrconf_hash_lock);
4389 for (i=0; i < IN6_ADDR_HSIZE; i++) {
4390 for (ifa=inet6_addr_lst[i]; ifa; ) {
4391 struct inet6_ifaddr *bifa;
4392
4393 bifa = ifa;
4394 ifa = ifa->lst_next;
4395 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
4396 /* Do not free it; something is wrong.
4397 Now we can investigate it with debugger.
4398 */
4399 }
4400 }
4401 write_unlock_bh(&addrconf_hash_lock);
4402
4403 del_timer(&addr_chk_timer);
4404
4405 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406}