2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
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.
20 * Janos Farkas : delete timer on ifdown
21 * <chexum@bankinf.banki.hu>
22 * Andi Kleen : kill double kfree on module
24 * Maciej W. Rozycki : FDDI support
25 * sekiya@USAGI : Don't send too many RS
27 * yoshfuji@USAGI : Fixed interval between DAD
29 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
30 * address validation timer.
31 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
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
38 * YOSHIFUJI Hideaki @USAGI : improved source address
39 * selection; consider scope,
43 #include <linux/config.h>
44 #include <linux/errno.h>
45 #include <linux/types.h>
46 #include <linux/socket.h>
47 #include <linux/sockios.h>
48 #include <linux/sched.h>
49 #include <linux/net.h>
50 #include <linux/in6.h>
51 #include <linux/netdevice.h>
52 #include <linux/if_arp.h>
53 #include <linux/if_arcnet.h>
54 #include <linux/if_infiniband.h>
55 #include <linux/route.h>
56 #include <linux/inetdevice.h>
57 #include <linux/init.h>
59 #include <linux/sysctl.h>
61 #include <linux/delay.h>
62 #include <linux/notifier.h>
63 #include <linux/string.h>
69 #include <net/protocol.h>
70 #include <net/ndisc.h>
71 #include <net/ip6_route.h>
72 #include <net/addrconf.h>
75 #include <linux/if_tunnel.h>
76 #include <linux/rtnetlink.h>
78 #ifdef CONFIG_IPV6_PRIVACY
79 #include <linux/random.h>
80 #include <linux/crypto.h>
81 #include <linux/scatterlist.h>
84 #include <asm/uaccess.h>
86 #include <linux/proc_fs.h>
87 #include <linux/seq_file.h>
89 /* Set to 3 to get tracing... */
93 #define ADBG(x) printk x
98 #define INFINITY_LIFE_TIME 0xFFFFFFFF
99 #define TIME_DELTA(a,b) ((unsigned long)((long)(a) - (long)(b)))
102 static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p);
103 static void addrconf_sysctl_unregister(struct ipv6_devconf *p);
106 #ifdef CONFIG_IPV6_PRIVACY
107 static int __ipv6_regen_rndid(struct inet6_dev *idev);
108 static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
109 static void ipv6_regen_rndid(unsigned long data);
111 static int desync_factor = MAX_DESYNC_FACTOR * HZ;
112 static struct crypto_tfm *md5_tfm;
113 static DEFINE_SPINLOCK(md5_tfm_lock);
116 static int ipv6_count_addresses(struct inet6_dev *idev);
119 * Configured unicast address hash table
121 static struct inet6_ifaddr *inet6_addr_lst[IN6_ADDR_HSIZE];
122 static DEFINE_RWLOCK(addrconf_hash_lock);
124 /* Protects inet6 devices */
125 DEFINE_RWLOCK(addrconf_lock);
127 static void addrconf_verify(unsigned long);
129 static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
130 static DEFINE_SPINLOCK(addrconf_verify_lock);
132 static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
133 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
135 static int addrconf_ifdown(struct net_device *dev, int how);
137 static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags);
138 static void addrconf_dad_timer(unsigned long data);
139 static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
140 static void addrconf_dad_run(struct inet6_dev *idev);
141 static void addrconf_rs_timer(unsigned long data);
142 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
143 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
145 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
146 struct prefix_info *pinfo);
147 static int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev);
149 static struct notifier_block *inet6addr_chain;
151 struct ipv6_devconf ipv6_devconf = {
153 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
154 .mtu6 = IPV6_MIN_MTU,
156 .accept_redirects = 1,
158 .force_mld_version = 0,
160 .rtr_solicits = MAX_RTR_SOLICITATIONS,
161 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
162 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
163 #ifdef CONFIG_IPV6_PRIVACY
165 .temp_valid_lft = TEMP_VALID_LIFETIME,
166 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
167 .regen_max_retry = REGEN_MAX_RETRY,
168 .max_desync_factor = MAX_DESYNC_FACTOR,
170 .max_addresses = IPV6_MAX_ADDRESSES,
173 static struct ipv6_devconf ipv6_devconf_dflt = {
175 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
176 .mtu6 = IPV6_MIN_MTU,
178 .accept_redirects = 1,
181 .rtr_solicits = MAX_RTR_SOLICITATIONS,
182 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
183 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
184 #ifdef CONFIG_IPV6_PRIVACY
186 .temp_valid_lft = TEMP_VALID_LIFETIME,
187 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
188 .regen_max_retry = REGEN_MAX_RETRY,
189 .max_desync_factor = MAX_DESYNC_FACTOR,
191 .max_addresses = IPV6_MAX_ADDRESSES,
194 /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
196 const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
198 const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
200 #define IPV6_ADDR_SCOPE_TYPE(scope) ((scope) << 16)
202 static inline unsigned ipv6_addr_scope2type(unsigned scope)
205 case IPV6_ADDR_SCOPE_NODELOCAL:
206 return (IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_NODELOCAL) |
208 case IPV6_ADDR_SCOPE_LINKLOCAL:
209 return (IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_LINKLOCAL) |
210 IPV6_ADDR_LINKLOCAL);
211 case IPV6_ADDR_SCOPE_SITELOCAL:
212 return (IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_SITELOCAL) |
213 IPV6_ADDR_SITELOCAL);
215 return IPV6_ADDR_SCOPE_TYPE(scope);
218 int __ipv6_addr_type(const struct in6_addr *addr)
222 st = addr->s6_addr32[0];
224 /* Consider all addresses with the first three bits different of
225 000 and 111 as unicasts.
227 if ((st & htonl(0xE0000000)) != htonl(0x00000000) &&
228 (st & htonl(0xE0000000)) != htonl(0xE0000000))
229 return (IPV6_ADDR_UNICAST |
230 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL));
232 if ((st & htonl(0xFF000000)) == htonl(0xFF000000)) {
234 /* addr-select 3.1 */
235 return (IPV6_ADDR_MULTICAST |
236 ipv6_addr_scope2type(IPV6_ADDR_MC_SCOPE(addr)));
239 if ((st & htonl(0xFFC00000)) == htonl(0xFE800000))
240 return (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST |
241 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_LINKLOCAL)); /* addr-select 3.1 */
242 if ((st & htonl(0xFFC00000)) == htonl(0xFEC00000))
243 return (IPV6_ADDR_SITELOCAL | IPV6_ADDR_UNICAST |
244 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_SITELOCAL)); /* addr-select 3.1 */
246 if ((addr->s6_addr32[0] | addr->s6_addr32[1]) == 0) {
247 if (addr->s6_addr32[2] == 0) {
248 if (addr->s6_addr32[3] == 0)
249 return IPV6_ADDR_ANY;
251 if (addr->s6_addr32[3] == htonl(0x00000001))
252 return (IPV6_ADDR_LOOPBACK | IPV6_ADDR_UNICAST |
253 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_LINKLOCAL)); /* addr-select 3.4 */
255 return (IPV6_ADDR_COMPATv4 | IPV6_ADDR_UNICAST |
256 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.3 */
259 if (addr->s6_addr32[2] == htonl(0x0000ffff))
260 return (IPV6_ADDR_MAPPED |
261 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.3 */
264 return (IPV6_ADDR_RESERVED |
265 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.4 */
268 static void addrconf_del_timer(struct inet6_ifaddr *ifp)
270 if (del_timer(&ifp->timer))
274 enum addrconf_timer_t
281 static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
282 enum addrconf_timer_t what,
285 if (!del_timer(&ifp->timer))
290 ifp->timer.function = addrconf_dad_timer;
293 ifp->timer.function = addrconf_rs_timer;
297 ifp->timer.expires = jiffies + when;
298 add_timer(&ifp->timer);
301 /* Nobody refers to this device, we may destroy it. */
303 void in6_dev_finish_destroy(struct inet6_dev *idev)
305 struct net_device *dev = idev->dev;
306 BUG_TRAP(idev->addr_list==NULL);
307 BUG_TRAP(idev->mc_list==NULL);
308 #ifdef NET_REFCNT_DEBUG
309 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
313 printk("Freeing alive inet6 device %p\n", idev);
316 snmp6_free_dev(idev);
320 static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
322 struct inet6_dev *ndev;
326 if (dev->mtu < IPV6_MIN_MTU)
329 ndev = kmalloc(sizeof(struct inet6_dev), GFP_KERNEL);
332 memset(ndev, 0, sizeof(struct inet6_dev));
334 rwlock_init(&ndev->lock);
336 memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf));
337 ndev->cnf.mtu6 = dev->mtu;
338 ndev->cnf.sysctl = NULL;
339 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
340 if (ndev->nd_parms == NULL) {
344 /* We refer to the device */
347 if (snmp6_alloc_dev(ndev) < 0) {
349 "%s(): cannot allocate memory for statistics; dev=%s.\n",
350 __FUNCTION__, dev->name));
351 neigh_parms_release(&nd_tbl, ndev->nd_parms);
353 in6_dev_finish_destroy(ndev);
357 if (snmp6_register_dev(ndev) < 0) {
359 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
360 __FUNCTION__, dev->name));
361 neigh_parms_release(&nd_tbl, ndev->nd_parms);
363 in6_dev_finish_destroy(ndev);
367 /* One reference from device. We must do this before
368 * we invoke __ipv6_regen_rndid().
372 #ifdef CONFIG_IPV6_PRIVACY
373 get_random_bytes(ndev->rndid, sizeof(ndev->rndid));
374 get_random_bytes(ndev->entropy, sizeof(ndev->entropy));
375 init_timer(&ndev->regen_timer);
376 ndev->regen_timer.function = ipv6_regen_rndid;
377 ndev->regen_timer.data = (unsigned long) ndev;
378 if ((dev->flags&IFF_LOOPBACK) ||
379 dev->type == ARPHRD_TUNNEL ||
380 dev->type == ARPHRD_NONE ||
381 dev->type == ARPHRD_SIT) {
383 "%s: Disabled Privacy Extensions\n",
385 ndev->cnf.use_tempaddr = -1;
388 ipv6_regen_rndid((unsigned long) ndev);
392 if (netif_carrier_ok(dev))
393 ndev->if_flags |= IF_READY;
395 write_lock_bh(&addrconf_lock);
397 write_unlock_bh(&addrconf_lock);
399 ipv6_mc_init_dev(ndev);
400 ndev->tstamp = jiffies;
402 neigh_sysctl_register(dev, ndev->nd_parms, NET_IPV6,
403 NET_IPV6_NEIGH, "ipv6",
404 &ndisc_ifinfo_sysctl_change,
406 addrconf_sysctl_register(ndev, &ndev->cnf);
412 static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
414 struct inet6_dev *idev;
418 if ((idev = __in6_dev_get(dev)) == NULL) {
419 if ((idev = ipv6_add_dev(dev)) == NULL)
423 if (dev->flags&IFF_UP)
429 static void dev_forward_change(struct inet6_dev *idev)
431 struct net_device *dev;
432 struct inet6_ifaddr *ifa;
433 struct in6_addr addr;
438 if (dev && (dev->flags & IFF_MULTICAST)) {
439 ipv6_addr_all_routers(&addr);
441 if (idev->cnf.forwarding)
442 ipv6_dev_mc_inc(dev, &addr);
444 ipv6_dev_mc_dec(dev, &addr);
446 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
447 if (idev->cnf.forwarding)
448 addrconf_join_anycast(ifa);
450 addrconf_leave_anycast(ifa);
455 static void addrconf_forward_change(void)
457 struct net_device *dev;
458 struct inet6_dev *idev;
460 read_lock(&dev_base_lock);
461 for (dev=dev_base; dev; dev=dev->next) {
462 read_lock(&addrconf_lock);
463 idev = __in6_dev_get(dev);
465 int changed = (!idev->cnf.forwarding) ^ (!ipv6_devconf.forwarding);
466 idev->cnf.forwarding = ipv6_devconf.forwarding;
468 dev_forward_change(idev);
470 read_unlock(&addrconf_lock);
472 read_unlock(&dev_base_lock);
476 /* Nobody refers to this ifaddr, destroy it */
478 void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
480 BUG_TRAP(ifp->if_next==NULL);
481 BUG_TRAP(ifp->lst_next==NULL);
482 #ifdef NET_REFCNT_DEBUG
483 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
486 in6_dev_put(ifp->idev);
488 if (del_timer(&ifp->timer))
489 printk("Timer is still running, when freeing ifa=%p\n", ifp);
492 printk("Freeing alive inet6 address %p\n", ifp);
495 dst_release(&ifp->rt->u.dst);
500 /* On success it returns ifp with increased reference count */
502 static struct inet6_ifaddr *
503 ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
504 int scope, u32 flags)
506 struct inet6_ifaddr *ifa = NULL;
511 read_lock_bh(&addrconf_lock);
513 err = -ENODEV; /*XXX*/
517 write_lock(&addrconf_hash_lock);
519 /* Ignore adding duplicate addresses on an interface */
520 if (ipv6_chk_same_addr(addr, idev->dev)) {
521 ADBG(("ipv6_add_addr: already assigned\n"));
526 ifa = kmalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
529 ADBG(("ipv6_add_addr: malloc failed\n"));
534 rt = addrconf_dst_alloc(idev, addr, 0);
540 memset(ifa, 0, sizeof(struct inet6_ifaddr));
541 ipv6_addr_copy(&ifa->addr, addr);
543 spin_lock_init(&ifa->lock);
544 init_timer(&ifa->timer);
545 ifa->timer.data = (unsigned long) ifa;
547 ifa->prefix_len = pfxlen;
548 ifa->flags = flags | IFA_F_TENTATIVE;
549 ifa->cstamp = ifa->tstamp = jiffies;
556 /* Add to big hash table */
557 hash = ipv6_addr_hash(addr);
559 ifa->lst_next = inet6_addr_lst[hash];
560 inet6_addr_lst[hash] = ifa;
562 write_unlock(&addrconf_hash_lock);
564 write_lock(&idev->lock);
565 /* Add to inet6_dev unicast addr list. */
566 ifa->if_next = idev->addr_list;
567 idev->addr_list = ifa;
569 #ifdef CONFIG_IPV6_PRIVACY
570 if (ifa->flags&IFA_F_TEMPORARY) {
571 ifa->tmp_next = idev->tempaddr_list;
572 idev->tempaddr_list = ifa;
580 write_unlock(&idev->lock);
582 read_unlock_bh(&addrconf_lock);
584 if (likely(err == 0))
585 notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
593 write_unlock(&addrconf_hash_lock);
597 /* This function wants to get referenced ifp and releases it before return */
599 static void ipv6_del_addr(struct inet6_ifaddr *ifp)
601 struct inet6_ifaddr *ifa, **ifap;
602 struct inet6_dev *idev = ifp->idev;
604 int deleted = 0, onlink = 0;
605 unsigned long expires = jiffies;
607 hash = ipv6_addr_hash(&ifp->addr);
611 write_lock_bh(&addrconf_hash_lock);
612 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
613 ifap = &ifa->lst_next) {
615 *ifap = ifa->lst_next;
617 ifa->lst_next = NULL;
621 write_unlock_bh(&addrconf_hash_lock);
623 write_lock_bh(&idev->lock);
624 #ifdef CONFIG_IPV6_PRIVACY
625 if (ifp->flags&IFA_F_TEMPORARY) {
626 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
627 ifap = &ifa->tmp_next) {
629 *ifap = ifa->tmp_next;
631 in6_ifa_put(ifp->ifpub);
635 ifa->tmp_next = NULL;
642 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;) {
644 *ifap = ifa->if_next;
647 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
651 } else if (ifp->flags & IFA_F_PERMANENT) {
652 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
654 if (ifa->flags & IFA_F_PERMANENT) {
659 unsigned long lifetime;
664 spin_lock(&ifa->lock);
665 lifetime = min_t(unsigned long,
666 ifa->valid_lft, 0x7fffffffUL/HZ);
667 if (time_before(expires,
668 ifa->tstamp + lifetime * HZ))
669 expires = ifa->tstamp + lifetime * HZ;
670 spin_unlock(&ifa->lock);
674 ifap = &ifa->if_next;
676 write_unlock_bh(&idev->lock);
678 ipv6_ifa_notify(RTM_DELADDR, ifp);
680 notifier_call_chain(&inet6addr_chain,NETDEV_DOWN,ifp);
682 addrconf_del_timer(ifp);
685 * Purge or update corresponding prefix
687 * 1) we don't purge prefix here if address was not permanent.
688 * prefix is managed by its own lifetime.
689 * 2) if there're no addresses, delete prefix.
690 * 3) if there're still other permanent address(es),
691 * corresponding prefix is still permanent.
692 * 4) otherwise, update prefix lifetime to the
693 * longest valid lifetime among the corresponding
694 * addresses on the device.
695 * Note: subsequent RA will update lifetime.
699 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
700 struct in6_addr prefix;
703 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
704 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
706 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
708 ip6_del_rt(rt, NULL, NULL, NULL);
710 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
711 rt->rt6i_expires = expires;
712 rt->rt6i_flags |= RTF_EXPIRES;
715 dst_release(&rt->u.dst);
721 #ifdef CONFIG_IPV6_PRIVACY
722 static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
724 struct inet6_dev *idev = ifp->idev;
725 struct in6_addr addr, *tmpaddr;
726 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
731 write_lock(&idev->lock);
733 spin_lock_bh(&ift->lock);
734 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
735 spin_unlock_bh(&ift->lock);
742 if (idev->cnf.use_tempaddr <= 0) {
743 write_unlock(&idev->lock);
745 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
750 spin_lock_bh(&ifp->lock);
751 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
752 idev->cnf.use_tempaddr = -1; /*XXX*/
753 spin_unlock_bh(&ifp->lock);
754 write_unlock(&idev->lock);
756 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
762 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
763 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
764 spin_unlock_bh(&ifp->lock);
765 write_unlock(&idev->lock);
767 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
773 memcpy(&addr.s6_addr[8], idev->rndid, 8);
774 tmp_valid_lft = min_t(__u32,
776 idev->cnf.temp_valid_lft);
777 tmp_prefered_lft = min_t(__u32,
779 idev->cnf.temp_prefered_lft - desync_factor / HZ);
780 tmp_plen = ifp->prefix_len;
781 max_addresses = idev->cnf.max_addresses;
782 tmp_cstamp = ifp->cstamp;
783 tmp_tstamp = ifp->tstamp;
784 spin_unlock_bh(&ifp->lock);
786 write_unlock(&idev->lock);
787 ift = !max_addresses ||
788 ipv6_count_addresses(idev) < max_addresses ?
789 ipv6_add_addr(idev, &addr, tmp_plen,
790 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK, IFA_F_TEMPORARY) : NULL;
791 if (!ift || IS_ERR(ift)) {
795 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
797 write_lock(&idev->lock);
801 spin_lock_bh(&ift->lock);
803 ift->valid_lft = tmp_valid_lft;
804 ift->prefered_lft = tmp_prefered_lft;
805 ift->cstamp = tmp_cstamp;
806 ift->tstamp = tmp_tstamp;
807 spin_unlock_bh(&ift->lock);
809 addrconf_dad_start(ift, 0);
818 * Choose an appropriate source address (RFC3484)
820 struct ipv6_saddr_score {
828 #define IPV6_SADDR_SCORE_LOCAL 0x0001
829 #define IPV6_SADDR_SCORE_PREFERRED 0x0004
830 #define IPV6_SADDR_SCORE_HOA 0x0008
831 #define IPV6_SADDR_SCORE_OIF 0x0010
832 #define IPV6_SADDR_SCORE_LABEL 0x0020
833 #define IPV6_SADDR_SCORE_PRIVACY 0x0040
835 static int inline ipv6_saddr_preferred(int type)
837 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
838 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
843 /* static matching label */
844 static int inline ipv6_saddr_label(const struct in6_addr *addr, int type)
847 * prefix (longest match) label
848 * -----------------------------
855 if (type & IPV6_ADDR_LOOPBACK)
857 else if (type & IPV6_ADDR_COMPATv4)
859 else if (type & IPV6_ADDR_MAPPED)
861 else if (addr->s6_addr16[0] == htons(0x2002))
866 int ipv6_dev_get_saddr(struct net_device *daddr_dev,
867 struct in6_addr *daddr, struct in6_addr *saddr)
869 struct ipv6_saddr_score hiscore;
870 struct inet6_ifaddr *ifa_result = NULL;
871 int daddr_type = __ipv6_addr_type(daddr);
872 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
873 u32 daddr_label = ipv6_saddr_label(daddr, daddr_type);
874 struct net_device *dev;
876 memset(&hiscore, 0, sizeof(hiscore));
878 read_lock(&dev_base_lock);
879 read_lock(&addrconf_lock);
881 for (dev = dev_base; dev; dev=dev->next) {
882 struct inet6_dev *idev;
883 struct inet6_ifaddr *ifa;
885 /* Rule 0: Candidate Source Address (section 4)
886 * - multicast and link-local destination address,
887 * the set of candidate source address MUST only
888 * include addresses assigned to interfaces
889 * belonging to the same link as the outgoing
891 * (- For site-local destination addresses, the
892 * set of candidate source addresses MUST only
893 * include addresses assigned to interfaces
894 * belonging to the same site as the outgoing
897 if ((daddr_type & IPV6_ADDR_MULTICAST ||
898 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
899 daddr_dev && dev != daddr_dev)
902 idev = __in6_dev_get(dev);
906 read_lock_bh(&idev->lock);
907 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
908 struct ipv6_saddr_score score;
910 score.addr_type = __ipv6_addr_type(&ifa->addr);
913 * - Tentative Address (RFC2462 section 5.4)
914 * - A tentative address is not considered
915 * "assigned to an interface" in the traditional
917 * - Candidate Source Address (section 4)
918 * - In any case, anycast addresses, multicast
919 * addresses, and the unspecified address MUST
920 * NOT be included in a candidate set.
922 if (ifa->flags & IFA_F_TENTATIVE)
924 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
925 score.addr_type & IPV6_ADDR_MULTICAST)) {
926 LIMIT_NETDEBUG(KERN_DEBUG
927 "ADDRCONF: unspecified / multicast address"
928 "assigned as unicast address on %s",
938 if (ifa_result == NULL) {
939 /* record it if the first available entry */
943 /* Rule 1: Prefer same address */
944 if (hiscore.rule < 1) {
945 if (ipv6_addr_equal(&ifa_result->addr, daddr))
946 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
949 if (ipv6_addr_equal(&ifa->addr, daddr)) {
950 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
951 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
956 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
960 /* Rule 2: Prefer appropriate scope */
961 if (hiscore.rule < 2) {
962 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
965 score.scope = __ipv6_addr_src_scope(score.addr_type);
966 if (hiscore.scope < score.scope) {
967 if (hiscore.scope < daddr_scope) {
972 } else if (score.scope < hiscore.scope) {
973 if (score.scope < daddr_scope)
981 /* Rule 3: Avoid deprecated address */
982 if (hiscore.rule < 3) {
983 if (ipv6_saddr_preferred(hiscore.addr_type) ||
984 !(ifa_result->flags & IFA_F_DEPRECATED))
985 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
988 if (ipv6_saddr_preferred(score.addr_type) ||
989 !(ifa->flags & IFA_F_DEPRECATED)) {
990 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
991 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
996 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
1000 /* Rule 4: Prefer home address -- not implemented yet */
1001 if (hiscore.rule < 4)
1004 /* Rule 5: Prefer outgoing interface */
1005 if (hiscore.rule < 5) {
1006 if (daddr_dev == NULL ||
1007 daddr_dev == ifa_result->idev->dev)
1008 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
1011 if (daddr_dev == NULL ||
1012 daddr_dev == ifa->idev->dev) {
1013 score.attrs |= IPV6_SADDR_SCORE_OIF;
1014 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1019 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1023 /* Rule 6: Prefer matching label */
1024 if (hiscore.rule < 6) {
1025 if (ipv6_saddr_label(&ifa_result->addr, hiscore.addr_type) == daddr_label)
1026 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1029 if (ipv6_saddr_label(&ifa->addr, score.addr_type) == daddr_label) {
1030 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1031 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1036 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1040 #ifdef CONFIG_IPV6_PRIVACY
1041 /* Rule 7: Prefer public address
1042 * Note: prefer temprary address if use_tempaddr >= 2
1044 if (hiscore.rule < 7) {
1045 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1046 (ifa_result->idev->cnf.use_tempaddr >= 2))
1047 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1050 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1051 (ifa->idev->cnf.use_tempaddr >= 2)) {
1052 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1053 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1058 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1062 /* Rule 8: Use longest matching prefix */
1063 if (hiscore.rule < 8) {
1064 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
1067 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1068 if (score.matchlen > hiscore.matchlen) {
1073 else if (score.matchlen < hiscore.matchlen)
1077 /* Final Rule: choose first available one */
1081 in6_ifa_put(ifa_result);
1086 read_unlock_bh(&idev->lock);
1088 read_unlock(&addrconf_lock);
1089 read_unlock(&dev_base_lock);
1092 return -EADDRNOTAVAIL;
1094 ipv6_addr_copy(saddr, &ifa_result->addr);
1095 in6_ifa_put(ifa_result);
1100 int ipv6_get_saddr(struct dst_entry *dst,
1101 struct in6_addr *daddr, struct in6_addr *saddr)
1103 return ipv6_dev_get_saddr(dst ? ((struct rt6_info *)dst)->rt6i_idev->dev : NULL, daddr, saddr);
1107 int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr)
1109 struct inet6_dev *idev;
1110 int err = -EADDRNOTAVAIL;
1112 read_lock(&addrconf_lock);
1113 if ((idev = __in6_dev_get(dev)) != NULL) {
1114 struct inet6_ifaddr *ifp;
1116 read_lock_bh(&idev->lock);
1117 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1118 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1119 ipv6_addr_copy(addr, &ifp->addr);
1124 read_unlock_bh(&idev->lock);
1126 read_unlock(&addrconf_lock);
1130 static int ipv6_count_addresses(struct inet6_dev *idev)
1133 struct inet6_ifaddr *ifp;
1135 read_lock_bh(&idev->lock);
1136 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1138 read_unlock_bh(&idev->lock);
1142 int ipv6_chk_addr(struct in6_addr *addr, struct net_device *dev, int strict)
1144 struct inet6_ifaddr * ifp;
1145 u8 hash = ipv6_addr_hash(addr);
1147 read_lock_bh(&addrconf_hash_lock);
1148 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1149 if (ipv6_addr_equal(&ifp->addr, addr) &&
1150 !(ifp->flags&IFA_F_TENTATIVE)) {
1151 if (dev == NULL || ifp->idev->dev == dev ||
1152 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1156 read_unlock_bh(&addrconf_hash_lock);
1161 int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev)
1163 struct inet6_ifaddr * ifp;
1164 u8 hash = ipv6_addr_hash(addr);
1166 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1167 if (ipv6_addr_equal(&ifp->addr, addr)) {
1168 if (dev == NULL || ifp->idev->dev == dev)
1175 struct inet6_ifaddr * ipv6_get_ifaddr(struct in6_addr *addr, struct net_device *dev, int strict)
1177 struct inet6_ifaddr * ifp;
1178 u8 hash = ipv6_addr_hash(addr);
1180 read_lock_bh(&addrconf_hash_lock);
1181 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1182 if (ipv6_addr_equal(&ifp->addr, addr)) {
1183 if (dev == NULL || ifp->idev->dev == dev ||
1184 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1190 read_unlock_bh(&addrconf_hash_lock);
1195 int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1197 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
1198 const struct in6_addr *sk2_rcv_saddr6 = tcp_v6_rcv_saddr(sk2);
1199 u32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1200 u32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
1201 int sk_ipv6only = ipv6_only_sock(sk);
1202 int sk2_ipv6only = inet_v6_ipv6only(sk2);
1203 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1204 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1206 if (!sk2_rcv_saddr && !sk_ipv6only)
1209 if (addr_type2 == IPV6_ADDR_ANY &&
1210 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1213 if (addr_type == IPV6_ADDR_ANY &&
1214 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1217 if (sk2_rcv_saddr6 &&
1218 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1221 if (addr_type == IPV6_ADDR_MAPPED &&
1223 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1229 /* Gets referenced address, destroys ifaddr */
1231 void addrconf_dad_stop(struct inet6_ifaddr *ifp)
1233 if (ifp->flags&IFA_F_PERMANENT) {
1234 spin_lock_bh(&ifp->lock);
1235 addrconf_del_timer(ifp);
1236 ifp->flags |= IFA_F_TENTATIVE;
1237 spin_unlock_bh(&ifp->lock);
1239 #ifdef CONFIG_IPV6_PRIVACY
1240 } else if (ifp->flags&IFA_F_TEMPORARY) {
1241 struct inet6_ifaddr *ifpub;
1242 spin_lock_bh(&ifp->lock);
1245 in6_ifa_hold(ifpub);
1246 spin_unlock_bh(&ifp->lock);
1247 ipv6_create_tempaddr(ifpub, ifp);
1250 spin_unlock_bh(&ifp->lock);
1258 void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1260 if (net_ratelimit())
1261 printk(KERN_INFO "%s: duplicate address detected!\n", ifp->idev->dev->name);
1262 addrconf_dad_stop(ifp);
1265 /* Join to solicited addr multicast group. */
1267 void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1269 struct in6_addr maddr;
1271 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1274 addrconf_addr_solict_mult(addr, &maddr);
1275 ipv6_dev_mc_inc(dev, &maddr);
1278 void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1280 struct in6_addr maddr;
1282 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1285 addrconf_addr_solict_mult(addr, &maddr);
1286 __ipv6_dev_mc_dec(idev, &maddr);
1289 static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
1291 struct in6_addr addr;
1292 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1293 if (ipv6_addr_any(&addr))
1295 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1298 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
1300 struct in6_addr addr;
1301 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1302 if (ipv6_addr_any(&addr))
1304 __ipv6_dev_ac_dec(ifp->idev, &addr);
1307 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1309 switch (dev->type) {
1312 case ARPHRD_IEEE802_TR:
1313 if (dev->addr_len != ETH_ALEN)
1315 memcpy(eui, dev->dev_addr, 3);
1316 memcpy(eui + 5, dev->dev_addr + 3, 3);
1319 * The zSeries OSA network cards can be shared among various
1320 * OS instances, but the OSA cards have only one MAC address.
1321 * This leads to duplicate address conflicts in conjunction
1322 * with IPv6 if more than one instance uses the same card.
1324 * The driver for these cards can deliver a unique 16-bit
1325 * identifier for each instance sharing the same card. It is
1326 * placed instead of 0xFFFE in the interface identifier. The
1327 * "u" bit of the interface identifier is not inverted in this
1328 * case. Hence the resulting interface identifier has local
1329 * scope according to RFC2373.
1332 eui[3] = (dev->dev_id >> 8) & 0xFF;
1333 eui[4] = dev->dev_id & 0xFF;
1341 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1342 if (dev->addr_len != ARCNET_ALEN)
1345 eui[7] = *(u8*)dev->dev_addr;
1347 case ARPHRD_INFINIBAND:
1348 if (dev->addr_len != INFINIBAND_ALEN)
1350 memcpy(eui, dev->dev_addr + 12, 8);
1357 static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1360 struct inet6_ifaddr *ifp;
1362 read_lock_bh(&idev->lock);
1363 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1364 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1365 memcpy(eui, ifp->addr.s6_addr+8, 8);
1370 read_unlock_bh(&idev->lock);
1374 #ifdef CONFIG_IPV6_PRIVACY
1375 /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1376 static int __ipv6_regen_rndid(struct inet6_dev *idev)
1378 struct net_device *dev;
1379 struct scatterlist sg[2];
1381 sg_set_buf(&sg[0], idev->entropy, 8);
1382 sg_set_buf(&sg[1], idev->work_eui64, 8);
1386 if (ipv6_generate_eui64(idev->work_eui64, dev)) {
1388 "__ipv6_regen_rndid(idev=%p): cannot get EUI64 identifier; use random bytes.\n",
1390 get_random_bytes(idev->work_eui64, sizeof(idev->work_eui64));
1393 spin_lock(&md5_tfm_lock);
1394 if (unlikely(md5_tfm == NULL)) {
1395 spin_unlock(&md5_tfm_lock);
1398 crypto_digest_init(md5_tfm);
1399 crypto_digest_update(md5_tfm, sg, 2);
1400 crypto_digest_final(md5_tfm, idev->work_digest);
1401 spin_unlock(&md5_tfm_lock);
1403 memcpy(idev->rndid, &idev->work_digest[0], 8);
1404 idev->rndid[0] &= ~0x02;
1405 memcpy(idev->entropy, &idev->work_digest[8], 8);
1408 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1409 * check if generated address is not inappropriate
1411 * - Reserved subnet anycast (RFC 2526)
1412 * 11111101 11....11 1xxxxxxx
1413 * - ISATAP (draft-ietf-ngtrans-isatap-13.txt) 5.1
1414 * 00-00-5E-FE-xx-xx-xx-xx
1416 * - XXX: already assigned to an address on the device
1418 if (idev->rndid[0] == 0xfd &&
1419 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1420 (idev->rndid[7]&0x80))
1422 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1423 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1425 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1432 static void ipv6_regen_rndid(unsigned long data)
1434 struct inet6_dev *idev = (struct inet6_dev *) data;
1435 unsigned long expires;
1437 read_lock_bh(&addrconf_lock);
1438 write_lock_bh(&idev->lock);
1443 if (__ipv6_regen_rndid(idev) < 0)
1447 idev->cnf.temp_prefered_lft * HZ -
1448 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1449 if (time_before(expires, jiffies)) {
1451 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1456 if (!mod_timer(&idev->regen_timer, expires))
1460 write_unlock_bh(&idev->lock);
1461 read_unlock_bh(&addrconf_lock);
1465 static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1468 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1469 ret = __ipv6_regen_rndid(idev);
1479 addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
1480 unsigned long expires, u32 flags)
1482 struct in6_rtmsg rtmsg;
1484 memset(&rtmsg, 0, sizeof(rtmsg));
1485 ipv6_addr_copy(&rtmsg.rtmsg_dst, pfx);
1486 rtmsg.rtmsg_dst_len = plen;
1487 rtmsg.rtmsg_metric = IP6_RT_PRIO_ADDRCONF;
1488 rtmsg.rtmsg_ifindex = dev->ifindex;
1489 rtmsg.rtmsg_info = expires;
1490 rtmsg.rtmsg_flags = RTF_UP|flags;
1491 rtmsg.rtmsg_type = RTMSG_NEWROUTE;
1493 /* Prevent useless cloning on PtP SIT.
1494 This thing is done here expecting that the whole
1495 class of non-broadcast devices need not cloning.
1497 if (dev->type == ARPHRD_SIT && (dev->flags&IFF_POINTOPOINT))
1498 rtmsg.rtmsg_flags |= RTF_NONEXTHOP;
1500 ip6_route_add(&rtmsg, NULL, NULL, NULL);
1503 /* Create "default" multicast route to the interface */
1505 static void addrconf_add_mroute(struct net_device *dev)
1507 struct in6_rtmsg rtmsg;
1509 memset(&rtmsg, 0, sizeof(rtmsg));
1510 ipv6_addr_set(&rtmsg.rtmsg_dst,
1511 htonl(0xFF000000), 0, 0, 0);
1512 rtmsg.rtmsg_dst_len = 8;
1513 rtmsg.rtmsg_metric = IP6_RT_PRIO_ADDRCONF;
1514 rtmsg.rtmsg_ifindex = dev->ifindex;
1515 rtmsg.rtmsg_flags = RTF_UP;
1516 rtmsg.rtmsg_type = RTMSG_NEWROUTE;
1517 ip6_route_add(&rtmsg, NULL, NULL, NULL);
1520 static void sit_route_add(struct net_device *dev)
1522 struct in6_rtmsg rtmsg;
1524 memset(&rtmsg, 0, sizeof(rtmsg));
1526 rtmsg.rtmsg_type = RTMSG_NEWROUTE;
1527 rtmsg.rtmsg_metric = IP6_RT_PRIO_ADDRCONF;
1529 /* prefix length - 96 bits "::d.d.d.d" */
1530 rtmsg.rtmsg_dst_len = 96;
1531 rtmsg.rtmsg_flags = RTF_UP|RTF_NONEXTHOP;
1532 rtmsg.rtmsg_ifindex = dev->ifindex;
1534 ip6_route_add(&rtmsg, NULL, NULL, NULL);
1537 static void addrconf_add_lroute(struct net_device *dev)
1539 struct in6_addr addr;
1541 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1542 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1545 static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1547 struct inet6_dev *idev;
1551 if ((idev = ipv6_find_idev(dev)) == NULL)
1554 /* Add default multicast route */
1555 addrconf_add_mroute(dev);
1557 /* Add link local route */
1558 addrconf_add_lroute(dev);
1562 void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1564 struct prefix_info *pinfo;
1568 unsigned long rt_expires;
1569 struct inet6_dev *in6_dev;
1571 pinfo = (struct prefix_info *) opt;
1573 if (len < sizeof(struct prefix_info)) {
1574 ADBG(("addrconf: prefix option too short\n"));
1579 * Validation checks ([ADDRCONF], page 19)
1582 addr_type = ipv6_addr_type(&pinfo->prefix);
1584 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1587 valid_lft = ntohl(pinfo->valid);
1588 prefered_lft = ntohl(pinfo->prefered);
1590 if (prefered_lft > valid_lft) {
1591 if (net_ratelimit())
1592 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1596 in6_dev = in6_dev_get(dev);
1598 if (in6_dev == NULL) {
1599 if (net_ratelimit())
1600 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1605 * Two things going on here:
1606 * 1) Add routes for on-link prefixes
1607 * 2) Configure prefixes with the auto flag set
1610 /* Avoid arithmetic overflow. Really, we could
1611 save rt_expires in seconds, likely valid_lft,
1612 but it would require division in fib gc, that it
1615 if (valid_lft >= 0x7FFFFFFF/HZ)
1616 rt_expires = 0x7FFFFFFF - (0x7FFFFFFF % HZ);
1618 rt_expires = valid_lft * HZ;
1621 * We convert this (in jiffies) to clock_t later.
1622 * Avoid arithmetic overflow there as well.
1623 * Overflow can happen only if HZ < USER_HZ.
1625 if (HZ < USER_HZ && rt_expires > 0x7FFFFFFF / USER_HZ)
1626 rt_expires = 0x7FFFFFFF / USER_HZ;
1628 if (pinfo->onlink) {
1629 struct rt6_info *rt;
1630 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1632 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1633 if (rt->rt6i_flags&RTF_EXPIRES) {
1634 if (valid_lft == 0) {
1635 ip6_del_rt(rt, NULL, NULL, NULL);
1638 rt->rt6i_expires = jiffies + rt_expires;
1641 } else if (valid_lft) {
1642 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
1643 dev, jiffies_to_clock_t(rt_expires), RTF_ADDRCONF|RTF_EXPIRES|RTF_PREFIX_RT);
1646 dst_release(&rt->u.dst);
1649 /* Try to figure out our local address for this prefix */
1651 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1652 struct inet6_ifaddr * ifp;
1653 struct in6_addr addr;
1654 int create = 0, update_lft = 0;
1656 if (pinfo->prefix_len == 64) {
1657 memcpy(&addr, &pinfo->prefix, 8);
1658 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1659 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1660 in6_dev_put(in6_dev);
1665 if (net_ratelimit())
1666 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1668 in6_dev_put(in6_dev);
1673 ifp = ipv6_get_ifaddr(&addr, dev, 1);
1675 if (ifp == NULL && valid_lft) {
1676 int max_addresses = in6_dev->cnf.max_addresses;
1678 /* Do not allow to create too much of autoconfigured
1679 * addresses; this would be too easy way to crash kernel.
1681 if (!max_addresses ||
1682 ipv6_count_addresses(in6_dev) < max_addresses)
1683 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
1684 addr_type&IPV6_ADDR_SCOPE_MASK, 0);
1686 if (!ifp || IS_ERR(ifp)) {
1687 in6_dev_put(in6_dev);
1691 update_lft = create = 1;
1692 ifp->cstamp = jiffies;
1693 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1699 #ifdef CONFIG_IPV6_PRIVACY
1700 struct inet6_ifaddr *ift;
1704 /* update lifetime (RFC2462 5.5.3 e) */
1705 spin_lock(&ifp->lock);
1707 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1708 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1711 if (!update_lft && stored_lft) {
1712 if (valid_lft > MIN_VALID_LIFETIME ||
1713 valid_lft > stored_lft)
1715 else if (stored_lft <= MIN_VALID_LIFETIME) {
1716 /* valid_lft <= stored_lft is always true */
1720 valid_lft = MIN_VALID_LIFETIME;
1721 if (valid_lft < prefered_lft)
1722 prefered_lft = valid_lft;
1728 ifp->valid_lft = valid_lft;
1729 ifp->prefered_lft = prefered_lft;
1732 ifp->flags &= ~IFA_F_DEPRECATED;
1733 spin_unlock(&ifp->lock);
1735 if (!(flags&IFA_F_TENTATIVE))
1736 ipv6_ifa_notify(0, ifp);
1738 spin_unlock(&ifp->lock);
1740 #ifdef CONFIG_IPV6_PRIVACY
1741 read_lock_bh(&in6_dev->lock);
1742 /* update all temporary addresses in the list */
1743 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1745 * When adjusting the lifetimes of an existing
1746 * temporary address, only lower the lifetimes.
1747 * Implementations must not increase the
1748 * lifetimes of an existing temporary address
1749 * when processing a Prefix Information Option.
1751 spin_lock(&ift->lock);
1753 if (ift->valid_lft > valid_lft &&
1754 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1755 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1756 if (ift->prefered_lft > prefered_lft &&
1757 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1758 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1759 spin_unlock(&ift->lock);
1760 if (!(flags&IFA_F_TENTATIVE))
1761 ipv6_ifa_notify(0, ift);
1764 if (create && in6_dev->cnf.use_tempaddr > 0) {
1766 * When a new public address is created as described in [ADDRCONF],
1767 * also create a new temporary address.
1769 read_unlock_bh(&in6_dev->lock);
1770 ipv6_create_tempaddr(ifp, NULL);
1772 read_unlock_bh(&in6_dev->lock);
1779 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1780 in6_dev_put(in6_dev);
1784 * Set destination address.
1785 * Special case for SIT interfaces where we create a new "virtual"
1788 int addrconf_set_dstaddr(void __user *arg)
1790 struct in6_ifreq ireq;
1791 struct net_device *dev;
1797 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1800 dev = __dev_get_by_index(ireq.ifr6_ifindex);
1806 if (dev->type == ARPHRD_SIT) {
1809 struct ip_tunnel_parm p;
1811 err = -EADDRNOTAVAIL;
1812 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1815 memset(&p, 0, sizeof(p));
1816 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1820 p.iph.protocol = IPPROTO_IPV6;
1822 ifr.ifr_ifru.ifru_data = (void __user *)&p;
1824 oldfs = get_fs(); set_fs(KERNEL_DS);
1825 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1830 if ((dev = __dev_get_by_name(p.name)) == NULL)
1832 err = dev_open(dev);
1842 * Manual configuration of address on an interface
1844 static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen)
1846 struct inet6_ifaddr *ifp;
1847 struct inet6_dev *idev;
1848 struct net_device *dev;
1853 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1856 if (!(dev->flags&IFF_UP))
1859 if ((idev = addrconf_add_dev(dev)) == NULL)
1862 scope = ipv6_addr_scope(pfx);
1864 ifp = ipv6_add_addr(idev, pfx, plen, scope, IFA_F_PERMANENT);
1866 addrconf_dad_start(ifp, 0);
1871 return PTR_ERR(ifp);
1874 static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
1876 struct inet6_ifaddr *ifp;
1877 struct inet6_dev *idev;
1878 struct net_device *dev;
1880 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1883 if ((idev = __in6_dev_get(dev)) == NULL)
1886 read_lock_bh(&idev->lock);
1887 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
1888 if (ifp->prefix_len == plen &&
1889 ipv6_addr_equal(pfx, &ifp->addr)) {
1891 read_unlock_bh(&idev->lock);
1895 /* If the last address is deleted administratively,
1896 disable IPv6 on this interface.
1898 if (idev->addr_list == NULL)
1899 addrconf_ifdown(idev->dev, 1);
1903 read_unlock_bh(&idev->lock);
1904 return -EADDRNOTAVAIL;
1908 int addrconf_add_ifaddr(void __user *arg)
1910 struct in6_ifreq ireq;
1913 if (!capable(CAP_NET_ADMIN))
1916 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1920 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
1925 int addrconf_del_ifaddr(void __user *arg)
1927 struct in6_ifreq ireq;
1930 if (!capable(CAP_NET_ADMIN))
1933 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1937 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
1942 static void sit_add_v4_addrs(struct inet6_dev *idev)
1944 struct inet6_ifaddr * ifp;
1945 struct in6_addr addr;
1946 struct net_device *dev;
1951 memset(&addr, 0, sizeof(struct in6_addr));
1952 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
1954 if (idev->dev->flags&IFF_POINTOPOINT) {
1955 addr.s6_addr32[0] = htonl(0xfe800000);
1958 scope = IPV6_ADDR_COMPATv4;
1961 if (addr.s6_addr32[3]) {
1962 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
1964 spin_lock_bh(&ifp->lock);
1965 ifp->flags &= ~IFA_F_TENTATIVE;
1966 spin_unlock_bh(&ifp->lock);
1967 ipv6_ifa_notify(RTM_NEWADDR, ifp);
1973 for (dev = dev_base; dev != NULL; dev = dev->next) {
1974 struct in_device * in_dev = __in_dev_get_rtnl(dev);
1975 if (in_dev && (dev->flags & IFF_UP)) {
1976 struct in_ifaddr * ifa;
1980 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
1983 addr.s6_addr32[3] = ifa->ifa_local;
1985 if (ifa->ifa_scope == RT_SCOPE_LINK)
1987 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
1988 if (idev->dev->flags&IFF_POINTOPOINT)
1992 if (idev->dev->flags&IFF_POINTOPOINT)
1997 ifp = ipv6_add_addr(idev, &addr, plen, flag,
2000 spin_lock_bh(&ifp->lock);
2001 ifp->flags &= ~IFA_F_TENTATIVE;
2002 spin_unlock_bh(&ifp->lock);
2003 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2011 static void init_loopback(struct net_device *dev)
2013 struct inet6_dev *idev;
2014 struct inet6_ifaddr * ifp;
2020 if ((idev = ipv6_find_idev(dev)) == NULL) {
2021 printk(KERN_DEBUG "init loopback: add_dev failed\n");
2025 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
2027 spin_lock_bh(&ifp->lock);
2028 ifp->flags &= ~IFA_F_TENTATIVE;
2029 spin_unlock_bh(&ifp->lock);
2030 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2035 static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2037 struct inet6_ifaddr * ifp;
2039 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, IFA_F_PERMANENT);
2041 addrconf_dad_start(ifp, 0);
2046 static void addrconf_dev_config(struct net_device *dev)
2048 struct in6_addr addr;
2049 struct inet6_dev * idev;
2053 if ((dev->type != ARPHRD_ETHER) &&
2054 (dev->type != ARPHRD_FDDI) &&
2055 (dev->type != ARPHRD_IEEE802_TR) &&
2056 (dev->type != ARPHRD_ARCNET) &&
2057 (dev->type != ARPHRD_INFINIBAND)) {
2058 /* Alas, we support only Ethernet autoconfiguration. */
2062 idev = addrconf_add_dev(dev);
2066 memset(&addr, 0, sizeof(struct in6_addr));
2067 addr.s6_addr32[0] = htonl(0xFE800000);
2069 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2070 addrconf_add_linklocal(idev, &addr);
2073 static void addrconf_sit_config(struct net_device *dev)
2075 struct inet6_dev *idev;
2080 * Configure the tunnel with one of our IPv4
2081 * addresses... we should configure all of
2082 * our v4 addrs in the tunnel
2085 if ((idev = ipv6_find_idev(dev)) == NULL) {
2086 printk(KERN_DEBUG "init sit: add_dev failed\n");
2090 sit_add_v4_addrs(idev);
2092 if (dev->flags&IFF_POINTOPOINT) {
2093 addrconf_add_mroute(dev);
2094 addrconf_add_lroute(dev);
2100 ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2102 struct in6_addr lladdr;
2104 if (!ipv6_get_lladdr(link_dev, &lladdr)) {
2105 addrconf_add_linklocal(idev, &lladdr);
2111 static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2113 struct net_device *link_dev;
2115 /* first try to inherit the link-local address from the link device */
2116 if (idev->dev->iflink &&
2117 (link_dev = __dev_get_by_index(idev->dev->iflink))) {
2118 if (!ipv6_inherit_linklocal(idev, link_dev))
2121 /* then try to inherit it from any device */
2122 for (link_dev = dev_base; link_dev; link_dev = link_dev->next) {
2123 if (!ipv6_inherit_linklocal(idev, link_dev))
2126 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2130 * Autoconfigure tunnel with a link-local address so routing protocols,
2131 * DHCPv6, MLD etc. can be run over the virtual link
2134 static void addrconf_ip6_tnl_config(struct net_device *dev)
2136 struct inet6_dev *idev;
2140 if ((idev = addrconf_add_dev(dev)) == NULL) {
2141 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2144 ip6_tnl_add_linklocal(idev);
2145 addrconf_add_mroute(dev);
2148 static int addrconf_notify(struct notifier_block *this, unsigned long event,
2151 struct net_device *dev = (struct net_device *) data;
2152 struct inet6_dev *idev = __in6_dev_get(dev);
2153 int run_pending = 0;
2158 if (event == NETDEV_UP) {
2159 if (!netif_carrier_ok(dev)) {
2160 /* device is not ready yet. */
2162 "ADDRCONF(NETDEV_UP): %s: "
2163 "link is not ready\n",
2168 if (!netif_carrier_ok(dev)) {
2169 /* device is still not ready. */
2174 if (idev->if_flags & IF_READY) {
2175 /* device is already configured. */
2178 idev->if_flags |= IF_READY;
2182 "ADDRCONF(NETDEV_CHANGE): %s: "
2183 "link becomes ready\n",
2191 addrconf_sit_config(dev);
2193 case ARPHRD_TUNNEL6:
2194 addrconf_ip6_tnl_config(dev);
2196 case ARPHRD_LOOPBACK:
2201 addrconf_dev_config(dev);
2206 addrconf_dad_run(idev);
2208 /* If the MTU changed during the interface down, when the
2209 interface up, the changed MTU must be reflected in the
2210 idev as well as routers.
2212 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2213 rt6_mtu_change(dev, dev->mtu);
2214 idev->cnf.mtu6 = dev->mtu;
2216 idev->tstamp = jiffies;
2217 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2218 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2219 stop IPv6 on this interface.
2221 if (dev->mtu < IPV6_MIN_MTU)
2222 addrconf_ifdown(dev, event != NETDEV_DOWN);
2226 case NETDEV_CHANGEMTU:
2227 if ( idev && dev->mtu >= IPV6_MIN_MTU) {
2228 rt6_mtu_change(dev, dev->mtu);
2229 idev->cnf.mtu6 = dev->mtu;
2233 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2236 case NETDEV_UNREGISTER:
2238 * Remove all addresses from this interface.
2240 addrconf_ifdown(dev, event != NETDEV_DOWN);
2243 case NETDEV_CHANGENAME:
2244 #ifdef CONFIG_SYSCTL
2246 addrconf_sysctl_unregister(&idev->cnf);
2247 neigh_sysctl_unregister(idev->nd_parms);
2248 neigh_sysctl_register(dev, idev->nd_parms,
2249 NET_IPV6, NET_IPV6_NEIGH, "ipv6",
2250 &ndisc_ifinfo_sysctl_change,
2252 addrconf_sysctl_register(idev, &idev->cnf);
2262 * addrconf module should be notified of a device going up
2264 static struct notifier_block ipv6_dev_notf = {
2265 .notifier_call = addrconf_notify,
2269 static int addrconf_ifdown(struct net_device *dev, int how)
2271 struct inet6_dev *idev;
2272 struct inet6_ifaddr *ifa, **bifa;
2277 if (dev == &loopback_dev && how == 1)
2281 neigh_ifdown(&nd_tbl, dev);
2283 idev = __in6_dev_get(dev);
2287 /* Step 1: remove reference to ipv6 device from parent device.
2291 write_lock_bh(&addrconf_lock);
2292 dev->ip6_ptr = NULL;
2294 write_unlock_bh(&addrconf_lock);
2296 /* Step 1.5: remove snmp6 entry */
2297 snmp6_unregister_dev(idev);
2301 /* Step 2: clear hash table */
2302 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2303 bifa = &inet6_addr_lst[i];
2305 write_lock_bh(&addrconf_hash_lock);
2306 while ((ifa = *bifa) != NULL) {
2307 if (ifa->idev == idev) {
2308 *bifa = ifa->lst_next;
2309 ifa->lst_next = NULL;
2310 addrconf_del_timer(ifa);
2314 bifa = &ifa->lst_next;
2316 write_unlock_bh(&addrconf_hash_lock);
2319 write_lock_bh(&idev->lock);
2321 /* Step 3: clear flags for stateless addrconf */
2323 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
2325 /* Step 4: clear address list */
2326 #ifdef CONFIG_IPV6_PRIVACY
2327 if (how == 1 && del_timer(&idev->regen_timer))
2330 /* clear tempaddr list */
2331 while ((ifa = idev->tempaddr_list) != NULL) {
2332 idev->tempaddr_list = ifa->tmp_next;
2333 ifa->tmp_next = NULL;
2335 write_unlock_bh(&idev->lock);
2336 spin_lock_bh(&ifa->lock);
2339 in6_ifa_put(ifa->ifpub);
2342 spin_unlock_bh(&ifa->lock);
2344 write_lock_bh(&idev->lock);
2347 while ((ifa = idev->addr_list) != NULL) {
2348 idev->addr_list = ifa->if_next;
2349 ifa->if_next = NULL;
2351 addrconf_del_timer(ifa);
2352 write_unlock_bh(&idev->lock);
2354 __ipv6_ifa_notify(RTM_DELADDR, ifa);
2357 write_lock_bh(&idev->lock);
2359 write_unlock_bh(&idev->lock);
2361 /* Step 5: Discard multicast list */
2364 ipv6_mc_destroy_dev(idev);
2368 /* Step 5: netlink notification of this interface */
2369 idev->tstamp = jiffies;
2370 inet6_ifinfo_notify(RTM_DELLINK, idev);
2372 /* Shot the device (if unregistered) */
2375 #ifdef CONFIG_SYSCTL
2376 addrconf_sysctl_unregister(&idev->cnf);
2377 neigh_sysctl_unregister(idev->nd_parms);
2379 neigh_parms_release(&nd_tbl, idev->nd_parms);
2380 neigh_ifdown(&nd_tbl, dev);
2386 static void addrconf_rs_timer(unsigned long data)
2388 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2390 if (ifp->idev->cnf.forwarding)
2393 if (ifp->idev->if_flags & IF_RA_RCVD) {
2395 * Announcement received after solicitation
2401 spin_lock(&ifp->lock);
2402 if (ifp->probes++ < ifp->idev->cnf.rtr_solicits) {
2403 struct in6_addr all_routers;
2405 /* The wait after the last probe can be shorter */
2406 addrconf_mod_timer(ifp, AC_RS,
2407 (ifp->probes == ifp->idev->cnf.rtr_solicits) ?
2408 ifp->idev->cnf.rtr_solicit_delay :
2409 ifp->idev->cnf.rtr_solicit_interval);
2410 spin_unlock(&ifp->lock);
2412 ipv6_addr_all_routers(&all_routers);
2414 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2416 spin_unlock(&ifp->lock);
2418 * Note: we do not support deprecated "all on-link"
2419 * assumption any longer.
2421 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2422 ifp->idev->dev->name);
2430 * Duplicate Address Detection
2432 static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2434 unsigned long rand_num;
2435 struct inet6_dev *idev = ifp->idev;
2437 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2438 ifp->probes = idev->cnf.dad_transmits;
2439 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2442 static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
2444 struct inet6_dev *idev = ifp->idev;
2445 struct net_device *dev = idev->dev;
2447 addrconf_join_solict(dev, &ifp->addr);
2449 if (ifp->prefix_len != 128 && (ifp->flags&IFA_F_PERMANENT))
2450 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev, 0,
2453 net_srandom(ifp->addr.s6_addr32[3]);
2455 read_lock_bh(&idev->lock);
2458 spin_lock_bh(&ifp->lock);
2460 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
2461 !(ifp->flags&IFA_F_TENTATIVE)) {
2462 ifp->flags &= ~IFA_F_TENTATIVE;
2463 spin_unlock_bh(&ifp->lock);
2464 read_unlock_bh(&idev->lock);
2466 addrconf_dad_completed(ifp);
2470 if (idev->if_flags & IF_READY)
2471 addrconf_dad_kick(ifp);
2474 * If the defice is not ready:
2475 * - keep it tentative if it is a permanent address.
2476 * - otherwise, kill it.
2479 addrconf_dad_stop(ifp);
2482 spin_unlock_bh(&ifp->lock);
2484 read_unlock_bh(&idev->lock);
2487 static void addrconf_dad_timer(unsigned long data)
2489 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2490 struct inet6_dev *idev = ifp->idev;
2491 struct in6_addr unspec;
2492 struct in6_addr mcaddr;
2494 read_lock_bh(&idev->lock);
2496 read_unlock_bh(&idev->lock);
2499 spin_lock_bh(&ifp->lock);
2500 if (ifp->probes == 0) {
2502 * DAD was successful
2505 ifp->flags &= ~IFA_F_TENTATIVE;
2506 spin_unlock_bh(&ifp->lock);
2507 read_unlock_bh(&idev->lock);
2509 addrconf_dad_completed(ifp);
2515 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2516 spin_unlock_bh(&ifp->lock);
2517 read_unlock_bh(&idev->lock);
2519 /* send a neighbour solicitation for our addr */
2520 memset(&unspec, 0, sizeof(unspec));
2521 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2522 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2527 static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2529 struct net_device * dev = ifp->idev->dev;
2532 * Configure the address for reception. Now it is valid.
2535 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2537 /* If added prefix is link local and forwarding is off,
2538 start sending router solicitations.
2541 if (ifp->idev->cnf.forwarding == 0 &&
2542 ifp->idev->cnf.rtr_solicits > 0 &&
2543 (dev->flags&IFF_LOOPBACK) == 0 &&
2544 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2545 struct in6_addr all_routers;
2547 ipv6_addr_all_routers(&all_routers);
2550 * If a host as already performed a random delay
2551 * [...] as part of DAD [...] there is no need
2552 * to delay again before sending the first RS
2554 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2556 spin_lock_bh(&ifp->lock);
2558 ifp->idev->if_flags |= IF_RS_SENT;
2559 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2560 spin_unlock_bh(&ifp->lock);
2564 static void addrconf_dad_run(struct inet6_dev *idev) {
2565 struct inet6_ifaddr *ifp;
2567 read_lock_bh(&idev->lock);
2568 for (ifp = idev->addr_list; ifp; ifp = ifp->if_next) {
2569 spin_lock_bh(&ifp->lock);
2570 if (!(ifp->flags & IFA_F_TENTATIVE)) {
2571 spin_unlock_bh(&ifp->lock);
2574 spin_unlock_bh(&ifp->lock);
2575 addrconf_dad_kick(ifp);
2577 read_unlock_bh(&idev->lock);
2580 #ifdef CONFIG_PROC_FS
2581 struct if6_iter_state {
2585 static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2587 struct inet6_ifaddr *ifa = NULL;
2588 struct if6_iter_state *state = seq->private;
2590 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2591 ifa = inet6_addr_lst[state->bucket];
2598 static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2600 struct if6_iter_state *state = seq->private;
2602 ifa = ifa->lst_next;
2604 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2605 ifa = inet6_addr_lst[state->bucket];
2611 static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2613 struct inet6_ifaddr *ifa = if6_get_first(seq);
2616 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2618 return pos ? NULL : ifa;
2621 static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
2623 read_lock_bh(&addrconf_hash_lock);
2624 return if6_get_idx(seq, *pos);
2627 static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2629 struct inet6_ifaddr *ifa;
2631 ifa = if6_get_next(seq, v);
2636 static void if6_seq_stop(struct seq_file *seq, void *v)
2638 read_unlock_bh(&addrconf_hash_lock);
2641 static int if6_seq_show(struct seq_file *seq, void *v)
2643 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2645 "%04x%04x%04x%04x%04x%04x%04x%04x %02x %02x %02x %02x %8s\n",
2647 ifp->idev->dev->ifindex,
2651 ifp->idev->dev->name);
2655 static struct seq_operations if6_seq_ops = {
2656 .start = if6_seq_start,
2657 .next = if6_seq_next,
2658 .show = if6_seq_show,
2659 .stop = if6_seq_stop,
2662 static int if6_seq_open(struct inode *inode, struct file *file)
2664 struct seq_file *seq;
2666 struct if6_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
2670 memset(s, 0, sizeof(*s));
2672 rc = seq_open(file, &if6_seq_ops);
2676 seq = file->private_data;
2685 static struct file_operations if6_fops = {
2686 .owner = THIS_MODULE,
2687 .open = if6_seq_open,
2689 .llseek = seq_lseek,
2690 .release = seq_release_private,
2693 int __init if6_proc_init(void)
2695 if (!proc_net_fops_create("if_inet6", S_IRUGO, &if6_fops))
2700 void if6_proc_exit(void)
2702 proc_net_remove("if_inet6");
2704 #endif /* CONFIG_PROC_FS */
2707 * Periodic address status verification
2710 static void addrconf_verify(unsigned long foo)
2712 struct inet6_ifaddr *ifp;
2713 unsigned long now, next;
2716 spin_lock_bh(&addrconf_verify_lock);
2718 next = now + ADDR_CHECK_FREQUENCY;
2720 del_timer(&addr_chk_timer);
2722 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2725 read_lock(&addrconf_hash_lock);
2726 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2728 #ifdef CONFIG_IPV6_PRIVACY
2729 unsigned long regen_advance;
2732 if (ifp->flags & IFA_F_PERMANENT)
2735 spin_lock(&ifp->lock);
2736 age = (now - ifp->tstamp) / HZ;
2738 #ifdef CONFIG_IPV6_PRIVACY
2739 regen_advance = ifp->idev->cnf.regen_max_retry *
2740 ifp->idev->cnf.dad_transmits *
2741 ifp->idev->nd_parms->retrans_time / HZ;
2744 if (age >= ifp->valid_lft) {
2745 spin_unlock(&ifp->lock);
2747 read_unlock(&addrconf_hash_lock);
2750 } else if (age >= ifp->prefered_lft) {
2751 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2754 if (!(ifp->flags&IFA_F_DEPRECATED)) {
2756 ifp->flags |= IFA_F_DEPRECATED;
2759 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
2760 next = ifp->tstamp + ifp->valid_lft * HZ;
2762 spin_unlock(&ifp->lock);
2766 read_unlock(&addrconf_hash_lock);
2768 ipv6_ifa_notify(0, ifp);
2772 #ifdef CONFIG_IPV6_PRIVACY
2773 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
2774 !(ifp->flags&IFA_F_TENTATIVE)) {
2775 if (age >= ifp->prefered_lft - regen_advance) {
2776 struct inet6_ifaddr *ifpub = ifp->ifpub;
2777 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2778 next = ifp->tstamp + ifp->prefered_lft * HZ;
2779 if (!ifp->regen_count && ifpub) {
2782 in6_ifa_hold(ifpub);
2783 spin_unlock(&ifp->lock);
2784 read_unlock(&addrconf_hash_lock);
2785 ipv6_create_tempaddr(ifpub, ifp);
2790 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
2791 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
2792 spin_unlock(&ifp->lock);
2795 /* ifp->prefered_lft <= ifp->valid_lft */
2796 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2797 next = ifp->tstamp + ifp->prefered_lft * HZ;
2798 spin_unlock(&ifp->lock);
2801 read_unlock(&addrconf_hash_lock);
2804 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
2805 add_timer(&addr_chk_timer);
2806 spin_unlock_bh(&addrconf_verify_lock);
2810 inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2812 struct rtattr **rta = arg;
2813 struct ifaddrmsg *ifm = NLMSG_DATA(nlh);
2814 struct in6_addr *pfx;
2817 if (rta[IFA_ADDRESS-1]) {
2818 if (RTA_PAYLOAD(rta[IFA_ADDRESS-1]) < sizeof(*pfx))
2820 pfx = RTA_DATA(rta[IFA_ADDRESS-1]);
2822 if (rta[IFA_LOCAL-1]) {
2823 if (pfx && memcmp(pfx, RTA_DATA(rta[IFA_LOCAL-1]), sizeof(*pfx)))
2825 pfx = RTA_DATA(rta[IFA_LOCAL-1]);
2830 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
2834 inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2836 struct rtattr **rta = arg;
2837 struct ifaddrmsg *ifm = NLMSG_DATA(nlh);
2838 struct in6_addr *pfx;
2841 if (rta[IFA_ADDRESS-1]) {
2842 if (RTA_PAYLOAD(rta[IFA_ADDRESS-1]) < sizeof(*pfx))
2844 pfx = RTA_DATA(rta[IFA_ADDRESS-1]);
2846 if (rta[IFA_LOCAL-1]) {
2847 if (pfx && memcmp(pfx, RTA_DATA(rta[IFA_LOCAL-1]), sizeof(*pfx)))
2849 pfx = RTA_DATA(rta[IFA_LOCAL-1]);
2854 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
2857 static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
2858 u32 pid, u32 seq, int event, unsigned int flags)
2860 struct ifaddrmsg *ifm;
2861 struct nlmsghdr *nlh;
2862 struct ifa_cacheinfo ci;
2863 unsigned char *b = skb->tail;
2865 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*ifm), flags);
2866 ifm = NLMSG_DATA(nlh);
2867 ifm->ifa_family = AF_INET6;
2868 ifm->ifa_prefixlen = ifa->prefix_len;
2869 ifm->ifa_flags = ifa->flags;
2870 ifm->ifa_scope = RT_SCOPE_UNIVERSE;
2871 if (ifa->scope&IFA_HOST)
2872 ifm->ifa_scope = RT_SCOPE_HOST;
2873 else if (ifa->scope&IFA_LINK)
2874 ifm->ifa_scope = RT_SCOPE_LINK;
2875 else if (ifa->scope&IFA_SITE)
2876 ifm->ifa_scope = RT_SCOPE_SITE;
2877 ifm->ifa_index = ifa->idev->dev->ifindex;
2878 RTA_PUT(skb, IFA_ADDRESS, 16, &ifa->addr);
2879 if (!(ifa->flags&IFA_F_PERMANENT)) {
2880 ci.ifa_prefered = ifa->prefered_lft;
2881 ci.ifa_valid = ifa->valid_lft;
2882 if (ci.ifa_prefered != INFINITY_LIFE_TIME) {
2883 long tval = (jiffies - ifa->tstamp)/HZ;
2884 ci.ifa_prefered -= tval;
2885 if (ci.ifa_valid != INFINITY_LIFE_TIME)
2886 ci.ifa_valid -= tval;
2889 ci.ifa_prefered = INFINITY_LIFE_TIME;
2890 ci.ifa_valid = INFINITY_LIFE_TIME;
2892 ci.cstamp = (__u32)(TIME_DELTA(ifa->cstamp, INITIAL_JIFFIES) / HZ * 100
2893 + TIME_DELTA(ifa->cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
2894 ci.tstamp = (__u32)(TIME_DELTA(ifa->tstamp, INITIAL_JIFFIES) / HZ * 100
2895 + TIME_DELTA(ifa->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
2896 RTA_PUT(skb, IFA_CACHEINFO, sizeof(ci), &ci);
2897 nlh->nlmsg_len = skb->tail - b;
2902 skb_trim(skb, b - skb->data);
2906 static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
2907 u32 pid, u32 seq, int event, u16 flags)
2909 struct ifaddrmsg *ifm;
2910 struct nlmsghdr *nlh;
2911 struct ifa_cacheinfo ci;
2912 unsigned char *b = skb->tail;
2914 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*ifm), flags);
2915 ifm = NLMSG_DATA(nlh);
2916 ifm->ifa_family = AF_INET6;
2917 ifm->ifa_prefixlen = 128;
2918 ifm->ifa_flags = IFA_F_PERMANENT;
2919 ifm->ifa_scope = RT_SCOPE_UNIVERSE;
2920 if (ipv6_addr_scope(&ifmca->mca_addr)&IFA_SITE)
2921 ifm->ifa_scope = RT_SCOPE_SITE;
2922 ifm->ifa_index = ifmca->idev->dev->ifindex;
2923 RTA_PUT(skb, IFA_MULTICAST, 16, &ifmca->mca_addr);
2924 ci.cstamp = (__u32)(TIME_DELTA(ifmca->mca_cstamp, INITIAL_JIFFIES) / HZ
2925 * 100 + TIME_DELTA(ifmca->mca_cstamp, INITIAL_JIFFIES) % HZ
2927 ci.tstamp = (__u32)(TIME_DELTA(ifmca->mca_tstamp, INITIAL_JIFFIES) / HZ
2928 * 100 + TIME_DELTA(ifmca->mca_tstamp, INITIAL_JIFFIES) % HZ
2930 ci.ifa_prefered = INFINITY_LIFE_TIME;
2931 ci.ifa_valid = INFINITY_LIFE_TIME;
2932 RTA_PUT(skb, IFA_CACHEINFO, sizeof(ci), &ci);
2933 nlh->nlmsg_len = skb->tail - b;
2938 skb_trim(skb, b - skb->data);
2942 static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
2943 u32 pid, u32 seq, int event, unsigned int flags)
2945 struct ifaddrmsg *ifm;
2946 struct nlmsghdr *nlh;
2947 struct ifa_cacheinfo ci;
2948 unsigned char *b = skb->tail;
2950 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*ifm), flags);
2951 ifm = NLMSG_DATA(nlh);
2952 ifm->ifa_family = AF_INET6;
2953 ifm->ifa_prefixlen = 128;
2954 ifm->ifa_flags = IFA_F_PERMANENT;
2955 ifm->ifa_scope = RT_SCOPE_UNIVERSE;
2956 if (ipv6_addr_scope(&ifaca->aca_addr)&IFA_SITE)
2957 ifm->ifa_scope = RT_SCOPE_SITE;
2958 ifm->ifa_index = ifaca->aca_idev->dev->ifindex;
2959 RTA_PUT(skb, IFA_ANYCAST, 16, &ifaca->aca_addr);
2960 ci.cstamp = (__u32)(TIME_DELTA(ifaca->aca_cstamp, INITIAL_JIFFIES) / HZ
2961 * 100 + TIME_DELTA(ifaca->aca_cstamp, INITIAL_JIFFIES) % HZ
2963 ci.tstamp = (__u32)(TIME_DELTA(ifaca->aca_tstamp, INITIAL_JIFFIES) / HZ
2964 * 100 + TIME_DELTA(ifaca->aca_tstamp, INITIAL_JIFFIES) % HZ
2966 ci.ifa_prefered = INFINITY_LIFE_TIME;
2967 ci.ifa_valid = INFINITY_LIFE_TIME;
2968 RTA_PUT(skb, IFA_CACHEINFO, sizeof(ci), &ci);
2969 nlh->nlmsg_len = skb->tail - b;
2974 skb_trim(skb, b - skb->data);
2985 static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
2986 enum addr_type_t type)
2989 int s_idx, s_ip_idx;
2991 struct net_device *dev;
2992 struct inet6_dev *idev = NULL;
2993 struct inet6_ifaddr *ifa;
2994 struct ifmcaddr6 *ifmca;
2995 struct ifacaddr6 *ifaca;
2997 s_idx = cb->args[0];
2998 s_ip_idx = ip_idx = cb->args[1];
2999 read_lock(&dev_base_lock);
3001 for (dev = dev_base, idx = 0; dev; dev = dev->next, idx++) {
3007 if ((idev = in6_dev_get(dev)) == NULL)
3009 read_lock_bh(&idev->lock);
3012 /* unicast address incl. temp addr */
3013 for (ifa = idev->addr_list; ifa;
3014 ifa = ifa->if_next, ip_idx++) {
3015 if (ip_idx < s_ip_idx)
3017 if ((err = inet6_fill_ifaddr(skb, ifa,
3018 NETLINK_CB(cb->skb).pid,
3019 cb->nlh->nlmsg_seq, RTM_NEWADDR,
3024 case MULTICAST_ADDR:
3025 /* multicast address */
3026 for (ifmca = idev->mc_list; ifmca;
3027 ifmca = ifmca->next, ip_idx++) {
3028 if (ip_idx < s_ip_idx)
3030 if ((err = inet6_fill_ifmcaddr(skb, ifmca,
3031 NETLINK_CB(cb->skb).pid,
3032 cb->nlh->nlmsg_seq, RTM_GETMULTICAST,
3038 /* anycast address */
3039 for (ifaca = idev->ac_list; ifaca;
3040 ifaca = ifaca->aca_next, ip_idx++) {
3041 if (ip_idx < s_ip_idx)
3043 if ((err = inet6_fill_ifacaddr(skb, ifaca,
3044 NETLINK_CB(cb->skb).pid,
3045 cb->nlh->nlmsg_seq, RTM_GETANYCAST,
3053 read_unlock_bh(&idev->lock);
3058 read_unlock_bh(&idev->lock);
3061 read_unlock(&dev_base_lock);
3063 cb->args[1] = ip_idx;
3067 static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3069 enum addr_type_t type = UNICAST_ADDR;
3070 return inet6_dump_addr(skb, cb, type);
3073 static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3075 enum addr_type_t type = MULTICAST_ADDR;
3076 return inet6_dump_addr(skb, cb, type);
3080 static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3082 enum addr_type_t type = ANYCAST_ADDR;
3083 return inet6_dump_addr(skb, cb, type);
3086 static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3088 struct sk_buff *skb;
3089 int size = NLMSG_SPACE(sizeof(struct ifaddrmsg)+128);
3091 skb = alloc_skb(size, GFP_ATOMIC);
3093 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFADDR, ENOBUFS);
3096 if (inet6_fill_ifaddr(skb, ifa, current->pid, 0, event, 0) < 0) {
3098 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFADDR, EINVAL);
3101 NETLINK_CB(skb).dst_group = RTNLGRP_IPV6_IFADDR;
3102 netlink_broadcast(rtnl, skb, 0, RTNLGRP_IPV6_IFADDR, GFP_ATOMIC);
3105 static void inline ipv6_store_devconf(struct ipv6_devconf *cnf,
3106 __s32 *array, int bytes)
3108 memset(array, 0, bytes);
3109 array[DEVCONF_FORWARDING] = cnf->forwarding;
3110 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3111 array[DEVCONF_MTU6] = cnf->mtu6;
3112 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3113 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3114 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3115 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3116 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3117 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3118 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3119 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3120 #ifdef CONFIG_IPV6_PRIVACY
3121 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3122 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3123 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3124 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3125 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3127 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
3130 static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
3131 u32 pid, u32 seq, int event, unsigned int flags)
3133 struct net_device *dev = idev->dev;
3134 __s32 *array = NULL;
3135 struct ifinfomsg *r;
3136 struct nlmsghdr *nlh;
3137 unsigned char *b = skb->tail;
3138 struct rtattr *subattr;
3139 __u32 mtu = dev->mtu;
3140 struct ifla_cacheinfo ci;
3142 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags);
3143 r = NLMSG_DATA(nlh);
3144 r->ifi_family = AF_INET6;
3146 r->ifi_type = dev->type;
3147 r->ifi_index = dev->ifindex;
3148 r->ifi_flags = dev_get_flags(dev);
3151 RTA_PUT(skb, IFLA_IFNAME, strlen(dev->name)+1, dev->name);
3154 RTA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
3156 RTA_PUT(skb, IFLA_MTU, sizeof(mtu), &mtu);
3157 if (dev->ifindex != dev->iflink)
3158 RTA_PUT(skb, IFLA_LINK, sizeof(int), &dev->iflink);
3160 subattr = (struct rtattr*)skb->tail;
3162 RTA_PUT(skb, IFLA_PROTINFO, 0, NULL);
3164 /* return the device flags */
3165 RTA_PUT(skb, IFLA_INET6_FLAGS, sizeof(__u32), &idev->if_flags);
3167 /* return interface cacheinfo */
3168 ci.max_reasm_len = IPV6_MAXPLEN;
3169 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3170 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3171 ci.reachable_time = idev->nd_parms->reachable_time;
3172 ci.retrans_time = idev->nd_parms->retrans_time;
3173 RTA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3175 /* return the device sysctl params */
3176 if ((array = kmalloc(DEVCONF_MAX * sizeof(*array), GFP_ATOMIC)) == NULL)
3177 goto rtattr_failure;
3178 ipv6_store_devconf(&idev->cnf, array, DEVCONF_MAX * sizeof(*array));
3179 RTA_PUT(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(*array), array);
3181 /* XXX - Statistics/MC not implemented */
3182 subattr->rta_len = skb->tail - (u8*)subattr;
3184 nlh->nlmsg_len = skb->tail - b;
3191 skb_trim(skb, b - skb->data);
3195 static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3198 int s_idx = cb->args[0];
3199 struct net_device *dev;
3200 struct inet6_dev *idev;
3202 read_lock(&dev_base_lock);
3203 for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
3206 if ((idev = in6_dev_get(dev)) == NULL)
3208 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
3209 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
3214 read_unlock(&dev_base_lock);
3220 void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3222 struct sk_buff *skb;
3224 int size = NLMSG_SPACE(sizeof(struct ifinfomsg)+128);
3226 skb = alloc_skb(size, GFP_ATOMIC);
3228 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFINFO, ENOBUFS);
3231 if (inet6_fill_ifinfo(skb, idev, current->pid, 0, event, 0) < 0) {
3233 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFINFO, EINVAL);
3236 NETLINK_CB(skb).dst_group = RTNLGRP_IPV6_IFINFO;
3237 netlink_broadcast(rtnl, skb, 0, RTNLGRP_IPV6_IFINFO, GFP_ATOMIC);
3240 static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
3241 struct prefix_info *pinfo, u32 pid, u32 seq,
3242 int event, unsigned int flags)
3244 struct prefixmsg *pmsg;
3245 struct nlmsghdr *nlh;
3246 unsigned char *b = skb->tail;
3247 struct prefix_cacheinfo ci;
3249 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*pmsg), flags);
3250 pmsg = NLMSG_DATA(nlh);
3251 pmsg->prefix_family = AF_INET6;
3252 pmsg->prefix_pad1 = 0;
3253 pmsg->prefix_pad2 = 0;
3254 pmsg->prefix_ifindex = idev->dev->ifindex;
3255 pmsg->prefix_len = pinfo->prefix_len;
3256 pmsg->prefix_type = pinfo->type;
3257 pmsg->prefix_pad3 = 0;
3259 pmsg->prefix_flags = 0;
3261 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3262 if (pinfo->autoconf)
3263 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3265 RTA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
3267 ci.preferred_time = ntohl(pinfo->prefered);
3268 ci.valid_time = ntohl(pinfo->valid);
3269 RTA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
3271 nlh->nlmsg_len = skb->tail - b;
3276 skb_trim(skb, b - skb->data);
3280 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
3281 struct prefix_info *pinfo)
3283 struct sk_buff *skb;
3284 int size = NLMSG_SPACE(sizeof(struct prefixmsg)+128);
3286 skb = alloc_skb(size, GFP_ATOMIC);
3288 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_PREFIX, ENOBUFS);
3291 if (inet6_fill_prefix(skb, idev, pinfo, current->pid, 0, event, 0) < 0) {
3293 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_PREFIX, EINVAL);
3296 NETLINK_CB(skb).dst_group = RTNLGRP_IPV6_PREFIX;
3297 netlink_broadcast(rtnl, skb, 0, RTNLGRP_IPV6_PREFIX, GFP_ATOMIC);
3300 static struct rtnetlink_link inet6_rtnetlink_table[RTM_NR_MSGTYPES] = {
3301 [RTM_GETLINK - RTM_BASE] = { .dumpit = inet6_dump_ifinfo, },
3302 [RTM_NEWADDR - RTM_BASE] = { .doit = inet6_rtm_newaddr, },
3303 [RTM_DELADDR - RTM_BASE] = { .doit = inet6_rtm_deladdr, },
3304 [RTM_GETADDR - RTM_BASE] = { .dumpit = inet6_dump_ifaddr, },
3305 [RTM_GETMULTICAST - RTM_BASE] = { .dumpit = inet6_dump_ifmcaddr, },
3306 [RTM_GETANYCAST - RTM_BASE] = { .dumpit = inet6_dump_ifacaddr, },
3307 [RTM_NEWROUTE - RTM_BASE] = { .doit = inet6_rtm_newroute, },
3308 [RTM_DELROUTE - RTM_BASE] = { .doit = inet6_rtm_delroute, },
3309 [RTM_GETROUTE - RTM_BASE] = { .doit = inet6_rtm_getroute,
3310 .dumpit = inet6_dump_fib, },
3313 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3315 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3319 dst_hold(&ifp->rt->u.dst);
3320 if (ip6_ins_rt(ifp->rt, NULL, NULL, NULL))
3321 dst_release(&ifp->rt->u.dst);
3322 if (ifp->idev->cnf.forwarding)
3323 addrconf_join_anycast(ifp);
3326 if (ifp->idev->cnf.forwarding)
3327 addrconf_leave_anycast(ifp);
3328 addrconf_leave_solict(ifp->idev, &ifp->addr);
3329 dst_hold(&ifp->rt->u.dst);
3330 if (ip6_del_rt(ifp->rt, NULL, NULL, NULL))
3331 dst_free(&ifp->rt->u.dst);
3333 dst_release(&ifp->rt->u.dst);
3338 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3340 read_lock_bh(&addrconf_lock);
3341 if (likely(ifp->idev->dead == 0))
3342 __ipv6_ifa_notify(event, ifp);
3343 read_unlock_bh(&addrconf_lock);
3346 #ifdef CONFIG_SYSCTL
3349 int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3350 void __user *buffer, size_t *lenp, loff_t *ppos)
3352 int *valp = ctl->data;
3356 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3358 if (write && valp != &ipv6_devconf_dflt.forwarding) {
3359 if (valp != &ipv6_devconf.forwarding) {
3360 if ((!*valp) ^ (!val)) {
3361 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
3364 dev_forward_change(idev);
3367 ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding;
3368 addrconf_forward_change();
3371 rt6_purge_dflt_routers();
3377 static int addrconf_sysctl_forward_strategy(ctl_table *table,
3378 int __user *name, int nlen,
3379 void __user *oldval,
3380 size_t __user *oldlenp,
3381 void __user *newval, size_t newlen,
3384 int *valp = table->data;
3387 if (!newval || !newlen)
3389 if (newlen != sizeof(int))
3391 if (get_user(new, (int __user *)newval))
3395 if (oldval && oldlenp) {
3397 if (get_user(len, oldlenp))
3400 if (len > table->maxlen)
3401 len = table->maxlen;
3402 if (copy_to_user(oldval, valp, len))
3404 if (put_user(len, oldlenp))
3409 if (valp != &ipv6_devconf_dflt.forwarding) {
3410 if (valp != &ipv6_devconf.forwarding) {
3411 struct inet6_dev *idev = (struct inet6_dev *)table->extra1;
3413 if (unlikely(idev == NULL))
3415 changed = (!*valp) ^ (!new);
3418 dev_forward_change(idev);
3421 addrconf_forward_change();
3425 rt6_purge_dflt_routers();
3432 static struct addrconf_sysctl_table
3434 struct ctl_table_header *sysctl_header;
3435 ctl_table addrconf_vars[__NET_IPV6_MAX];
3436 ctl_table addrconf_dev[2];
3437 ctl_table addrconf_conf_dir[2];
3438 ctl_table addrconf_proto_dir[2];
3439 ctl_table addrconf_root_dir[2];
3440 } addrconf_sysctl = {
3441 .sysctl_header = NULL,
3444 .ctl_name = NET_IPV6_FORWARDING,
3445 .procname = "forwarding",
3446 .data = &ipv6_devconf.forwarding,
3447 .maxlen = sizeof(int),
3449 .proc_handler = &addrconf_sysctl_forward,
3450 .strategy = &addrconf_sysctl_forward_strategy,
3453 .ctl_name = NET_IPV6_HOP_LIMIT,
3454 .procname = "hop_limit",
3455 .data = &ipv6_devconf.hop_limit,
3456 .maxlen = sizeof(int),
3458 .proc_handler = proc_dointvec,
3461 .ctl_name = NET_IPV6_MTU,
3463 .data = &ipv6_devconf.mtu6,
3464 .maxlen = sizeof(int),
3466 .proc_handler = &proc_dointvec,
3469 .ctl_name = NET_IPV6_ACCEPT_RA,
3470 .procname = "accept_ra",
3471 .data = &ipv6_devconf.accept_ra,
3472 .maxlen = sizeof(int),
3474 .proc_handler = &proc_dointvec,
3477 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
3478 .procname = "accept_redirects",
3479 .data = &ipv6_devconf.accept_redirects,
3480 .maxlen = sizeof(int),
3482 .proc_handler = &proc_dointvec,
3485 .ctl_name = NET_IPV6_AUTOCONF,
3486 .procname = "autoconf",
3487 .data = &ipv6_devconf.autoconf,
3488 .maxlen = sizeof(int),
3490 .proc_handler = &proc_dointvec,
3493 .ctl_name = NET_IPV6_DAD_TRANSMITS,
3494 .procname = "dad_transmits",
3495 .data = &ipv6_devconf.dad_transmits,
3496 .maxlen = sizeof(int),
3498 .proc_handler = &proc_dointvec,
3501 .ctl_name = NET_IPV6_RTR_SOLICITS,
3502 .procname = "router_solicitations",
3503 .data = &ipv6_devconf.rtr_solicits,
3504 .maxlen = sizeof(int),
3506 .proc_handler = &proc_dointvec,
3509 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
3510 .procname = "router_solicitation_interval",
3511 .data = &ipv6_devconf.rtr_solicit_interval,
3512 .maxlen = sizeof(int),
3514 .proc_handler = &proc_dointvec_jiffies,
3515 .strategy = &sysctl_jiffies,
3518 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
3519 .procname = "router_solicitation_delay",
3520 .data = &ipv6_devconf.rtr_solicit_delay,
3521 .maxlen = sizeof(int),
3523 .proc_handler = &proc_dointvec_jiffies,
3524 .strategy = &sysctl_jiffies,
3527 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
3528 .procname = "force_mld_version",
3529 .data = &ipv6_devconf.force_mld_version,
3530 .maxlen = sizeof(int),
3532 .proc_handler = &proc_dointvec,
3534 #ifdef CONFIG_IPV6_PRIVACY
3536 .ctl_name = NET_IPV6_USE_TEMPADDR,
3537 .procname = "use_tempaddr",
3538 .data = &ipv6_devconf.use_tempaddr,
3539 .maxlen = sizeof(int),
3541 .proc_handler = &proc_dointvec,
3544 .ctl_name = NET_IPV6_TEMP_VALID_LFT,
3545 .procname = "temp_valid_lft",
3546 .data = &ipv6_devconf.temp_valid_lft,
3547 .maxlen = sizeof(int),
3549 .proc_handler = &proc_dointvec,
3552 .ctl_name = NET_IPV6_TEMP_PREFERED_LFT,
3553 .procname = "temp_prefered_lft",
3554 .data = &ipv6_devconf.temp_prefered_lft,
3555 .maxlen = sizeof(int),
3557 .proc_handler = &proc_dointvec,
3560 .ctl_name = NET_IPV6_REGEN_MAX_RETRY,
3561 .procname = "regen_max_retry",
3562 .data = &ipv6_devconf.regen_max_retry,
3563 .maxlen = sizeof(int),
3565 .proc_handler = &proc_dointvec,
3568 .ctl_name = NET_IPV6_MAX_DESYNC_FACTOR,
3569 .procname = "max_desync_factor",
3570 .data = &ipv6_devconf.max_desync_factor,
3571 .maxlen = sizeof(int),
3573 .proc_handler = &proc_dointvec,
3577 .ctl_name = NET_IPV6_MAX_ADDRESSES,
3578 .procname = "max_addresses",
3579 .data = &ipv6_devconf.max_addresses,
3580 .maxlen = sizeof(int),
3582 .proc_handler = &proc_dointvec,
3585 .ctl_name = 0, /* sentinel */
3590 .ctl_name = NET_PROTO_CONF_ALL,
3593 .child = addrconf_sysctl.addrconf_vars,
3596 .ctl_name = 0, /* sentinel */
3599 .addrconf_conf_dir = {
3601 .ctl_name = NET_IPV6_CONF,
3604 .child = addrconf_sysctl.addrconf_dev,
3607 .ctl_name = 0, /* sentinel */
3610 .addrconf_proto_dir = {
3612 .ctl_name = NET_IPV6,
3615 .child = addrconf_sysctl.addrconf_conf_dir,
3618 .ctl_name = 0, /* sentinel */
3621 .addrconf_root_dir = {
3623 .ctl_name = CTL_NET,
3626 .child = addrconf_sysctl.addrconf_proto_dir,
3629 .ctl_name = 0, /* sentinel */
3634 static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p)
3637 struct net_device *dev = idev ? idev->dev : NULL;
3638 struct addrconf_sysctl_table *t;
3639 char *dev_name = NULL;
3641 t = kmalloc(sizeof(*t), GFP_KERNEL);
3644 memcpy(t, &addrconf_sysctl, sizeof(*t));
3645 for (i=0; t->addrconf_vars[i].data; i++) {
3646 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
3647 t->addrconf_vars[i].de = NULL;
3648 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
3651 dev_name = dev->name;
3652 t->addrconf_dev[0].ctl_name = dev->ifindex;
3654 dev_name = "default";
3655 t->addrconf_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
3659 * Make a copy of dev_name, because '.procname' is regarded as const
3660 * by sysctl and we wouldn't want anyone to change it under our feet
3661 * (see SIOCSIFNAME).
3663 dev_name = kstrdup(dev_name, GFP_KERNEL);
3667 t->addrconf_dev[0].procname = dev_name;
3669 t->addrconf_dev[0].child = t->addrconf_vars;
3670 t->addrconf_dev[0].de = NULL;
3671 t->addrconf_conf_dir[0].child = t->addrconf_dev;
3672 t->addrconf_conf_dir[0].de = NULL;
3673 t->addrconf_proto_dir[0].child = t->addrconf_conf_dir;
3674 t->addrconf_proto_dir[0].de = NULL;
3675 t->addrconf_root_dir[0].child = t->addrconf_proto_dir;
3676 t->addrconf_root_dir[0].de = NULL;
3678 t->sysctl_header = register_sysctl_table(t->addrconf_root_dir, 0);
3679 if (t->sysctl_header == NULL)
3694 static void addrconf_sysctl_unregister(struct ipv6_devconf *p)
3697 struct addrconf_sysctl_table *t = p->sysctl;
3699 unregister_sysctl_table(t->sysctl_header);
3700 kfree(t->addrconf_dev[0].procname);
3712 int register_inet6addr_notifier(struct notifier_block *nb)
3714 return notifier_chain_register(&inet6addr_chain, nb);
3717 int unregister_inet6addr_notifier(struct notifier_block *nb)
3719 return notifier_chain_unregister(&inet6addr_chain,nb);
3723 * Init / cleanup code
3726 int __init addrconf_init(void)
3730 /* The addrconf netdev notifier requires that loopback_dev
3731 * has it's ipv6 private information allocated and setup
3732 * before it can bring up and give link-local addresses
3733 * to other devices which are up.
3735 * Unfortunately, loopback_dev is not necessarily the first
3736 * entry in the global dev_base list of net devices. In fact,
3737 * it is likely to be the very last entry on that list.
3738 * So this causes the notifier registry below to try and
3739 * give link-local addresses to all devices besides loopback_dev
3740 * first, then loopback_dev, which cases all the non-loopback_dev
3741 * devices to fail to get a link-local address.
3743 * So, as a temporary fix, allocate the ipv6 structure for
3744 * loopback_dev first by hand.
3745 * Longer term, all of the dependencies ipv6 has upon the loopback
3746 * device and it being up should be removed.
3749 if (!ipv6_add_dev(&loopback_dev))
3755 ip6_null_entry.rt6i_idev = in6_dev_get(&loopback_dev);
3757 register_netdevice_notifier(&ipv6_dev_notf);
3759 #ifdef CONFIG_IPV6_PRIVACY
3760 md5_tfm = crypto_alloc_tfm("md5", 0);
3761 if (unlikely(md5_tfm == NULL))
3763 "failed to load transform for md5\n");
3767 rtnetlink_links[PF_INET6] = inet6_rtnetlink_table;
3768 #ifdef CONFIG_SYSCTL
3769 addrconf_sysctl.sysctl_header =
3770 register_sysctl_table(addrconf_sysctl.addrconf_root_dir, 0);
3771 addrconf_sysctl_register(NULL, &ipv6_devconf_dflt);
3777 void __exit addrconf_cleanup(void)
3779 struct net_device *dev;
3780 struct inet6_dev *idev;
3781 struct inet6_ifaddr *ifa;
3784 unregister_netdevice_notifier(&ipv6_dev_notf);
3786 rtnetlink_links[PF_INET6] = NULL;
3787 #ifdef CONFIG_SYSCTL
3788 addrconf_sysctl_unregister(&ipv6_devconf_dflt);
3789 addrconf_sysctl_unregister(&ipv6_devconf);
3798 for (dev=dev_base; dev; dev=dev->next) {
3799 if ((idev = __in6_dev_get(dev)) == NULL)
3801 addrconf_ifdown(dev, 1);
3803 addrconf_ifdown(&loopback_dev, 2);
3809 write_lock_bh(&addrconf_hash_lock);
3810 for (i=0; i < IN6_ADDR_HSIZE; i++) {
3811 for (ifa=inet6_addr_lst[i]; ifa; ) {
3812 struct inet6_ifaddr *bifa;
3815 ifa = ifa->lst_next;
3816 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
3817 /* Do not free it; something is wrong.
3818 Now we can investigate it with debugger.
3822 write_unlock_bh(&addrconf_hash_lock);
3824 del_timer(&addr_chk_timer);
3828 #ifdef CONFIG_IPV6_PRIVACY
3829 crypto_free_tfm(md5_tfm);
3833 #ifdef CONFIG_PROC_FS
3834 proc_net_remove("if_inet6");