blob: edf06ca347496f1d53deb473b6768a5d3a47eca7 [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
104static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p);
105static void addrconf_sysctl_unregister(struct ipv6_devconf *p);
106#endif
107
108#ifdef CONFIG_IPV6_PRIVACY
109static int __ipv6_regen_rndid(struct inet6_dev *idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900110static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static void ipv6_regen_rndid(unsigned long data);
112
113static int desync_factor = MAX_DESYNC_FACTOR * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif
115
116static int ipv6_count_addresses(struct inet6_dev *idev);
117
118/*
119 * Configured unicast address hash table
120 */
121static struct inet6_ifaddr *inet6_addr_lst[IN6_ADDR_HSIZE];
122static DEFINE_RWLOCK(addrconf_hash_lock);
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static void addrconf_verify(unsigned long);
125
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700126static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static DEFINE_SPINLOCK(addrconf_verify_lock);
128
129static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
130static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
131
132static int addrconf_ifdown(struct net_device *dev, int how);
133
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700134static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static void addrconf_dad_timer(unsigned long data);
136static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900137static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static void addrconf_rs_timer(unsigned long data);
139static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
140static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
141
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900142static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct prefix_info *pinfo);
144static int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev);
145
Alan Sterne041c682006-03-27 01:16:30 -0800146static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Brian Haleyab32ea52006-09-22 14:15:41 -0700148struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .forwarding = 0,
150 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
151 .mtu6 = IPV6_MIN_MTU,
152 .accept_ra = 1,
153 .accept_redirects = 1,
154 .autoconf = 1,
155 .force_mld_version = 0,
156 .dad_transmits = 1,
157 .rtr_solicits = MAX_RTR_SOLICITATIONS,
158 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
159 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
160#ifdef CONFIG_IPV6_PRIVACY
161 .use_tempaddr = 0,
162 .temp_valid_lft = TEMP_VALID_LIFETIME,
163 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
164 .regen_max_retry = REGEN_MAX_RETRY,
165 .max_desync_factor = MAX_DESYNC_FACTOR,
166#endif
167 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800168 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800169 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800170#ifdef CONFIG_IPV6_ROUTER_PREF
171 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800172 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800173#ifdef CONFIG_IPV6_ROUTE_INFO
174 .accept_ra_rt_info_max_plen = 0,
175#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800176#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700177 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700178 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
Brian Haleyab32ea52006-09-22 14:15:41 -0700181static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .forwarding = 0,
183 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
184 .mtu6 = IPV6_MIN_MTU,
185 .accept_ra = 1,
186 .accept_redirects = 1,
187 .autoconf = 1,
188 .dad_transmits = 1,
189 .rtr_solicits = MAX_RTR_SOLICITATIONS,
190 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
191 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
192#ifdef CONFIG_IPV6_PRIVACY
193 .use_tempaddr = 0,
194 .temp_valid_lft = TEMP_VALID_LIFETIME,
195 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
196 .regen_max_retry = REGEN_MAX_RETRY,
197 .max_desync_factor = MAX_DESYNC_FACTOR,
198#endif
199 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800200 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800201 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800202#ifdef CONFIG_IPV6_ROUTER_PREF
203 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800204 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800205#ifdef CONFIG_IPV6_ROUTE_INFO
206 .accept_ra_rt_info_max_plen = 0,
207#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800208#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700209 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700210 .accept_source_route = 0, /* we do not accept RH0 by default. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
216
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700217/* Check if a valid qdisc is available */
218static inline int addrconf_qdisc_ok(struct net_device *dev)
219{
220 return (dev->qdisc != &noop_qdisc);
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static void addrconf_del_timer(struct inet6_ifaddr *ifp)
224{
225 if (del_timer(&ifp->timer))
226 __in6_ifa_put(ifp);
227}
228
229enum addrconf_timer_t
230{
231 AC_NONE,
232 AC_DAD,
233 AC_RS,
234};
235
236static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
237 enum addrconf_timer_t what,
238 unsigned long when)
239{
240 if (!del_timer(&ifp->timer))
241 in6_ifa_hold(ifp);
242
243 switch (what) {
244 case AC_DAD:
245 ifp->timer.function = addrconf_dad_timer;
246 break;
247 case AC_RS:
248 ifp->timer.function = addrconf_rs_timer;
249 break;
250 default:;
251 }
252 ifp->timer.expires = jiffies + when;
253 add_timer(&ifp->timer);
254}
255
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700256static int snmp6_alloc_dev(struct inet6_dev *idev)
257{
258 int err = -ENOMEM;
259
260 if (!idev || !idev->dev)
261 return -EINVAL;
262
263 if (snmp_mib_init((void **)idev->stats.ipv6,
264 sizeof(struct ipstats_mib),
265 __alignof__(struct ipstats_mib)) < 0)
266 goto err_ip;
267 if (snmp_mib_init((void **)idev->stats.icmpv6,
268 sizeof(struct icmpv6_mib),
269 __alignof__(struct icmpv6_mib)) < 0)
270 goto err_icmp;
David L Stevens14878f72007-09-16 16:52:35 -0700271 if (snmp_mib_init((void **)idev->stats.icmpv6msg,
272 sizeof(struct icmpv6msg_mib),
273 __alignof__(struct icmpv6msg_mib)) < 0)
274 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700275
276 return 0;
277
David L Stevens14878f72007-09-16 16:52:35 -0700278err_icmpmsg:
279 snmp_mib_free((void **)idev->stats.icmpv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700280err_icmp:
281 snmp_mib_free((void **)idev->stats.ipv6);
282err_ip:
283 return err;
284}
285
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700286static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700287{
David L Stevens14878f72007-09-16 16:52:35 -0700288 snmp_mib_free((void **)idev->stats.icmpv6msg);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700289 snmp_mib_free((void **)idev->stats.icmpv6);
290 snmp_mib_free((void **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/* Nobody refers to this device, we may destroy it. */
294
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700295static void in6_dev_finish_destroy_rcu(struct rcu_head *head)
296{
297 struct inet6_dev *idev = container_of(head, struct inet6_dev, rcu);
298 kfree(idev);
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301void in6_dev_finish_destroy(struct inet6_dev *idev)
302{
303 struct net_device *dev = idev->dev;
304 BUG_TRAP(idev->addr_list==NULL);
305 BUG_TRAP(idev->mc_list==NULL);
306#ifdef NET_REFCNT_DEBUG
307 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
308#endif
309 dev_put(dev);
310 if (!idev->dead) {
311 printk("Freeing alive inet6 device %p\n", idev);
312 return;
313 }
314 snmp6_free_dev(idev);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700315 call_rcu(&idev->rcu, in6_dev_finish_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900318EXPORT_SYMBOL(in6_dev_finish_destroy);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
321{
322 struct inet6_dev *ndev;
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800323 struct in6_addr maddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 ASSERT_RTNL();
326
327 if (dev->mtu < IPV6_MIN_MTU)
328 return NULL;
329
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900330 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900332 if (ndev == NULL)
333 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Ingo Oeser322f74a2006-03-20 23:01:47 -0800335 rwlock_init(&ndev->lock);
336 ndev->dev = dev;
337 memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf));
338 ndev->cnf.mtu6 = dev->mtu;
339 ndev->cnf.sysctl = NULL;
340 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
341 if (ndev->nd_parms == NULL) {
342 kfree(ndev);
343 return NULL;
344 }
345 /* We refer to the device */
346 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Ingo Oeser322f74a2006-03-20 23:01:47 -0800348 if (snmp6_alloc_dev(ndev) < 0) {
349 ADBG((KERN_WARNING
350 "%s(): cannot allocate memory for statistics; dev=%s.\n",
351 __FUNCTION__, dev->name));
352 neigh_parms_release(&nd_tbl, ndev->nd_parms);
353 ndev->dead = 1;
354 in6_dev_finish_destroy(ndev);
355 return NULL;
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Ingo Oeser322f74a2006-03-20 23:01:47 -0800358 if (snmp6_register_dev(ndev) < 0) {
359 ADBG((KERN_WARNING
360 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
361 __FUNCTION__, dev->name));
362 neigh_parms_release(&nd_tbl, ndev->nd_parms);
363 ndev->dead = 1;
364 in6_dev_finish_destroy(ndev);
365 return NULL;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Ingo Oeser322f74a2006-03-20 23:01:47 -0800368 /* One reference from device. We must do this before
369 * we invoke __ipv6_regen_rndid().
370 */
371 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373#ifdef CONFIG_IPV6_PRIVACY
Ingo Oeser322f74a2006-03-20 23:01:47 -0800374 init_timer(&ndev->regen_timer);
375 ndev->regen_timer.function = ipv6_regen_rndid;
376 ndev->regen_timer.data = (unsigned long) ndev;
377 if ((dev->flags&IFF_LOOPBACK) ||
378 dev->type == ARPHRD_TUNNEL ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700379#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
380 dev->type == ARPHRD_SIT ||
381#endif
382 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800383 printk(KERN_INFO
384 "%s: Disabled Privacy Extensions\n",
385 dev->name);
386 ndev->cnf.use_tempaddr = -1;
387 } else {
388 in6_dev_hold(ndev);
389 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391#endif
392
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700393 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700394 ndev->if_flags |= IF_READY;
395
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 ipv6_mc_init_dev(ndev);
397 ndev->tstamp = jiffies;
398#ifdef CONFIG_SYSCTL
399 neigh_sysctl_register(dev, ndev->nd_parms, NET_IPV6,
400 NET_IPV6_NEIGH, "ipv6",
401 &ndisc_ifinfo_sysctl_change,
402 NULL);
403 addrconf_sysctl_register(ndev, &ndev->cnf);
404#endif
David L Stevens30c4cf52007-01-04 12:31:14 -0800405 /* protected by rtnl_lock */
406 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800407
408 /* Join all-node multicast group */
409 ipv6_addr_all_nodes(&maddr);
410 ipv6_dev_mc_inc(dev, &maddr);
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ndev;
413}
414
415static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
416{
417 struct inet6_dev *idev;
418
419 ASSERT_RTNL();
420
421 if ((idev = __in6_dev_get(dev)) == NULL) {
422 if ((idev = ipv6_add_dev(dev)) == NULL)
423 return NULL;
424 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (dev->flags&IFF_UP)
427 ipv6_mc_up(idev);
428 return idev;
429}
430
431#ifdef CONFIG_SYSCTL
432static void dev_forward_change(struct inet6_dev *idev)
433{
434 struct net_device *dev;
435 struct inet6_ifaddr *ifa;
436 struct in6_addr addr;
437
438 if (!idev)
439 return;
440 dev = idev->dev;
441 if (dev && (dev->flags & IFF_MULTICAST)) {
442 ipv6_addr_all_routers(&addr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (idev->cnf.forwarding)
445 ipv6_dev_mc_inc(dev, &addr);
446 else
447 ipv6_dev_mc_dec(dev, &addr);
448 }
449 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800450 if (ifa->flags&IFA_F_TENTATIVE)
451 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (idev->cnf.forwarding)
453 addrconf_join_anycast(ifa);
454 else
455 addrconf_leave_anycast(ifa);
456 }
457}
458
459
460static void addrconf_forward_change(void)
461{
462 struct net_device *dev;
463 struct inet6_dev *idev;
464
465 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700466 for_each_netdev(&init_net, dev) {
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700467 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 idev = __in6_dev_get(dev);
469 if (idev) {
470 int changed = (!idev->cnf.forwarding) ^ (!ipv6_devconf.forwarding);
471 idev->cnf.forwarding = ipv6_devconf.forwarding;
472 if (changed)
473 dev_forward_change(idev);
474 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700475 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 read_unlock(&dev_base_lock);
478}
479#endif
480
481/* Nobody refers to this ifaddr, destroy it */
482
483void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
484{
485 BUG_TRAP(ifp->if_next==NULL);
486 BUG_TRAP(ifp->lst_next==NULL);
487#ifdef NET_REFCNT_DEBUG
488 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
489#endif
490
491 in6_dev_put(ifp->idev);
492
493 if (del_timer(&ifp->timer))
494 printk("Timer is still running, when freeing ifa=%p\n", ifp);
495
496 if (!ifp->dead) {
497 printk("Freeing alive inet6 address %p\n", ifp);
498 return;
499 }
500 dst_release(&ifp->rt->u.dst);
501
502 kfree(ifp);
503}
504
Brian Haleye55ffac2006-07-10 15:25:51 -0700505static void
506ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
507{
508 struct inet6_ifaddr *ifa, **ifap;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700509 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700510
511 /*
512 * Each device address list is sorted in order of scope -
513 * global before linklocal.
514 */
515 for (ifap = &idev->addr_list; (ifa = *ifap) != NULL;
516 ifap = &ifa->if_next) {
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700517 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700518 break;
519 }
520
521 ifp->if_next = *ifap;
522 *ifap = ifp;
523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/* On success it returns ifp with increased reference count */
526
527static struct inet6_ifaddr *
528ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700529 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct inet6_ifaddr *ifa = NULL;
532 struct rt6_info *rt;
533 int hash;
534 int err = 0;
535
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700536 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (idev->dead) {
538 err = -ENODEV; /*XXX*/
539 goto out2;
540 }
541
542 write_lock(&addrconf_hash_lock);
543
544 /* Ignore adding duplicate addresses on an interface */
545 if (ipv6_chk_same_addr(addr, idev->dev)) {
546 ADBG(("ipv6_add_addr: already assigned\n"));
547 err = -EEXIST;
548 goto out;
549 }
550
Ingo Oeser322f74a2006-03-20 23:01:47 -0800551 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 if (ifa == NULL) {
554 ADBG(("ipv6_add_addr: malloc failed\n"));
555 err = -ENOBUFS;
556 goto out;
557 }
558
559 rt = addrconf_dst_alloc(idev, addr, 0);
560 if (IS_ERR(rt)) {
561 err = PTR_ERR(rt);
562 goto out;
563 }
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 ipv6_addr_copy(&ifa->addr, addr);
566
567 spin_lock_init(&ifa->lock);
568 init_timer(&ifa->timer);
569 ifa->timer.data = (unsigned long) ifa;
570 ifa->scope = scope;
571 ifa->prefix_len = pfxlen;
572 ifa->flags = flags | IFA_F_TENTATIVE;
573 ifa->cstamp = ifa->tstamp = jiffies;
574
Keir Fraser57f5f542006-08-29 02:43:49 -0700575 ifa->rt = rt;
576
Neil Horman95c385b2007-04-25 17:08:10 -0700577 /*
578 * part one of RFC 4429, section 3.3
579 * We should not configure an address as
580 * optimistic if we do not yet know the link
581 * layer address of our nexhop router
582 */
583
584 if (rt->rt6i_nexthop == NULL)
585 ifa->flags &= ~IFA_F_OPTIMISTIC;
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 ifa->idev = idev;
588 in6_dev_hold(idev);
589 /* For caller */
590 in6_ifa_hold(ifa);
591
592 /* Add to big hash table */
593 hash = ipv6_addr_hash(addr);
594
595 ifa->lst_next = inet6_addr_lst[hash];
596 inet6_addr_lst[hash] = ifa;
597 in6_ifa_hold(ifa);
598 write_unlock(&addrconf_hash_lock);
599
600 write_lock(&idev->lock);
601 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700602 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604#ifdef CONFIG_IPV6_PRIVACY
605 if (ifa->flags&IFA_F_TEMPORARY) {
606 ifa->tmp_next = idev->tempaddr_list;
607 idev->tempaddr_list = ifa;
608 in6_ifa_hold(ifa);
609 }
610#endif
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 in6_ifa_hold(ifa);
613 write_unlock(&idev->lock);
614out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700615 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700617 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800618 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 else {
620 kfree(ifa);
621 ifa = ERR_PTR(err);
622 }
623
624 return ifa;
625out:
626 write_unlock(&addrconf_hash_lock);
627 goto out2;
628}
629
630/* This function wants to get referenced ifp and releases it before return */
631
632static void ipv6_del_addr(struct inet6_ifaddr *ifp)
633{
634 struct inet6_ifaddr *ifa, **ifap;
635 struct inet6_dev *idev = ifp->idev;
636 int hash;
637 int deleted = 0, onlink = 0;
638 unsigned long expires = jiffies;
639
640 hash = ipv6_addr_hash(&ifp->addr);
641
642 ifp->dead = 1;
643
644 write_lock_bh(&addrconf_hash_lock);
645 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
646 ifap = &ifa->lst_next) {
647 if (ifa == ifp) {
648 *ifap = ifa->lst_next;
649 __in6_ifa_put(ifp);
650 ifa->lst_next = NULL;
651 break;
652 }
653 }
654 write_unlock_bh(&addrconf_hash_lock);
655
656 write_lock_bh(&idev->lock);
657#ifdef CONFIG_IPV6_PRIVACY
658 if (ifp->flags&IFA_F_TEMPORARY) {
659 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
660 ifap = &ifa->tmp_next) {
661 if (ifa == ifp) {
662 *ifap = ifa->tmp_next;
663 if (ifp->ifpub) {
664 in6_ifa_put(ifp->ifpub);
665 ifp->ifpub = NULL;
666 }
667 __in6_ifa_put(ifp);
668 ifa->tmp_next = NULL;
669 break;
670 }
671 }
672 }
673#endif
674
Kristian Slavov1d142802005-12-21 18:47:24 -0800675 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (ifa == ifp) {
677 *ifap = ifa->if_next;
678 __in6_ifa_put(ifp);
679 ifa->if_next = NULL;
680 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
681 break;
682 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800683 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 } else if (ifp->flags & IFA_F_PERMANENT) {
685 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
686 ifp->prefix_len)) {
687 if (ifa->flags & IFA_F_PERMANENT) {
688 onlink = 1;
689 if (deleted)
690 break;
691 } else {
692 unsigned long lifetime;
693
694 if (!onlink)
695 onlink = -1;
696
697 spin_lock(&ifa->lock);
698 lifetime = min_t(unsigned long,
699 ifa->valid_lft, 0x7fffffffUL/HZ);
700 if (time_before(expires,
701 ifa->tstamp + lifetime * HZ))
702 expires = ifa->tstamp + lifetime * HZ;
703 spin_unlock(&ifa->lock);
704 }
705 }
706 }
Kristian Slavov1d142802005-12-21 18:47:24 -0800707 ifap = &ifa->if_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 write_unlock_bh(&idev->lock);
710
711 ipv6_ifa_notify(RTM_DELADDR, ifp);
712
Alan Sterne041c682006-03-27 01:16:30 -0800713 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 addrconf_del_timer(ifp);
716
717 /*
718 * Purge or update corresponding prefix
719 *
720 * 1) we don't purge prefix here if address was not permanent.
721 * prefix is managed by its own lifetime.
722 * 2) if there're no addresses, delete prefix.
723 * 3) if there're still other permanent address(es),
724 * corresponding prefix is still permanent.
725 * 4) otherwise, update prefix lifetime to the
726 * longest valid lifetime among the corresponding
727 * addresses on the device.
728 * Note: subsequent RA will update lifetime.
729 *
730 * --yoshfuji
731 */
732 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
733 struct in6_addr prefix;
734 struct rt6_info *rt;
735
736 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
737 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
738
739 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
740 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700741 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 rt = NULL;
743 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
744 rt->rt6i_expires = expires;
745 rt->rt6i_flags |= RTF_EXPIRES;
746 }
747 }
748 dst_release(&rt->u.dst);
749 }
750
751 in6_ifa_put(ifp);
752}
753
754#ifdef CONFIG_IPV6_PRIVACY
755static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
756{
757 struct inet6_dev *idev = ifp->idev;
758 struct in6_addr addr, *tmpaddr;
759 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
760 int tmp_plen;
761 int ret = 0;
762 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -0700763 u32 addr_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 write_lock(&idev->lock);
766 if (ift) {
767 spin_lock_bh(&ift->lock);
768 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
769 spin_unlock_bh(&ift->lock);
770 tmpaddr = &addr;
771 } else {
772 tmpaddr = NULL;
773 }
774retry:
775 in6_dev_hold(idev);
776 if (idev->cnf.use_tempaddr <= 0) {
777 write_unlock(&idev->lock);
778 printk(KERN_INFO
779 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
780 in6_dev_put(idev);
781 ret = -1;
782 goto out;
783 }
784 spin_lock_bh(&ifp->lock);
785 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
786 idev->cnf.use_tempaddr = -1; /*XXX*/
787 spin_unlock_bh(&ifp->lock);
788 write_unlock(&idev->lock);
789 printk(KERN_WARNING
790 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
791 in6_dev_put(idev);
792 ret = -1;
793 goto out;
794 }
795 in6_ifa_hold(ifp);
796 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
797 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
798 spin_unlock_bh(&ifp->lock);
799 write_unlock(&idev->lock);
800 printk(KERN_WARNING
801 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
802 in6_ifa_put(ifp);
803 in6_dev_put(idev);
804 ret = -1;
805 goto out;
806 }
807 memcpy(&addr.s6_addr[8], idev->rndid, 8);
808 tmp_valid_lft = min_t(__u32,
809 ifp->valid_lft,
810 idev->cnf.temp_valid_lft);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900811 tmp_prefered_lft = min_t(__u32,
812 ifp->prefered_lft,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 idev->cnf.temp_prefered_lft - desync_factor / HZ);
814 tmp_plen = ifp->prefix_len;
815 max_addresses = idev->cnf.max_addresses;
816 tmp_cstamp = ifp->cstamp;
817 tmp_tstamp = ifp->tstamp;
818 spin_unlock_bh(&ifp->lock);
819
820 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -0700821
822 addr_flags = IFA_F_TEMPORARY;
823 /* set in addrconf_prefix_rcv() */
824 if (ifp->flags & IFA_F_OPTIMISTIC)
825 addr_flags |= IFA_F_OPTIMISTIC;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900828 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -0700830 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
831 addr_flags) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (!ift || IS_ERR(ift)) {
833 in6_ifa_put(ifp);
834 in6_dev_put(idev);
835 printk(KERN_INFO
836 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
837 tmpaddr = &addr;
838 write_lock(&idev->lock);
839 goto retry;
840 }
841
842 spin_lock_bh(&ift->lock);
843 ift->ifpub = ifp;
844 ift->valid_lft = tmp_valid_lft;
845 ift->prefered_lft = tmp_prefered_lft;
846 ift->cstamp = tmp_cstamp;
847 ift->tstamp = tmp_tstamp;
848 spin_unlock_bh(&ift->lock);
849
850 addrconf_dad_start(ift, 0);
851 in6_ifa_put(ift);
852 in6_dev_put(idev);
853out:
854 return ret;
855}
856#endif
857
858/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800859 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800861struct ipv6_saddr_score {
862 int addr_type;
863 unsigned int attrs;
864 int matchlen;
Brian Haley0d27b422006-03-11 18:50:14 -0800865 int scope;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800866 unsigned int rule;
867};
868
869#define IPV6_SADDR_SCORE_LOCAL 0x0001
870#define IPV6_SADDR_SCORE_PREFERRED 0x0004
871#define IPV6_SADDR_SCORE_HOA 0x0008
872#define IPV6_SADDR_SCORE_OIF 0x0010
873#define IPV6_SADDR_SCORE_LABEL 0x0020
874#define IPV6_SADDR_SCORE_PRIVACY 0x0040
875
Dave Jonesb6f99a22007-03-22 12:27:49 -0700876static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800878 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
879 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
880 return 1;
881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800884/* static matching label */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700885static inline int ipv6_saddr_label(const struct in6_addr *addr, int type)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800886{
887 /*
888 * prefix (longest match) label
889 * -----------------------------
890 * ::1/128 0
891 * ::/0 1
892 * 2002::/16 2
893 * ::/96 3
894 * ::ffff:0:0/96 4
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700895 * fc00::/7 5
896 * 2001::/32 6
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800897 */
898 if (type & IPV6_ADDR_LOOPBACK)
899 return 0;
900 else if (type & IPV6_ADDR_COMPATv4)
901 return 3;
902 else if (type & IPV6_ADDR_MAPPED)
903 return 4;
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700904 else if (addr->s6_addr32[0] == htonl(0x20010000))
905 return 6;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800906 else if (addr->s6_addr16[0] == htons(0x2002))
907 return 2;
Łukasz Stelmach102128e2006-06-22 01:37:19 -0700908 else if ((addr->s6_addr[0] & 0xfe) == 0xfc)
909 return 5;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800910 return 1;
911}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800913int ipv6_dev_get_saddr(struct net_device *daddr_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 struct in6_addr *daddr, struct in6_addr *saddr)
915{
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800916 struct ipv6_saddr_score hiscore;
917 struct inet6_ifaddr *ifa_result = NULL;
918 int daddr_type = __ipv6_addr_type(daddr);
919 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
920 u32 daddr_label = ipv6_saddr_label(daddr, daddr_type);
921 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800923 memset(&hiscore, 0, sizeof(hiscore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 read_lock(&dev_base_lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700926 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800927
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928 for_each_netdev(&init_net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800929 struct inet6_dev *idev;
930 struct inet6_ifaddr *ifa;
931
932 /* Rule 0: Candidate Source Address (section 4)
933 * - multicast and link-local destination address,
934 * the set of candidate source address MUST only
935 * include addresses assigned to interfaces
936 * belonging to the same link as the outgoing
937 * interface.
938 * (- For site-local destination addresses, the
939 * set of candidate source addresses MUST only
940 * include addresses assigned to interfaces
941 * belonging to the same site as the outgoing
942 * interface.)
943 */
944 if ((daddr_type & IPV6_ADDR_MULTICAST ||
945 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
946 daddr_dev && dev != daddr_dev)
947 continue;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800950 if (!idev)
951 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800953 read_lock_bh(&idev->lock);
954 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
955 struct ipv6_saddr_score score;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800957 score.addr_type = __ipv6_addr_type(&ifa->addr);
958
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900959 /* Rule 0:
960 * - Tentative Address (RFC2462 section 5.4)
961 * - A tentative address is not considered
962 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -0700963 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900964 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800965 * - In any case, anycast addresses, multicast
966 * addresses, and the unspecified address MUST
967 * NOT be included in a candidate set.
968 */
Neil Horman95c385b2007-04-25 17:08:10 -0700969 if ((ifa->flags & IFA_F_TENTATIVE) &&
970 (!(ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +0900971 continue;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -0800972 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
973 score.addr_type & IPV6_ADDR_MULTICAST)) {
974 LIMIT_NETDEBUG(KERN_DEBUG
975 "ADDRCONF: unspecified / multicast address"
976 "assigned as unicast address on %s",
977 dev->name);
978 continue;
979 }
980
981 score.attrs = 0;
982 score.matchlen = 0;
983 score.scope = 0;
984 score.rule = 0;
985
986 if (ifa_result == NULL) {
987 /* record it if the first available entry */
988 goto record_it;
989 }
990
991 /* Rule 1: Prefer same address */
992 if (hiscore.rule < 1) {
993 if (ipv6_addr_equal(&ifa_result->addr, daddr))
994 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
995 hiscore.rule++;
996 }
997 if (ipv6_addr_equal(&ifa->addr, daddr)) {
998 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
999 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
1000 score.rule = 1;
1001 goto record_it;
1002 }
1003 } else {
1004 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
1005 continue;
1006 }
1007
1008 /* Rule 2: Prefer appropriate scope */
1009 if (hiscore.rule < 2) {
1010 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
1011 hiscore.rule++;
1012 }
1013 score.scope = __ipv6_addr_src_scope(score.addr_type);
1014 if (hiscore.scope < score.scope) {
1015 if (hiscore.scope < daddr_scope) {
1016 score.rule = 2;
1017 goto record_it;
1018 } else
1019 continue;
1020 } else if (score.scope < hiscore.scope) {
1021 if (score.scope < daddr_scope)
Brian Haleye55ffac2006-07-10 15:25:51 -07001022 break; /* addresses sorted by scope */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001023 else {
1024 score.rule = 2;
1025 goto record_it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Neil Horman95c385b2007-04-25 17:08:10 -07001029 /* Rule 3: Avoid deprecated and optimistic addresses */
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001030 if (hiscore.rule < 3) {
1031 if (ipv6_saddr_preferred(hiscore.addr_type) ||
Neil Horman95c385b2007-04-25 17:08:10 -07001032 (((ifa_result->flags &
1033 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0)))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001034 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1035 hiscore.rule++;
1036 }
1037 if (ipv6_saddr_preferred(score.addr_type) ||
Jiri Kosina6ae5f982007-09-16 14:48:21 -07001038 (((ifa->flags &
Neil Horman95c385b2007-04-25 17:08:10 -07001039 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0))) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001040 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1041 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
1042 score.rule = 3;
1043 goto record_it;
1044 }
1045 } else {
1046 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
1047 continue;
1048 }
1049
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001050 /* Rule 4: Prefer home address */
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -07001051#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001052 if (hiscore.rule < 4) {
1053 if (ifa_result->flags & IFA_F_HOMEADDRESS)
1054 hiscore.attrs |= IPV6_SADDR_SCORE_HOA;
1055 hiscore.rule++;
1056 }
1057 if (ifa->flags & IFA_F_HOMEADDRESS) {
1058 score.attrs |= IPV6_SADDR_SCORE_HOA;
1059 if (!(ifa_result->flags & IFA_F_HOMEADDRESS)) {
1060 score.rule = 4;
1061 goto record_it;
1062 }
1063 } else {
1064 if (hiscore.attrs & IPV6_SADDR_SCORE_HOA)
1065 continue;
1066 }
1067#else
YOSHIFUJI Hideaki220bbd72005-11-28 22:27:11 -08001068 if (hiscore.rule < 4)
1069 hiscore.rule++;
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07001070#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001071
1072 /* Rule 5: Prefer outgoing interface */
1073 if (hiscore.rule < 5) {
1074 if (daddr_dev == NULL ||
1075 daddr_dev == ifa_result->idev->dev)
1076 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
1077 hiscore.rule++;
1078 }
1079 if (daddr_dev == NULL ||
1080 daddr_dev == ifa->idev->dev) {
1081 score.attrs |= IPV6_SADDR_SCORE_OIF;
1082 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1083 score.rule = 5;
1084 goto record_it;
1085 }
1086 } else {
1087 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1088 continue;
1089 }
1090
1091 /* Rule 6: Prefer matching label */
1092 if (hiscore.rule < 6) {
1093 if (ipv6_saddr_label(&ifa_result->addr, hiscore.addr_type) == daddr_label)
1094 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1095 hiscore.rule++;
1096 }
1097 if (ipv6_saddr_label(&ifa->addr, score.addr_type) == daddr_label) {
1098 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1099 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1100 score.rule = 6;
1101 goto record_it;
1102 }
1103 } else {
1104 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1105 continue;
1106 }
1107
Peter Chubb44fd0262005-11-09 13:05:47 -08001108#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001109 /* Rule 7: Prefer public address
1110 * Note: prefer temprary address if use_tempaddr >= 2
1111 */
1112 if (hiscore.rule < 7) {
1113 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1114 (ifa_result->idev->cnf.use_tempaddr >= 2))
1115 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1116 hiscore.rule++;
1117 }
1118 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1119 (ifa->idev->cnf.use_tempaddr >= 2)) {
1120 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1121 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1122 score.rule = 7;
1123 goto record_it;
1124 }
1125 } else {
1126 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1127 continue;
1128 }
YOSHIFUJI Hideaki5e2707f2006-06-22 01:41:18 -07001129#else
1130 if (hiscore.rule < 7)
1131 hiscore.rule++;
Peter Chubb44fd0262005-11-09 13:05:47 -08001132#endif
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001133 /* Rule 8: Use longest matching prefix */
Yan Zheng12da2a42005-11-14 21:42:46 -08001134 if (hiscore.rule < 8) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001135 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
Yan Zheng12da2a42005-11-14 21:42:46 -08001136 hiscore.rule++;
1137 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001138 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1139 if (score.matchlen > hiscore.matchlen) {
1140 score.rule = 8;
1141 goto record_it;
1142 }
1143#if 0
1144 else if (score.matchlen < hiscore.matchlen)
1145 continue;
1146#endif
1147
1148 /* Final Rule: choose first available one */
1149 continue;
1150record_it:
1151 if (ifa_result)
1152 in6_ifa_put(ifa_result);
1153 in6_ifa_hold(ifa);
1154 ifa_result = ifa;
1155 hiscore = score;
1156 }
1157 read_unlock_bh(&idev->lock);
1158 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001159 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 read_unlock(&dev_base_lock);
1161
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001162 if (!ifa_result)
1163 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001164
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001165 ipv6_addr_copy(saddr, &ifa_result->addr);
1166 in6_ifa_put(ifa_result);
1167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
1170
1171int ipv6_get_saddr(struct dst_entry *dst,
1172 struct in6_addr *daddr, struct in6_addr *saddr)
1173{
YOSHIFUJI Hideaki7a3025b2006-10-13 16:17:25 +09001174 return ipv6_dev_get_saddr(dst ? ip6_dst_idev(dst)->dev : NULL, daddr, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001177EXPORT_SYMBOL(ipv6_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Neil Horman95c385b2007-04-25 17:08:10 -07001179int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1180 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 struct inet6_dev *idev;
1183 int err = -EADDRNOTAVAIL;
1184
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001185 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if ((idev = __in6_dev_get(dev)) != NULL) {
1187 struct inet6_ifaddr *ifp;
1188
1189 read_lock_bh(&idev->lock);
1190 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
Neil Horman95c385b2007-04-25 17:08:10 -07001191 if (ifp->scope == IFA_LINK && !(ifp->flags & banned_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 ipv6_addr_copy(addr, &ifp->addr);
1193 err = 0;
1194 break;
1195 }
1196 }
1197 read_unlock_bh(&idev->lock);
1198 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001199 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return err;
1201}
1202
1203static int ipv6_count_addresses(struct inet6_dev *idev)
1204{
1205 int cnt = 0;
1206 struct inet6_ifaddr *ifp;
1207
1208 read_lock_bh(&idev->lock);
1209 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1210 cnt++;
1211 read_unlock_bh(&idev->lock);
1212 return cnt;
1213}
1214
1215int ipv6_chk_addr(struct in6_addr *addr, struct net_device *dev, int strict)
1216{
1217 struct inet6_ifaddr * ifp;
1218 u8 hash = ipv6_addr_hash(addr);
1219
1220 read_lock_bh(&addrconf_hash_lock);
1221 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1222 if (ipv6_addr_equal(&ifp->addr, addr) &&
1223 !(ifp->flags&IFA_F_TENTATIVE)) {
1224 if (dev == NULL || ifp->idev->dev == dev ||
1225 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1226 break;
1227 }
1228 }
1229 read_unlock_bh(&addrconf_hash_lock);
1230 return ifp != NULL;
1231}
1232
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001233EXPORT_SYMBOL(ipv6_chk_addr);
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235static
1236int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev)
1237{
1238 struct inet6_ifaddr * ifp;
1239 u8 hash = ipv6_addr_hash(addr);
1240
1241 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1242 if (ipv6_addr_equal(&ifp->addr, addr)) {
1243 if (dev == NULL || ifp->idev->dev == dev)
1244 break;
1245 }
1246 }
1247 return ifp != NULL;
1248}
1249
1250struct inet6_ifaddr * ipv6_get_ifaddr(struct in6_addr *addr, struct net_device *dev, int strict)
1251{
1252 struct inet6_ifaddr * ifp;
1253 u8 hash = ipv6_addr_hash(addr);
1254
1255 read_lock_bh(&addrconf_hash_lock);
1256 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1257 if (ipv6_addr_equal(&ifp->addr, addr)) {
1258 if (dev == NULL || ifp->idev->dev == dev ||
1259 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1260 in6_ifa_hold(ifp);
1261 break;
1262 }
1263 }
1264 }
1265 read_unlock_bh(&addrconf_hash_lock);
1266
1267 return ifp;
1268}
1269
1270int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1271{
1272 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
Arnaldo Carvalho de Melo0fa1a532005-12-13 23:23:09 -08001273 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
Al Viro82103232006-09-27 18:44:10 -07001274 __be32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1275 __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 int sk_ipv6only = ipv6_only_sock(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001277 int sk2_ipv6only = inet_v6_ipv6only(sk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1279 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1280
1281 if (!sk2_rcv_saddr && !sk_ipv6only)
1282 return 1;
1283
1284 if (addr_type2 == IPV6_ADDR_ANY &&
1285 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1286 return 1;
1287
1288 if (addr_type == IPV6_ADDR_ANY &&
1289 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1290 return 1;
1291
1292 if (sk2_rcv_saddr6 &&
1293 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1294 return 1;
1295
1296 if (addr_type == IPV6_ADDR_MAPPED &&
1297 !sk2_ipv6only &&
1298 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1299 return 1;
1300
1301 return 0;
1302}
1303
1304/* Gets referenced address, destroys ifaddr */
1305
Adrian Bunk9f5336e2006-01-07 13:24:25 -08001306static void addrconf_dad_stop(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (ifp->flags&IFA_F_PERMANENT) {
1309 spin_lock_bh(&ifp->lock);
1310 addrconf_del_timer(ifp);
1311 ifp->flags |= IFA_F_TENTATIVE;
1312 spin_unlock_bh(&ifp->lock);
1313 in6_ifa_put(ifp);
1314#ifdef CONFIG_IPV6_PRIVACY
1315 } else if (ifp->flags&IFA_F_TEMPORARY) {
1316 struct inet6_ifaddr *ifpub;
1317 spin_lock_bh(&ifp->lock);
1318 ifpub = ifp->ifpub;
1319 if (ifpub) {
1320 in6_ifa_hold(ifpub);
1321 spin_unlock_bh(&ifp->lock);
1322 ipv6_create_tempaddr(ifpub, ifp);
1323 in6_ifa_put(ifpub);
1324 } else {
1325 spin_unlock_bh(&ifp->lock);
1326 }
1327 ipv6_del_addr(ifp);
1328#endif
1329 } else
1330 ipv6_del_addr(ifp);
1331}
1332
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001333void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1334{
1335 if (net_ratelimit())
1336 printk(KERN_INFO "%s: duplicate address detected!\n", ifp->idev->dev->name);
1337 addrconf_dad_stop(ifp);
1338}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340/* Join to solicited addr multicast group. */
1341
1342void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1343{
1344 struct in6_addr maddr;
1345
1346 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1347 return;
1348
1349 addrconf_addr_solict_mult(addr, &maddr);
1350 ipv6_dev_mc_inc(dev, &maddr);
1351}
1352
1353void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1354{
1355 struct in6_addr maddr;
1356
1357 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1358 return;
1359
1360 addrconf_addr_solict_mult(addr, &maddr);
1361 __ipv6_dev_mc_dec(idev, &maddr);
1362}
1363
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001364static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 struct in6_addr addr;
1367 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1368 if (ipv6_addr_any(&addr))
1369 return;
1370 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1371}
1372
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001373static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
1375 struct in6_addr addr;
1376 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1377 if (ipv6_addr_any(&addr))
1378 return;
1379 __ipv6_dev_ac_dec(ifp->idev, &addr);
1380}
1381
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001382static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1383{
1384 if (dev->addr_len != ETH_ALEN)
1385 return -1;
1386 memcpy(eui, dev->dev_addr, 3);
1387 memcpy(eui + 5, dev->dev_addr + 3, 3);
1388
1389 /*
1390 * The zSeries OSA network cards can be shared among various
1391 * OS instances, but the OSA cards have only one MAC address.
1392 * This leads to duplicate address conflicts in conjunction
1393 * with IPv6 if more than one instance uses the same card.
1394 *
1395 * The driver for these cards can deliver a unique 16-bit
1396 * identifier for each instance sharing the same card. It is
1397 * placed instead of 0xFFFE in the interface identifier. The
1398 * "u" bit of the interface identifier is not inverted in this
1399 * case. Hence the resulting interface identifier has local
1400 * scope according to RFC2373.
1401 */
1402 if (dev->dev_id) {
1403 eui[3] = (dev->dev_id >> 8) & 0xFF;
1404 eui[4] = dev->dev_id & 0xFF;
1405 } else {
1406 eui[3] = 0xFF;
1407 eui[4] = 0xFE;
1408 eui[0] ^= 2;
1409 }
1410 return 0;
1411}
1412
1413static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1414{
1415 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1416 if (dev->addr_len != ARCNET_ALEN)
1417 return -1;
1418 memset(eui, 0, 7);
1419 eui[7] = *(u8*)dev->dev_addr;
1420 return 0;
1421}
1422
1423static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1424{
1425 if (dev->addr_len != INFINIBAND_ALEN)
1426 return -1;
1427 memcpy(eui, dev->dev_addr + 12, 8);
1428 eui[0] |= 2;
1429 return 0;
1430}
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1433{
1434 switch (dev->type) {
1435 case ARPHRD_ETHER:
1436 case ARPHRD_FDDI:
1437 case ARPHRD_IEEE802_TR:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001438 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001440 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001442 return addrconf_ifid_infiniband(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444 return -1;
1445}
1446
1447static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1448{
1449 int err = -1;
1450 struct inet6_ifaddr *ifp;
1451
1452 read_lock_bh(&idev->lock);
1453 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1454 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1455 memcpy(eui, ifp->addr.s6_addr+8, 8);
1456 err = 0;
1457 break;
1458 }
1459 }
1460 read_unlock_bh(&idev->lock);
1461 return err;
1462}
1463
1464#ifdef CONFIG_IPV6_PRIVACY
1465/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1466static int __ipv6_regen_rndid(struct inet6_dev *idev)
1467{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001469 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 /*
1473 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1474 * check if generated address is not inappropriate
1475 *
1476 * - Reserved subnet anycast (RFC 2526)
1477 * 11111101 11....11 1xxxxxxx
1478 * - ISATAP (draft-ietf-ngtrans-isatap-13.txt) 5.1
1479 * 00-00-5E-FE-xx-xx-xx-xx
1480 * - value 0
1481 * - XXX: already assigned to an address on the device
1482 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001483 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1485 (idev->rndid[7]&0x80))
1486 goto regen;
1487 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1488 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1489 goto regen;
1490 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1491 goto regen;
1492 }
1493
1494 return 0;
1495}
1496
1497static void ipv6_regen_rndid(unsigned long data)
1498{
1499 struct inet6_dev *idev = (struct inet6_dev *) data;
1500 unsigned long expires;
1501
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001502 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 write_lock_bh(&idev->lock);
1504
1505 if (idev->dead)
1506 goto out;
1507
1508 if (__ipv6_regen_rndid(idev) < 0)
1509 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001512 idev->cnf.temp_prefered_lft * HZ -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1514 if (time_before(expires, jiffies)) {
1515 printk(KERN_WARNING
1516 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1517 idev->dev->name);
1518 goto out;
1519 }
1520
1521 if (!mod_timer(&idev->regen_timer, expires))
1522 in6_dev_hold(idev);
1523
1524out:
1525 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001526 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 in6_dev_put(idev);
1528}
1529
1530static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1531 int ret = 0;
1532
1533 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1534 ret = __ipv6_regen_rndid(idev);
1535 return ret;
1536}
1537#endif
1538
1539/*
1540 * Add prefix route.
1541 */
1542
1543static void
1544addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001545 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Thomas Graf86872cb2006-08-22 00:01:08 -07001547 struct fib6_config cfg = {
1548 .fc_table = RT6_TABLE_PREFIX,
1549 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1550 .fc_ifindex = dev->ifindex,
1551 .fc_expires = expires,
1552 .fc_dst_len = plen,
1553 .fc_flags = RTF_UP | flags,
1554 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Thomas Graf86872cb2006-08-22 00:01:08 -07001556 ipv6_addr_copy(&cfg.fc_dst, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 /* Prevent useless cloning on PtP SIT.
1559 This thing is done here expecting that the whole
1560 class of non-broadcast devices need not cloning.
1561 */
Joerg Roedel0be669b2006-10-10 14:49:53 -07001562#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Thomas Graf86872cb2006-08-22 00:01:08 -07001563 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1564 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001565#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Thomas Graf86872cb2006-08-22 00:01:08 -07001567 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
1570/* Create "default" multicast route to the interface */
1571
1572static void addrconf_add_mroute(struct net_device *dev)
1573{
Thomas Graf86872cb2006-08-22 00:01:08 -07001574 struct fib6_config cfg = {
1575 .fc_table = RT6_TABLE_LOCAL,
1576 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1577 .fc_ifindex = dev->ifindex,
1578 .fc_dst_len = 8,
1579 .fc_flags = RTF_UP,
1580 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Thomas Graf86872cb2006-08-22 00:01:08 -07001582 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1583
1584 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
Joerg Roedel0be669b2006-10-10 14:49:53 -07001587#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588static void sit_route_add(struct net_device *dev)
1589{
Thomas Graf86872cb2006-08-22 00:01:08 -07001590 struct fib6_config cfg = {
1591 .fc_table = RT6_TABLE_MAIN,
1592 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1593 .fc_ifindex = dev->ifindex,
1594 .fc_dst_len = 96,
1595 .fc_flags = RTF_UP | RTF_NONEXTHOP,
1596 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001599 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001601#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603static void addrconf_add_lroute(struct net_device *dev)
1604{
1605 struct in6_addr addr;
1606
1607 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1608 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1609}
1610
1611static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1612{
1613 struct inet6_dev *idev;
1614
1615 ASSERT_RTNL();
1616
1617 if ((idev = ipv6_find_idev(dev)) == NULL)
1618 return NULL;
1619
1620 /* Add default multicast route */
1621 addrconf_add_mroute(dev);
1622
1623 /* Add link local route */
1624 addrconf_add_lroute(dev);
1625 return idev;
1626}
1627
1628void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1629{
1630 struct prefix_info *pinfo;
1631 __u32 valid_lft;
1632 __u32 prefered_lft;
1633 int addr_type;
1634 unsigned long rt_expires;
1635 struct inet6_dev *in6_dev;
1636
1637 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (len < sizeof(struct prefix_info)) {
1640 ADBG(("addrconf: prefix option too short\n"));
1641 return;
1642 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 /*
1645 * Validation checks ([ADDRCONF], page 19)
1646 */
1647
1648 addr_type = ipv6_addr_type(&pinfo->prefix);
1649
1650 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1651 return;
1652
1653 valid_lft = ntohl(pinfo->valid);
1654 prefered_lft = ntohl(pinfo->prefered);
1655
1656 if (prefered_lft > valid_lft) {
1657 if (net_ratelimit())
1658 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1659 return;
1660 }
1661
1662 in6_dev = in6_dev_get(dev);
1663
1664 if (in6_dev == NULL) {
1665 if (net_ratelimit())
1666 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1667 return;
1668 }
1669
1670 /*
1671 * Two things going on here:
1672 * 1) Add routes for on-link prefixes
1673 * 2) Configure prefixes with the auto flag set
1674 */
1675
1676 /* Avoid arithmetic overflow. Really, we could
1677 save rt_expires in seconds, likely valid_lft,
1678 but it would require division in fib gc, that it
1679 not good.
1680 */
1681 if (valid_lft >= 0x7FFFFFFF/HZ)
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001682 rt_expires = 0x7FFFFFFF - (0x7FFFFFFF % HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 else
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001684 rt_expires = valid_lft * HZ;
1685
1686 /*
1687 * We convert this (in jiffies) to clock_t later.
1688 * Avoid arithmetic overflow there as well.
1689 * Overflow can happen only if HZ < USER_HZ.
1690 */
1691 if (HZ < USER_HZ && rt_expires > 0x7FFFFFFF / USER_HZ)
1692 rt_expires = 0x7FFFFFFF / USER_HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 if (pinfo->onlink) {
1695 struct rt6_info *rt;
1696 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1697
1698 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1699 if (rt->rt6i_flags&RTF_EXPIRES) {
1700 if (valid_lft == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001701 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 rt = NULL;
1703 } else {
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001704 rt->rt6i_expires = jiffies + rt_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706 }
1707 } else if (valid_lft) {
1708 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001709 dev, jiffies_to_clock_t(rt_expires), RTF_ADDRCONF|RTF_EXPIRES|RTF_PREFIX_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 if (rt)
1712 dst_release(&rt->u.dst);
1713 }
1714
1715 /* Try to figure out our local address for this prefix */
1716
1717 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1718 struct inet6_ifaddr * ifp;
1719 struct in6_addr addr;
1720 int create = 0, update_lft = 0;
1721
1722 if (pinfo->prefix_len == 64) {
1723 memcpy(&addr, &pinfo->prefix, 8);
1724 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1725 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1726 in6_dev_put(in6_dev);
1727 return;
1728 }
1729 goto ok;
1730 }
1731 if (net_ratelimit())
1732 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1733 pinfo->prefix_len);
1734 in6_dev_put(in6_dev);
1735 return;
1736
1737ok:
1738
1739 ifp = ipv6_get_ifaddr(&addr, dev, 1);
1740
1741 if (ifp == NULL && valid_lft) {
1742 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001743 u32 addr_flags = 0;
1744
1745#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1746 if (in6_dev->cnf.optimistic_dad &&
1747 !ipv6_devconf.forwarding)
1748 addr_flags = IFA_F_OPTIMISTIC;
1749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 /* Do not allow to create too much of autoconfigured
1752 * addresses; this would be too easy way to crash kernel.
1753 */
1754 if (!max_addresses ||
1755 ipv6_count_addresses(in6_dev) < max_addresses)
1756 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07001757 addr_type&IPV6_ADDR_SCOPE_MASK,
1758 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 if (!ifp || IS_ERR(ifp)) {
1761 in6_dev_put(in6_dev);
1762 return;
1763 }
1764
1765 update_lft = create = 1;
1766 ifp->cstamp = jiffies;
1767 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1768 }
1769
1770 if (ifp) {
1771 int flags;
1772 unsigned long now;
1773#ifdef CONFIG_IPV6_PRIVACY
1774 struct inet6_ifaddr *ift;
1775#endif
1776 u32 stored_lft;
1777
1778 /* update lifetime (RFC2462 5.5.3 e) */
1779 spin_lock(&ifp->lock);
1780 now = jiffies;
1781 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1782 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1783 else
1784 stored_lft = 0;
1785 if (!update_lft && stored_lft) {
1786 if (valid_lft > MIN_VALID_LIFETIME ||
1787 valid_lft > stored_lft)
1788 update_lft = 1;
1789 else if (stored_lft <= MIN_VALID_LIFETIME) {
1790 /* valid_lft <= stored_lft is always true */
1791 /* XXX: IPsec */
1792 update_lft = 0;
1793 } else {
1794 valid_lft = MIN_VALID_LIFETIME;
1795 if (valid_lft < prefered_lft)
1796 prefered_lft = valid_lft;
1797 update_lft = 1;
1798 }
1799 }
1800
1801 if (update_lft) {
1802 ifp->valid_lft = valid_lft;
1803 ifp->prefered_lft = prefered_lft;
1804 ifp->tstamp = now;
1805 flags = ifp->flags;
1806 ifp->flags &= ~IFA_F_DEPRECATED;
1807 spin_unlock(&ifp->lock);
1808
1809 if (!(flags&IFA_F_TENTATIVE))
1810 ipv6_ifa_notify(0, ifp);
1811 } else
1812 spin_unlock(&ifp->lock);
1813
1814#ifdef CONFIG_IPV6_PRIVACY
1815 read_lock_bh(&in6_dev->lock);
1816 /* update all temporary addresses in the list */
1817 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1818 /*
1819 * When adjusting the lifetimes of an existing
1820 * temporary address, only lower the lifetimes.
1821 * Implementations must not increase the
1822 * lifetimes of an existing temporary address
1823 * when processing a Prefix Information Option.
1824 */
1825 spin_lock(&ift->lock);
1826 flags = ift->flags;
1827 if (ift->valid_lft > valid_lft &&
1828 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1829 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1830 if (ift->prefered_lft > prefered_lft &&
1831 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1832 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1833 spin_unlock(&ift->lock);
1834 if (!(flags&IFA_F_TENTATIVE))
1835 ipv6_ifa_notify(0, ift);
1836 }
1837
1838 if (create && in6_dev->cnf.use_tempaddr > 0) {
1839 /*
1840 * When a new public address is created as described in [ADDRCONF],
1841 * also create a new temporary address.
1842 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001843 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 ipv6_create_tempaddr(ifp, NULL);
1845 } else {
1846 read_unlock_bh(&in6_dev->lock);
1847 }
1848#endif
1849 in6_ifa_put(ifp);
1850 addrconf_verify(0);
1851 }
1852 }
1853 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1854 in6_dev_put(in6_dev);
1855}
1856
1857/*
1858 * Set destination address.
1859 * Special case for SIT interfaces where we create a new "virtual"
1860 * device.
1861 */
1862int addrconf_set_dstaddr(void __user *arg)
1863{
1864 struct in6_ifreq ireq;
1865 struct net_device *dev;
1866 int err = -EINVAL;
1867
1868 rtnl_lock();
1869
1870 err = -EFAULT;
1871 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1872 goto err_exit;
1873
Eric W. Biederman881d9662007-09-17 11:56:21 -07001874 dev = __dev_get_by_index(&init_net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 err = -ENODEV;
1877 if (dev == NULL)
1878 goto err_exit;
1879
Joerg Roedel0be669b2006-10-10 14:49:53 -07001880#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (dev->type == ARPHRD_SIT) {
1882 struct ifreq ifr;
1883 mm_segment_t oldfs;
1884 struct ip_tunnel_parm p;
1885
1886 err = -EADDRNOTAVAIL;
1887 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1888 goto err_exit;
1889
1890 memset(&p, 0, sizeof(p));
1891 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1892 p.iph.saddr = 0;
1893 p.iph.version = 4;
1894 p.iph.ihl = 5;
1895 p.iph.protocol = IPPROTO_IPV6;
1896 p.iph.ttl = 64;
1897 ifr.ifr_ifru.ifru_data = (void __user *)&p;
1898
1899 oldfs = get_fs(); set_fs(KERNEL_DS);
1900 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1901 set_fs(oldfs);
1902
1903 if (err == 0) {
1904 err = -ENOBUFS;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001905 if ((dev = __dev_get_by_name(&init_net, p.name)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 goto err_exit;
1907 err = dev_open(dev);
1908 }
1909 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07001910#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912err_exit:
1913 rtnl_unlock();
1914 return err;
1915}
1916
1917/*
1918 * Manual configuration of address on an interface
1919 */
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001920static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07001921 __u8 ifa_flags, __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 struct inet6_ifaddr *ifp;
1924 struct inet6_dev *idev;
1925 struct net_device *dev;
1926 int scope;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001927 u32 flags = RTF_EXPIRES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001930
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001931 /* check the lifetime */
1932 if (!valid_lft || prefered_lft > valid_lft)
1933 return -EINVAL;
1934
Eric W. Biederman881d9662007-09-17 11:56:21 -07001935 if ((dev = __dev_get_by_index(&init_net, ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if ((idev = addrconf_add_dev(dev)) == NULL)
1939 return -ENOBUFS;
1940
1941 scope = ipv6_addr_scope(pfx);
1942
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001943 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001944 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001945 flags = 0;
1946 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001947 valid_lft = 0x7FFFFFFF/HZ;
1948
1949 if (prefered_lft == 0)
1950 ifa_flags |= IFA_F_DEPRECATED;
1951 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
1952 (prefered_lft != INFINITY_LIFE_TIME))
1953 prefered_lft = 0x7FFFFFFF/HZ;
1954
1955 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07001958 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001959 ifp->valid_lft = valid_lft;
1960 ifp->prefered_lft = prefered_lft;
1961 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07001962 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001963
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09001964 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
1965 jiffies_to_clock_t(valid_lft * HZ), flags);
Neil Horman95c385b2007-04-25 17:08:10 -07001966 /*
1967 * Note that section 3.1 of RFC 4429 indicates
1968 * that the Optimistic flag should not be set for
1969 * manually configured addresses
1970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 addrconf_dad_start(ifp, 0);
1972 in6_ifa_put(ifp);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09001973 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return 0;
1975 }
1976
1977 return PTR_ERR(ifp);
1978}
1979
1980static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
1981{
1982 struct inet6_ifaddr *ifp;
1983 struct inet6_dev *idev;
1984 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001985
Eric W. Biederman881d9662007-09-17 11:56:21 -07001986 if ((dev = __dev_get_by_index(&init_net, ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return -ENODEV;
1988
1989 if ((idev = __in6_dev_get(dev)) == NULL)
1990 return -ENXIO;
1991
1992 read_lock_bh(&idev->lock);
1993 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
1994 if (ifp->prefix_len == plen &&
1995 ipv6_addr_equal(pfx, &ifp->addr)) {
1996 in6_ifa_hold(ifp);
1997 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 ipv6_del_addr(ifp);
2000
2001 /* If the last address is deleted administratively,
2002 disable IPv6 on this interface.
2003 */
2004 if (idev->addr_list == NULL)
2005 addrconf_ifdown(idev->dev, 1);
2006 return 0;
2007 }
2008 }
2009 read_unlock_bh(&idev->lock);
2010 return -EADDRNOTAVAIL;
2011}
2012
2013
2014int addrconf_add_ifaddr(void __user *arg)
2015{
2016 struct in6_ifreq ireq;
2017 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if (!capable(CAP_NET_ADMIN))
2020 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2023 return -EFAULT;
2024
2025 rtnl_lock();
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002026 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002027 IFA_F_PERMANENT, INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 rtnl_unlock();
2029 return err;
2030}
2031
2032int addrconf_del_ifaddr(void __user *arg)
2033{
2034 struct in6_ifreq ireq;
2035 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (!capable(CAP_NET_ADMIN))
2038 return -EPERM;
2039
2040 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2041 return -EFAULT;
2042
2043 rtnl_lock();
2044 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
2045 rtnl_unlock();
2046 return err;
2047}
2048
Joerg Roedel0be669b2006-10-10 14:49:53 -07002049#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050static void sit_add_v4_addrs(struct inet6_dev *idev)
2051{
2052 struct inet6_ifaddr * ifp;
2053 struct in6_addr addr;
2054 struct net_device *dev;
2055 int scope;
2056
2057 ASSERT_RTNL();
2058
2059 memset(&addr, 0, sizeof(struct in6_addr));
2060 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2061
2062 if (idev->dev->flags&IFF_POINTOPOINT) {
2063 addr.s6_addr32[0] = htonl(0xfe800000);
2064 scope = IFA_LINK;
2065 } else {
2066 scope = IPV6_ADDR_COMPATv4;
2067 }
2068
2069 if (addr.s6_addr32[3]) {
2070 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
2071 if (!IS_ERR(ifp)) {
2072 spin_lock_bh(&ifp->lock);
2073 ifp->flags &= ~IFA_F_TENTATIVE;
2074 spin_unlock_bh(&ifp->lock);
2075 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2076 in6_ifa_put(ifp);
2077 }
2078 return;
2079 }
2080
Eric W. Biederman881d9662007-09-17 11:56:21 -07002081 for_each_netdev(&init_net, dev) {
Herbert Xue5ed6392005-10-03 14:35:55 -07002082 struct in_device * in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (in_dev && (dev->flags & IFF_UP)) {
2084 struct in_ifaddr * ifa;
2085
2086 int flag = scope;
2087
2088 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2089 int plen;
2090
2091 addr.s6_addr32[3] = ifa->ifa_local;
2092
2093 if (ifa->ifa_scope == RT_SCOPE_LINK)
2094 continue;
2095 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2096 if (idev->dev->flags&IFF_POINTOPOINT)
2097 continue;
2098 flag |= IFA_HOST;
2099 }
2100 if (idev->dev->flags&IFF_POINTOPOINT)
2101 plen = 64;
2102 else
2103 plen = 96;
2104
2105 ifp = ipv6_add_addr(idev, &addr, plen, flag,
2106 IFA_F_PERMANENT);
2107 if (!IS_ERR(ifp)) {
2108 spin_lock_bh(&ifp->lock);
2109 ifp->flags &= ~IFA_F_TENTATIVE;
2110 spin_unlock_bh(&ifp->lock);
2111 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2112 in6_ifa_put(ifp);
2113 }
2114 }
2115 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120static void init_loopback(struct net_device *dev)
2121{
2122 struct inet6_dev *idev;
2123 struct inet6_ifaddr * ifp;
2124
2125 /* ::1 */
2126
2127 ASSERT_RTNL();
2128
2129 if ((idev = ipv6_find_idev(dev)) == NULL) {
2130 printk(KERN_DEBUG "init loopback: add_dev failed\n");
2131 return;
2132 }
2133
2134 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
2135 if (!IS_ERR(ifp)) {
2136 spin_lock_bh(&ifp->lock);
2137 ifp->flags &= ~IFA_F_TENTATIVE;
2138 spin_unlock_bh(&ifp->lock);
2139 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2140 in6_ifa_put(ifp);
2141 }
2142}
2143
2144static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2145{
2146 struct inet6_ifaddr * ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002147 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Neil Horman95c385b2007-04-25 17:08:10 -07002149#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2150 if (idev->cnf.optimistic_dad &&
2151 !ipv6_devconf.forwarding)
2152 addr_flags |= IFA_F_OPTIMISTIC;
2153#endif
2154
2155
2156 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002158 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 addrconf_dad_start(ifp, 0);
2160 in6_ifa_put(ifp);
2161 }
2162}
2163
2164static void addrconf_dev_config(struct net_device *dev)
2165{
2166 struct in6_addr addr;
2167 struct inet6_dev * idev;
2168
2169 ASSERT_RTNL();
2170
Herbert Xu74235a22007-06-14 13:02:55 -07002171 if ((dev->type != ARPHRD_ETHER) &&
2172 (dev->type != ARPHRD_FDDI) &&
2173 (dev->type != ARPHRD_IEEE802_TR) &&
2174 (dev->type != ARPHRD_ARCNET) &&
2175 (dev->type != ARPHRD_INFINIBAND)) {
2176 /* Alas, we support only Ethernet autoconfiguration. */
2177 return;
2178 }
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 idev = addrconf_add_dev(dev);
2181 if (idev == NULL)
2182 return;
2183
2184 memset(&addr, 0, sizeof(struct in6_addr));
2185 addr.s6_addr32[0] = htonl(0xFE800000);
2186
2187 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2188 addrconf_add_linklocal(idev, &addr);
2189}
2190
Joerg Roedel0be669b2006-10-10 14:49:53 -07002191#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192static void addrconf_sit_config(struct net_device *dev)
2193{
2194 struct inet6_dev *idev;
2195
2196 ASSERT_RTNL();
2197
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002198 /*
2199 * Configure the tunnel with one of our IPv4
2200 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * our v4 addrs in the tunnel
2202 */
2203
2204 if ((idev = ipv6_find_idev(dev)) == NULL) {
2205 printk(KERN_DEBUG "init sit: add_dev failed\n");
2206 return;
2207 }
2208
2209 sit_add_v4_addrs(idev);
2210
2211 if (dev->flags&IFF_POINTOPOINT) {
2212 addrconf_add_mroute(dev);
2213 addrconf_add_lroute(dev);
2214 } else
2215 sit_route_add(dev);
2216}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002217#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219static inline int
2220ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2221{
2222 struct in6_addr lladdr;
2223
Neil Horman95c385b2007-04-25 17:08:10 -07002224 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 addrconf_add_linklocal(idev, &lladdr);
2226 return 0;
2227 }
2228 return -1;
2229}
2230
2231static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2232{
2233 struct net_device *link_dev;
2234
2235 /* first try to inherit the link-local address from the link device */
2236 if (idev->dev->iflink &&
Eric W. Biederman881d9662007-09-17 11:56:21 -07002237 (link_dev = __dev_get_by_index(&init_net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 if (!ipv6_inherit_linklocal(idev, link_dev))
2239 return;
2240 }
2241 /* then try to inherit it from any device */
Eric W. Biederman881d9662007-09-17 11:56:21 -07002242 for_each_netdev(&init_net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (!ipv6_inherit_linklocal(idev, link_dev))
2244 return;
2245 }
2246 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2247}
2248
2249/*
2250 * Autoconfigure tunnel with a link-local address so routing protocols,
2251 * DHCPv6, MLD etc. can be run over the virtual link
2252 */
2253
2254static void addrconf_ip6_tnl_config(struct net_device *dev)
2255{
2256 struct inet6_dev *idev;
2257
2258 ASSERT_RTNL();
2259
2260 if ((idev = addrconf_add_dev(dev)) == NULL) {
2261 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2262 return;
2263 }
2264 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002267static int addrconf_notify(struct notifier_block *this, unsigned long event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 void * data)
2269{
2270 struct net_device *dev = (struct net_device *) data;
Herbert Xu74235a22007-06-14 13:02:55 -07002271 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002272 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002273 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002275 if (dev->nd_net != &init_net)
2276 return NOTIFY_DONE;
2277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 switch(event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002279 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002280 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002281 idev = ipv6_add_dev(dev);
2282 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002283 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002284 }
2285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002287 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002288 if (dev->flags & IFF_SLAVE)
2289 break;
2290
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002291 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002292 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002293 /* device is not ready yet. */
2294 printk(KERN_INFO
2295 "ADDRCONF(NETDEV_UP): %s: "
2296 "link is not ready\n",
2297 dev->name);
2298 break;
2299 }
Kristian Slavov99081042006-02-08 16:10:53 -08002300
2301 if (idev)
2302 idev->if_flags |= IF_READY;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002303 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002304 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002305 /* device is still not ready. */
2306 break;
2307 }
2308
2309 if (idev) {
2310 if (idev->if_flags & IF_READY) {
2311 /* device is already configured. */
2312 break;
2313 }
2314 idev->if_flags |= IF_READY;
2315 }
2316
2317 printk(KERN_INFO
2318 "ADDRCONF(NETDEV_CHANGE): %s: "
2319 "link becomes ready\n",
2320 dev->name);
2321
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002322 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002323 }
2324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 switch(dev->type) {
Joerg Roedel0be669b2006-10-10 14:49:53 -07002326#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 case ARPHRD_SIT:
2328 addrconf_sit_config(dev);
2329 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 case ARPHRD_TUNNEL6:
2332 addrconf_ip6_tnl_config(dev);
2333 break;
2334 case ARPHRD_LOOPBACK:
2335 init_loopback(dev);
2336 break;
2337
2338 default:
2339 addrconf_dev_config(dev);
2340 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002343 if (run_pending)
2344 addrconf_dad_run(idev);
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /* If the MTU changed during the interface down, when the
2347 interface up, the changed MTU must be reflected in the
2348 idev as well as routers.
2349 */
2350 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2351 rt6_mtu_change(dev, dev->mtu);
2352 idev->cnf.mtu6 = dev->mtu;
2353 }
2354 idev->tstamp = jiffies;
2355 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2356 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2357 stop IPv6 on this interface.
2358 */
2359 if (dev->mtu < IPV6_MIN_MTU)
2360 addrconf_ifdown(dev, event != NETDEV_DOWN);
2361 }
2362 break;
2363
2364 case NETDEV_CHANGEMTU:
2365 if ( idev && dev->mtu >= IPV6_MIN_MTU) {
2366 rt6_mtu_change(dev, dev->mtu);
2367 idev->cnf.mtu6 = dev->mtu;
2368 break;
2369 }
2370
2371 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2372
2373 case NETDEV_DOWN:
2374 case NETDEV_UNREGISTER:
2375 /*
2376 * Remove all addresses from this interface.
2377 */
2378 addrconf_ifdown(dev, event != NETDEV_DOWN);
2379 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002383 snmp6_unregister_dev(idev);
2384#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 addrconf_sysctl_unregister(&idev->cnf);
2386 neigh_sysctl_unregister(idev->nd_parms);
2387 neigh_sysctl_register(dev, idev->nd_parms,
2388 NET_IPV6, NET_IPV6_NEIGH, "ipv6",
2389 &ndisc_ifinfo_sysctl_change,
2390 NULL);
2391 addrconf_sysctl_register(idev, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392#endif
Herbert Xub217d612007-07-30 17:04:52 -07002393 err = snmp6_register_dev(idev);
2394 if (err)
2395 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 return NOTIFY_OK;
2401}
2402
2403/*
2404 * addrconf module should be notified of a device going up
2405 */
2406static struct notifier_block ipv6_dev_notf = {
2407 .notifier_call = addrconf_notify,
2408 .priority = 0
2409};
2410
2411static int addrconf_ifdown(struct net_device *dev, int how)
2412{
2413 struct inet6_dev *idev;
2414 struct inet6_ifaddr *ifa, **bifa;
2415 int i;
2416
2417 ASSERT_RTNL();
2418
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07002419 if (dev == init_net.loopback_dev && how == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 how = 0;
2421
2422 rt6_ifdown(dev);
2423 neigh_ifdown(&nd_tbl, dev);
2424
2425 idev = __in6_dev_get(dev);
2426 if (idev == NULL)
2427 return -ENODEV;
2428
2429 /* Step 1: remove reference to ipv6 device from parent device.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002430 Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 */
2432 if (how == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002434
2435 /* protected by rtnl_lock */
2436 rcu_assign_pointer(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 /* Step 1.5: remove snmp6 entry */
2439 snmp6_unregister_dev(idev);
2440
2441 }
2442
2443 /* Step 2: clear hash table */
2444 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2445 bifa = &inet6_addr_lst[i];
2446
2447 write_lock_bh(&addrconf_hash_lock);
2448 while ((ifa = *bifa) != NULL) {
2449 if (ifa->idev == idev) {
2450 *bifa = ifa->lst_next;
2451 ifa->lst_next = NULL;
2452 addrconf_del_timer(ifa);
2453 in6_ifa_put(ifa);
2454 continue;
2455 }
2456 bifa = &ifa->lst_next;
2457 }
2458 write_unlock_bh(&addrconf_hash_lock);
2459 }
2460
2461 write_lock_bh(&idev->lock);
2462
2463 /* Step 3: clear flags for stateless addrconf */
2464 if (how != 1)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002465 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 /* Step 4: clear address list */
2468#ifdef CONFIG_IPV6_PRIVACY
2469 if (how == 1 && del_timer(&idev->regen_timer))
2470 in6_dev_put(idev);
2471
2472 /* clear tempaddr list */
2473 while ((ifa = idev->tempaddr_list) != NULL) {
2474 idev->tempaddr_list = ifa->tmp_next;
2475 ifa->tmp_next = NULL;
2476 ifa->dead = 1;
2477 write_unlock_bh(&idev->lock);
2478 spin_lock_bh(&ifa->lock);
2479
2480 if (ifa->ifpub) {
2481 in6_ifa_put(ifa->ifpub);
2482 ifa->ifpub = NULL;
2483 }
2484 spin_unlock_bh(&ifa->lock);
2485 in6_ifa_put(ifa);
2486 write_lock_bh(&idev->lock);
2487 }
2488#endif
2489 while ((ifa = idev->addr_list) != NULL) {
2490 idev->addr_list = ifa->if_next;
2491 ifa->if_next = NULL;
2492 ifa->dead = 1;
2493 addrconf_del_timer(ifa);
2494 write_unlock_bh(&idev->lock);
2495
2496 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Vlad Yasevich063ed362007-07-15 00:16:35 -07002497 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 in6_ifa_put(ifa);
2499
2500 write_lock_bh(&idev->lock);
2501 }
2502 write_unlock_bh(&idev->lock);
2503
2504 /* Step 5: Discard multicast list */
2505
2506 if (how == 1)
2507 ipv6_mc_destroy_dev(idev);
2508 else
2509 ipv6_mc_down(idev);
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 /* Shot the device (if unregistered) */
2514
2515 if (how == 1) {
2516#ifdef CONFIG_SYSCTL
2517 addrconf_sysctl_unregister(&idev->cnf);
2518 neigh_sysctl_unregister(idev->nd_parms);
2519#endif
2520 neigh_parms_release(&nd_tbl, idev->nd_parms);
2521 neigh_ifdown(&nd_tbl, dev);
2522 in6_dev_put(idev);
2523 }
2524 return 0;
2525}
2526
2527static void addrconf_rs_timer(unsigned long data)
2528{
2529 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2530
2531 if (ifp->idev->cnf.forwarding)
2532 goto out;
2533
2534 if (ifp->idev->if_flags & IF_RA_RCVD) {
2535 /*
2536 * Announcement received after solicitation
2537 * was sent
2538 */
2539 goto out;
2540 }
2541
2542 spin_lock(&ifp->lock);
2543 if (ifp->probes++ < ifp->idev->cnf.rtr_solicits) {
2544 struct in6_addr all_routers;
2545
2546 /* The wait after the last probe can be shorter */
2547 addrconf_mod_timer(ifp, AC_RS,
2548 (ifp->probes == ifp->idev->cnf.rtr_solicits) ?
2549 ifp->idev->cnf.rtr_solicit_delay :
2550 ifp->idev->cnf.rtr_solicit_interval);
2551 spin_unlock(&ifp->lock);
2552
2553 ipv6_addr_all_routers(&all_routers);
2554
2555 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2556 } else {
2557 spin_unlock(&ifp->lock);
2558 /*
2559 * Note: we do not support deprecated "all on-link"
2560 * assumption any longer.
2561 */
2562 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2563 ifp->idev->dev->name);
2564 }
2565
2566out:
2567 in6_ifa_put(ifp);
2568}
2569
2570/*
2571 * Duplicate Address Detection
2572 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002573static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2574{
2575 unsigned long rand_num;
2576 struct inet6_dev *idev = ifp->idev;
2577
Neil Horman95c385b2007-04-25 17:08:10 -07002578 if (ifp->flags & IFA_F_OPTIMISTIC)
2579 rand_num = 0;
2580 else
2581 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2582
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002583 ifp->probes = idev->cnf.dad_transmits;
2584 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2585}
2586
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07002587static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
2589 struct inet6_dev *idev = ifp->idev;
2590 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 addrconf_join_solict(dev, &ifp->addr);
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
2596 read_lock_bh(&idev->lock);
2597 if (ifp->dead)
2598 goto out;
2599 spin_lock_bh(&ifp->lock);
2600
2601 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002602 !(ifp->flags&IFA_F_TENTATIVE) ||
2603 ifp->flags & IFA_F_NODAD) {
Neil Horman95c385b2007-04-25 17:08:10 -07002604 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 spin_unlock_bh(&ifp->lock);
2606 read_unlock_bh(&idev->lock);
2607
2608 addrconf_dad_completed(ifp);
2609 return;
2610 }
2611
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002612 if (!(idev->if_flags & IF_READY)) {
YOSHIFUJI Hideaki3dd3bf82005-12-23 11:23:21 -08002613 spin_unlock_bh(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002614 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002615 /*
2616 * If the defice is not ready:
2617 * - keep it tentative if it is a permanent address.
2618 * - otherwise, kill it.
2619 */
2620 in6_ifa_hold(ifp);
2621 addrconf_dad_stop(ifp);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002622 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002623 }
Neil Horman95c385b2007-04-25 17:08:10 -07002624
2625 /*
2626 * Optimistic nodes can start receiving
2627 * Frames right away
2628 */
2629 if(ifp->flags & IFA_F_OPTIMISTIC)
2630 ip6_ins_rt(ifp->rt);
2631
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002632 addrconf_dad_kick(ifp);
2633 spin_unlock_bh(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634out:
2635 read_unlock_bh(&idev->lock);
2636}
2637
2638static void addrconf_dad_timer(unsigned long data)
2639{
2640 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2641 struct inet6_dev *idev = ifp->idev;
2642 struct in6_addr unspec;
2643 struct in6_addr mcaddr;
2644
2645 read_lock_bh(&idev->lock);
2646 if (idev->dead) {
2647 read_unlock_bh(&idev->lock);
2648 goto out;
2649 }
2650 spin_lock_bh(&ifp->lock);
2651 if (ifp->probes == 0) {
2652 /*
2653 * DAD was successful
2654 */
2655
Neil Horman95c385b2007-04-25 17:08:10 -07002656 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 spin_unlock_bh(&ifp->lock);
2658 read_unlock_bh(&idev->lock);
2659
2660 addrconf_dad_completed(ifp);
2661
2662 goto out;
2663 }
2664
2665 ifp->probes--;
2666 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2667 spin_unlock_bh(&ifp->lock);
2668 read_unlock_bh(&idev->lock);
2669
2670 /* send a neighbour solicitation for our addr */
2671 memset(&unspec, 0, sizeof(unspec));
2672 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2673 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2674out:
2675 in6_ifa_put(ifp);
2676}
2677
2678static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2679{
2680 struct net_device * dev = ifp->idev->dev;
2681
2682 /*
2683 * Configure the address for reception. Now it is valid.
2684 */
2685
2686 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2687
2688 /* If added prefix is link local and forwarding is off,
2689 start sending router solicitations.
2690 */
2691
2692 if (ifp->idev->cnf.forwarding == 0 &&
2693 ifp->idev->cnf.rtr_solicits > 0 &&
2694 (dev->flags&IFF_LOOPBACK) == 0 &&
2695 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2696 struct in6_addr all_routers;
2697
2698 ipv6_addr_all_routers(&all_routers);
2699
2700 /*
2701 * If a host as already performed a random delay
2702 * [...] as part of DAD [...] there is no need
2703 * to delay again before sending the first RS
2704 */
2705 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2706
2707 spin_lock_bh(&ifp->lock);
2708 ifp->probes = 1;
2709 ifp->idev->if_flags |= IF_RS_SENT;
2710 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2711 spin_unlock_bh(&ifp->lock);
2712 }
2713}
2714
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002715static void addrconf_dad_run(struct inet6_dev *idev) {
2716 struct inet6_ifaddr *ifp;
2717
2718 read_lock_bh(&idev->lock);
2719 for (ifp = idev->addr_list; ifp; ifp = ifp->if_next) {
2720 spin_lock_bh(&ifp->lock);
2721 if (!(ifp->flags & IFA_F_TENTATIVE)) {
2722 spin_unlock_bh(&ifp->lock);
2723 continue;
2724 }
2725 spin_unlock_bh(&ifp->lock);
2726 addrconf_dad_kick(ifp);
2727 }
2728 read_unlock_bh(&idev->lock);
2729}
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731#ifdef CONFIG_PROC_FS
2732struct if6_iter_state {
2733 int bucket;
2734};
2735
2736static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2737{
2738 struct inet6_ifaddr *ifa = NULL;
2739 struct if6_iter_state *state = seq->private;
2740
2741 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2742 ifa = inet6_addr_lst[state->bucket];
2743 if (ifa)
2744 break;
2745 }
2746 return ifa;
2747}
2748
2749static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2750{
2751 struct if6_iter_state *state = seq->private;
2752
2753 ifa = ifa->lst_next;
2754try_again:
2755 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2756 ifa = inet6_addr_lst[state->bucket];
2757 goto try_again;
2758 }
2759 return ifa;
2760}
2761
2762static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2763{
2764 struct inet6_ifaddr *ifa = if6_get_first(seq);
2765
2766 if (ifa)
2767 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2768 --pos;
2769 return pos ? NULL : ifa;
2770}
2771
2772static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
2773{
2774 read_lock_bh(&addrconf_hash_lock);
2775 return if6_get_idx(seq, *pos);
2776}
2777
2778static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2779{
2780 struct inet6_ifaddr *ifa;
2781
2782 ifa = if6_get_next(seq, v);
2783 ++*pos;
2784 return ifa;
2785}
2786
2787static void if6_seq_stop(struct seq_file *seq, void *v)
2788{
2789 read_unlock_bh(&addrconf_hash_lock);
2790}
2791
2792static int if6_seq_show(struct seq_file *seq, void *v)
2793{
2794 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2795 seq_printf(seq,
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002796 NIP6_SEQFMT " %02x %02x %02x %02x %8s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 NIP6(ifp->addr),
2798 ifp->idev->dev->ifindex,
2799 ifp->prefix_len,
2800 ifp->scope,
2801 ifp->flags,
2802 ifp->idev->dev->name);
2803 return 0;
2804}
2805
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002806static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 .start = if6_seq_start,
2808 .next = if6_seq_next,
2809 .show = if6_seq_show,
2810 .stop = if6_seq_stop,
2811};
2812
2813static int if6_seq_open(struct inode *inode, struct file *file)
2814{
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002815 return seq_open_private(file, &if6_seq_ops,
2816 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817}
2818
Arjan van de Ven9a321442007-02-12 00:55:35 -08002819static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 .owner = THIS_MODULE,
2821 .open = if6_seq_open,
2822 .read = seq_read,
2823 .llseek = seq_lseek,
2824 .release = seq_release_private,
2825};
2826
2827int __init if6_proc_init(void)
2828{
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002829 if (!proc_net_fops_create(&init_net, "if_inet6", S_IRUGO, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 return -ENOMEM;
2831 return 0;
2832}
2833
2834void if6_proc_exit(void)
2835{
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002836 proc_net_remove(&init_net, "if_inet6");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838#endif /* CONFIG_PROC_FS */
2839
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -07002840#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07002841/* Check if address is a home address configured on any interface. */
2842int ipv6_chk_home_addr(struct in6_addr *addr)
2843{
2844 int ret = 0;
2845 struct inet6_ifaddr * ifp;
2846 u8 hash = ipv6_addr_hash(addr);
2847 read_lock_bh(&addrconf_hash_lock);
2848 for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
2849 if (ipv6_addr_cmp(&ifp->addr, addr) == 0 &&
2850 (ifp->flags & IFA_F_HOMEADDRESS)) {
2851 ret = 1;
2852 break;
2853 }
2854 }
2855 read_unlock_bh(&addrconf_hash_lock);
2856 return ret;
2857}
2858#endif
2859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860/*
2861 * Periodic address status verification
2862 */
2863
2864static void addrconf_verify(unsigned long foo)
2865{
2866 struct inet6_ifaddr *ifp;
2867 unsigned long now, next;
2868 int i;
2869
2870 spin_lock_bh(&addrconf_verify_lock);
2871 now = jiffies;
2872 next = now + ADDR_CHECK_FREQUENCY;
2873
2874 del_timer(&addr_chk_timer);
2875
2876 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2877
2878restart:
Yan Zheng5d5780d2005-11-20 13:42:20 -08002879 read_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2881 unsigned long age;
2882#ifdef CONFIG_IPV6_PRIVACY
2883 unsigned long regen_advance;
2884#endif
2885
2886 if (ifp->flags & IFA_F_PERMANENT)
2887 continue;
2888
2889 spin_lock(&ifp->lock);
2890 age = (now - ifp->tstamp) / HZ;
2891
2892#ifdef CONFIG_IPV6_PRIVACY
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002893 regen_advance = ifp->idev->cnf.regen_max_retry *
2894 ifp->idev->cnf.dad_transmits *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 ifp->idev->nd_parms->retrans_time / HZ;
2896#endif
2897
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002898 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
2899 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 spin_unlock(&ifp->lock);
2901 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002902 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 ipv6_del_addr(ifp);
2904 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09002905 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
2906 spin_unlock(&ifp->lock);
2907 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 } else if (age >= ifp->prefered_lft) {
2909 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2910 int deprecate = 0;
2911
2912 if (!(ifp->flags&IFA_F_DEPRECATED)) {
2913 deprecate = 1;
2914 ifp->flags |= IFA_F_DEPRECATED;
2915 }
2916
2917 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
2918 next = ifp->tstamp + ifp->valid_lft * HZ;
2919
2920 spin_unlock(&ifp->lock);
2921
2922 if (deprecate) {
2923 in6_ifa_hold(ifp);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002924 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926 ipv6_ifa_notify(0, ifp);
2927 in6_ifa_put(ifp);
2928 goto restart;
2929 }
2930#ifdef CONFIG_IPV6_PRIVACY
2931 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
2932 !(ifp->flags&IFA_F_TENTATIVE)) {
2933 if (age >= ifp->prefered_lft - regen_advance) {
2934 struct inet6_ifaddr *ifpub = ifp->ifpub;
2935 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2936 next = ifp->tstamp + ifp->prefered_lft * HZ;
2937 if (!ifp->regen_count && ifpub) {
2938 ifp->regen_count++;
2939 in6_ifa_hold(ifp);
2940 in6_ifa_hold(ifpub);
2941 spin_unlock(&ifp->lock);
Yan Zheng5d5780d2005-11-20 13:42:20 -08002942 read_unlock(&addrconf_hash_lock);
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08002943 spin_lock(&ifpub->lock);
2944 ifpub->regen_count = 0;
2945 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 ipv6_create_tempaddr(ifpub, ifp);
2947 in6_ifa_put(ifpub);
2948 in6_ifa_put(ifp);
2949 goto restart;
2950 }
2951 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
2952 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
2953 spin_unlock(&ifp->lock);
2954#endif
2955 } else {
2956 /* ifp->prefered_lft <= ifp->valid_lft */
2957 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2958 next = ifp->tstamp + ifp->prefered_lft * HZ;
2959 spin_unlock(&ifp->lock);
2960 }
2961 }
Yan Zheng5d5780d2005-11-20 13:42:20 -08002962 read_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 }
2964
2965 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
2966 add_timer(&addr_chk_timer);
2967 spin_unlock_bh(&addrconf_verify_lock);
2968}
2969
Thomas Graf461d8832006-09-18 00:09:49 -07002970static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
2971{
2972 struct in6_addr *pfx = NULL;
2973
2974 if (addr)
2975 pfx = nla_data(addr);
2976
2977 if (local) {
2978 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
2979 pfx = NULL;
2980 else
2981 pfx = nla_data(local);
2982 }
2983
2984 return pfx;
2985}
2986
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002987static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07002988 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
2989 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
2990 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
2991};
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993static int
2994inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2995{
Thomas Grafb933f712006-09-18 00:10:19 -07002996 struct ifaddrmsg *ifm;
2997 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07002999 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Thomas Grafb933f712006-09-18 00:10:19 -07003001 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3002 if (err < 0)
3003 return err;
3004
3005 ifm = nlmsg_data(nlh);
3006 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 if (pfx == NULL)
3008 return -EINVAL;
3009
3010 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
3011}
3012
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003013static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3014 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003015{
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003016 u32 flags = RTF_EXPIRES;
3017
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003018 if (!valid_lft || (prefered_lft > valid_lft))
3019 return -EINVAL;
3020
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003021 if (valid_lft == INFINITY_LIFE_TIME) {
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003022 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003023 flags = 0;
3024 } else if (valid_lft >= 0x7FFFFFFF/HZ)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003025 valid_lft = 0x7FFFFFFF/HZ;
3026
3027 if (prefered_lft == 0)
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003028 ifa_flags |= IFA_F_DEPRECATED;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003029 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
3030 (prefered_lft != INFINITY_LIFE_TIME))
3031 prefered_lft = 0x7FFFFFFF/HZ;
3032
3033 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003034 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 +09003035 ifp->tstamp = jiffies;
3036 ifp->valid_lft = valid_lft;
3037 ifp->prefered_lft = prefered_lft;
3038
3039 spin_unlock_bh(&ifp->lock);
3040 if (!(ifp->flags&IFA_F_TENTATIVE))
3041 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003042
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003043 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3044 jiffies_to_clock_t(valid_lft * HZ), flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003045 addrconf_verify(0);
3046
3047 return 0;
3048}
3049
3050static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3052{
Thomas Graf461d8832006-09-18 00:09:49 -07003053 struct ifaddrmsg *ifm;
3054 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003056 struct inet6_ifaddr *ifa;
3057 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003058 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3059 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003060 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Thomas Graf461d8832006-09-18 00:09:49 -07003062 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3063 if (err < 0)
3064 return err;
3065
3066 ifm = nlmsg_data(nlh);
3067 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 if (pfx == NULL)
3069 return -EINVAL;
3070
Thomas Graf461d8832006-09-18 00:09:49 -07003071 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003072 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003073
3074 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003075 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003076 preferred_lft = ci->ifa_prefered;
3077 } else {
3078 preferred_lft = INFINITY_LIFE_TIME;
3079 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003080 }
3081
Eric W. Biederman881d9662007-09-17 11:56:21 -07003082 dev = __dev_get_by_index(&init_net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003083 if (dev == NULL)
3084 return -ENODEV;
3085
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003086 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003087 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003088
Thomas Graf7198f8c2006-09-18 00:13:46 -07003089 ifa = ipv6_get_ifaddr(pfx, dev, 1);
3090 if (ifa == NULL) {
3091 /*
3092 * It would be best to check for !NLM_F_CREATE here but
3093 * userspace alreay relies on not having to provide this.
3094 */
3095 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003096 ifa_flags, preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003097 }
3098
Thomas Graf7198f8c2006-09-18 00:13:46 -07003099 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3100 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3101 err = -EEXIST;
3102 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003103 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003104
3105 in6_ifa_put(ifa);
3106
3107 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108}
3109
Thomas Graf101bb222006-09-18 00:11:52 -07003110static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3111 u8 scope, int ifindex)
3112{
3113 struct ifaddrmsg *ifm;
3114
3115 ifm = nlmsg_data(nlh);
3116 ifm->ifa_family = AF_INET6;
3117 ifm->ifa_prefixlen = prefixlen;
3118 ifm->ifa_flags = flags;
3119 ifm->ifa_scope = scope;
3120 ifm->ifa_index = ifindex;
3121}
3122
Thomas Graf85486af2006-09-18 00:11:24 -07003123static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3124 unsigned long tstamp, u32 preferred, u32 valid)
3125{
3126 struct ifa_cacheinfo ci;
3127
3128 ci.cstamp = (u32)(TIME_DELTA(cstamp, INITIAL_JIFFIES) / HZ * 100
3129 + TIME_DELTA(cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3130 ci.tstamp = (u32)(TIME_DELTA(tstamp, INITIAL_JIFFIES) / HZ * 100
3131 + TIME_DELTA(tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3132 ci.ifa_prefered = preferred;
3133 ci.ifa_valid = valid;
3134
3135 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3136}
3137
Thomas Graf101bb222006-09-18 00:11:52 -07003138static inline int rt_scope(int ifa_scope)
3139{
3140 if (ifa_scope & IFA_HOST)
3141 return RT_SCOPE_HOST;
3142 else if (ifa_scope & IFA_LINK)
3143 return RT_SCOPE_LINK;
3144 else if (ifa_scope & IFA_SITE)
3145 return RT_SCOPE_SITE;
3146 else
3147 return RT_SCOPE_UNIVERSE;
3148}
3149
Thomas Graf0ab68032006-09-18 00:12:35 -07003150static inline int inet6_ifaddr_msgsize(void)
3151{
Thomas Graf339bf982006-11-10 14:10:15 -08003152 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3153 + nla_total_size(16) /* IFA_ADDRESS */
3154 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003155}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003156
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003158 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003161 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Thomas Graf0ab68032006-09-18 00:12:35 -07003163 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3164 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003165 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003166
Thomas Graf101bb222006-09-18 00:11:52 -07003167 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3168 ifa->idev->dev->ifindex);
3169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003171 preferred = ifa->prefered_lft;
3172 valid = ifa->valid_lft;
3173 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 long tval = (jiffies - ifa->tstamp)/HZ;
Thomas Graf85486af2006-09-18 00:11:24 -07003175 preferred -= tval;
3176 if (valid != INFINITY_LIFE_TIME)
3177 valid -= tval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 }
3179 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003180 preferred = INFINITY_LIFE_TIME;
3181 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 }
Thomas Graf85486af2006-09-18 00:11:24 -07003183
Thomas Graf0ab68032006-09-18 00:12:35 -07003184 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003185 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3186 nlmsg_cancel(skb, nlh);
3187 return -EMSGSIZE;
3188 }
Thomas Graf85486af2006-09-18 00:11:24 -07003189
Thomas Graf0ab68032006-09-18 00:12:35 -07003190 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191}
3192
3193static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07003194 u32 pid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003197 u8 scope = RT_SCOPE_UNIVERSE;
3198 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Thomas Graf101bb222006-09-18 00:11:52 -07003200 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3201 scope = RT_SCOPE_SITE;
3202
Thomas Graf0ab68032006-09-18 00:12:35 -07003203 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3204 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003205 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003206
Thomas Graf101bb222006-09-18 00:11:52 -07003207 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003208 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3209 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003210 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3211 nlmsg_cancel(skb, nlh);
3212 return -EMSGSIZE;
3213 }
Thomas Graf85486af2006-09-18 00:11:24 -07003214
Thomas Graf0ab68032006-09-18 00:12:35 -07003215 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216}
3217
3218static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003219 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003222 u8 scope = RT_SCOPE_UNIVERSE;
3223 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Thomas Graf101bb222006-09-18 00:11:52 -07003225 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3226 scope = RT_SCOPE_SITE;
3227
Thomas Graf0ab68032006-09-18 00:12:35 -07003228 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3229 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003230 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003231
Thomas Graf101bb222006-09-18 00:11:52 -07003232 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003233 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3234 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003235 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3236 nlmsg_cancel(skb, nlh);
3237 return -EMSGSIZE;
3238 }
Thomas Graf85486af2006-09-18 00:11:24 -07003239
Thomas Graf0ab68032006-09-18 00:12:35 -07003240 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241}
3242
3243enum addr_type_t
3244{
3245 UNICAST_ADDR,
3246 MULTICAST_ADDR,
3247 ANYCAST_ADDR,
3248};
3249
3250static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3251 enum addr_type_t type)
3252{
3253 int idx, ip_idx;
3254 int s_idx, s_ip_idx;
3255 int err = 1;
3256 struct net_device *dev;
3257 struct inet6_dev *idev = NULL;
3258 struct inet6_ifaddr *ifa;
3259 struct ifmcaddr6 *ifmca;
3260 struct ifacaddr6 *ifaca;
3261
3262 s_idx = cb->args[0];
3263 s_ip_idx = ip_idx = cb->args[1];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003264
Pavel Emelianov7562f872007-05-03 15:13:45 -07003265 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003266 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003268 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 if (idx > s_idx)
3270 s_ip_idx = 0;
3271 ip_idx = 0;
3272 if ((idev = in6_dev_get(dev)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003273 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 read_lock_bh(&idev->lock);
3275 switch (type) {
3276 case UNICAST_ADDR:
YOSHIFUJI Hideakiae9cda52005-06-28 13:00:30 -07003277 /* unicast address incl. temp addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 for (ifa = idev->addr_list; ifa;
3279 ifa = ifa->if_next, ip_idx++) {
3280 if (ip_idx < s_ip_idx)
3281 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003282 if ((err = inet6_fill_ifaddr(skb, ifa,
3283 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003284 cb->nlh->nlmsg_seq, RTM_NEWADDR,
3285 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 goto done;
3287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 break;
3289 case MULTICAST_ADDR:
3290 /* multicast address */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003291 for (ifmca = idev->mc_list; ifmca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 ifmca = ifmca->next, ip_idx++) {
3293 if (ip_idx < s_ip_idx)
3294 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003295 if ((err = inet6_fill_ifmcaddr(skb, ifmca,
3296 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003297 cb->nlh->nlmsg_seq, RTM_GETMULTICAST,
3298 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 goto done;
3300 }
3301 break;
3302 case ANYCAST_ADDR:
3303 /* anycast address */
3304 for (ifaca = idev->ac_list; ifaca;
3305 ifaca = ifaca->aca_next, ip_idx++) {
3306 if (ip_idx < s_ip_idx)
3307 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003308 if ((err = inet6_fill_ifacaddr(skb, ifaca,
3309 NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003310 cb->nlh->nlmsg_seq, RTM_GETANYCAST,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003311 NLM_F_MULTI)) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 goto done;
3313 }
3314 break;
3315 default:
3316 break;
3317 }
3318 read_unlock_bh(&idev->lock);
3319 in6_dev_put(idev);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003320cont:
3321 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 }
3323done:
3324 if (err <= 0) {
3325 read_unlock_bh(&idev->lock);
3326 in6_dev_put(idev);
3327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 cb->args[0] = idx;
3329 cb->args[1] = ip_idx;
3330 return skb->len;
3331}
3332
3333static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3334{
3335 enum addr_type_t type = UNICAST_ADDR;
3336 return inet6_dump_addr(skb, cb, type);
3337}
3338
3339static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3340{
3341 enum addr_type_t type = MULTICAST_ADDR;
3342 return inet6_dump_addr(skb, cb, type);
3343}
3344
3345
3346static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3347{
3348 enum addr_type_t type = ANYCAST_ADDR;
3349 return inet6_dump_addr(skb, cb, type);
3350}
3351
Thomas Graf1b29fc22006-09-18 00:10:50 -07003352static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr* nlh,
3353 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003354{
Thomas Graf1b29fc22006-09-18 00:10:50 -07003355 struct ifaddrmsg *ifm;
3356 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003357 struct in6_addr *addr = NULL;
3358 struct net_device *dev = NULL;
3359 struct inet6_ifaddr *ifa;
3360 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003361 int err;
3362
Thomas Graf1b29fc22006-09-18 00:10:50 -07003363 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3364 if (err < 0)
3365 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003366
Thomas Graf1b29fc22006-09-18 00:10:50 -07003367 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3368 if (addr == NULL) {
3369 err = -EINVAL;
3370 goto errout;
3371 }
3372
3373 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003374 if (ifm->ifa_index)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003375 dev = __dev_get_by_index(&init_net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003376
Thomas Graf1b29fc22006-09-18 00:10:50 -07003377 if ((ifa = ipv6_get_ifaddr(addr, dev, 1)) == NULL) {
3378 err = -EADDRNOTAVAIL;
3379 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003380 }
3381
Thomas Graf0ab68032006-09-18 00:12:35 -07003382 if ((skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL)) == NULL) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003383 err = -ENOBUFS;
3384 goto errout_ifa;
3385 }
3386
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003387 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).pid,
3388 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003389 if (err < 0) {
3390 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3391 WARN_ON(err == -EMSGSIZE);
3392 kfree_skb(skb);
3393 goto errout_ifa;
3394 }
Thomas Graf2942e902006-08-15 00:30:25 -07003395 err = rtnl_unicast(skb, NETLINK_CB(in_skb).pid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003396errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003397 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003398errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003399 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003400}
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3403{
3404 struct sk_buff *skb;
Thomas Graf5d620262006-08-15 00:35:02 -07003405 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Thomas Graf0ab68032006-09-18 00:12:35 -07003407 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003408 if (skb == NULL)
3409 goto errout;
3410
3411 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003412 if (err < 0) {
3413 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3414 WARN_ON(err == -EMSGSIZE);
3415 kfree_skb(skb);
3416 goto errout;
3417 }
Thomas Graf5d620262006-08-15 00:35:02 -07003418 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3419errout:
3420 if (err < 0)
3421 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422}
3423
Dave Jonesb6f99a22007-03-22 12:27:49 -07003424static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 __s32 *array, int bytes)
3426{
Thomas Graf04561c12006-11-14 19:53:58 -08003427 BUG_ON(bytes < (DEVCONF_MAX * 4));
3428
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 memset(array, 0, bytes);
3430 array[DEVCONF_FORWARDING] = cnf->forwarding;
3431 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3432 array[DEVCONF_MTU6] = cnf->mtu6;
3433 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3434 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3435 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3436 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3437 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3438 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3439 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3440 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3441#ifdef CONFIG_IPV6_PRIVACY
3442 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3443 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3444 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3445 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3446 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3447#endif
3448 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003449 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003450 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003451#ifdef CONFIG_IPV6_ROUTER_PREF
3452 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08003453 array[DEVCONF_RTR_PROBE_INTERVAL] = cnf->rtr_probe_interval;
Neil Hormanfa03ef32007-01-30 14:30:10 -08003454#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08003455 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
3456#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003457#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07003458 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07003459 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07003460#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3461 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
3462#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463}
3464
Thomas Graf339bf982006-11-10 14:10:15 -08003465static inline size_t inet6_if_nlmsg_size(void)
3466{
3467 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3468 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3469 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3470 + nla_total_size(4) /* IFLA_MTU */
3471 + nla_total_size(4) /* IFLA_LINK */
3472 + nla_total_size( /* IFLA_PROTINFO */
3473 nla_total_size(4) /* IFLA_INET6_FLAGS */
3474 + nla_total_size(sizeof(struct ifla_cacheinfo))
3475 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003476 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
3477 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
Thomas Graf339bf982006-11-10 14:10:15 -08003478 );
3479}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003480
Herbert Xu7f7d9a62007-04-24 21:54:09 -07003481static inline void __snmp6_fill_stats(u64 *stats, void **mib, int items,
3482 int bytes)
3483{
3484 int i;
3485 int pad = bytes - sizeof(u64) * items;
3486 BUG_ON(pad < 0);
3487
3488 /* Use put_unaligned() because stats may not be aligned for u64. */
3489 put_unaligned(items, &stats[0]);
3490 for (i = 1; i < items; i++)
3491 put_unaligned(snmp_fold_field(mib, i), &stats[i]);
3492
3493 memset(&stats[items], 0, pad);
3494}
3495
3496static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
3497 int bytes)
3498{
3499 switch(attrtype) {
3500 case IFLA_INET6_STATS:
3501 __snmp6_fill_stats(stats, (void **)idev->stats.ipv6, IPSTATS_MIB_MAX, bytes);
3502 break;
3503 case IFLA_INET6_ICMP6STATS:
3504 __snmp6_fill_stats(stats, (void **)idev->stats.icmpv6, ICMP6_MIB_MAX, bytes);
3505 break;
3506 }
3507}
3508
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003509static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003510 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
Thomas Graf04561c12006-11-14 19:53:58 -08003512 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003513 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08003514 struct ifinfomsg *hdr;
3515 struct nlmsghdr *nlh;
3516 void *protoinfo;
3517 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Thomas Graf04561c12006-11-14 19:53:58 -08003519 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
3520 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003521 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Thomas Graf04561c12006-11-14 19:53:58 -08003523 hdr = nlmsg_data(nlh);
3524 hdr->ifi_family = AF_INET6;
3525 hdr->__ifi_pad = 0;
3526 hdr->ifi_type = dev->type;
3527 hdr->ifi_index = dev->ifindex;
3528 hdr->ifi_flags = dev_get_flags(dev);
3529 hdr->ifi_change = 0;
3530
3531 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
3533 if (dev->addr_len)
Thomas Graf04561c12006-11-14 19:53:58 -08003534 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
Thomas Graf04561c12006-11-14 19:53:58 -08003536 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 if (dev->ifindex != dev->iflink)
Thomas Graf04561c12006-11-14 19:53:58 -08003538 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
Thomas Graf04561c12006-11-14 19:53:58 -08003540 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
3541 if (protoinfo == NULL)
3542 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Thomas Graf04561c12006-11-14 19:53:58 -08003544 NLA_PUT_U32(skb, IFLA_INET6_FLAGS, idev->if_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 ci.max_reasm_len = IPV6_MAXPLEN;
3547 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3548 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3549 ci.reachable_time = idev->nd_parms->reachable_time;
3550 ci.retrans_time = idev->nd_parms->retrans_time;
Thomas Graf04561c12006-11-14 19:53:58 -08003551 NLA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3552
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003553 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
3554 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08003555 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003556 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07003558 /* XXX - MC not implemented */
3559
3560 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
3561 if (nla == NULL)
3562 goto nla_put_failure;
3563 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
3564
3565 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
3566 if (nla == NULL)
3567 goto nla_put_failure;
3568 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Thomas Graf04561c12006-11-14 19:53:58 -08003570 nla_nest_end(skb, protoinfo);
3571 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Thomas Graf04561c12006-11-14 19:53:58 -08003573nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003574 nlmsg_cancel(skb, nlh);
3575 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577
3578static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3579{
3580 int idx, err;
3581 int s_idx = cb->args[0];
3582 struct net_device *dev;
3583 struct inet6_dev *idev;
3584
3585 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003586 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003587 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003589 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 if ((idev = in6_dev_get(dev)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003591 goto cont;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003592 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003593 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 in6_dev_put(idev);
3595 if (err <= 0)
3596 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -07003597cont:
3598 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 }
3600 read_unlock(&dev_base_lock);
3601 cb->args[0] = idx;
3602
3603 return skb->len;
3604}
3605
3606void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3607{
3608 struct sk_buff *skb;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003609 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003610
Thomas Graf339bf982006-11-10 14:10:15 -08003611 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003612 if (skb == NULL)
3613 goto errout;
3614
3615 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003616 if (err < 0) {
3617 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
3618 WARN_ON(err == -EMSGSIZE);
3619 kfree_skb(skb);
3620 goto errout;
3621 }
Thomas Graf8d7a76c2006-08-15 00:35:47 -07003622 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3623errout:
3624 if (err < 0)
3625 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626}
3627
Thomas Graf339bf982006-11-10 14:10:15 -08003628static inline size_t inet6_prefix_nlmsg_size(void)
3629{
3630 return NLMSG_ALIGN(sizeof(struct prefixmsg))
3631 + nla_total_size(sizeof(struct in6_addr))
3632 + nla_total_size(sizeof(struct prefix_cacheinfo));
3633}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Thomas Graf6051e2f2006-11-14 19:54:19 -08003636 struct prefix_info *pinfo, u32 pid, u32 seq,
3637 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638{
Thomas Graf6051e2f2006-11-14 19:54:19 -08003639 struct prefixmsg *pmsg;
3640 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 struct prefix_cacheinfo ci;
3642
Thomas Graf6051e2f2006-11-14 19:54:19 -08003643 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*pmsg), flags);
3644 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003645 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08003646
3647 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07003649 pmsg->prefix_pad1 = 0;
3650 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 pmsg->prefix_ifindex = idev->dev->ifindex;
3652 pmsg->prefix_len = pinfo->prefix_len;
3653 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07003654 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 pmsg->prefix_flags = 0;
3656 if (pinfo->onlink)
3657 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3658 if (pinfo->autoconf)
3659 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3660
Thomas Graf6051e2f2006-11-14 19:54:19 -08003661 NLA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
3663 ci.preferred_time = ntohl(pinfo->prefered);
3664 ci.valid_time = ntohl(pinfo->valid);
Thomas Graf6051e2f2006-11-14 19:54:19 -08003665 NLA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Thomas Graf6051e2f2006-11-14 19:54:19 -08003667 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Thomas Graf6051e2f2006-11-14 19:54:19 -08003669nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003670 nlmsg_cancel(skb, nlh);
3671 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672}
3673
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003674static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 struct prefix_info *pinfo)
3676{
3677 struct sk_buff *skb;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003678 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Thomas Graf339bf982006-11-10 14:10:15 -08003680 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003681 if (skb == NULL)
3682 goto errout;
3683
3684 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003685 if (err < 0) {
3686 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
3687 WARN_ON(err == -EMSGSIZE);
3688 kfree_skb(skb);
3689 goto errout;
3690 }
Thomas Graf8c384bfa2006-08-15 00:36:07 -07003691 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
3692errout:
3693 if (err < 0)
3694 rtnl_set_sk_err(RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695}
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3698{
3699 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3700
3701 switch (event) {
3702 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07003703 /*
3704 * If the address was optimistic
3705 * we inserted the route at the start of
3706 * our DAD process, so we don't need
3707 * to do it again
3708 */
3709 if (!(ifp->rt->rt6i_node))
3710 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 if (ifp->idev->cnf.forwarding)
3712 addrconf_join_anycast(ifp);
3713 break;
3714 case RTM_DELADDR:
3715 if (ifp->idev->cnf.forwarding)
3716 addrconf_leave_anycast(ifp);
3717 addrconf_leave_solict(ifp->idev, &ifp->addr);
3718 dst_hold(&ifp->rt->u.dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003719 if (ip6_del_rt(ifp->rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 dst_free(&ifp->rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 break;
3722 }
3723}
3724
3725static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3726{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003727 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 if (likely(ifp->idev->dead == 0))
3729 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003730 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731}
3732
3733#ifdef CONFIG_SYSCTL
3734
3735static
3736int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3737 void __user *buffer, size_t *lenp, loff_t *ppos)
3738{
3739 int *valp = ctl->data;
3740 int val = *valp;
3741 int ret;
3742
3743 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3744
3745 if (write && valp != &ipv6_devconf_dflt.forwarding) {
3746 if (valp != &ipv6_devconf.forwarding) {
3747 if ((!*valp) ^ (!val)) {
3748 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
3749 if (idev == NULL)
3750 return ret;
3751 dev_forward_change(idev);
3752 }
3753 } else {
3754 ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding;
3755 addrconf_forward_change();
3756 }
3757 if (*valp)
3758 rt6_purge_dflt_routers();
3759 }
3760
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762}
3763
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003764static int addrconf_sysctl_forward_strategy(ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 int __user *name, int nlen,
3766 void __user *oldval,
3767 size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003768 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769{
3770 int *valp = table->data;
3771 int new;
3772
3773 if (!newval || !newlen)
3774 return 0;
3775 if (newlen != sizeof(int))
3776 return -EINVAL;
3777 if (get_user(new, (int __user *)newval))
3778 return -EFAULT;
3779 if (new == *valp)
3780 return 0;
3781 if (oldval && oldlenp) {
3782 size_t len;
3783 if (get_user(len, oldlenp))
3784 return -EFAULT;
3785 if (len) {
3786 if (len > table->maxlen)
3787 len = table->maxlen;
3788 if (copy_to_user(oldval, valp, len))
3789 return -EFAULT;
3790 if (put_user(len, oldlenp))
3791 return -EFAULT;
3792 }
3793 }
3794
3795 if (valp != &ipv6_devconf_dflt.forwarding) {
3796 if (valp != &ipv6_devconf.forwarding) {
3797 struct inet6_dev *idev = (struct inet6_dev *)table->extra1;
3798 int changed;
3799 if (unlikely(idev == NULL))
3800 return -ENODEV;
3801 changed = (!*valp) ^ (!new);
3802 *valp = new;
3803 if (changed)
3804 dev_forward_change(idev);
3805 } else {
3806 *valp = new;
3807 addrconf_forward_change();
3808 }
3809
3810 if (*valp)
3811 rt6_purge_dflt_routers();
3812 } else
3813 *valp = new;
3814
3815 return 1;
3816}
3817
3818static struct addrconf_sysctl_table
3819{
3820 struct ctl_table_header *sysctl_header;
3821 ctl_table addrconf_vars[__NET_IPV6_MAX];
3822 ctl_table addrconf_dev[2];
3823 ctl_table addrconf_conf_dir[2];
3824 ctl_table addrconf_proto_dir[2];
3825 ctl_table addrconf_root_dir[2];
Brian Haleyab32ea52006-09-22 14:15:41 -07003826} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 .sysctl_header = NULL,
3828 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003829 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 .ctl_name = NET_IPV6_FORWARDING,
3831 .procname = "forwarding",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003832 .data = &ipv6_devconf.forwarding,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 .maxlen = sizeof(int),
3834 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003835 .proc_handler = &addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 .strategy = &addrconf_sysctl_forward_strategy,
3837 },
3838 {
3839 .ctl_name = NET_IPV6_HOP_LIMIT,
3840 .procname = "hop_limit",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003841 .data = &ipv6_devconf.hop_limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 .maxlen = sizeof(int),
3843 .mode = 0644,
3844 .proc_handler = proc_dointvec,
3845 },
3846 {
3847 .ctl_name = NET_IPV6_MTU,
3848 .procname = "mtu",
3849 .data = &ipv6_devconf.mtu6,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003850 .maxlen = sizeof(int),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003852 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 },
3854 {
3855 .ctl_name = NET_IPV6_ACCEPT_RA,
3856 .procname = "accept_ra",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003857 .data = &ipv6_devconf.accept_ra,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 .maxlen = sizeof(int),
3859 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003860 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 },
3862 {
3863 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
3864 .procname = "accept_redirects",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003865 .data = &ipv6_devconf.accept_redirects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 .maxlen = sizeof(int),
3867 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003868 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 },
3870 {
3871 .ctl_name = NET_IPV6_AUTOCONF,
3872 .procname = "autoconf",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003873 .data = &ipv6_devconf.autoconf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 .maxlen = sizeof(int),
3875 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003876 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 },
3878 {
3879 .ctl_name = NET_IPV6_DAD_TRANSMITS,
3880 .procname = "dad_transmits",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003881 .data = &ipv6_devconf.dad_transmits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 .maxlen = sizeof(int),
3883 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003884 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 },
3886 {
3887 .ctl_name = NET_IPV6_RTR_SOLICITS,
3888 .procname = "router_solicitations",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003889 .data = &ipv6_devconf.rtr_solicits,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 .maxlen = sizeof(int),
3891 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003892 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 },
3894 {
3895 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
3896 .procname = "router_solicitation_interval",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003897 .data = &ipv6_devconf.rtr_solicit_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 .maxlen = sizeof(int),
3899 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003900 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 .strategy = &sysctl_jiffies,
3902 },
3903 {
3904 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
3905 .procname = "router_solicitation_delay",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003906 .data = &ipv6_devconf.rtr_solicit_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 .maxlen = sizeof(int),
3908 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003909 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 .strategy = &sysctl_jiffies,
3911 },
3912 {
3913 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
3914 .procname = "force_mld_version",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003915 .data = &ipv6_devconf.force_mld_version,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 .maxlen = sizeof(int),
3917 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003918 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 },
3920#ifdef CONFIG_IPV6_PRIVACY
3921 {
3922 .ctl_name = NET_IPV6_USE_TEMPADDR,
3923 .procname = "use_tempaddr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003924 .data = &ipv6_devconf.use_tempaddr,
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_TEMP_VALID_LFT,
3931 .procname = "temp_valid_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003932 .data = &ipv6_devconf.temp_valid_lft,
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_TEMP_PREFERED_LFT,
3939 .procname = "temp_prefered_lft",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003940 .data = &ipv6_devconf.temp_prefered_lft,
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_REGEN_MAX_RETRY,
3947 .procname = "regen_max_retry",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003948 .data = &ipv6_devconf.regen_max_retry,
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_MAX_DESYNC_FACTOR,
3955 .procname = "max_desync_factor",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003956 .data = &ipv6_devconf.max_desync_factor,
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#endif
3962 {
3963 .ctl_name = NET_IPV6_MAX_ADDRESSES,
3964 .procname = "max_addresses",
3965 .data = &ipv6_devconf.max_addresses,
3966 .maxlen = sizeof(int),
3967 .mode = 0644,
3968 .proc_handler = &proc_dointvec,
3969 },
3970 {
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003971 .ctl_name = NET_IPV6_ACCEPT_RA_DEFRTR,
3972 .procname = "accept_ra_defrtr",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003973 .data = &ipv6_devconf.accept_ra_defrtr,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003974 .maxlen = sizeof(int),
3975 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003976 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003977 },
3978 {
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003979 .ctl_name = NET_IPV6_ACCEPT_RA_PINFO,
3980 .procname = "accept_ra_pinfo",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003981 .data = &ipv6_devconf.accept_ra_pinfo,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003982 .maxlen = sizeof(int),
3983 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003984 .proc_handler = &proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003985 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003986#ifdef CONFIG_IPV6_ROUTER_PREF
3987 {
3988 .ctl_name = NET_IPV6_ACCEPT_RA_RTR_PREF,
3989 .procname = "accept_ra_rtr_pref",
3990 .data = &ipv6_devconf.accept_ra_rtr_pref,
3991 .maxlen = sizeof(int),
3992 .mode = 0644,
3993 .proc_handler = &proc_dointvec,
3994 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08003995 {
3996 .ctl_name = NET_IPV6_RTR_PROBE_INTERVAL,
3997 .procname = "router_probe_interval",
3998 .data = &ipv6_devconf.rtr_probe_interval,
3999 .maxlen = sizeof(int),
4000 .mode = 0644,
4001 .proc_handler = &proc_dointvec_jiffies,
4002 .strategy = &sysctl_jiffies,
4003 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004004#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004005 {
4006 .ctl_name = NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN,
4007 .procname = "accept_ra_rt_info_max_plen",
4008 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4009 .maxlen = sizeof(int),
4010 .mode = 0644,
4011 .proc_handler = &proc_dointvec,
4012 },
4013#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004014#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004015 {
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004016 .ctl_name = NET_IPV6_PROXY_NDP,
4017 .procname = "proxy_ndp",
4018 .data = &ipv6_devconf.proxy_ndp,
4019 .maxlen = sizeof(int),
4020 .mode = 0644,
4021 .proc_handler = &proc_dointvec,
4022 },
4023 {
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004024 .ctl_name = NET_IPV6_ACCEPT_SOURCE_ROUTE,
4025 .procname = "accept_source_route",
4026 .data = &ipv6_devconf.accept_source_route,
4027 .maxlen = sizeof(int),
4028 .mode = 0644,
4029 .proc_handler = &proc_dointvec,
4030 },
Neil Horman95c385b2007-04-25 17:08:10 -07004031#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4032 {
4033 .ctl_name = CTL_UNNUMBERED,
4034 .procname = "optimistic_dad",
4035 .data = &ipv6_devconf.optimistic_dad,
4036 .maxlen = sizeof(int),
4037 .mode = 0644,
4038 .proc_handler = &proc_dointvec,
4039
4040 },
4041#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004042 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 .ctl_name = 0, /* sentinel */
4044 }
4045 },
4046 .addrconf_dev = {
4047 {
4048 .ctl_name = NET_PROTO_CONF_ALL,
4049 .procname = "all",
4050 .mode = 0555,
4051 .child = addrconf_sysctl.addrconf_vars,
4052 },
4053 {
4054 .ctl_name = 0, /* sentinel */
4055 }
4056 },
4057 .addrconf_conf_dir = {
4058 {
4059 .ctl_name = NET_IPV6_CONF,
4060 .procname = "conf",
4061 .mode = 0555,
4062 .child = addrconf_sysctl.addrconf_dev,
4063 },
4064 {
4065 .ctl_name = 0, /* sentinel */
4066 }
4067 },
4068 .addrconf_proto_dir = {
4069 {
4070 .ctl_name = NET_IPV6,
4071 .procname = "ipv6",
4072 .mode = 0555,
4073 .child = addrconf_sysctl.addrconf_conf_dir,
4074 },
4075 {
4076 .ctl_name = 0, /* sentinel */
4077 }
4078 },
4079 .addrconf_root_dir = {
4080 {
4081 .ctl_name = CTL_NET,
4082 .procname = "net",
4083 .mode = 0555,
4084 .child = addrconf_sysctl.addrconf_proto_dir,
4085 },
4086 {
4087 .ctl_name = 0, /* sentinel */
4088 }
4089 },
4090};
4091
4092static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p)
4093{
4094 int i;
4095 struct net_device *dev = idev ? idev->dev : NULL;
4096 struct addrconf_sysctl_table *t;
4097 char *dev_name = NULL;
4098
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004099 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 if (t == NULL)
4101 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 for (i=0; t->addrconf_vars[i].data; i++) {
4103 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
4105 }
4106 if (dev) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004107 dev_name = dev->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 t->addrconf_dev[0].ctl_name = dev->ifindex;
4109 } else {
4110 dev_name = "default";
4111 t->addrconf_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
4112 }
4113
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004114 /*
4115 * Make a copy of dev_name, because '.procname' is regarded as const
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 * by sysctl and we wouldn't want anyone to change it under our feet
4117 * (see SIOCSIFNAME).
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004118 */
Paulo Marques543537b2005-06-23 00:09:02 -07004119 dev_name = kstrdup(dev_name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 if (!dev_name)
4121 goto free;
4122
4123 t->addrconf_dev[0].procname = dev_name;
4124
4125 t->addrconf_dev[0].child = t->addrconf_vars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 t->addrconf_conf_dir[0].child = t->addrconf_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 t->addrconf_proto_dir[0].child = t->addrconf_conf_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 t->addrconf_root_dir[0].child = t->addrconf_proto_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08004130 t->sysctl_header = register_sysctl_table(t->addrconf_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 if (t->sysctl_header == NULL)
4132 goto free_procname;
4133 else
4134 p->sysctl = t;
4135 return;
4136
4137 /* error path */
4138 free_procname:
4139 kfree(dev_name);
4140 free:
4141 kfree(t);
4142
4143 return;
4144}
4145
4146static void addrconf_sysctl_unregister(struct ipv6_devconf *p)
4147{
4148 if (p->sysctl) {
4149 struct addrconf_sysctl_table *t = p->sysctl;
4150 p->sysctl = NULL;
4151 unregister_sysctl_table(t->sysctl_header);
4152 kfree(t->addrconf_dev[0].procname);
4153 kfree(t);
4154 }
4155}
4156
4157
4158#endif
4159
4160/*
4161 * Device notifier
4162 */
4163
4164int register_inet6addr_notifier(struct notifier_block *nb)
4165{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004166 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167}
4168
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004169EXPORT_SYMBOL(register_inet6addr_notifier);
4170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171int unregister_inet6addr_notifier(struct notifier_block *nb)
4172{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004173 return atomic_notifier_chain_unregister(&inet6addr_chain,nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174}
4175
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004176EXPORT_SYMBOL(unregister_inet6addr_notifier);
4177
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178/*
4179 * Init / cleanup code
4180 */
4181
4182int __init addrconf_init(void)
4183{
4184 int err = 0;
4185
4186 /* The addrconf netdev notifier requires that loopback_dev
4187 * has it's ipv6 private information allocated and setup
4188 * before it can bring up and give link-local addresses
4189 * to other devices which are up.
4190 *
4191 * Unfortunately, loopback_dev is not necessarily the first
4192 * entry in the global dev_base list of net devices. In fact,
4193 * it is likely to be the very last entry on that list.
4194 * So this causes the notifier registry below to try and
4195 * give link-local addresses to all devices besides loopback_dev
4196 * first, then loopback_dev, which cases all the non-loopback_dev
4197 * devices to fail to get a link-local address.
4198 *
4199 * So, as a temporary fix, allocate the ipv6 structure for
4200 * loopback_dev first by hand.
4201 * Longer term, all of the dependencies ipv6 has upon the loopback
4202 * device and it being up should be removed.
4203 */
4204 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004205 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 err = -ENOMEM;
4207 rtnl_unlock();
4208 if (err)
4209 return err;
4210
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004211 ip6_null_entry.u.dst.dev = init_net.loopback_dev;
4212 ip6_null_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
YOSHIFUJI Hideaki9a6bf6f2007-05-09 14:03:28 -07004213#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004214 ip6_prohibit_entry.u.dst.dev = init_net.loopback_dev;
4215 ip6_prohibit_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
4216 ip6_blk_hole_entry.u.dst.dev = init_net.loopback_dev;
4217 ip6_blk_hole_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
YOSHIFUJI Hideaki9a6bf6f2007-05-09 14:03:28 -07004218#endif
Herbert Xuc62dba92005-09-26 15:10:16 -07004219
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 register_netdevice_notifier(&ipv6_dev_notf);
4221
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004223
4224 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo);
4225 if (err < 0)
4226 goto errout;
4227
4228 /* Only the first call to __rtnl_register can fail */
4229 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL);
4230 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL);
4231 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr, inet6_dump_ifaddr);
4232 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL, inet6_dump_ifmcaddr);
4233 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL, inet6_dump_ifacaddr);
4234
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235#ifdef CONFIG_SYSCTL
4236 addrconf_sysctl.sysctl_header =
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08004237 register_sysctl_table(addrconf_sysctl.addrconf_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 addrconf_sysctl_register(NULL, &ipv6_devconf_dflt);
4239#endif
4240
4241 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07004242errout:
4243 unregister_netdevice_notifier(&ipv6_dev_notf);
4244
4245 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246}
4247
4248void __exit addrconf_cleanup(void)
4249{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004250 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004251 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 int i;
4253
4254 unregister_netdevice_notifier(&ipv6_dev_notf);
4255
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256#ifdef CONFIG_SYSCTL
4257 addrconf_sysctl_unregister(&ipv6_devconf_dflt);
4258 addrconf_sysctl_unregister(&ipv6_devconf);
4259#endif
4260
4261 rtnl_lock();
4262
4263 /*
4264 * clean dev list.
4265 */
4266
Eric W. Biederman881d9662007-09-17 11:56:21 -07004267 for_each_netdev(&init_net, dev) {
Micah Gruberdffe4f02007-07-10 23:04:19 -07004268 if (__in6_dev_get(dev) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 continue;
4270 addrconf_ifdown(dev, 1);
4271 }
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004272 addrconf_ifdown(init_net.loopback_dev, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273
4274 /*
4275 * Check hash table.
4276 */
4277
4278 write_lock_bh(&addrconf_hash_lock);
4279 for (i=0; i < IN6_ADDR_HSIZE; i++) {
4280 for (ifa=inet6_addr_lst[i]; ifa; ) {
4281 struct inet6_ifaddr *bifa;
4282
4283 bifa = ifa;
4284 ifa = ifa->lst_next;
4285 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
4286 /* Do not free it; something is wrong.
4287 Now we can investigate it with debugger.
4288 */
4289 }
4290 }
4291 write_unlock_bh(&addrconf_hash_lock);
4292
4293 del_timer(&addr_chk_timer);
4294
4295 rtnl_unlock();
4296
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02004298 proc_net_remove(&init_net, "if_inet6");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299#endif
4300}