IPv6: complete disable_ipv6 backport - fix propagation on existing interfaces
[tomato.git] / release / src-rt / linux / linux-2.6 / net / ipv6 / addrconf.c
blob3525ce269973e1e7adc7d4956df732ea26c5a2c2
1 /*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 * $Id: addrconf.c,v 1.69 2001/10/31 21:55:54 davem Exp $
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.
18 * Changes:
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.
38 * YOSHIFUJI Hideaki @USAGI : improved source address
39 * selection; consider scope,
40 * status etc.
43 #include <linux/errno.h>
44 #include <linux/types.h>
45 #include <linux/socket.h>
46 #include <linux/sockios.h>
47 #include <linux/net.h>
48 #include <linux/in6.h>
49 #include <linux/netdevice.h>
50 #include <linux/if_addr.h>
51 #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
60 #include <linux/capability.h>
61 #include <linux/delay.h>
62 #include <linux/notifier.h>
63 #include <linux/string.h>
65 #include <net/sock.h>
66 #include <net/snmp.h>
68 #include <net/ipv6.h>
69 #include <net/protocol.h>
70 #include <net/ndisc.h>
71 #include <net/ip6_route.h>
72 #include <net/addrconf.h>
73 #include <net/tcp.h>
74 #include <net/ip.h>
75 #include <net/netlink.h>
76 #include <net/pkt_sched.h>
77 #include <linux/if_tunnel.h>
78 #include <linux/rtnetlink.h>
80 #ifdef CONFIG_IPV6_PRIVACY
81 #include <linux/random.h>
82 #endif
84 #include <asm/uaccess.h>
85 #include <asm/unaligned.h>
87 #include <linux/proc_fs.h>
88 #include <linux/seq_file.h>
90 /* Set to 3 to get tracing... */
91 #define ACONF_DEBUG 2
93 #if ACONF_DEBUG >= 3
94 #define ADBG(x) printk x
95 #else
96 #define ADBG(x)
97 #endif
99 #define INFINITY_LIFE_TIME 0xFFFFFFFF
100 #define TIME_DELTA(a,b) ((unsigned long)((long)(a) - (long)(b)))
102 #ifdef CONFIG_SYSCTL
103 static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p);
104 static void addrconf_sysctl_unregister(struct ipv6_devconf *p);
105 #endif
107 #ifdef CONFIG_IPV6_PRIVACY
108 static int __ipv6_regen_rndid(struct inet6_dev *idev);
109 static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
110 static void ipv6_regen_rndid(unsigned long data);
112 static int desync_factor = MAX_DESYNC_FACTOR * HZ;
113 #endif
115 static int ipv6_count_addresses(struct inet6_dev *idev);
118 * Configured unicast address hash table
120 static struct inet6_ifaddr *inet6_addr_lst[IN6_ADDR_HSIZE];
121 static DEFINE_RWLOCK(addrconf_hash_lock);
123 static void addrconf_verify(unsigned long);
125 static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
126 static DEFINE_SPINLOCK(addrconf_verify_lock);
128 static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
129 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
131 static int addrconf_ifdown(struct net_device *dev, int how);
133 static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags);
134 static void addrconf_dad_timer(unsigned long data);
135 static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
136 static void addrconf_dad_run(struct inet6_dev *idev);
137 static void addrconf_rs_timer(unsigned long data);
138 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
139 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
141 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
142 struct prefix_info *pinfo);
143 static int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev);
145 static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
147 struct ipv6_devconf ipv6_devconf __read_mostly = {
148 .forwarding = 0,
149 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
150 .mtu6 = IPV6_MIN_MTU,
151 .accept_ra = 1,
152 .accept_redirects = 1,
153 .autoconf = 1,
154 .force_mld_version = 0,
155 .dad_transmits = 1,
156 .rtr_solicits = MAX_RTR_SOLICITATIONS,
157 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
158 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
159 #ifdef CONFIG_IPV6_PRIVACY
160 .use_tempaddr = 0,
161 .temp_valid_lft = TEMP_VALID_LIFETIME,
162 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
163 .regen_max_retry = REGEN_MAX_RETRY,
164 .max_desync_factor = MAX_DESYNC_FACTOR,
165 #endif
166 .max_addresses = IPV6_MAX_ADDRESSES,
167 .accept_ra_defrtr = 1,
168 .accept_ra_pinfo = 1,
169 #ifdef CONFIG_IPV6_ROUTER_PREF
170 .accept_ra_rtr_pref = 1,
171 .rtr_probe_interval = 60 * HZ,
172 #ifdef CONFIG_IPV6_ROUTE_INFO
173 .accept_ra_rt_info_max_plen = 0,
174 #endif
175 #endif
176 .proxy_ndp = 0,
177 .accept_source_route = 0, /* we do not accept RH0 by default. */
178 .disable_ipv6 = 0,
181 static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
182 .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,
200 .accept_ra_defrtr = 1,
201 .accept_ra_pinfo = 1,
202 #ifdef CONFIG_IPV6_ROUTER_PREF
203 .accept_ra_rtr_pref = 1,
204 .rtr_probe_interval = 60 * HZ,
205 #ifdef CONFIG_IPV6_ROUTE_INFO
206 .accept_ra_rt_info_max_plen = 0,
207 #endif
208 #endif
209 .proxy_ndp = 0,
210 .accept_source_route = 0, /* we do not accept RH0 by default. */
211 .disable_ipv6 = 0,
214 /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
215 const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
216 const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
218 /* Check if a valid qdisc is available */
219 static inline int addrconf_qdisc_ok(struct net_device *dev)
221 return (dev->qdisc != &noop_qdisc);
224 static void addrconf_del_timer(struct inet6_ifaddr *ifp)
226 if (del_timer(&ifp->timer))
227 __in6_ifa_put(ifp);
230 enum addrconf_timer_t
232 AC_NONE,
233 AC_DAD,
234 AC_RS,
237 static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
238 enum addrconf_timer_t what,
239 unsigned long when)
241 if (!del_timer(&ifp->timer))
242 in6_ifa_hold(ifp);
244 switch (what) {
245 case AC_DAD:
246 ifp->timer.function = addrconf_dad_timer;
247 break;
248 case AC_RS:
249 ifp->timer.function = addrconf_rs_timer;
250 break;
251 default:;
253 ifp->timer.expires = jiffies + when;
254 add_timer(&ifp->timer);
257 static int snmp6_alloc_dev(struct inet6_dev *idev)
259 int err = -ENOMEM;
261 if (!idev || !idev->dev)
262 return -EINVAL;
264 if (snmp_mib_init((void **)idev->stats.ipv6,
265 sizeof(struct ipstats_mib),
266 __alignof__(struct ipstats_mib)) < 0)
267 goto err_ip;
268 if (snmp_mib_init((void **)idev->stats.icmpv6,
269 sizeof(struct icmpv6_mib),
270 __alignof__(struct icmpv6_mib)) < 0)
271 goto err_icmp;
273 return 0;
275 err_icmp:
276 snmp_mib_free((void **)idev->stats.ipv6);
277 err_ip:
278 return err;
281 static int snmp6_free_dev(struct inet6_dev *idev)
283 snmp_mib_free((void **)idev->stats.icmpv6);
284 snmp_mib_free((void **)idev->stats.ipv6);
285 return 0;
288 /* Nobody refers to this device, we may destroy it. */
290 static void in6_dev_finish_destroy_rcu(struct rcu_head *head)
292 struct inet6_dev *idev = container_of(head, struct inet6_dev, rcu);
293 kfree(idev);
296 void in6_dev_finish_destroy(struct inet6_dev *idev)
298 struct net_device *dev = idev->dev;
299 BUG_TRAP(idev->addr_list==NULL);
300 BUG_TRAP(idev->mc_list==NULL);
301 #ifdef NET_REFCNT_DEBUG
302 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
303 #endif
304 dev_put(dev);
305 if (!idev->dead) {
306 printk("Freeing alive inet6 device %p\n", idev);
307 return;
309 snmp6_free_dev(idev);
310 call_rcu(&idev->rcu, in6_dev_finish_destroy_rcu);
313 EXPORT_SYMBOL(in6_dev_finish_destroy);
315 static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
317 struct inet6_dev *ndev;
318 struct in6_addr maddr;
320 ASSERT_RTNL();
322 if (dev->mtu < IPV6_MIN_MTU)
323 return NULL;
325 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
327 if (ndev == NULL)
328 return NULL;
330 rwlock_init(&ndev->lock);
331 ndev->dev = dev;
332 memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf));
333 ndev->cnf.mtu6 = dev->mtu;
334 ndev->cnf.sysctl = NULL;
335 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
336 if (ndev->nd_parms == NULL) {
337 kfree(ndev);
338 return NULL;
340 /* We refer to the device */
341 dev_hold(dev);
343 if (snmp6_alloc_dev(ndev) < 0) {
344 ADBG((KERN_WARNING
345 "%s(): cannot allocate memory for statistics; dev=%s.\n",
346 __FUNCTION__, dev->name));
347 neigh_parms_release(&nd_tbl, ndev->nd_parms);
348 ndev->dead = 1;
349 in6_dev_finish_destroy(ndev);
350 return NULL;
353 if (snmp6_register_dev(ndev) < 0) {
354 ADBG((KERN_WARNING
355 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
356 __FUNCTION__, dev->name));
357 neigh_parms_release(&nd_tbl, ndev->nd_parms);
358 ndev->dead = 1;
359 in6_dev_finish_destroy(ndev);
360 return NULL;
363 /* One reference from device. We must do this before
364 * we invoke __ipv6_regen_rndid().
366 in6_dev_hold(ndev);
368 #ifdef CONFIG_IPV6_PRIVACY
369 init_timer(&ndev->regen_timer);
370 ndev->regen_timer.function = ipv6_regen_rndid;
371 ndev->regen_timer.data = (unsigned long) ndev;
372 if ((dev->flags&IFF_LOOPBACK) ||
373 dev->type == ARPHRD_TUNNEL ||
374 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
375 dev->type == ARPHRD_SIT ||
376 #endif
377 dev->type == ARPHRD_NONE) {
378 printk(KERN_INFO
379 "%s: Disabled Privacy Extensions\n",
380 dev->name);
381 ndev->cnf.use_tempaddr = -1;
382 } else {
383 in6_dev_hold(ndev);
384 ipv6_regen_rndid((unsigned long) ndev);
386 #endif
388 if (netif_running(dev) && addrconf_qdisc_ok(dev))
389 ndev->if_flags |= IF_READY;
391 ipv6_mc_init_dev(ndev);
392 ndev->tstamp = jiffies;
393 #ifdef CONFIG_SYSCTL
394 neigh_sysctl_register(dev, ndev->nd_parms, NET_IPV6,
395 NET_IPV6_NEIGH, "ipv6",
396 &ndisc_ifinfo_sysctl_change,
397 NULL);
398 addrconf_sysctl_register(ndev, &ndev->cnf);
399 #endif
400 /* protected by rtnl_lock */
401 rcu_assign_pointer(dev->ip6_ptr, ndev);
403 /* Join all-node multicast group */
404 ipv6_addr_all_nodes(&maddr);
405 ipv6_dev_mc_inc(dev, &maddr);
407 return ndev;
410 static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
412 struct inet6_dev *idev;
414 ASSERT_RTNL();
416 if ((idev = __in6_dev_get(dev)) == NULL) {
417 if ((idev = ipv6_add_dev(dev)) == NULL)
418 return NULL;
421 if (dev->flags&IFF_UP)
422 ipv6_mc_up(idev);
423 return idev;
426 #ifdef CONFIG_SYSCTL
427 static void dev_forward_change(struct inet6_dev *idev)
429 struct net_device *dev;
430 struct inet6_ifaddr *ifa;
431 struct in6_addr addr;
433 if (!idev)
434 return;
435 dev = idev->dev;
436 if (dev && (dev->flags & IFF_MULTICAST)) {
437 ipv6_addr_all_routers(&addr);
439 if (idev->cnf.forwarding)
440 ipv6_dev_mc_inc(dev, &addr);
441 else
442 ipv6_dev_mc_dec(dev, &addr);
444 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
445 if (ifa->flags&IFA_F_TENTATIVE)
446 continue;
447 if (idev->cnf.forwarding)
448 addrconf_join_anycast(ifa);
449 else
450 addrconf_leave_anycast(ifa);
454 static u32 ipv6_addr_hash(const struct in6_addr *addr)
457 * We perform the hash function over the last 64 bits of the address
458 * This will include the IEEE address token on links that support it.
460 return jhash_2words(addr->s6_addr32[2], addr->s6_addr32[3], 0)
461 & (IN6_ADDR_HSIZE - 1);
464 static void addrconf_forward_change(void)
466 struct net_device *dev;
467 struct inet6_dev *idev;
469 read_lock(&dev_base_lock);
470 for_each_netdev(dev) {
471 rcu_read_lock();
472 idev = __in6_dev_get(dev);
473 if (idev) {
474 int changed = (!idev->cnf.forwarding) ^ (!ipv6_devconf.forwarding);
475 idev->cnf.forwarding = ipv6_devconf.forwarding;
476 if (changed)
477 dev_forward_change(idev);
479 rcu_read_unlock();
481 read_unlock(&dev_base_lock);
483 #endif
485 /* Nobody refers to this ifaddr, destroy it */
487 void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
489 BUG_TRAP(ifp->if_next==NULL);
490 BUG_TRAP(ifp->lst_next==NULL);
491 #ifdef NET_REFCNT_DEBUG
492 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
493 #endif
495 in6_dev_put(ifp->idev);
497 if (del_timer(&ifp->timer))
498 printk("Timer is still running, when freeing ifa=%p\n", ifp);
500 if (!ifp->dead) {
501 printk("Freeing alive inet6 address %p\n", ifp);
502 return;
504 dst_release(&ifp->rt->u.dst);
506 kfree(ifp);
509 static void
510 ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
512 struct inet6_ifaddr *ifa, **ifap;
513 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
516 * Each device address list is sorted in order of scope -
517 * global before linklocal.
519 for (ifap = &idev->addr_list; (ifa = *ifap) != NULL;
520 ifap = &ifa->if_next) {
521 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
522 break;
525 ifp->if_next = *ifap;
526 *ifap = ifp;
529 /* On success it returns ifp with increased reference count */
531 static struct inet6_ifaddr *
532 ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
533 int scope, u32 flags)
535 struct inet6_ifaddr *ifa = NULL;
536 struct rt6_info *rt;
537 unsigned int hash;
538 int err = 0;
539 int addr_type = ipv6_addr_type(addr);
541 if (addr_type == IPV6_ADDR_ANY ||
542 addr_type & IPV6_ADDR_MULTICAST ||
543 (!(idev->dev->flags & IFF_LOOPBACK) &&
544 addr_type & IPV6_ADDR_LOOPBACK))
545 return ERR_PTR(-EADDRNOTAVAIL);
547 rcu_read_lock_bh();
548 if (idev->dead) {
549 err = -ENODEV; /*XXX*/
550 goto out2;
553 if (idev->cnf.disable_ipv6) {
554 err = -EACCES;
555 goto out2;
558 write_lock(&addrconf_hash_lock);
560 /* Ignore adding duplicate addresses on an interface */
561 if (ipv6_chk_same_addr(addr, idev->dev)) {
562 ADBG(("ipv6_add_addr: already assigned\n"));
563 err = -EEXIST;
564 goto out;
567 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
569 if (ifa == NULL) {
570 ADBG(("ipv6_add_addr: malloc failed\n"));
571 err = -ENOBUFS;
572 goto out;
575 rt = addrconf_dst_alloc(idev, addr, 0);
576 if (IS_ERR(rt)) {
577 err = PTR_ERR(rt);
578 goto out;
581 ipv6_addr_copy(&ifa->addr, addr);
583 spin_lock_init(&ifa->lock);
584 init_timer(&ifa->timer);
585 ifa->timer.data = (unsigned long) ifa;
586 ifa->scope = scope;
587 ifa->prefix_len = pfxlen;
588 ifa->flags = flags | IFA_F_TENTATIVE;
589 ifa->cstamp = ifa->tstamp = jiffies;
591 ifa->rt = rt;
594 * part one of RFC 4429, section 3.3
595 * We should not configure an address as
596 * optimistic if we do not yet know the link
597 * layer address of our nexhop router
600 if (rt->rt6i_nexthop == NULL)
601 ifa->flags &= ~IFA_F_OPTIMISTIC;
603 ifa->idev = idev;
604 in6_dev_hold(idev);
605 /* For caller */
606 in6_ifa_hold(ifa);
608 /* Add to big hash table */
609 hash = ipv6_addr_hash(addr);
611 ifa->lst_next = inet6_addr_lst[hash];
612 inet6_addr_lst[hash] = ifa;
613 in6_ifa_hold(ifa);
614 write_unlock(&addrconf_hash_lock);
616 write_lock(&idev->lock);
617 /* Add to inet6_dev unicast addr list. */
618 ipv6_link_dev_addr(idev, ifa);
620 #ifdef CONFIG_IPV6_PRIVACY
621 if (ifa->flags&IFA_F_TEMPORARY) {
622 ifa->tmp_next = idev->tempaddr_list;
623 idev->tempaddr_list = ifa;
624 in6_ifa_hold(ifa);
626 #endif
628 in6_ifa_hold(ifa);
629 write_unlock(&idev->lock);
630 out2:
631 rcu_read_unlock_bh();
633 if (likely(err == 0))
634 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
635 else {
636 kfree(ifa);
637 ifa = ERR_PTR(err);
640 return ifa;
641 out:
642 write_unlock(&addrconf_hash_lock);
643 goto out2;
646 /* This function wants to get referenced ifp and releases it before return */
648 static void ipv6_del_addr(struct inet6_ifaddr *ifp)
650 struct inet6_ifaddr *ifa, **ifap;
651 struct inet6_dev *idev = ifp->idev;
652 int hash;
653 int deleted = 0, onlink = 0;
654 unsigned long expires = jiffies;
656 hash = ipv6_addr_hash(&ifp->addr);
658 ifp->dead = 1;
660 write_lock_bh(&addrconf_hash_lock);
661 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
662 ifap = &ifa->lst_next) {
663 if (ifa == ifp) {
664 *ifap = ifa->lst_next;
665 __in6_ifa_put(ifp);
666 ifa->lst_next = NULL;
667 break;
670 write_unlock_bh(&addrconf_hash_lock);
672 write_lock_bh(&idev->lock);
673 #ifdef CONFIG_IPV6_PRIVACY
674 if (ifp->flags&IFA_F_TEMPORARY) {
675 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
676 ifap = &ifa->tmp_next) {
677 if (ifa == ifp) {
678 *ifap = ifa->tmp_next;
679 if (ifp->ifpub) {
680 in6_ifa_put(ifp->ifpub);
681 ifp->ifpub = NULL;
683 __in6_ifa_put(ifp);
684 ifa->tmp_next = NULL;
685 break;
689 #endif
691 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;) {
692 if (ifa == ifp) {
693 *ifap = ifa->if_next;
694 __in6_ifa_put(ifp);
695 ifa->if_next = NULL;
696 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
697 break;
698 deleted = 1;
699 continue;
700 } else if (ifp->flags & IFA_F_PERMANENT) {
701 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
702 ifp->prefix_len)) {
703 if (ifa->flags & IFA_F_PERMANENT) {
704 onlink = 1;
705 if (deleted)
706 break;
707 } else {
708 unsigned long lifetime;
710 if (!onlink)
711 onlink = -1;
713 spin_lock(&ifa->lock);
714 lifetime = min_t(unsigned long,
715 ifa->valid_lft, 0x7fffffffUL/HZ);
716 if (time_before(expires,
717 ifa->tstamp + lifetime * HZ))
718 expires = ifa->tstamp + lifetime * HZ;
719 spin_unlock(&ifa->lock);
723 ifap = &ifa->if_next;
725 write_unlock_bh(&idev->lock);
727 addrconf_del_timer(ifp);
729 ipv6_ifa_notify(RTM_DELADDR, ifp);
731 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
734 * Purge or update corresponding prefix
736 * 1) we don't purge prefix here if address was not permanent.
737 * prefix is managed by its own lifetime.
738 * 2) if there're no addresses, delete prefix.
739 * 3) if there're still other permanent address(es),
740 * corresponding prefix is still permanent.
741 * 4) otherwise, update prefix lifetime to the
742 * longest valid lifetime among the corresponding
743 * addresses on the device.
744 * Note: subsequent RA will update lifetime.
746 * --yoshfuji
748 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
749 struct in6_addr prefix;
750 struct rt6_info *rt;
752 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
753 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
755 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
756 if (onlink == 0) {
757 ip6_del_rt(rt);
758 rt = NULL;
759 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
760 rt->rt6i_expires = expires;
761 rt->rt6i_flags |= RTF_EXPIRES;
764 dst_release(&rt->u.dst);
767 in6_ifa_put(ifp);
770 #ifdef CONFIG_IPV6_PRIVACY
771 static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
773 struct inet6_dev *idev = ifp->idev;
774 struct in6_addr addr, *tmpaddr;
775 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
776 int tmp_plen;
777 int ret = 0;
778 int max_addresses;
779 u32 addr_flags;
781 write_lock(&idev->lock);
782 if (ift) {
783 spin_lock_bh(&ift->lock);
784 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
785 spin_unlock_bh(&ift->lock);
786 tmpaddr = &addr;
787 } else {
788 tmpaddr = NULL;
790 retry:
791 in6_dev_hold(idev);
792 if (idev->cnf.use_tempaddr <= 0) {
793 write_unlock(&idev->lock);
794 printk(KERN_INFO
795 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
796 in6_dev_put(idev);
797 ret = -1;
798 goto out;
800 spin_lock_bh(&ifp->lock);
801 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
802 idev->cnf.use_tempaddr = -1; /*XXX*/
803 spin_unlock_bh(&ifp->lock);
804 write_unlock(&idev->lock);
805 printk(KERN_WARNING
806 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
807 in6_dev_put(idev);
808 ret = -1;
809 goto out;
811 in6_ifa_hold(ifp);
812 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
813 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
814 spin_unlock_bh(&ifp->lock);
815 write_unlock(&idev->lock);
816 printk(KERN_WARNING
817 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
818 in6_ifa_put(ifp);
819 in6_dev_put(idev);
820 ret = -1;
821 goto out;
823 memcpy(&addr.s6_addr[8], idev->rndid, 8);
824 tmp_valid_lft = min_t(__u32,
825 ifp->valid_lft,
826 idev->cnf.temp_valid_lft);
827 tmp_prefered_lft = min_t(__u32,
828 ifp->prefered_lft,
829 idev->cnf.temp_prefered_lft - desync_factor / HZ);
830 tmp_plen = ifp->prefix_len;
831 max_addresses = idev->cnf.max_addresses;
832 tmp_cstamp = ifp->cstamp;
833 tmp_tstamp = ifp->tstamp;
834 spin_unlock_bh(&ifp->lock);
836 write_unlock(&idev->lock);
838 addr_flags = IFA_F_TEMPORARY;
839 /* set in addrconf_prefix_rcv() */
840 if (ifp->flags & IFA_F_OPTIMISTIC)
841 addr_flags |= IFA_F_OPTIMISTIC;
843 ift = !max_addresses ||
844 ipv6_count_addresses(idev) < max_addresses ?
845 ipv6_add_addr(idev, &addr, tmp_plen,
846 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
847 addr_flags) : NULL;
848 if (!ift || IS_ERR(ift)) {
849 in6_ifa_put(ifp);
850 in6_dev_put(idev);
851 printk(KERN_INFO
852 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
853 tmpaddr = &addr;
854 write_lock(&idev->lock);
855 goto retry;
858 spin_lock_bh(&ift->lock);
859 ift->ifpub = ifp;
860 ift->valid_lft = tmp_valid_lft;
861 ift->prefered_lft = tmp_prefered_lft;
862 ift->cstamp = tmp_cstamp;
863 ift->tstamp = tmp_tstamp;
864 spin_unlock_bh(&ift->lock);
866 addrconf_dad_start(ift, 0);
867 in6_ifa_put(ift);
868 in6_dev_put(idev);
869 out:
870 return ret;
872 #endif
875 * Choose an appropriate source address (RFC3484)
877 struct ipv6_saddr_score {
878 int addr_type;
879 unsigned int attrs;
880 int matchlen;
881 int scope;
882 unsigned int rule;
885 #define IPV6_SADDR_SCORE_LOCAL 0x0001
886 #define IPV6_SADDR_SCORE_PREFERRED 0x0004
887 #define IPV6_SADDR_SCORE_HOA 0x0008
888 #define IPV6_SADDR_SCORE_OIF 0x0010
889 #define IPV6_SADDR_SCORE_LABEL 0x0020
890 #define IPV6_SADDR_SCORE_PRIVACY 0x0040
892 static inline int ipv6_saddr_preferred(int type)
894 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
895 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
896 return 1;
897 return 0;
900 /* static matching label */
901 static inline int ipv6_saddr_label(const struct in6_addr *addr, int type)
904 * prefix (longest match) label
905 * -----------------------------
906 * ::1/128 0
907 * ::/0 1
908 * 2002::/16 2
909 * ::/96 3
910 * ::ffff:0:0/96 4
911 * fc00::/7 5
912 * 2001::/32 6
914 if (type & IPV6_ADDR_LOOPBACK)
915 return 0;
916 else if (type & IPV6_ADDR_COMPATv4)
917 return 3;
918 else if (type & IPV6_ADDR_MAPPED)
919 return 4;
920 else if (addr->s6_addr32[0] == htonl(0x20010000))
921 return 6;
922 else if (addr->s6_addr16[0] == htons(0x2002))
923 return 2;
924 else if ((addr->s6_addr[0] & 0xfe) == 0xfc)
925 return 5;
926 return 1;
929 int ipv6_dev_get_saddr(struct net_device *daddr_dev,
930 struct in6_addr *daddr, struct in6_addr *saddr)
932 struct ipv6_saddr_score hiscore;
933 struct inet6_ifaddr *ifa_result = NULL;
934 int daddr_type = __ipv6_addr_type(daddr);
935 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
936 u32 daddr_label = ipv6_saddr_label(daddr, daddr_type);
937 struct net_device *dev;
939 memset(&hiscore, 0, sizeof(hiscore));
941 read_lock(&dev_base_lock);
942 rcu_read_lock();
944 for_each_netdev(dev) {
945 struct inet6_dev *idev;
946 struct inet6_ifaddr *ifa;
948 /* Rule 0: Candidate Source Address (section 4)
949 * - multicast and link-local destination address,
950 * the set of candidate source address MUST only
951 * include addresses assigned to interfaces
952 * belonging to the same link as the outgoing
953 * interface.
954 * (- For site-local destination addresses, the
955 * set of candidate source addresses MUST only
956 * include addresses assigned to interfaces
957 * belonging to the same site as the outgoing
958 * interface.)
960 if ((daddr_type & IPV6_ADDR_MULTICAST ||
961 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
962 daddr_dev && dev != daddr_dev)
963 continue;
965 idev = __in6_dev_get(dev);
966 if (!idev)
967 continue;
969 read_lock_bh(&idev->lock);
970 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
971 struct ipv6_saddr_score score;
973 score.addr_type = __ipv6_addr_type(&ifa->addr);
975 /* Rule 0:
976 * - Tentative Address (RFC2462 section 5.4)
977 * - A tentative address is not considered
978 * "assigned to an interface" in the traditional
979 * sense, unless it is also flagged as optimistic.
980 * - Candidate Source Address (section 4)
981 * - In any case, anycast addresses, multicast
982 * addresses, and the unspecified address MUST
983 * NOT be included in a candidate set.
985 if ((ifa->flags & IFA_F_TENTATIVE) &&
986 (!(ifa->flags & IFA_F_OPTIMISTIC)))
987 continue;
988 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
989 score.addr_type & IPV6_ADDR_MULTICAST)) {
990 LIMIT_NETDEBUG(KERN_DEBUG
991 "ADDRCONF: unspecified / multicast address"
992 "assigned as unicast address on %s",
993 dev->name);
994 continue;
997 score.attrs = 0;
998 score.matchlen = 0;
999 score.scope = 0;
1000 score.rule = 0;
1002 if (ifa_result == NULL) {
1003 /* record it if the first available entry */
1004 goto record_it;
1007 /* Rule 1: Prefer same address */
1008 if (hiscore.rule < 1) {
1009 if (ipv6_addr_equal(&ifa_result->addr, daddr))
1010 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
1011 hiscore.rule++;
1013 if (ipv6_addr_equal(&ifa->addr, daddr)) {
1014 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
1015 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
1016 score.rule = 1;
1017 goto record_it;
1019 } else {
1020 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
1021 continue;
1024 /* Rule 2: Prefer appropriate scope */
1025 if (hiscore.rule < 2) {
1026 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
1027 hiscore.rule++;
1029 score.scope = __ipv6_addr_src_scope(score.addr_type);
1030 if (hiscore.scope < score.scope) {
1031 if (hiscore.scope < daddr_scope) {
1032 score.rule = 2;
1033 goto record_it;
1034 } else
1035 continue;
1036 } else if (score.scope < hiscore.scope) {
1037 if (score.scope < daddr_scope)
1038 break; /* addresses sorted by scope */
1039 else {
1040 score.rule = 2;
1041 goto record_it;
1045 /* Rule 3: Avoid deprecated and optimistic addresses */
1046 if (hiscore.rule < 3) {
1047 if (ipv6_saddr_preferred(hiscore.addr_type) ||
1048 (((ifa_result->flags &
1049 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0)))
1050 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1051 hiscore.rule++;
1053 if (ipv6_saddr_preferred(score.addr_type) ||
1054 (((ifa->flags &
1055 (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)) == 0))) {
1056 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
1057 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
1058 score.rule = 3;
1059 goto record_it;
1061 } else {
1062 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
1063 continue;
1066 /* Rule 4: Prefer home address */
1067 #ifdef CONFIG_IPV6_MIP6
1068 if (hiscore.rule < 4) {
1069 if (ifa_result->flags & IFA_F_HOMEADDRESS)
1070 hiscore.attrs |= IPV6_SADDR_SCORE_HOA;
1071 hiscore.rule++;
1073 if (ifa->flags & IFA_F_HOMEADDRESS) {
1074 score.attrs |= IPV6_SADDR_SCORE_HOA;
1075 if (!(ifa_result->flags & IFA_F_HOMEADDRESS)) {
1076 score.rule = 4;
1077 goto record_it;
1079 } else {
1080 if (hiscore.attrs & IPV6_SADDR_SCORE_HOA)
1081 continue;
1083 #else
1084 if (hiscore.rule < 4)
1085 hiscore.rule++;
1086 #endif
1088 /* Rule 5: Prefer outgoing interface */
1089 if (hiscore.rule < 5) {
1090 if (daddr_dev == NULL ||
1091 daddr_dev == ifa_result->idev->dev)
1092 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
1093 hiscore.rule++;
1095 if (daddr_dev == NULL ||
1096 daddr_dev == ifa->idev->dev) {
1097 score.attrs |= IPV6_SADDR_SCORE_OIF;
1098 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1099 score.rule = 5;
1100 goto record_it;
1102 } else {
1103 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1104 continue;
1107 /* Rule 6: Prefer matching label */
1108 if (hiscore.rule < 6) {
1109 if (ipv6_saddr_label(&ifa_result->addr, hiscore.addr_type) == daddr_label)
1110 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1111 hiscore.rule++;
1113 if (ipv6_saddr_label(&ifa->addr, score.addr_type) == daddr_label) {
1114 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1115 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1116 score.rule = 6;
1117 goto record_it;
1119 } else {
1120 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1121 continue;
1124 #ifdef CONFIG_IPV6_PRIVACY
1125 /* Rule 7: Prefer public address
1126 * Note: prefer temprary address if use_tempaddr >= 2
1128 if (hiscore.rule < 7) {
1129 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1130 (ifa_result->idev->cnf.use_tempaddr >= 2))
1131 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1132 hiscore.rule++;
1134 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1135 (ifa->idev->cnf.use_tempaddr >= 2)) {
1136 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1137 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1138 score.rule = 7;
1139 goto record_it;
1141 } else {
1142 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1143 continue;
1145 #else
1146 if (hiscore.rule < 7)
1147 hiscore.rule++;
1148 #endif
1149 /* Rule 8: Use longest matching prefix */
1150 if (hiscore.rule < 8) {
1151 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
1152 hiscore.rule++;
1154 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1155 if (score.matchlen > hiscore.matchlen) {
1156 score.rule = 8;
1157 goto record_it;
1159 #if 0
1160 else if (score.matchlen < hiscore.matchlen)
1161 continue;
1162 #endif
1164 /* Final Rule: choose first available one */
1165 continue;
1166 record_it:
1167 if (ifa_result)
1168 in6_ifa_put(ifa_result);
1169 in6_ifa_hold(ifa);
1170 ifa_result = ifa;
1171 hiscore = score;
1173 read_unlock_bh(&idev->lock);
1175 rcu_read_unlock();
1176 read_unlock(&dev_base_lock);
1178 if (!ifa_result)
1179 return -EADDRNOTAVAIL;
1181 ipv6_addr_copy(saddr, &ifa_result->addr);
1182 in6_ifa_put(ifa_result);
1183 return 0;
1187 int ipv6_get_saddr(struct dst_entry *dst,
1188 struct in6_addr *daddr, struct in6_addr *saddr)
1190 return ipv6_dev_get_saddr(dst ? ip6_dst_idev(dst)->dev : NULL, daddr, saddr);
1193 EXPORT_SYMBOL(ipv6_get_saddr);
1195 int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1196 unsigned char banned_flags)
1198 struct inet6_dev *idev;
1199 int err = -EADDRNOTAVAIL;
1201 rcu_read_lock();
1202 if ((idev = __in6_dev_get(dev)) != NULL) {
1203 struct inet6_ifaddr *ifp;
1205 read_lock_bh(&idev->lock);
1206 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1207 if (ifp->scope == IFA_LINK && !(ifp->flags & banned_flags)) {
1208 ipv6_addr_copy(addr, &ifp->addr);
1209 err = 0;
1210 break;
1213 read_unlock_bh(&idev->lock);
1215 rcu_read_unlock();
1216 return err;
1219 static int ipv6_count_addresses(struct inet6_dev *idev)
1221 int cnt = 0;
1222 struct inet6_ifaddr *ifp;
1224 read_lock_bh(&idev->lock);
1225 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1226 cnt++;
1227 read_unlock_bh(&idev->lock);
1228 return cnt;
1231 int ipv6_chk_addr(struct in6_addr *addr, struct net_device *dev, int strict)
1233 struct inet6_ifaddr * ifp;
1234 unsigned int hash = ipv6_addr_hash(addr);
1236 read_lock_bh(&addrconf_hash_lock);
1237 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1238 if (ipv6_addr_equal(&ifp->addr, addr) &&
1239 !(ifp->flags&IFA_F_TENTATIVE)) {
1240 if (dev == NULL || ifp->idev->dev == dev ||
1241 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1242 break;
1245 read_unlock_bh(&addrconf_hash_lock);
1246 return ifp != NULL;
1249 EXPORT_SYMBOL(ipv6_chk_addr);
1251 static
1252 int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev)
1254 struct inet6_ifaddr * ifp;
1255 unsigned int hash = ipv6_addr_hash(addr);
1257 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1258 if (ipv6_addr_equal(&ifp->addr, addr)) {
1259 if (dev == NULL || ifp->idev->dev == dev)
1260 break;
1263 return ifp != NULL;
1266 struct inet6_ifaddr * ipv6_get_ifaddr(struct in6_addr *addr, struct net_device *dev, int strict)
1268 struct inet6_ifaddr * ifp;
1269 unsigned int hash = ipv6_addr_hash(addr);
1271 read_lock_bh(&addrconf_hash_lock);
1272 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1273 if (ipv6_addr_equal(&ifp->addr, addr)) {
1274 if (dev == NULL || ifp->idev->dev == dev ||
1275 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1276 in6_ifa_hold(ifp);
1277 break;
1281 read_unlock_bh(&addrconf_hash_lock);
1283 return ifp;
1286 int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1288 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
1289 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
1290 __be32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1291 __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
1292 int sk_ipv6only = ipv6_only_sock(sk);
1293 int sk2_ipv6only = inet_v6_ipv6only(sk2);
1294 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1295 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1297 if (!sk2_rcv_saddr && !sk_ipv6only)
1298 return 1;
1300 if (addr_type2 == IPV6_ADDR_ANY &&
1301 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1302 return 1;
1304 if (addr_type == IPV6_ADDR_ANY &&
1305 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1306 return 1;
1308 if (sk2_rcv_saddr6 &&
1309 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1310 return 1;
1312 if (addr_type == IPV6_ADDR_MAPPED &&
1313 !sk2_ipv6only &&
1314 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1315 return 1;
1317 return 0;
1320 /* Gets referenced address, destroys ifaddr */
1322 static void addrconf_dad_stop(struct inet6_ifaddr *ifp)
1324 if (ifp->flags&IFA_F_PERMANENT) {
1325 spin_lock_bh(&ifp->lock);
1326 addrconf_del_timer(ifp);
1327 ifp->flags |= IFA_F_TENTATIVE;
1328 spin_unlock_bh(&ifp->lock);
1329 in6_ifa_put(ifp);
1330 #ifdef CONFIG_IPV6_PRIVACY
1331 } else if (ifp->flags&IFA_F_TEMPORARY) {
1332 struct inet6_ifaddr *ifpub;
1333 spin_lock_bh(&ifp->lock);
1334 ifpub = ifp->ifpub;
1335 if (ifpub) {
1336 in6_ifa_hold(ifpub);
1337 spin_unlock_bh(&ifp->lock);
1338 ipv6_create_tempaddr(ifpub, ifp);
1339 in6_ifa_put(ifpub);
1340 } else {
1341 spin_unlock_bh(&ifp->lock);
1343 ipv6_del_addr(ifp);
1344 #endif
1345 } else
1346 ipv6_del_addr(ifp);
1349 void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1351 if (net_ratelimit())
1352 printk(KERN_INFO "%s: IPv6 duplicate address detected!\n",
1353 ifp->idev->dev->name);
1355 addrconf_dad_stop(ifp);
1358 /* Join to solicited addr multicast group. */
1360 void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1362 struct in6_addr maddr;
1364 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1365 return;
1367 addrconf_addr_solict_mult(addr, &maddr);
1368 ipv6_dev_mc_inc(dev, &maddr);
1371 void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1373 struct in6_addr maddr;
1375 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1376 return;
1378 addrconf_addr_solict_mult(addr, &maddr);
1379 __ipv6_dev_mc_dec(idev, &maddr);
1382 static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
1384 struct in6_addr addr;
1385 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1386 if (ipv6_addr_any(&addr))
1387 return;
1388 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1391 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
1393 struct in6_addr addr;
1394 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1395 if (ipv6_addr_any(&addr))
1396 return;
1397 __ipv6_dev_ac_dec(ifp->idev, &addr);
1400 static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1402 if (dev->addr_len != ETH_ALEN)
1403 return -1;
1404 memcpy(eui, dev->dev_addr, 3);
1405 memcpy(eui + 5, dev->dev_addr + 3, 3);
1408 * The zSeries OSA network cards can be shared among various
1409 * OS instances, but the OSA cards have only one MAC address.
1410 * This leads to duplicate address conflicts in conjunction
1411 * with IPv6 if more than one instance uses the same card.
1413 * The driver for these cards can deliver a unique 16-bit
1414 * identifier for each instance sharing the same card. It is
1415 * placed instead of 0xFFFE in the interface identifier. The
1416 * "u" bit of the interface identifier is not inverted in this
1417 * case. Hence the resulting interface identifier has local
1418 * scope according to RFC2373.
1420 if (dev->dev_id) {
1421 eui[3] = (dev->dev_id >> 8) & 0xFF;
1422 eui[4] = dev->dev_id & 0xFF;
1423 } else {
1424 eui[3] = 0xFF;
1425 eui[4] = 0xFE;
1426 eui[0] ^= 2;
1428 return 0;
1431 static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1433 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1434 if (dev->addr_len != ARCNET_ALEN)
1435 return -1;
1436 memset(eui, 0, 7);
1437 eui[7] = *(u8*)dev->dev_addr;
1438 return 0;
1441 static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1443 if (dev->addr_len != INFINIBAND_ALEN)
1444 return -1;
1445 memcpy(eui, dev->dev_addr + 12, 8);
1446 eui[0] |= 2;
1447 return 0;
1450 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1452 switch (dev->type) {
1453 case ARPHRD_ETHER:
1454 case ARPHRD_FDDI:
1455 case ARPHRD_IEEE802_TR:
1456 return addrconf_ifid_eui48(eui, dev);
1457 case ARPHRD_ARCNET:
1458 return addrconf_ifid_arcnet(eui, dev);
1459 case ARPHRD_INFINIBAND:
1460 return addrconf_ifid_infiniband(eui, dev);
1462 return -1;
1465 static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1467 int err = -1;
1468 struct inet6_ifaddr *ifp;
1470 read_lock_bh(&idev->lock);
1471 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1472 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1473 memcpy(eui, ifp->addr.s6_addr+8, 8);
1474 err = 0;
1475 break;
1478 read_unlock_bh(&idev->lock);
1479 return err;
1482 #ifdef CONFIG_IPV6_PRIVACY
1483 /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1484 static int __ipv6_regen_rndid(struct inet6_dev *idev)
1486 regen:
1487 get_random_bytes(idev->rndid, sizeof(idev->rndid));
1488 idev->rndid[0] &= ~0x02;
1491 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1492 * check if generated address is not inappropriate
1494 * - Reserved subnet anycast (RFC 2526)
1495 * 11111101 11....11 1xxxxxxx
1496 * - ISATAP (draft-ietf-ngtrans-isatap-13.txt) 5.1
1497 * 00-00-5E-FE-xx-xx-xx-xx
1498 * - value 0
1499 * - XXX: already assigned to an address on the device
1501 if (idev->rndid[0] == 0xfd &&
1502 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1503 (idev->rndid[7]&0x80))
1504 goto regen;
1505 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1506 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1507 goto regen;
1508 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1509 goto regen;
1512 return 0;
1515 static void ipv6_regen_rndid(unsigned long data)
1517 struct inet6_dev *idev = (struct inet6_dev *) data;
1518 unsigned long expires;
1520 rcu_read_lock_bh();
1521 write_lock_bh(&idev->lock);
1523 if (idev->dead)
1524 goto out;
1526 if (__ipv6_regen_rndid(idev) < 0)
1527 goto out;
1529 expires = jiffies +
1530 idev->cnf.temp_prefered_lft * HZ -
1531 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1532 if (time_before(expires, jiffies)) {
1533 printk(KERN_WARNING
1534 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1535 idev->dev->name);
1536 goto out;
1539 if (!mod_timer(&idev->regen_timer, expires))
1540 in6_dev_hold(idev);
1542 out:
1543 write_unlock_bh(&idev->lock);
1544 rcu_read_unlock_bh();
1545 in6_dev_put(idev);
1548 static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1549 int ret = 0;
1551 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1552 ret = __ipv6_regen_rndid(idev);
1553 return ret;
1555 #endif
1558 * Add prefix route.
1561 static void
1562 addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
1563 unsigned long expires, u32 flags)
1565 struct fib6_config cfg = {
1566 .fc_table = RT6_TABLE_PREFIX,
1567 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1568 .fc_ifindex = dev->ifindex,
1569 .fc_expires = expires,
1570 .fc_dst_len = plen,
1571 .fc_flags = RTF_UP | flags,
1572 .fc_protocol = RTPROT_KERNEL,
1575 ipv6_addr_copy(&cfg.fc_dst, pfx);
1577 /* Prevent useless cloning on PtP SIT.
1578 This thing is done here expecting that the whole
1579 class of non-broadcast devices need not cloning.
1581 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
1582 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1583 cfg.fc_flags |= RTF_NONEXTHOP;
1584 #endif
1586 ip6_route_add(&cfg);
1589 /* Create "default" multicast route to the interface */
1591 static void addrconf_add_mroute(struct net_device *dev)
1593 struct fib6_config cfg = {
1594 .fc_table = RT6_TABLE_LOCAL,
1595 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1596 .fc_ifindex = dev->ifindex,
1597 .fc_dst_len = 8,
1598 .fc_flags = RTF_UP,
1601 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1603 ip6_route_add(&cfg);
1606 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
1607 static void sit_route_add(struct net_device *dev)
1609 struct fib6_config cfg = {
1610 .fc_table = RT6_TABLE_MAIN,
1611 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1612 .fc_ifindex = dev->ifindex,
1613 .fc_dst_len = 96,
1614 .fc_flags = RTF_UP | RTF_NONEXTHOP,
1617 /* prefix length - 96 bits "::d.d.d.d" */
1618 ip6_route_add(&cfg);
1620 #endif
1622 static void addrconf_add_lroute(struct net_device *dev)
1624 struct in6_addr addr;
1626 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1627 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1630 static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1632 struct inet6_dev *idev;
1634 ASSERT_RTNL();
1636 idev = ipv6_find_idev(dev);
1637 if (!idev)
1638 return ERR_PTR(-ENOBUFS);
1640 if (idev->cnf.disable_ipv6)
1641 return ERR_PTR(-EACCES);
1643 /* Add default multicast route */
1644 addrconf_add_mroute(dev);
1646 /* Add link local route */
1647 addrconf_add_lroute(dev);
1648 return idev;
1651 void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1653 struct prefix_info *pinfo;
1654 __u32 valid_lft;
1655 __u32 prefered_lft;
1656 int addr_type;
1657 unsigned long rt_expires;
1658 struct inet6_dev *in6_dev;
1660 pinfo = (struct prefix_info *) opt;
1662 if (len < sizeof(struct prefix_info)) {
1663 ADBG(("addrconf: prefix option too short\n"));
1664 return;
1668 * Validation checks ([ADDRCONF], page 19)
1671 addr_type = ipv6_addr_type(&pinfo->prefix);
1673 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1674 return;
1676 valid_lft = ntohl(pinfo->valid);
1677 prefered_lft = ntohl(pinfo->prefered);
1679 if (prefered_lft > valid_lft) {
1680 if (net_ratelimit())
1681 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1682 return;
1685 in6_dev = in6_dev_get(dev);
1687 if (in6_dev == NULL) {
1688 if (net_ratelimit())
1689 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1690 return;
1694 * Two things going on here:
1695 * 1) Add routes for on-link prefixes
1696 * 2) Configure prefixes with the auto flag set
1699 if (valid_lft == INFINITY_LIFE_TIME)
1700 rt_expires = ~0UL;
1701 else if (valid_lft >= 0x7FFFFFFF/HZ) {
1702 /* Avoid arithmetic overflow. Really, we could
1703 * save rt_expires in seconds, likely valid_lft,
1704 * but it would require division in fib gc, that it
1705 * not good.
1707 rt_expires = 0x7FFFFFFF - (0x7FFFFFFF % HZ);
1708 } else
1709 rt_expires = valid_lft * HZ;
1712 * We convert this (in jiffies) to clock_t later.
1713 * Avoid arithmetic overflow there as well.
1714 * Overflow can happen only if HZ < USER_HZ.
1716 if (HZ < USER_HZ && ~rt_expires && rt_expires > 0x7FFFFFFF / USER_HZ)
1717 rt_expires = 0x7FFFFFFF / USER_HZ;
1719 if (pinfo->onlink) {
1720 struct rt6_info *rt;
1721 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1723 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1724 /* Autoconf prefix route */
1725 if (valid_lft == 0) {
1726 ip6_del_rt(rt);
1727 rt = NULL;
1728 } else if (~rt_expires) {
1729 /* not infinity */
1730 rt->rt6i_expires = jiffies + rt_expires;
1731 rt->rt6i_flags |= RTF_EXPIRES;
1732 } else {
1733 rt->rt6i_flags &= ~RTF_EXPIRES;
1734 rt->rt6i_expires = 0;
1736 } else if (valid_lft) {
1737 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
1738 clock_t expires = 0;
1739 if (~rt_expires) {
1740 /* not infinity */
1741 flags |= RTF_EXPIRES;
1742 expires = jiffies_to_clock_t(rt_expires);
1744 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
1745 dev, expires, flags);
1747 if (rt)
1748 dst_release(&rt->u.dst);
1751 /* Try to figure out our local address for this prefix */
1753 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1754 struct inet6_ifaddr * ifp;
1755 struct in6_addr addr;
1756 int create = 0, update_lft = 0;
1758 if (pinfo->prefix_len == 64) {
1759 memcpy(&addr, &pinfo->prefix, 8);
1760 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1761 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1762 in6_dev_put(in6_dev);
1763 return;
1765 goto ok;
1767 if (net_ratelimit())
1768 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1769 pinfo->prefix_len);
1770 in6_dev_put(in6_dev);
1771 return;
1775 ifp = ipv6_get_ifaddr(&addr, dev, 1);
1777 if (ifp == NULL && valid_lft) {
1778 int max_addresses = in6_dev->cnf.max_addresses;
1779 u32 addr_flags = 0;
1781 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1782 if (in6_dev->cnf.optimistic_dad &&
1783 !ipv6_devconf.forwarding)
1784 addr_flags = IFA_F_OPTIMISTIC;
1785 #endif
1787 /* Do not allow to create too much of autoconfigured
1788 * addresses; this would be too easy way to crash kernel.
1790 if (!max_addresses ||
1791 ipv6_count_addresses(in6_dev) < max_addresses)
1792 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
1793 addr_type&IPV6_ADDR_SCOPE_MASK,
1794 addr_flags);
1796 if (!ifp || IS_ERR(ifp)) {
1797 in6_dev_put(in6_dev);
1798 return;
1801 update_lft = create = 1;
1802 ifp->cstamp = jiffies;
1803 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1806 if (ifp) {
1807 int flags;
1808 unsigned long now;
1809 #ifdef CONFIG_IPV6_PRIVACY
1810 struct inet6_ifaddr *ift;
1811 #endif
1812 u32 stored_lft;
1814 /* update lifetime (RFC2462 5.5.3 e) */
1815 spin_lock(&ifp->lock);
1816 now = jiffies;
1817 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1818 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1819 else
1820 stored_lft = 0;
1821 if (!update_lft && stored_lft) {
1822 if (valid_lft > MIN_VALID_LIFETIME ||
1823 valid_lft > stored_lft)
1824 update_lft = 1;
1825 else if (stored_lft <= MIN_VALID_LIFETIME) {
1826 /* valid_lft <= stored_lft is always true */
1828 * RFC 4862 Section 5.5.3e:
1829 * "Note that the preferred lifetime of
1830 * the corresponding address is always
1831 * reset to the Preferred Lifetime in
1832 * the received Prefix Information
1833 * option, regardless of whether the
1834 * valid lifetime is also reset or
1835 * ignored."
1837 * So if the preferred lifetime in
1838 * this advertisement is different
1839 * than what we have stored, but the
1840 * valid lifetime is invalid, just
1841 * reset prefered_lft.
1843 * We must set the valid lifetime
1844 * to the stored lifetime since we'll
1845 * be updating the timestamp below,
1846 * else we'll set it back to the
1847 * minumum.
1849 if (prefered_lft != ifp->prefered_lft) {
1850 valid_lft = stored_lft;
1851 update_lft = 1;
1853 } else {
1854 valid_lft = MIN_VALID_LIFETIME;
1855 if (valid_lft < prefered_lft)
1856 prefered_lft = valid_lft;
1857 update_lft = 1;
1861 if (update_lft) {
1862 ifp->valid_lft = valid_lft;
1863 ifp->prefered_lft = prefered_lft;
1864 ifp->tstamp = now;
1865 flags = ifp->flags;
1866 ifp->flags &= ~IFA_F_DEPRECATED;
1867 spin_unlock(&ifp->lock);
1869 if (!(flags&IFA_F_TENTATIVE))
1870 ipv6_ifa_notify(0, ifp);
1871 } else
1872 spin_unlock(&ifp->lock);
1874 #ifdef CONFIG_IPV6_PRIVACY
1875 read_lock_bh(&in6_dev->lock);
1876 /* update all temporary addresses in the list */
1877 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1879 * When adjusting the lifetimes of an existing
1880 * temporary address, only lower the lifetimes.
1881 * Implementations must not increase the
1882 * lifetimes of an existing temporary address
1883 * when processing a Prefix Information Option.
1885 if (ifp != ift->ifpub)
1886 continue;
1888 spin_lock(&ift->lock);
1889 flags = ift->flags;
1890 if (ift->valid_lft > valid_lft &&
1891 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1892 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1893 if (ift->prefered_lft > prefered_lft &&
1894 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1895 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1896 spin_unlock(&ift->lock);
1897 if (!(flags&IFA_F_TENTATIVE))
1898 ipv6_ifa_notify(0, ift);
1901 if (create && in6_dev->cnf.use_tempaddr > 0) {
1903 * When a new public address is created as described in [ADDRCONF],
1904 * also create a new temporary address.
1906 read_unlock_bh(&in6_dev->lock);
1907 ipv6_create_tempaddr(ifp, NULL);
1908 } else {
1909 read_unlock_bh(&in6_dev->lock);
1911 #endif
1912 in6_ifa_put(ifp);
1913 addrconf_verify(0);
1916 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1917 in6_dev_put(in6_dev);
1921 * Set destination address.
1922 * Special case for SIT interfaces where we create a new "virtual"
1923 * device.
1925 int addrconf_set_dstaddr(void __user *arg)
1927 struct in6_ifreq ireq;
1928 struct net_device *dev;
1929 int err = -EINVAL;
1931 rtnl_lock();
1933 err = -EFAULT;
1934 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1935 goto err_exit;
1937 dev = __dev_get_by_index(ireq.ifr6_ifindex);
1939 err = -ENODEV;
1940 if (dev == NULL)
1941 goto err_exit;
1943 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
1944 if (dev->type == ARPHRD_SIT) {
1945 struct ifreq ifr;
1946 mm_segment_t oldfs;
1947 struct ip_tunnel_parm p;
1949 err = -EADDRNOTAVAIL;
1950 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1951 goto err_exit;
1953 memset(&p, 0, sizeof(p));
1954 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1955 p.iph.saddr = 0;
1956 p.iph.version = 4;
1957 p.iph.ihl = 5;
1958 p.iph.protocol = IPPROTO_IPV6;
1959 p.iph.ttl = 64;
1960 ifr.ifr_ifru.ifru_data = (void __user *)&p;
1962 oldfs = get_fs(); set_fs(KERNEL_DS);
1963 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1964 set_fs(oldfs);
1966 if (err == 0) {
1967 err = -ENOBUFS;
1968 if ((dev = __dev_get_by_name(p.name)) == NULL)
1969 goto err_exit;
1970 err = dev_open(dev);
1973 #endif
1975 err_exit:
1976 rtnl_unlock();
1977 return err;
1981 * Manual configuration of address on an interface
1983 static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen,
1984 __u8 ifa_flags, __u32 prefered_lft, __u32 valid_lft)
1986 struct inet6_ifaddr *ifp;
1987 struct inet6_dev *idev;
1988 struct net_device *dev;
1989 int scope;
1990 u32 flags;
1991 clock_t expires;
1993 ASSERT_RTNL();
1995 /* check the lifetime */
1996 if (!valid_lft || prefered_lft > valid_lft)
1997 return -EINVAL;
1999 if ((dev = __dev_get_by_index(ifindex)) == NULL)
2000 return -ENODEV;
2002 idev = addrconf_add_dev(dev);
2003 if (IS_ERR(idev))
2004 return PTR_ERR(idev);
2006 scope = ipv6_addr_scope(pfx);
2008 if (valid_lft == INFINITY_LIFE_TIME) {
2009 ifa_flags |= IFA_F_PERMANENT;
2010 flags = 0;
2011 expires = 0;
2012 } else {
2013 if (valid_lft >= 0x7FFFFFFF/HZ)
2014 valid_lft = 0x7FFFFFFF/HZ;
2015 flags = RTF_EXPIRES;
2016 expires = jiffies_to_clock_t(valid_lft * HZ);
2019 if (prefered_lft == 0)
2020 ifa_flags |= IFA_F_DEPRECATED;
2021 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
2022 (prefered_lft != INFINITY_LIFE_TIME))
2023 prefered_lft = 0x7FFFFFFF/HZ;
2025 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2027 if (!IS_ERR(ifp)) {
2028 spin_lock_bh(&ifp->lock);
2029 ifp->valid_lft = valid_lft;
2030 ifp->prefered_lft = prefered_lft;
2031 ifp->tstamp = jiffies;
2032 spin_unlock_bh(&ifp->lock);
2034 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2035 expires, flags);
2037 * Note that section 3.1 of RFC 4429 indicates
2038 * that the Optimistic flag should not be set for
2039 * manually configured addresses
2041 addrconf_dad_start(ifp, 0);
2042 in6_ifa_put(ifp);
2043 addrconf_verify(0);
2044 return 0;
2047 return PTR_ERR(ifp);
2050 static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
2052 struct inet6_ifaddr *ifp;
2053 struct inet6_dev *idev;
2054 struct net_device *dev;
2056 if ((dev = __dev_get_by_index(ifindex)) == NULL)
2057 return -ENODEV;
2059 if ((idev = __in6_dev_get(dev)) == NULL)
2060 return -ENXIO;
2062 read_lock_bh(&idev->lock);
2063 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
2064 if (ifp->prefix_len == plen &&
2065 ipv6_addr_equal(pfx, &ifp->addr)) {
2066 in6_ifa_hold(ifp);
2067 read_unlock_bh(&idev->lock);
2069 ipv6_del_addr(ifp);
2071 /* If the last address is deleted administratively,
2072 disable IPv6 on this interface.
2074 if (idev->addr_list == NULL)
2075 addrconf_ifdown(idev->dev, 1);
2076 return 0;
2079 read_unlock_bh(&idev->lock);
2080 return -EADDRNOTAVAIL;
2084 int addrconf_add_ifaddr(void __user *arg)
2086 struct in6_ifreq ireq;
2087 int err;
2089 if (!capable(CAP_NET_ADMIN))
2090 return -EPERM;
2092 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2093 return -EFAULT;
2095 rtnl_lock();
2096 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen,
2097 IFA_F_PERMANENT, INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
2098 rtnl_unlock();
2099 return err;
2102 int addrconf_del_ifaddr(void __user *arg)
2104 struct in6_ifreq ireq;
2105 int err;
2107 if (!capable(CAP_NET_ADMIN))
2108 return -EPERM;
2110 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2111 return -EFAULT;
2113 rtnl_lock();
2114 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
2115 rtnl_unlock();
2116 return err;
2119 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
2120 static void sit_add_v4_addrs(struct inet6_dev *idev)
2122 struct inet6_ifaddr * ifp;
2123 struct in6_addr addr;
2124 struct net_device *dev;
2125 int scope;
2127 ASSERT_RTNL();
2129 memset(&addr, 0, sizeof(struct in6_addr));
2130 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2132 if (idev->dev->flags&IFF_POINTOPOINT) {
2133 addr.s6_addr32[0] = htonl(0xfe800000);
2134 scope = IFA_LINK;
2135 } else {
2136 scope = IPV6_ADDR_COMPATv4;
2139 if (addr.s6_addr32[3]) {
2140 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
2141 if (!IS_ERR(ifp)) {
2142 spin_lock_bh(&ifp->lock);
2143 ifp->flags &= ~IFA_F_TENTATIVE;
2144 spin_unlock_bh(&ifp->lock);
2145 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2146 in6_ifa_put(ifp);
2148 return;
2151 for_each_netdev(dev) {
2152 struct in_device * in_dev = __in_dev_get_rtnl(dev);
2153 if (in_dev && (dev->flags & IFF_UP)) {
2154 struct in_ifaddr * ifa;
2156 int flag = scope;
2158 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2159 int plen;
2161 addr.s6_addr32[3] = ifa->ifa_local;
2163 if (ifa->ifa_scope == RT_SCOPE_LINK)
2164 continue;
2165 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2166 if (idev->dev->flags&IFF_POINTOPOINT)
2167 continue;
2168 flag |= IFA_HOST;
2170 if (idev->dev->flags&IFF_POINTOPOINT)
2171 plen = 64;
2172 else
2173 plen = 96;
2175 ifp = ipv6_add_addr(idev, &addr, plen, flag,
2176 IFA_F_PERMANENT);
2177 if (!IS_ERR(ifp)) {
2178 spin_lock_bh(&ifp->lock);
2179 ifp->flags &= ~IFA_F_TENTATIVE;
2180 spin_unlock_bh(&ifp->lock);
2181 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2182 in6_ifa_put(ifp);
2188 #endif
2190 static void init_loopback(struct net_device *dev)
2192 struct inet6_dev *idev;
2193 struct inet6_ifaddr * ifp;
2195 /* ::1 */
2197 ASSERT_RTNL();
2199 if ((idev = ipv6_find_idev(dev)) == NULL) {
2200 printk(KERN_DEBUG "init loopback: add_dev failed\n");
2201 return;
2204 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
2205 if (!IS_ERR(ifp)) {
2206 spin_lock_bh(&ifp->lock);
2207 ifp->flags &= ~IFA_F_TENTATIVE;
2208 spin_unlock_bh(&ifp->lock);
2209 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2210 in6_ifa_put(ifp);
2214 static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2216 struct inet6_ifaddr * ifp;
2217 u32 addr_flags = IFA_F_PERMANENT;
2219 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2220 if (idev->cnf.optimistic_dad &&
2221 !ipv6_devconf.forwarding)
2222 addr_flags |= IFA_F_OPTIMISTIC;
2223 #endif
2226 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
2227 if (!IS_ERR(ifp)) {
2228 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
2229 addrconf_dad_start(ifp, 0);
2230 in6_ifa_put(ifp);
2234 static void addrconf_dev_config(struct net_device *dev)
2236 struct in6_addr addr;
2237 struct inet6_dev * idev;
2239 ASSERT_RTNL();
2241 if ((dev->type != ARPHRD_ETHER) &&
2242 (dev->type != ARPHRD_FDDI) &&
2243 (dev->type != ARPHRD_IEEE802_TR) &&
2244 (dev->type != ARPHRD_ARCNET) &&
2245 (dev->type != ARPHRD_INFINIBAND)) {
2246 /* Alas, we support only Ethernet autoconfiguration. */
2247 return;
2250 idev = addrconf_add_dev(dev);
2251 if (IS_ERR(idev))
2252 return;
2254 memset(&addr, 0, sizeof(struct in6_addr));
2255 addr.s6_addr32[0] = htonl(0xFE800000);
2257 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2258 addrconf_add_linklocal(idev, &addr);
2261 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
2262 static void addrconf_sit_config(struct net_device *dev)
2264 struct inet6_dev *idev;
2266 ASSERT_RTNL();
2269 * Configure the tunnel with one of our IPv4
2270 * addresses... we should configure all of
2271 * our v4 addrs in the tunnel
2274 if ((idev = ipv6_find_idev(dev)) == NULL) {
2275 printk(KERN_DEBUG "init sit: add_dev failed\n");
2276 return;
2279 sit_add_v4_addrs(idev);
2281 if (dev->flags&IFF_POINTOPOINT) {
2282 addrconf_add_mroute(dev);
2283 addrconf_add_lroute(dev);
2284 } else
2285 sit_route_add(dev);
2287 #endif
2289 static inline int
2290 ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2292 struct in6_addr lladdr;
2294 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
2295 addrconf_add_linklocal(idev, &lladdr);
2296 return 0;
2298 return -1;
2301 static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2303 struct net_device *link_dev;
2305 /* first try to inherit the link-local address from the link device */
2306 if (idev->dev->iflink &&
2307 (link_dev = __dev_get_by_index(idev->dev->iflink))) {
2308 if (!ipv6_inherit_linklocal(idev, link_dev))
2309 return;
2311 /* then try to inherit it from any device */
2312 for_each_netdev(link_dev) {
2313 if (!ipv6_inherit_linklocal(idev, link_dev))
2314 return;
2316 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2320 * Autoconfigure tunnel with a link-local address so routing protocols,
2321 * DHCPv6, MLD etc. can be run over the virtual link
2324 static void addrconf_ip6_tnl_config(struct net_device *dev)
2326 struct inet6_dev *idev;
2328 ASSERT_RTNL();
2330 idev = addrconf_add_dev(dev);
2331 if (IS_ERR(idev)) {
2332 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2333 return;
2335 ip6_tnl_add_linklocal(idev);
2338 static int addrconf_notify(struct notifier_block *this, unsigned long event,
2339 void * data)
2341 struct net_device *dev = (struct net_device *) data;
2342 struct inet6_dev *idev = __in6_dev_get(dev);
2343 int run_pending = 0;
2345 switch(event) {
2346 case NETDEV_REGISTER:
2347 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2348 idev = ipv6_add_dev(dev);
2349 if (!idev)
2350 printk(KERN_WARNING "IPv6: add_dev failed for %s\n",
2351 dev->name);
2353 break;
2354 case NETDEV_UP:
2355 case NETDEV_CHANGE:
2356 if (event == NETDEV_UP) {
2357 if (!addrconf_qdisc_ok(dev)) {
2358 /* device is not ready yet. */
2359 printk(KERN_INFO
2360 "ADDRCONF(NETDEV_UP): %s: "
2361 "link is not ready\n",
2362 dev->name);
2363 break;
2366 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2367 idev = ipv6_add_dev(dev);
2369 if (idev)
2370 idev->if_flags |= IF_READY;
2371 } else {
2372 if (!addrconf_qdisc_ok(dev)) {
2373 /* device is still not ready. */
2374 break;
2377 if (idev) {
2378 if (idev->if_flags & IF_READY) {
2379 /* device is already configured. */
2380 break;
2382 idev->if_flags |= IF_READY;
2385 printk(KERN_INFO
2386 "ADDRCONF(NETDEV_CHANGE): %s: "
2387 "link becomes ready\n",
2388 dev->name);
2390 run_pending = 1;
2393 switch(dev->type) {
2394 #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
2395 case ARPHRD_SIT:
2396 addrconf_sit_config(dev);
2397 break;
2398 #endif
2399 case ARPHRD_TUNNEL6:
2400 addrconf_ip6_tnl_config(dev);
2401 break;
2402 case ARPHRD_LOOPBACK:
2403 init_loopback(dev);
2404 break;
2406 default:
2407 addrconf_dev_config(dev);
2408 break;
2410 if (idev) {
2411 if (run_pending)
2412 addrconf_dad_run(idev);
2414 /* If the MTU changed during the interface down, when the
2415 interface up, the changed MTU must be reflected in the
2416 idev as well as routers.
2418 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2419 rt6_mtu_change(dev, dev->mtu);
2420 idev->cnf.mtu6 = dev->mtu;
2422 idev->tstamp = jiffies;
2423 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2424 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2425 stop IPv6 on this interface.
2427 if (dev->mtu < IPV6_MIN_MTU)
2428 addrconf_ifdown(dev, event != NETDEV_DOWN);
2430 break;
2432 case NETDEV_CHANGEMTU:
2433 if (idev && dev->mtu >= IPV6_MIN_MTU) {
2434 rt6_mtu_change(dev, dev->mtu);
2435 idev->cnf.mtu6 = dev->mtu;
2436 break;
2439 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2440 idev = ipv6_add_dev(dev);
2441 if (idev)
2442 break;
2445 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2447 case NETDEV_DOWN:
2448 case NETDEV_UNREGISTER:
2450 * Remove all addresses from this interface.
2452 addrconf_ifdown(dev, event != NETDEV_DOWN);
2453 break;
2455 case NETDEV_CHANGENAME:
2456 if (idev) {
2457 snmp6_unregister_dev(idev);
2458 #ifdef CONFIG_SYSCTL
2459 addrconf_sysctl_unregister(&idev->cnf);
2460 neigh_sysctl_unregister(idev->nd_parms);
2461 neigh_sysctl_register(dev, idev->nd_parms,
2462 NET_IPV6, NET_IPV6_NEIGH, "ipv6",
2463 &ndisc_ifinfo_sysctl_change,
2464 NULL);
2465 addrconf_sysctl_register(idev, &idev->cnf);
2466 #endif
2467 snmp6_register_dev(idev);
2469 break;
2472 return NOTIFY_OK;
2476 * addrconf module should be notified of a device going up
2478 static struct notifier_block ipv6_dev_notf = {
2479 .notifier_call = addrconf_notify,
2480 .priority = 0
2483 static int addrconf_ifdown(struct net_device *dev, int how)
2485 struct inet6_dev *idev;
2486 struct inet6_ifaddr *ifa, **bifa;
2487 int i;
2489 ASSERT_RTNL();
2491 if (dev == &loopback_dev && how == 1)
2492 how = 0;
2494 rt6_ifdown(dev);
2495 neigh_ifdown(&nd_tbl, dev);
2497 idev = __in6_dev_get(dev);
2498 if (idev == NULL)
2499 return -ENODEV;
2501 /* Step 1: remove reference to ipv6 device from parent device.
2502 Do not dev_put!
2504 if (how == 1) {
2505 idev->dead = 1;
2507 /* protected by rtnl_lock */
2508 rcu_assign_pointer(dev->ip6_ptr, NULL);
2510 /* Step 1.5: remove snmp6 entry */
2511 snmp6_unregister_dev(idev);
2515 /* Step 2: clear hash table */
2516 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2517 bifa = &inet6_addr_lst[i];
2519 write_lock_bh(&addrconf_hash_lock);
2520 while ((ifa = *bifa) != NULL) {
2521 if (ifa->idev == idev) {
2522 *bifa = ifa->lst_next;
2523 ifa->lst_next = NULL;
2524 addrconf_del_timer(ifa);
2525 in6_ifa_put(ifa);
2526 continue;
2528 bifa = &ifa->lst_next;
2530 write_unlock_bh(&addrconf_hash_lock);
2533 write_lock_bh(&idev->lock);
2535 /* Step 3: clear flags for stateless addrconf */
2536 if (how != 1)
2537 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
2539 /* Step 4: clear address list */
2540 #ifdef CONFIG_IPV6_PRIVACY
2541 if (how == 1 && del_timer(&idev->regen_timer))
2542 in6_dev_put(idev);
2544 /* clear tempaddr list */
2545 while ((ifa = idev->tempaddr_list) != NULL) {
2546 idev->tempaddr_list = ifa->tmp_next;
2547 ifa->tmp_next = NULL;
2548 ifa->dead = 1;
2549 write_unlock_bh(&idev->lock);
2550 spin_lock_bh(&ifa->lock);
2552 if (ifa->ifpub) {
2553 in6_ifa_put(ifa->ifpub);
2554 ifa->ifpub = NULL;
2556 spin_unlock_bh(&ifa->lock);
2557 in6_ifa_put(ifa);
2558 write_lock_bh(&idev->lock);
2560 #endif
2561 while ((ifa = idev->addr_list) != NULL) {
2562 idev->addr_list = ifa->if_next;
2563 ifa->if_next = NULL;
2564 ifa->dead = 1;
2565 addrconf_del_timer(ifa);
2566 write_unlock_bh(&idev->lock);
2568 __ipv6_ifa_notify(RTM_DELADDR, ifa);
2569 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
2570 in6_ifa_put(ifa);
2572 write_lock_bh(&idev->lock);
2574 write_unlock_bh(&idev->lock);
2576 /* Step 5: Discard multicast list */
2578 if (how == 1)
2579 ipv6_mc_destroy_dev(idev);
2580 else
2581 ipv6_mc_down(idev);
2583 /* Step 5: netlink notification of this interface */
2584 idev->tstamp = jiffies;
2585 inet6_ifinfo_notify(RTM_DELLINK, idev);
2587 /* Shot the device (if unregistered) */
2589 if (how == 1) {
2590 #ifdef CONFIG_SYSCTL
2591 addrconf_sysctl_unregister(&idev->cnf);
2592 neigh_sysctl_unregister(idev->nd_parms);
2593 #endif
2594 neigh_parms_release(&nd_tbl, idev->nd_parms);
2595 neigh_ifdown(&nd_tbl, dev);
2596 in6_dev_put(idev);
2598 return 0;
2601 static void addrconf_rs_timer(unsigned long data)
2603 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2604 struct inet6_dev *idev = ifp->idev;
2606 read_lock(&idev->lock);
2607 if (idev->dead || !(idev->if_flags & IF_READY))
2608 goto out;
2610 if (idev->cnf.forwarding)
2611 goto out;
2613 /* Announcement received after solicitation was sent */
2614 if (idev->if_flags & IF_RA_RCVD)
2615 goto out;
2617 spin_lock(&ifp->lock);
2618 if (ifp->probes++ < idev->cnf.rtr_solicits) {
2619 struct in6_addr all_routers;
2621 /* The wait after the last probe can be shorter */
2622 addrconf_mod_timer(ifp, AC_RS,
2623 (ifp->probes == idev->cnf.rtr_solicits) ?
2624 idev->cnf.rtr_solicit_delay :
2625 idev->cnf.rtr_solicit_interval);
2626 spin_unlock(&ifp->lock);
2628 ipv6_addr_all_routers(&all_routers);
2630 ndisc_send_rs(idev->dev, &ifp->addr, &all_routers);
2631 } else {
2632 spin_unlock(&ifp->lock);
2634 * Note: we do not support deprecated "all on-link"
2635 * assumption any longer.
2637 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2638 idev->dev->name);
2641 out:
2642 read_unlock(&idev->lock);
2643 in6_ifa_put(ifp);
2647 * Duplicate Address Detection
2649 static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2651 unsigned long rand_num;
2652 struct inet6_dev *idev = ifp->idev;
2654 if (ifp->flags & IFA_F_OPTIMISTIC)
2655 rand_num = 0;
2656 else
2657 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2659 ifp->probes = idev->cnf.dad_transmits;
2660 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2663 static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
2665 struct inet6_dev *idev = ifp->idev;
2666 struct net_device *dev = idev->dev;
2668 addrconf_join_solict(dev, &ifp->addr);
2670 net_srandom(ifp->addr.s6_addr32[3]);
2672 read_lock_bh(&idev->lock);
2673 if (ifp->dead)
2674 goto out;
2675 spin_lock_bh(&ifp->lock);
2677 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
2678 !(ifp->flags&IFA_F_TENTATIVE) ||
2679 ifp->flags & IFA_F_NODAD) {
2680 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
2681 spin_unlock_bh(&ifp->lock);
2682 read_unlock_bh(&idev->lock);
2684 addrconf_dad_completed(ifp);
2685 return;
2688 if (!(idev->if_flags & IF_READY)) {
2689 spin_unlock_bh(&ifp->lock);
2690 read_unlock_bh(&idev->lock);
2692 * If the defice is not ready:
2693 * - keep it tentative if it is a permanent address.
2694 * - otherwise, kill it.
2696 in6_ifa_hold(ifp);
2697 addrconf_dad_stop(ifp);
2698 return;
2702 * Optimistic nodes can start receiving
2703 * Frames right away
2705 if(ifp->flags & IFA_F_OPTIMISTIC)
2706 ip6_ins_rt(ifp->rt);
2708 addrconf_dad_kick(ifp);
2709 spin_unlock_bh(&ifp->lock);
2710 out:
2711 read_unlock_bh(&idev->lock);
2714 static void addrconf_dad_timer(unsigned long data)
2716 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2717 struct inet6_dev *idev = ifp->idev;
2718 struct in6_addr unspec;
2719 struct in6_addr mcaddr;
2721 read_lock_bh(&idev->lock);
2722 if (idev->dead) {
2723 read_unlock_bh(&idev->lock);
2724 goto out;
2726 spin_lock_bh(&ifp->lock);
2727 if (ifp->probes == 0) {
2729 * DAD was successful
2732 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC);
2733 spin_unlock_bh(&ifp->lock);
2734 read_unlock_bh(&idev->lock);
2736 addrconf_dad_completed(ifp);
2738 goto out;
2741 ifp->probes--;
2742 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2743 spin_unlock_bh(&ifp->lock);
2744 read_unlock_bh(&idev->lock);
2746 /* send a neighbour solicitation for our addr */
2747 memset(&unspec, 0, sizeof(unspec));
2748 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2749 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2750 out:
2751 in6_ifa_put(ifp);
2754 static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2756 struct net_device * dev = ifp->idev->dev;
2759 * Configure the address for reception. Now it is valid.
2762 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2764 /* If added prefix is link local and forwarding is off,
2765 start sending router solicitations.
2768 if ((ifp->idev->cnf.forwarding == 0 ||
2769 ifp->idev->cnf.forwarding == 2) &&
2770 ifp->idev->cnf.rtr_solicits > 0 &&
2771 (dev->flags&IFF_LOOPBACK) == 0 &&
2772 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2773 struct in6_addr all_routers;
2775 ipv6_addr_all_routers(&all_routers);
2778 * If a host as already performed a random delay
2779 * [...] as part of DAD [...] there is no need
2780 * to delay again before sending the first RS
2782 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2784 spin_lock_bh(&ifp->lock);
2785 ifp->probes = 1;
2786 ifp->idev->if_flags |= IF_RS_SENT;
2787 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2788 spin_unlock_bh(&ifp->lock);
2792 static void addrconf_dad_run(struct inet6_dev *idev) {
2793 struct inet6_ifaddr *ifp;
2795 read_lock_bh(&idev->lock);
2796 for (ifp = idev->addr_list; ifp; ifp = ifp->if_next) {
2797 spin_lock_bh(&ifp->lock);
2798 if (!(ifp->flags & IFA_F_TENTATIVE)) {
2799 spin_unlock_bh(&ifp->lock);
2800 continue;
2802 spin_unlock_bh(&ifp->lock);
2803 addrconf_dad_kick(ifp);
2805 read_unlock_bh(&idev->lock);
2808 #ifdef CONFIG_PROC_FS
2809 struct if6_iter_state {
2810 int bucket;
2813 static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2815 struct inet6_ifaddr *ifa = NULL;
2816 struct if6_iter_state *state = seq->private;
2818 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2819 ifa = inet6_addr_lst[state->bucket];
2820 if (ifa)
2821 break;
2823 return ifa;
2826 static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2828 struct if6_iter_state *state = seq->private;
2830 ifa = ifa->lst_next;
2831 try_again:
2832 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2833 ifa = inet6_addr_lst[state->bucket];
2834 goto try_again;
2836 return ifa;
2839 static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2841 struct inet6_ifaddr *ifa = if6_get_first(seq);
2843 if (ifa)
2844 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2845 --pos;
2846 return pos ? NULL : ifa;
2849 static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
2851 read_lock_bh(&addrconf_hash_lock);
2852 return if6_get_idx(seq, *pos);
2855 static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2857 struct inet6_ifaddr *ifa;
2859 ifa = if6_get_next(seq, v);
2860 ++*pos;
2861 return ifa;
2864 static void if6_seq_stop(struct seq_file *seq, void *v)
2866 read_unlock_bh(&addrconf_hash_lock);
2869 static int if6_seq_show(struct seq_file *seq, void *v)
2871 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2872 seq_printf(seq,
2873 NIP6_SEQFMT " %02x %02x %02x %02x %8s\n",
2874 NIP6(ifp->addr),
2875 ifp->idev->dev->ifindex,
2876 ifp->prefix_len,
2877 ifp->scope,
2878 ifp->flags,
2879 ifp->idev->dev->name);
2880 return 0;
2883 static struct seq_operations if6_seq_ops = {
2884 .start = if6_seq_start,
2885 .next = if6_seq_next,
2886 .show = if6_seq_show,
2887 .stop = if6_seq_stop,
2890 static int if6_seq_open(struct inode *inode, struct file *file)
2892 struct seq_file *seq;
2893 int rc = -ENOMEM;
2894 struct if6_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
2896 if (!s)
2897 goto out;
2899 rc = seq_open(file, &if6_seq_ops);
2900 if (rc)
2901 goto out_kfree;
2903 seq = file->private_data;
2904 seq->private = s;
2905 out:
2906 return rc;
2907 out_kfree:
2908 kfree(s);
2909 goto out;
2912 static const struct file_operations if6_fops = {
2913 .owner = THIS_MODULE,
2914 .open = if6_seq_open,
2915 .read = seq_read,
2916 .llseek = seq_lseek,
2917 .release = seq_release_private,
2920 int __init if6_proc_init(void)
2922 if (!proc_net_fops_create("if_inet6", S_IRUGO, &if6_fops))
2923 return -ENOMEM;
2924 return 0;
2927 void if6_proc_exit(void)
2929 proc_net_remove("if_inet6");
2931 #endif /* CONFIG_PROC_FS */
2933 #ifdef CONFIG_IPV6_MIP6
2934 /* Check if address is a home address configured on any interface. */
2935 int ipv6_chk_home_addr(struct in6_addr *addr)
2937 int ret = 0;
2938 struct inet6_ifaddr * ifp;
2939 unsigned int hash = ipv6_addr_hash(addr);
2941 read_lock_bh(&addrconf_hash_lock);
2942 for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
2943 if (ipv6_addr_cmp(&ifp->addr, addr) == 0 &&
2944 (ifp->flags & IFA_F_HOMEADDRESS)) {
2945 ret = 1;
2946 break;
2949 read_unlock_bh(&addrconf_hash_lock);
2950 return ret;
2952 #endif
2955 * Periodic address status verification
2958 static void addrconf_verify(unsigned long foo)
2960 struct inet6_ifaddr *ifp;
2961 unsigned long now, next;
2962 int i;
2964 spin_lock_bh(&addrconf_verify_lock);
2965 now = jiffies;
2966 next = now + ADDR_CHECK_FREQUENCY;
2968 del_timer(&addr_chk_timer);
2970 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2972 restart:
2973 read_lock(&addrconf_hash_lock);
2974 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2975 unsigned long age;
2976 #ifdef CONFIG_IPV6_PRIVACY
2977 unsigned long regen_advance;
2978 #endif
2980 if (ifp->flags & IFA_F_PERMANENT)
2981 continue;
2983 spin_lock(&ifp->lock);
2984 age = (now - ifp->tstamp) / HZ;
2986 #ifdef CONFIG_IPV6_PRIVACY
2987 regen_advance = ifp->idev->cnf.regen_max_retry *
2988 ifp->idev->cnf.dad_transmits *
2989 ifp->idev->nd_parms->retrans_time / HZ;
2990 #endif
2992 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
2993 age >= ifp->valid_lft) {
2994 spin_unlock(&ifp->lock);
2995 in6_ifa_hold(ifp);
2996 read_unlock(&addrconf_hash_lock);
2997 ipv6_del_addr(ifp);
2998 goto restart;
2999 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3000 spin_unlock(&ifp->lock);
3001 continue;
3002 } else if (age >= ifp->prefered_lft) {
3003 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
3004 int deprecate = 0;
3006 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3007 deprecate = 1;
3008 ifp->flags |= IFA_F_DEPRECATED;
3011 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3012 next = ifp->tstamp + ifp->valid_lft * HZ;
3014 spin_unlock(&ifp->lock);
3016 if (deprecate) {
3017 in6_ifa_hold(ifp);
3018 read_unlock(&addrconf_hash_lock);
3020 ipv6_ifa_notify(0, ifp);
3021 in6_ifa_put(ifp);
3022 goto restart;
3024 #ifdef CONFIG_IPV6_PRIVACY
3025 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3026 !(ifp->flags&IFA_F_TENTATIVE)) {
3027 if (age >= ifp->prefered_lft - regen_advance) {
3028 struct inet6_ifaddr *ifpub = ifp->ifpub;
3029 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3030 next = ifp->tstamp + ifp->prefered_lft * HZ;
3031 if (!ifp->regen_count && ifpub) {
3032 ifp->regen_count++;
3033 in6_ifa_hold(ifp);
3034 in6_ifa_hold(ifpub);
3035 spin_unlock(&ifp->lock);
3036 read_unlock(&addrconf_hash_lock);
3037 spin_lock(&ifpub->lock);
3038 ifpub->regen_count = 0;
3039 spin_unlock(&ifpub->lock);
3040 ipv6_create_tempaddr(ifpub, ifp);
3041 in6_ifa_put(ifpub);
3042 in6_ifa_put(ifp);
3043 goto restart;
3045 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3046 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3047 spin_unlock(&ifp->lock);
3048 #endif
3049 } else {
3050 /* ifp->prefered_lft <= ifp->valid_lft */
3051 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3052 next = ifp->tstamp + ifp->prefered_lft * HZ;
3053 spin_unlock(&ifp->lock);
3056 read_unlock(&addrconf_hash_lock);
3059 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
3060 add_timer(&addr_chk_timer);
3061 spin_unlock_bh(&addrconf_verify_lock);
3064 static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3066 struct in6_addr *pfx = NULL;
3068 if (addr)
3069 pfx = nla_data(addr);
3071 if (local) {
3072 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3073 pfx = NULL;
3074 else
3075 pfx = nla_data(local);
3078 return pfx;
3081 static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
3082 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3083 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3084 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3087 static int
3088 inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3090 struct ifaddrmsg *ifm;
3091 struct nlattr *tb[IFA_MAX+1];
3092 struct in6_addr *pfx;
3093 int err;
3095 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3096 if (err < 0)
3097 return err;
3099 ifm = nlmsg_data(nlh);
3100 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3101 if (pfx == NULL)
3102 return -EINVAL;
3104 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
3107 static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3108 u32 prefered_lft, u32 valid_lft)
3110 u32 flags;
3111 clock_t expires;
3113 if (!valid_lft || (prefered_lft > valid_lft))
3114 return -EINVAL;
3116 if (valid_lft == INFINITY_LIFE_TIME) {
3117 ifa_flags |= IFA_F_PERMANENT;
3118 flags = 0;
3119 expires = 0;
3120 } else {
3121 if (valid_lft >= 0x7FFFFFFF/HZ)
3122 valid_lft = 0x7FFFFFFF/HZ;
3123 flags = RTF_EXPIRES;
3124 expires = jiffies_to_clock_t(valid_lft * HZ);
3127 if (prefered_lft == 0)
3128 ifa_flags |= IFA_F_DEPRECATED;
3129 else if ((prefered_lft >= 0x7FFFFFFF/HZ) &&
3130 (prefered_lft != INFINITY_LIFE_TIME))
3131 prefered_lft = 0x7FFFFFFF/HZ;
3133 spin_lock_bh(&ifp->lock);
3134 ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
3135 ifp->tstamp = jiffies;
3136 ifp->valid_lft = valid_lft;
3137 ifp->prefered_lft = prefered_lft;
3139 spin_unlock_bh(&ifp->lock);
3140 if (!(ifp->flags&IFA_F_TENTATIVE))
3141 ipv6_ifa_notify(0, ifp);
3143 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3144 expires, flags);
3145 addrconf_verify(0);
3147 return 0;
3150 static int
3151 inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3153 struct ifaddrmsg *ifm;
3154 struct nlattr *tb[IFA_MAX+1];
3155 struct in6_addr *pfx;
3156 struct inet6_ifaddr *ifa;
3157 struct net_device *dev;
3158 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3159 u8 ifa_flags;
3160 int err;
3162 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3163 if (err < 0)
3164 return err;
3166 ifm = nlmsg_data(nlh);
3167 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3168 if (pfx == NULL)
3169 return -EINVAL;
3171 if (tb[IFA_CACHEINFO]) {
3172 struct ifa_cacheinfo *ci;
3174 ci = nla_data(tb[IFA_CACHEINFO]);
3175 valid_lft = ci->ifa_valid;
3176 preferred_lft = ci->ifa_prefered;
3177 } else {
3178 preferred_lft = INFINITY_LIFE_TIME;
3179 valid_lft = INFINITY_LIFE_TIME;
3182 dev = __dev_get_by_index(ifm->ifa_index);
3183 if (dev == NULL)
3184 return -ENODEV;
3186 /* We ignore other flags so far. */
3187 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
3189 ifa = ipv6_get_ifaddr(pfx, dev, 1);
3190 if (ifa == NULL) {
3192 * It would be best to check for !NLM_F_CREATE here but
3193 * userspace alreay relies on not having to provide this.
3195 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen,
3196 ifa_flags, preferred_lft, valid_lft);
3199 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3200 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3201 err = -EEXIST;
3202 else
3203 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
3205 in6_ifa_put(ifa);
3207 return err;
3210 static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3211 u8 scope, int ifindex)
3213 struct ifaddrmsg *ifm;
3215 ifm = nlmsg_data(nlh);
3216 ifm->ifa_family = AF_INET6;
3217 ifm->ifa_prefixlen = prefixlen;
3218 ifm->ifa_flags = flags;
3219 ifm->ifa_scope = scope;
3220 ifm->ifa_index = ifindex;
3223 static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3224 unsigned long tstamp, u32 preferred, u32 valid)
3226 struct ifa_cacheinfo ci;
3228 ci.cstamp = (u32)(TIME_DELTA(cstamp, INITIAL_JIFFIES) / HZ * 100
3229 + TIME_DELTA(cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3230 ci.tstamp = (u32)(TIME_DELTA(tstamp, INITIAL_JIFFIES) / HZ * 100
3231 + TIME_DELTA(tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3232 ci.ifa_prefered = preferred;
3233 ci.ifa_valid = valid;
3235 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3238 static inline int rt_scope(int ifa_scope)
3240 if (ifa_scope & IFA_HOST)
3241 return RT_SCOPE_HOST;
3242 else if (ifa_scope & IFA_LINK)
3243 return RT_SCOPE_LINK;
3244 else if (ifa_scope & IFA_SITE)
3245 return RT_SCOPE_SITE;
3246 else
3247 return RT_SCOPE_UNIVERSE;
3250 static inline int inet6_ifaddr_msgsize(void)
3252 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3253 + nla_total_size(16) /* IFA_ADDRESS */
3254 + nla_total_size(sizeof(struct ifa_cacheinfo));
3257 static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
3258 u32 pid, u32 seq, int event, unsigned int flags)
3260 struct nlmsghdr *nlh;
3261 u32 preferred, valid;
3263 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3264 if (nlh == NULL)
3265 return -EMSGSIZE;
3267 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3268 ifa->idev->dev->ifindex);
3270 if (!(ifa->flags&IFA_F_PERMANENT)) {
3271 preferred = ifa->prefered_lft;
3272 valid = ifa->valid_lft;
3273 if (preferred != INFINITY_LIFE_TIME) {
3274 long tval = (jiffies - ifa->tstamp)/HZ;
3275 if (preferred > tval)
3276 preferred -= tval;
3277 else
3278 preferred = 0;
3279 if (valid != INFINITY_LIFE_TIME)
3280 valid -= tval;
3282 } else {
3283 preferred = INFINITY_LIFE_TIME;
3284 valid = INFINITY_LIFE_TIME;
3287 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
3288 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3289 nlmsg_cancel(skb, nlh);
3290 return -EMSGSIZE;
3293 return nlmsg_end(skb, nlh);
3296 static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
3297 u32 pid, u32 seq, int event, u16 flags)
3299 struct nlmsghdr *nlh;
3300 u8 scope = RT_SCOPE_UNIVERSE;
3301 int ifindex = ifmca->idev->dev->ifindex;
3303 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3304 scope = RT_SCOPE_SITE;
3306 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3307 if (nlh == NULL)
3308 return -EMSGSIZE;
3310 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
3311 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3312 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
3313 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3314 nlmsg_cancel(skb, nlh);
3315 return -EMSGSIZE;
3318 return nlmsg_end(skb, nlh);
3321 static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
3322 u32 pid, u32 seq, int event, unsigned int flags)
3324 struct nlmsghdr *nlh;
3325 u8 scope = RT_SCOPE_UNIVERSE;
3326 int ifindex = ifaca->aca_idev->dev->ifindex;
3328 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3329 scope = RT_SCOPE_SITE;
3331 nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
3332 if (nlh == NULL)
3333 return -EMSGSIZE;
3335 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
3336 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3337 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
3338 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3339 nlmsg_cancel(skb, nlh);
3340 return -EMSGSIZE;
3343 return nlmsg_end(skb, nlh);
3346 enum addr_type_t
3348 UNICAST_ADDR,
3349 MULTICAST_ADDR,
3350 ANYCAST_ADDR,
3353 static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3354 enum addr_type_t type)
3356 int idx, ip_idx;
3357 int s_idx, s_ip_idx;
3358 int err = 1;
3359 struct net_device *dev;
3360 struct inet6_dev *idev = NULL;
3361 struct inet6_ifaddr *ifa;
3362 struct ifmcaddr6 *ifmca;
3363 struct ifacaddr6 *ifaca;
3365 s_idx = cb->args[0];
3366 s_ip_idx = ip_idx = cb->args[1];
3368 idx = 0;
3369 for_each_netdev(dev) {
3370 if (idx < s_idx)
3371 goto cont;
3372 if (idx > s_idx)
3373 s_ip_idx = 0;
3374 ip_idx = 0;
3375 if ((idev = in6_dev_get(dev)) == NULL)
3376 goto cont;
3377 read_lock_bh(&idev->lock);
3378 switch (type) {
3379 case UNICAST_ADDR:
3380 /* unicast address incl. temp addr */
3381 for (ifa = idev->addr_list; ifa;
3382 ifa = ifa->if_next, ip_idx++) {
3383 if (ip_idx < s_ip_idx)
3384 continue;
3385 if ((err = inet6_fill_ifaddr(skb, ifa,
3386 NETLINK_CB(cb->skb).pid,
3387 cb->nlh->nlmsg_seq, RTM_NEWADDR,
3388 NLM_F_MULTI)) <= 0)
3389 goto done;
3391 break;
3392 case MULTICAST_ADDR:
3393 /* multicast address */
3394 for (ifmca = idev->mc_list; ifmca;
3395 ifmca = ifmca->next, ip_idx++) {
3396 if (ip_idx < s_ip_idx)
3397 continue;
3398 if ((err = inet6_fill_ifmcaddr(skb, ifmca,
3399 NETLINK_CB(cb->skb).pid,
3400 cb->nlh->nlmsg_seq, RTM_GETMULTICAST,
3401 NLM_F_MULTI)) <= 0)
3402 goto done;
3404 break;
3405 case ANYCAST_ADDR:
3406 /* anycast address */
3407 for (ifaca = idev->ac_list; ifaca;
3408 ifaca = ifaca->aca_next, ip_idx++) {
3409 if (ip_idx < s_ip_idx)
3410 continue;
3411 if ((err = inet6_fill_ifacaddr(skb, ifaca,
3412 NETLINK_CB(cb->skb).pid,
3413 cb->nlh->nlmsg_seq, RTM_GETANYCAST,
3414 NLM_F_MULTI)) <= 0)
3415 goto done;
3417 break;
3418 default:
3419 break;
3421 read_unlock_bh(&idev->lock);
3422 in6_dev_put(idev);
3423 cont:
3424 idx++;
3426 done:
3427 if (err <= 0) {
3428 read_unlock_bh(&idev->lock);
3429 in6_dev_put(idev);
3431 cb->args[0] = idx;
3432 cb->args[1] = ip_idx;
3433 return skb->len;
3436 static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3438 enum addr_type_t type = UNICAST_ADDR;
3439 return inet6_dump_addr(skb, cb, type);
3442 static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3444 enum addr_type_t type = MULTICAST_ADDR;
3445 return inet6_dump_addr(skb, cb, type);
3449 static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3451 enum addr_type_t type = ANYCAST_ADDR;
3452 return inet6_dump_addr(skb, cb, type);
3455 static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr* nlh,
3456 void *arg)
3458 struct ifaddrmsg *ifm;
3459 struct nlattr *tb[IFA_MAX+1];
3460 struct in6_addr *addr = NULL;
3461 struct net_device *dev = NULL;
3462 struct inet6_ifaddr *ifa;
3463 struct sk_buff *skb;
3464 int err;
3466 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3467 if (err < 0)
3468 goto errout;
3470 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3471 if (addr == NULL) {
3472 err = -EINVAL;
3473 goto errout;
3476 ifm = nlmsg_data(nlh);
3477 if (ifm->ifa_index)
3478 dev = __dev_get_by_index(ifm->ifa_index);
3480 if ((ifa = ipv6_get_ifaddr(addr, dev, 1)) == NULL) {
3481 err = -EADDRNOTAVAIL;
3482 goto errout;
3485 if ((skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL)) == NULL) {
3486 err = -ENOBUFS;
3487 goto errout_ifa;
3490 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).pid,
3491 nlh->nlmsg_seq, RTM_NEWADDR, 0);
3492 if (err < 0) {
3493 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3494 WARN_ON(err == -EMSGSIZE);
3495 kfree_skb(skb);
3496 goto errout_ifa;
3498 err = rtnl_unicast(skb, NETLINK_CB(in_skb).pid);
3499 errout_ifa:
3500 in6_ifa_put(ifa);
3501 errout:
3502 return err;
3505 static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3507 struct sk_buff *skb;
3508 int err = -ENOBUFS;
3510 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
3511 if (skb == NULL)
3512 goto errout;
3514 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
3515 if (err < 0) {
3516 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3517 WARN_ON(err == -EMSGSIZE);
3518 kfree_skb(skb);
3519 goto errout;
3521 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3522 errout:
3523 if (err < 0)
3524 rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err);
3527 static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
3528 __s32 *array, int bytes)
3530 BUG_ON(bytes < (DEVCONF_MAX * 4));
3532 memset(array, 0, bytes);
3533 array[DEVCONF_FORWARDING] = cnf->forwarding;
3534 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3535 array[DEVCONF_MTU6] = cnf->mtu6;
3536 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3537 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3538 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3539 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3540 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3541 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3542 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3543 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3544 #ifdef CONFIG_IPV6_PRIVACY
3545 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3546 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3547 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3548 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3549 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3550 #endif
3551 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
3552 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
3553 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
3554 #ifdef CONFIG_IPV6_ROUTER_PREF
3555 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
3556 array[DEVCONF_RTR_PROBE_INTERVAL] = cnf->rtr_probe_interval;
3557 #ifdef CONFIG_IPV6_ROUTE_INFO
3558 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
3559 #endif
3560 #endif
3561 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
3562 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
3563 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3564 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
3565 #endif
3566 #ifdef CONFIG_IPV6_MROUTE
3567 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
3568 #endif
3569 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
3572 static inline size_t inet6_if_nlmsg_size(void)
3574 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3575 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3576 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3577 + nla_total_size(4) /* IFLA_MTU */
3578 + nla_total_size(4) /* IFLA_LINK */
3579 + nla_total_size( /* IFLA_PROTINFO */
3580 nla_total_size(4) /* IFLA_INET6_FLAGS */
3581 + nla_total_size(sizeof(struct ifla_cacheinfo))
3582 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
3583 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
3584 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
3588 static inline void __snmp6_fill_stats(u64 *stats, void **mib, int items,
3589 int bytes)
3591 int i;
3592 int pad = bytes - sizeof(u64) * items;
3593 BUG_ON(pad < 0);
3595 /* Use put_unaligned() because stats may not be aligned for u64. */
3596 put_unaligned(items, &stats[0]);
3597 for (i = 1; i < items; i++)
3598 put_unaligned(snmp_fold_field(mib, i), &stats[i]);
3600 memset(&stats[items], 0, pad);
3603 static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
3604 int bytes)
3606 switch(attrtype) {
3607 case IFLA_INET6_STATS:
3608 __snmp6_fill_stats(stats, (void **)idev->stats.ipv6, IPSTATS_MIB_MAX, bytes);
3609 break;
3610 case IFLA_INET6_ICMP6STATS:
3611 __snmp6_fill_stats(stats, (void **)idev->stats.icmpv6, ICMP6_MIB_MAX, bytes);
3612 break;
3616 static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
3617 u32 pid, u32 seq, int event, unsigned int flags)
3619 struct net_device *dev = idev->dev;
3620 struct nlattr *nla;
3621 struct ifinfomsg *hdr;
3622 struct nlmsghdr *nlh;
3623 void *protoinfo;
3624 struct ifla_cacheinfo ci;
3626 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
3627 if (nlh == NULL)
3628 return -EMSGSIZE;
3630 hdr = nlmsg_data(nlh);
3631 hdr->ifi_family = AF_INET6;
3632 hdr->__ifi_pad = 0;
3633 hdr->ifi_type = dev->type;
3634 hdr->ifi_index = dev->ifindex;
3635 hdr->ifi_flags = dev_get_flags(dev);
3636 hdr->ifi_change = 0;
3638 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
3640 if (dev->addr_len)
3641 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
3643 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
3644 if (dev->ifindex != dev->iflink)
3645 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
3647 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
3648 if (protoinfo == NULL)
3649 goto nla_put_failure;
3651 NLA_PUT_U32(skb, IFLA_INET6_FLAGS, idev->if_flags);
3653 ci.max_reasm_len = IPV6_MAXPLEN;
3654 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3655 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3656 ci.reachable_time = idev->nd_parms->reachable_time;
3657 ci.retrans_time = idev->nd_parms->retrans_time;
3658 NLA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3660 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
3661 if (nla == NULL)
3662 goto nla_put_failure;
3663 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
3665 /* XXX - MC not implemented */
3667 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
3668 if (nla == NULL)
3669 goto nla_put_failure;
3670 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
3672 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
3673 if (nla == NULL)
3674 goto nla_put_failure;
3675 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
3677 nla_nest_end(skb, protoinfo);
3678 return nlmsg_end(skb, nlh);
3680 nla_put_failure:
3681 nlmsg_cancel(skb, nlh);
3682 return -EMSGSIZE;
3685 static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3687 int idx, err;
3688 int s_idx = cb->args[0];
3689 struct net_device *dev;
3690 struct inet6_dev *idev;
3692 read_lock(&dev_base_lock);
3693 idx = 0;
3694 for_each_netdev(dev) {
3695 if (idx < s_idx)
3696 goto cont;
3697 if ((idev = in6_dev_get(dev)) == NULL)
3698 goto cont;
3699 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
3700 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
3701 in6_dev_put(idev);
3702 if (err <= 0)
3703 break;
3704 cont:
3705 idx++;
3707 read_unlock(&dev_base_lock);
3708 cb->args[0] = idx;
3710 return skb->len;
3713 void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3715 struct sk_buff *skb;
3716 int err = -ENOBUFS;
3718 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
3719 if (skb == NULL)
3720 goto errout;
3722 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
3723 if (err < 0) {
3724 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
3725 WARN_ON(err == -EMSGSIZE);
3726 kfree_skb(skb);
3727 goto errout;
3729 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
3730 errout:
3731 if (err < 0)
3732 rtnl_set_sk_err(RTNLGRP_IPV6_IFINFO, err);
3735 static inline size_t inet6_prefix_nlmsg_size(void)
3737 return NLMSG_ALIGN(sizeof(struct prefixmsg))
3738 + nla_total_size(sizeof(struct in6_addr))
3739 + nla_total_size(sizeof(struct prefix_cacheinfo));
3742 static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
3743 struct prefix_info *pinfo, u32 pid, u32 seq,
3744 int event, unsigned int flags)
3746 struct prefixmsg *pmsg;
3747 struct nlmsghdr *nlh;
3748 struct prefix_cacheinfo ci;
3750 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*pmsg), flags);
3751 if (nlh == NULL)
3752 return -EMSGSIZE;
3754 pmsg = nlmsg_data(nlh);
3755 pmsg->prefix_family = AF_INET6;
3756 pmsg->prefix_pad1 = 0;
3757 pmsg->prefix_pad2 = 0;
3758 pmsg->prefix_ifindex = idev->dev->ifindex;
3759 pmsg->prefix_len = pinfo->prefix_len;
3760 pmsg->prefix_type = pinfo->type;
3761 pmsg->prefix_pad3 = 0;
3762 pmsg->prefix_flags = 0;
3763 if (pinfo->onlink)
3764 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3765 if (pinfo->autoconf)
3766 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3768 NLA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
3770 ci.preferred_time = ntohl(pinfo->prefered);
3771 ci.valid_time = ntohl(pinfo->valid);
3772 NLA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
3774 return nlmsg_end(skb, nlh);
3776 nla_put_failure:
3777 nlmsg_cancel(skb, nlh);
3778 return -EMSGSIZE;
3781 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
3782 struct prefix_info *pinfo)
3784 struct sk_buff *skb;
3785 int err = -ENOBUFS;
3787 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
3788 if (skb == NULL)
3789 goto errout;
3791 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
3792 if (err < 0) {
3793 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
3794 WARN_ON(err == -EMSGSIZE);
3795 kfree_skb(skb);
3796 goto errout;
3798 err = rtnl_notify(skb, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
3799 errout:
3800 if (err < 0)
3801 rtnl_set_sk_err(RTNLGRP_IPV6_PREFIX, err);
3804 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3806 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3808 switch (event) {
3809 case RTM_NEWADDR:
3811 * If the address was optimistic
3812 * we inserted the route at the start of
3813 * our DAD process, so we don't need
3814 * to do it again
3816 if (!(ifp->rt->rt6i_node))
3817 ip6_ins_rt(ifp->rt);
3818 if (ifp->idev->cnf.forwarding)
3819 addrconf_join_anycast(ifp);
3820 break;
3821 case RTM_DELADDR:
3822 if (ifp->idev->cnf.forwarding)
3823 addrconf_leave_anycast(ifp);
3824 addrconf_leave_solict(ifp->idev, &ifp->addr);
3825 dst_hold(&ifp->rt->u.dst);
3826 if (ip6_del_rt(ifp->rt))
3827 dst_free(&ifp->rt->u.dst);
3828 break;
3832 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3834 rcu_read_lock_bh();
3835 if (likely(ifp->idev->dead == 0))
3836 __ipv6_ifa_notify(event, ifp);
3837 rcu_read_unlock_bh();
3840 #ifdef CONFIG_SYSCTL
3842 static
3843 int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3844 void __user *buffer, size_t *lenp, loff_t *ppos)
3846 int *valp = ctl->data;
3847 int val = *valp;
3848 int ret;
3850 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3852 if (write && valp != &ipv6_devconf_dflt.forwarding) {
3853 if (valp != &ipv6_devconf.forwarding) {
3854 if ((!*valp) ^ (!val)) {
3855 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
3856 if (idev == NULL)
3857 return ret;
3858 dev_forward_change(idev);
3860 } else {
3861 ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding;
3862 addrconf_forward_change();
3864 if (*valp)
3865 rt6_purge_dflt_routers();
3868 return ret;
3871 static int addrconf_sysctl_forward_strategy(ctl_table *table,
3872 int __user *name, int nlen,
3873 void __user *oldval,
3874 size_t __user *oldlenp,
3875 void __user *newval, size_t newlen)
3877 int *valp = table->data;
3878 int new;
3880 if (!newval || !newlen)
3881 return 0;
3882 if (newlen != sizeof(int))
3883 return -EINVAL;
3884 if (get_user(new, (int __user *)newval))
3885 return -EFAULT;
3886 if (new == *valp)
3887 return 0;
3888 if (oldval && oldlenp) {
3889 size_t len;
3890 if (get_user(len, oldlenp))
3891 return -EFAULT;
3892 if (len) {
3893 if (len > table->maxlen)
3894 len = table->maxlen;
3895 if (copy_to_user(oldval, valp, len))
3896 return -EFAULT;
3897 if (put_user(len, oldlenp))
3898 return -EFAULT;
3902 if (valp != &ipv6_devconf_dflt.forwarding) {
3903 if (valp != &ipv6_devconf.forwarding) {
3904 struct inet6_dev *idev = (struct inet6_dev *)table->extra1;
3905 int changed;
3906 if (unlikely(idev == NULL))
3907 return -ENODEV;
3908 changed = (!*valp) ^ (!new);
3909 *valp = new;
3910 if (changed)
3911 dev_forward_change(idev);
3912 } else {
3913 *valp = new;
3914 addrconf_forward_change();
3917 if (*valp)
3918 rt6_purge_dflt_routers();
3919 } else
3920 *valp = new;
3922 return 1;
3925 static void dev_disable_change(struct inet6_dev *idev)
3927 if (!idev || !idev->dev)
3928 return;
3930 if (idev->cnf.disable_ipv6)
3931 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
3932 else
3933 addrconf_notify(NULL, NETDEV_UP, idev->dev);
3936 static int addrconf_disable_ipv6(struct ctl_table *table, int *valp, int old)
3938 if (valp == &ipv6_devconf_dflt.disable_ipv6)
3939 return 0;
3941 if (!rtnl_trylock()) {
3942 /* Restore the original values before restarting */
3943 *valp = old;
3944 return restart_syscall();
3947 if (valp == &ipv6_devconf.disable_ipv6) {
3948 struct net_device *dev;
3949 struct inet6_dev *idev;
3951 read_lock(&dev_base_lock);
3952 for_each_netdev(dev) {
3953 rcu_read_lock();
3954 idev = __in6_dev_get(dev);
3955 if (idev) {
3956 int changed = (!idev->cnf.disable_ipv6) ^ (!*valp);
3957 idev->cnf.disable_ipv6 = *valp;
3958 if (changed)
3959 dev_disable_change(idev);
3961 rcu_read_unlock();
3963 read_unlock(&dev_base_lock);
3966 rtnl_unlock();
3967 return 0;
3970 static int addrconf_sysctl_disable(ctl_table *ctl, int write, struct file * filp,
3971 void __user *buffer, size_t *lenp, loff_t *ppos)
3973 int *valp = ctl->data;
3974 int val = *valp;
3975 loff_t pos = *ppos;
3976 int ret;
3978 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3980 if (write)
3981 ret = addrconf_disable_ipv6(ctl, valp, val);
3982 if (ret)
3983 *ppos = pos;
3984 return ret;
3987 static struct addrconf_sysctl_table
3989 struct ctl_table_header *sysctl_header;
3990 ctl_table addrconf_vars[__NET_IPV6_MAX];
3991 ctl_table addrconf_dev[2];
3992 ctl_table addrconf_conf_dir[2];
3993 ctl_table addrconf_proto_dir[2];
3994 ctl_table addrconf_root_dir[2];
3995 } addrconf_sysctl __read_mostly = {
3996 .sysctl_header = NULL,
3997 .addrconf_vars = {
3999 .ctl_name = NET_IPV6_FORWARDING,
4000 .procname = "forwarding",
4001 .data = &ipv6_devconf.forwarding,
4002 .maxlen = sizeof(int),
4003 .mode = 0644,
4004 .proc_handler = &addrconf_sysctl_forward,
4005 .strategy = &addrconf_sysctl_forward_strategy,
4008 .ctl_name = NET_IPV6_HOP_LIMIT,
4009 .procname = "hop_limit",
4010 .data = &ipv6_devconf.hop_limit,
4011 .maxlen = sizeof(int),
4012 .mode = 0644,
4013 .proc_handler = proc_dointvec,
4016 .ctl_name = NET_IPV6_MTU,
4017 .procname = "mtu",
4018 .data = &ipv6_devconf.mtu6,
4019 .maxlen = sizeof(int),
4020 .mode = 0644,
4021 .proc_handler = &proc_dointvec,
4024 .ctl_name = NET_IPV6_ACCEPT_RA,
4025 .procname = "accept_ra",
4026 .data = &ipv6_devconf.accept_ra,
4027 .maxlen = sizeof(int),
4028 .mode = 0644,
4029 .proc_handler = &proc_dointvec,
4032 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
4033 .procname = "accept_redirects",
4034 .data = &ipv6_devconf.accept_redirects,
4035 .maxlen = sizeof(int),
4036 .mode = 0644,
4037 .proc_handler = &proc_dointvec,
4040 .ctl_name = NET_IPV6_AUTOCONF,
4041 .procname = "autoconf",
4042 .data = &ipv6_devconf.autoconf,
4043 .maxlen = sizeof(int),
4044 .mode = 0644,
4045 .proc_handler = &proc_dointvec,
4048 .ctl_name = NET_IPV6_DAD_TRANSMITS,
4049 .procname = "dad_transmits",
4050 .data = &ipv6_devconf.dad_transmits,
4051 .maxlen = sizeof(int),
4052 .mode = 0644,
4053 .proc_handler = &proc_dointvec,
4056 .ctl_name = NET_IPV6_RTR_SOLICITS,
4057 .procname = "router_solicitations",
4058 .data = &ipv6_devconf.rtr_solicits,
4059 .maxlen = sizeof(int),
4060 .mode = 0644,
4061 .proc_handler = &proc_dointvec,
4064 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
4065 .procname = "router_solicitation_interval",
4066 .data = &ipv6_devconf.rtr_solicit_interval,
4067 .maxlen = sizeof(int),
4068 .mode = 0644,
4069 .proc_handler = &proc_dointvec_jiffies,
4070 .strategy = &sysctl_jiffies,
4073 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
4074 .procname = "router_solicitation_delay",
4075 .data = &ipv6_devconf.rtr_solicit_delay,
4076 .maxlen = sizeof(int),
4077 .mode = 0644,
4078 .proc_handler = &proc_dointvec_jiffies,
4079 .strategy = &sysctl_jiffies,
4082 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
4083 .procname = "force_mld_version",
4084 .data = &ipv6_devconf.force_mld_version,
4085 .maxlen = sizeof(int),
4086 .mode = 0644,
4087 .proc_handler = &proc_dointvec,
4089 #ifdef CONFIG_IPV6_PRIVACY
4091 .ctl_name = NET_IPV6_USE_TEMPADDR,
4092 .procname = "use_tempaddr",
4093 .data = &ipv6_devconf.use_tempaddr,
4094 .maxlen = sizeof(int),
4095 .mode = 0644,
4096 .proc_handler = &proc_dointvec,
4099 .ctl_name = NET_IPV6_TEMP_VALID_LFT,
4100 .procname = "temp_valid_lft",
4101 .data = &ipv6_devconf.temp_valid_lft,
4102 .maxlen = sizeof(int),
4103 .mode = 0644,
4104 .proc_handler = &proc_dointvec,
4107 .ctl_name = NET_IPV6_TEMP_PREFERED_LFT,
4108 .procname = "temp_prefered_lft",
4109 .data = &ipv6_devconf.temp_prefered_lft,
4110 .maxlen = sizeof(int),
4111 .mode = 0644,
4112 .proc_handler = &proc_dointvec,
4115 .ctl_name = NET_IPV6_REGEN_MAX_RETRY,
4116 .procname = "regen_max_retry",
4117 .data = &ipv6_devconf.regen_max_retry,
4118 .maxlen = sizeof(int),
4119 .mode = 0644,
4120 .proc_handler = &proc_dointvec,
4123 .ctl_name = NET_IPV6_MAX_DESYNC_FACTOR,
4124 .procname = "max_desync_factor",
4125 .data = &ipv6_devconf.max_desync_factor,
4126 .maxlen = sizeof(int),
4127 .mode = 0644,
4128 .proc_handler = &proc_dointvec,
4130 #endif
4132 .ctl_name = NET_IPV6_MAX_ADDRESSES,
4133 .procname = "max_addresses",
4134 .data = &ipv6_devconf.max_addresses,
4135 .maxlen = sizeof(int),
4136 .mode = 0644,
4137 .proc_handler = &proc_dointvec,
4140 .ctl_name = NET_IPV6_ACCEPT_RA_DEFRTR,
4141 .procname = "accept_ra_defrtr",
4142 .data = &ipv6_devconf.accept_ra_defrtr,
4143 .maxlen = sizeof(int),
4144 .mode = 0644,
4145 .proc_handler = &proc_dointvec,
4148 .ctl_name = NET_IPV6_ACCEPT_RA_PINFO,
4149 .procname = "accept_ra_pinfo",
4150 .data = &ipv6_devconf.accept_ra_pinfo,
4151 .maxlen = sizeof(int),
4152 .mode = 0644,
4153 .proc_handler = &proc_dointvec,
4155 #ifdef CONFIG_IPV6_ROUTER_PREF
4157 .ctl_name = NET_IPV6_ACCEPT_RA_RTR_PREF,
4158 .procname = "accept_ra_rtr_pref",
4159 .data = &ipv6_devconf.accept_ra_rtr_pref,
4160 .maxlen = sizeof(int),
4161 .mode = 0644,
4162 .proc_handler = &proc_dointvec,
4165 .ctl_name = NET_IPV6_RTR_PROBE_INTERVAL,
4166 .procname = "router_probe_interval",
4167 .data = &ipv6_devconf.rtr_probe_interval,
4168 .maxlen = sizeof(int),
4169 .mode = 0644,
4170 .proc_handler = &proc_dointvec_jiffies,
4171 .strategy = &sysctl_jiffies,
4173 #ifdef CONFIG_IPV6_ROUTE_INFO
4175 .ctl_name = NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN,
4176 .procname = "accept_ra_rt_info_max_plen",
4177 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4178 .maxlen = sizeof(int),
4179 .mode = 0644,
4180 .proc_handler = &proc_dointvec,
4182 #endif
4183 #endif
4185 .ctl_name = NET_IPV6_PROXY_NDP,
4186 .procname = "proxy_ndp",
4187 .data = &ipv6_devconf.proxy_ndp,
4188 .maxlen = sizeof(int),
4189 .mode = 0644,
4190 .proc_handler = &proc_dointvec,
4193 .ctl_name = NET_IPV6_ACCEPT_SOURCE_ROUTE,
4194 .procname = "accept_source_route",
4195 .data = &ipv6_devconf.accept_source_route,
4196 .maxlen = sizeof(int),
4197 .mode = 0644,
4198 .proc_handler = &proc_dointvec,
4200 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4202 .ctl_name = CTL_UNNUMBERED,
4203 .procname = "optimistic_dad",
4204 .data = &ipv6_devconf.optimistic_dad,
4205 .maxlen = sizeof(int),
4206 .mode = 0644,
4207 .proc_handler = &proc_dointvec,
4210 #endif
4211 #ifdef CONFIG_IPV6_MROUTE
4213 .ctl_name = CTL_UNNUMBERED,
4214 .procname = "mc_forwarding",
4215 .data = &ipv6_devconf.mc_forwarding,
4216 .maxlen = sizeof(int),
4217 .mode = 0644,
4218 .proc_handler = &proc_dointvec,
4220 #endif
4222 .ctl_name = CTL_UNNUMBERED,
4223 .procname = "disable_ipv6",
4224 .data = &ipv6_devconf.disable_ipv6,
4225 .maxlen = sizeof(int),
4226 .mode = 0644,
4227 .proc_handler = &addrconf_sysctl_disable,
4230 .ctl_name = 0, /* sentinel */
4233 .addrconf_dev = {
4235 .ctl_name = NET_PROTO_CONF_ALL,
4236 .procname = "all",
4237 .mode = 0555,
4238 .child = addrconf_sysctl.addrconf_vars,
4241 .ctl_name = 0, /* sentinel */
4244 .addrconf_conf_dir = {
4246 .ctl_name = NET_IPV6_CONF,
4247 .procname = "conf",
4248 .mode = 0555,
4249 .child = addrconf_sysctl.addrconf_dev,
4252 .ctl_name = 0, /* sentinel */
4255 .addrconf_proto_dir = {
4257 .ctl_name = NET_IPV6,
4258 .procname = "ipv6",
4259 .mode = 0555,
4260 .child = addrconf_sysctl.addrconf_conf_dir,
4263 .ctl_name = 0, /* sentinel */
4266 .addrconf_root_dir = {
4268 .ctl_name = CTL_NET,
4269 .procname = "net",
4270 .mode = 0555,
4271 .child = addrconf_sysctl.addrconf_proto_dir,
4274 .ctl_name = 0, /* sentinel */
4279 static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p)
4281 int i;
4282 struct net_device *dev = idev ? idev->dev : NULL;
4283 struct addrconf_sysctl_table *t;
4284 char *dev_name = NULL;
4286 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
4287 if (t == NULL)
4288 return;
4289 for (i=0; t->addrconf_vars[i].data; i++) {
4290 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
4291 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
4293 if (dev) {
4294 dev_name = dev->name;
4295 t->addrconf_dev[0].ctl_name = dev->ifindex;
4296 } else {
4297 dev_name = "default";
4298 t->addrconf_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
4302 * Make a copy of dev_name, because '.procname' is regarded as const
4303 * by sysctl and we wouldn't want anyone to change it under our feet
4304 * (see SIOCSIFNAME).
4306 dev_name = kstrdup(dev_name, GFP_KERNEL);
4307 if (!dev_name)
4308 goto free;
4310 t->addrconf_dev[0].procname = dev_name;
4312 t->addrconf_dev[0].child = t->addrconf_vars;
4313 t->addrconf_conf_dir[0].child = t->addrconf_dev;
4314 t->addrconf_proto_dir[0].child = t->addrconf_conf_dir;
4315 t->addrconf_root_dir[0].child = t->addrconf_proto_dir;
4317 t->sysctl_header = register_sysctl_table(t->addrconf_root_dir);
4318 if (t->sysctl_header == NULL)
4319 goto free_procname;
4320 else
4321 p->sysctl = t;
4322 return;
4324 /* error path */
4325 free_procname:
4326 kfree(dev_name);
4327 free:
4328 kfree(t);
4330 return;
4333 static void addrconf_sysctl_unregister(struct ipv6_devconf *p)
4335 if (p->sysctl) {
4336 struct addrconf_sysctl_table *t = p->sysctl;
4337 p->sysctl = NULL;
4338 unregister_sysctl_table(t->sysctl_header);
4339 kfree(t->addrconf_dev[0].procname);
4340 kfree(t);
4345 #endif
4348 * Device notifier
4351 int register_inet6addr_notifier(struct notifier_block *nb)
4353 return atomic_notifier_chain_register(&inet6addr_chain, nb);
4356 EXPORT_SYMBOL(register_inet6addr_notifier);
4358 int unregister_inet6addr_notifier(struct notifier_block *nb)
4360 return atomic_notifier_chain_unregister(&inet6addr_chain,nb);
4363 EXPORT_SYMBOL(unregister_inet6addr_notifier);
4366 * Init / cleanup code
4369 int __init addrconf_init(void)
4371 int err = 0;
4373 /* The addrconf netdev notifier requires that loopback_dev
4374 * has it's ipv6 private information allocated and setup
4375 * before it can bring up and give link-local addresses
4376 * to other devices which are up.
4378 * Unfortunately, loopback_dev is not necessarily the first
4379 * entry in the global dev_base list of net devices. In fact,
4380 * it is likely to be the very last entry on that list.
4381 * So this causes the notifier registry below to try and
4382 * give link-local addresses to all devices besides loopback_dev
4383 * first, then loopback_dev, which cases all the non-loopback_dev
4384 * devices to fail to get a link-local address.
4386 * So, as a temporary fix, allocate the ipv6 structure for
4387 * loopback_dev first by hand.
4388 * Longer term, all of the dependencies ipv6 has upon the loopback
4389 * device and it being up should be removed.
4391 rtnl_lock();
4392 if (!ipv6_add_dev(&loopback_dev))
4393 err = -ENOMEM;
4394 rtnl_unlock();
4395 if (err)
4396 return err;
4398 ip6_null_entry.rt6i_idev = in6_dev_get(&loopback_dev);
4399 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4400 ip6_prohibit_entry.rt6i_idev = in6_dev_get(&loopback_dev);
4401 ip6_blk_hole_entry.rt6i_idev = in6_dev_get(&loopback_dev);
4402 #endif
4404 register_netdevice_notifier(&ipv6_dev_notf);
4406 addrconf_verify(0);
4408 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo);
4409 if (err < 0)
4410 goto errout;
4412 /* Only the first call to __rtnl_register can fail */
4413 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL);
4414 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL);
4415 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr, inet6_dump_ifaddr);
4416 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL, inet6_dump_ifmcaddr);
4417 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL, inet6_dump_ifacaddr);
4419 #ifdef CONFIG_SYSCTL
4420 addrconf_sysctl.sysctl_header =
4421 register_sysctl_table(addrconf_sysctl.addrconf_root_dir);
4422 addrconf_sysctl_register(NULL, &ipv6_devconf_dflt);
4423 #endif
4425 return 0;
4426 errout:
4427 unregister_netdevice_notifier(&ipv6_dev_notf);
4429 return err;
4432 void __exit addrconf_cleanup(void)
4434 struct net_device *dev;
4435 struct inet6_dev *idev;
4436 struct inet6_ifaddr *ifa;
4437 int i;
4439 unregister_netdevice_notifier(&ipv6_dev_notf);
4441 #ifdef CONFIG_SYSCTL
4442 addrconf_sysctl_unregister(&ipv6_devconf_dflt);
4443 addrconf_sysctl_unregister(&ipv6_devconf);
4444 #endif
4446 rtnl_lock();
4449 * clean dev list.
4452 for_each_netdev(dev) {
4453 if ((idev = __in6_dev_get(dev)) == NULL)
4454 continue;
4455 addrconf_ifdown(dev, 1);
4457 addrconf_ifdown(&loopback_dev, 2);
4460 * Check hash table.
4463 write_lock_bh(&addrconf_hash_lock);
4464 for (i=0; i < IN6_ADDR_HSIZE; i++) {
4465 for (ifa=inet6_addr_lst[i]; ifa; ) {
4466 struct inet6_ifaddr *bifa;
4468 bifa = ifa;
4469 ifa = ifa->lst_next;
4470 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
4471 /* Do not free it; something is wrong.
4472 Now we can investigate it with debugger.
4476 write_unlock_bh(&addrconf_hash_lock);
4478 del_timer(&addr_chk_timer);
4480 rtnl_unlock();
4482 #ifdef CONFIG_PROC_FS
4483 proc_net_remove("if_inet6");
4484 #endif