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_rs_timer(unsigned long data);
141 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
142 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
144 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
145 struct prefix_info *pinfo);
146 static int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev);
148 static struct notifier_block *inet6addr_chain;
150 struct ipv6_devconf ipv6_devconf = {
152 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
153 .mtu6 = IPV6_MIN_MTU,
155 .accept_redirects = 1,
157 .force_mld_version = 0,
159 .rtr_solicits = MAX_RTR_SOLICITATIONS,
160 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
161 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
162 #ifdef CONFIG_IPV6_PRIVACY
164 .temp_valid_lft = TEMP_VALID_LIFETIME,
165 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
166 .regen_max_retry = REGEN_MAX_RETRY,
167 .max_desync_factor = MAX_DESYNC_FACTOR,
169 .max_addresses = IPV6_MAX_ADDRESSES,
172 static struct ipv6_devconf ipv6_devconf_dflt = {
174 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
175 .mtu6 = IPV6_MIN_MTU,
177 .accept_redirects = 1,
180 .rtr_solicits = MAX_RTR_SOLICITATIONS,
181 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
182 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
183 #ifdef CONFIG_IPV6_PRIVACY
185 .temp_valid_lft = TEMP_VALID_LIFETIME,
186 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
187 .regen_max_retry = REGEN_MAX_RETRY,
188 .max_desync_factor = MAX_DESYNC_FACTOR,
190 .max_addresses = IPV6_MAX_ADDRESSES,
193 /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
195 const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
197 const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
199 #define IPV6_ADDR_SCOPE_TYPE(scope) ((scope) << 16)
201 static inline unsigned ipv6_addr_scope2type(unsigned scope)
204 case IPV6_ADDR_SCOPE_NODELOCAL:
205 return (IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_NODELOCAL) |
207 case IPV6_ADDR_SCOPE_LINKLOCAL:
208 return (IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_LINKLOCAL) |
209 IPV6_ADDR_LINKLOCAL);
210 case IPV6_ADDR_SCOPE_SITELOCAL:
211 return (IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_SITELOCAL) |
212 IPV6_ADDR_SITELOCAL);
214 return IPV6_ADDR_SCOPE_TYPE(scope);
217 int __ipv6_addr_type(const struct in6_addr *addr)
221 st = addr->s6_addr32[0];
223 /* Consider all addresses with the first three bits different of
224 000 and 111 as unicasts.
226 if ((st & htonl(0xE0000000)) != htonl(0x00000000) &&
227 (st & htonl(0xE0000000)) != htonl(0xE0000000))
228 return (IPV6_ADDR_UNICAST |
229 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL));
231 if ((st & htonl(0xFF000000)) == htonl(0xFF000000)) {
233 /* addr-select 3.1 */
234 return (IPV6_ADDR_MULTICAST |
235 ipv6_addr_scope2type(IPV6_ADDR_MC_SCOPE(addr)));
238 if ((st & htonl(0xFFC00000)) == htonl(0xFE800000))
239 return (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST |
240 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_LINKLOCAL)); /* addr-select 3.1 */
241 if ((st & htonl(0xFFC00000)) == htonl(0xFEC00000))
242 return (IPV6_ADDR_SITELOCAL | IPV6_ADDR_UNICAST |
243 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_SITELOCAL)); /* addr-select 3.1 */
245 if ((addr->s6_addr32[0] | addr->s6_addr32[1]) == 0) {
246 if (addr->s6_addr32[2] == 0) {
247 if (addr->s6_addr32[3] == 0)
248 return IPV6_ADDR_ANY;
250 if (addr->s6_addr32[3] == htonl(0x00000001))
251 return (IPV6_ADDR_LOOPBACK | IPV6_ADDR_UNICAST |
252 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_LINKLOCAL)); /* addr-select 3.4 */
254 return (IPV6_ADDR_COMPATv4 | IPV6_ADDR_UNICAST |
255 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.3 */
258 if (addr->s6_addr32[2] == htonl(0x0000ffff))
259 return (IPV6_ADDR_MAPPED |
260 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.3 */
263 return (IPV6_ADDR_RESERVED |
264 IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.4 */
267 static void addrconf_del_timer(struct inet6_ifaddr *ifp)
269 if (del_timer(&ifp->timer))
273 enum addrconf_timer_t
280 static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
281 enum addrconf_timer_t what,
284 if (!del_timer(&ifp->timer))
289 ifp->timer.function = addrconf_dad_timer;
292 ifp->timer.function = addrconf_rs_timer;
296 ifp->timer.expires = jiffies + when;
297 add_timer(&ifp->timer);
300 /* Nobody refers to this device, we may destroy it. */
302 void in6_dev_finish_destroy(struct inet6_dev *idev)
304 struct net_device *dev = idev->dev;
305 BUG_TRAP(idev->addr_list==NULL);
306 BUG_TRAP(idev->mc_list==NULL);
307 #ifdef NET_REFCNT_DEBUG
308 printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
312 printk("Freeing alive inet6 device %p\n", idev);
315 snmp6_free_dev(idev);
319 static struct inet6_dev * ipv6_add_dev(struct net_device *dev)
321 struct inet6_dev *ndev;
325 if (dev->mtu < IPV6_MIN_MTU)
328 ndev = kmalloc(sizeof(struct inet6_dev), GFP_KERNEL);
331 memset(ndev, 0, sizeof(struct inet6_dev));
333 rwlock_init(&ndev->lock);
335 memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf));
336 ndev->cnf.mtu6 = dev->mtu;
337 ndev->cnf.sysctl = NULL;
338 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
339 if (ndev->nd_parms == NULL) {
343 /* We refer to the device */
346 if (snmp6_alloc_dev(ndev) < 0) {
348 "%s(): cannot allocate memory for statistics; dev=%s.\n",
349 __FUNCTION__, dev->name));
350 neigh_parms_release(&nd_tbl, ndev->nd_parms);
352 in6_dev_finish_destroy(ndev);
356 if (snmp6_register_dev(ndev) < 0) {
358 "%s(): cannot create /proc/net/dev_snmp6/%s\n",
359 __FUNCTION__, dev->name));
360 neigh_parms_release(&nd_tbl, ndev->nd_parms);
362 in6_dev_finish_destroy(ndev);
366 /* One reference from device. We must do this before
367 * we invoke __ipv6_regen_rndid().
371 #ifdef CONFIG_IPV6_PRIVACY
372 get_random_bytes(ndev->rndid, sizeof(ndev->rndid));
373 get_random_bytes(ndev->entropy, sizeof(ndev->entropy));
374 init_timer(&ndev->regen_timer);
375 ndev->regen_timer.function = ipv6_regen_rndid;
376 ndev->regen_timer.data = (unsigned long) ndev;
377 if ((dev->flags&IFF_LOOPBACK) ||
378 dev->type == ARPHRD_TUNNEL ||
379 dev->type == ARPHRD_NONE ||
380 dev->type == ARPHRD_SIT) {
382 "Disabled Privacy Extensions on device %p(%s)\n",
384 ndev->cnf.use_tempaddr = -1;
387 ipv6_regen_rndid((unsigned long) ndev);
391 write_lock_bh(&addrconf_lock);
393 write_unlock_bh(&addrconf_lock);
395 ipv6_mc_init_dev(ndev);
396 ndev->tstamp = jiffies;
398 neigh_sysctl_register(dev, ndev->nd_parms, NET_IPV6,
399 NET_IPV6_NEIGH, "ipv6",
400 &ndisc_ifinfo_sysctl_change,
402 addrconf_sysctl_register(ndev, &ndev->cnf);
408 static struct inet6_dev * ipv6_find_idev(struct net_device *dev)
410 struct inet6_dev *idev;
414 if ((idev = __in6_dev_get(dev)) == NULL) {
415 if ((idev = ipv6_add_dev(dev)) == NULL)
418 if (dev->flags&IFF_UP)
424 static void dev_forward_change(struct inet6_dev *idev)
426 struct net_device *dev;
427 struct inet6_ifaddr *ifa;
428 struct in6_addr addr;
433 if (dev && (dev->flags & IFF_MULTICAST)) {
434 ipv6_addr_all_routers(&addr);
436 if (idev->cnf.forwarding)
437 ipv6_dev_mc_inc(dev, &addr);
439 ipv6_dev_mc_dec(dev, &addr);
441 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
442 if (idev->cnf.forwarding)
443 addrconf_join_anycast(ifa);
445 addrconf_leave_anycast(ifa);
450 static void addrconf_forward_change(void)
452 struct net_device *dev;
453 struct inet6_dev *idev;
455 read_lock(&dev_base_lock);
456 for (dev=dev_base; dev; dev=dev->next) {
457 read_lock(&addrconf_lock);
458 idev = __in6_dev_get(dev);
460 int changed = (!idev->cnf.forwarding) ^ (!ipv6_devconf.forwarding);
461 idev->cnf.forwarding = ipv6_devconf.forwarding;
463 dev_forward_change(idev);
465 read_unlock(&addrconf_lock);
467 read_unlock(&dev_base_lock);
471 /* Nobody refers to this ifaddr, destroy it */
473 void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
475 BUG_TRAP(ifp->if_next==NULL);
476 BUG_TRAP(ifp->lst_next==NULL);
477 #ifdef NET_REFCNT_DEBUG
478 printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
481 in6_dev_put(ifp->idev);
483 if (del_timer(&ifp->timer))
484 printk("Timer is still running, when freeing ifa=%p\n", ifp);
487 printk("Freeing alive inet6 address %p\n", ifp);
490 dst_release(&ifp->rt->u.dst);
495 /* On success it returns ifp with increased reference count */
497 static struct inet6_ifaddr *
498 ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
499 int scope, u32 flags)
501 struct inet6_ifaddr *ifa = NULL;
506 read_lock_bh(&addrconf_lock);
508 err = -ENODEV; /*XXX*/
512 write_lock(&addrconf_hash_lock);
514 /* Ignore adding duplicate addresses on an interface */
515 if (ipv6_chk_same_addr(addr, idev->dev)) {
516 ADBG(("ipv6_add_addr: already assigned\n"));
521 ifa = kmalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
524 ADBG(("ipv6_add_addr: malloc failed\n"));
529 rt = addrconf_dst_alloc(idev, addr, 0);
535 memset(ifa, 0, sizeof(struct inet6_ifaddr));
536 ipv6_addr_copy(&ifa->addr, addr);
538 spin_lock_init(&ifa->lock);
539 init_timer(&ifa->timer);
540 ifa->timer.data = (unsigned long) ifa;
542 ifa->prefix_len = pfxlen;
543 ifa->flags = flags | IFA_F_TENTATIVE;
544 ifa->cstamp = ifa->tstamp = jiffies;
551 /* Add to big hash table */
552 hash = ipv6_addr_hash(addr);
554 ifa->lst_next = inet6_addr_lst[hash];
555 inet6_addr_lst[hash] = ifa;
557 write_unlock(&addrconf_hash_lock);
559 write_lock(&idev->lock);
560 /* Add to inet6_dev unicast addr list. */
561 ifa->if_next = idev->addr_list;
562 idev->addr_list = ifa;
564 #ifdef CONFIG_IPV6_PRIVACY
565 if (ifa->flags&IFA_F_TEMPORARY) {
566 ifa->tmp_next = idev->tempaddr_list;
567 idev->tempaddr_list = ifa;
575 write_unlock(&idev->lock);
577 read_unlock_bh(&addrconf_lock);
579 if (likely(err == 0))
580 notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
588 write_unlock(&addrconf_hash_lock);
592 /* This function wants to get referenced ifp and releases it before return */
594 static void ipv6_del_addr(struct inet6_ifaddr *ifp)
596 struct inet6_ifaddr *ifa, **ifap;
597 struct inet6_dev *idev = ifp->idev;
599 int deleted = 0, onlink = 0;
600 unsigned long expires = jiffies;
602 hash = ipv6_addr_hash(&ifp->addr);
606 write_lock_bh(&addrconf_hash_lock);
607 for (ifap = &inet6_addr_lst[hash]; (ifa=*ifap) != NULL;
608 ifap = &ifa->lst_next) {
610 *ifap = ifa->lst_next;
612 ifa->lst_next = NULL;
616 write_unlock_bh(&addrconf_hash_lock);
618 write_lock_bh(&idev->lock);
619 #ifdef CONFIG_IPV6_PRIVACY
620 if (ifp->flags&IFA_F_TEMPORARY) {
621 for (ifap = &idev->tempaddr_list; (ifa=*ifap) != NULL;
622 ifap = &ifa->tmp_next) {
624 *ifap = ifa->tmp_next;
626 in6_ifa_put(ifp->ifpub);
630 ifa->tmp_next = NULL;
637 for (ifap = &idev->addr_list; (ifa=*ifap) != NULL;
638 ifap = &ifa->if_next) {
640 *ifap = ifa->if_next;
643 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
646 } else if (ifp->flags & IFA_F_PERMANENT) {
647 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
649 if (ifa->flags & IFA_F_PERMANENT) {
654 unsigned long lifetime;
659 spin_lock(&ifa->lock);
660 lifetime = min_t(unsigned long,
661 ifa->valid_lft, 0x7fffffffUL/HZ);
662 if (time_before(expires,
663 ifa->tstamp + lifetime * HZ))
664 expires = ifa->tstamp + lifetime * HZ;
665 spin_unlock(&ifa->lock);
670 write_unlock_bh(&idev->lock);
672 ipv6_ifa_notify(RTM_DELADDR, ifp);
674 notifier_call_chain(&inet6addr_chain,NETDEV_DOWN,ifp);
676 addrconf_del_timer(ifp);
679 * Purge or update corresponding prefix
681 * 1) we don't purge prefix here if address was not permanent.
682 * prefix is managed by its own lifetime.
683 * 2) if there're no addresses, delete prefix.
684 * 3) if there're still other permanent address(es),
685 * corresponding prefix is still permanent.
686 * 4) otherwise, update prefix lifetime to the
687 * longest valid lifetime among the corresponding
688 * addresses on the device.
689 * Note: subsequent RA will update lifetime.
693 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
694 struct in6_addr prefix;
697 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
698 rt = rt6_lookup(&prefix, NULL, ifp->idev->dev->ifindex, 1);
700 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
702 ip6_del_rt(rt, NULL, NULL, NULL);
704 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
705 rt->rt6i_expires = expires;
706 rt->rt6i_flags |= RTF_EXPIRES;
709 dst_release(&rt->u.dst);
715 #ifdef CONFIG_IPV6_PRIVACY
716 static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
718 struct inet6_dev *idev = ifp->idev;
719 struct in6_addr addr, *tmpaddr;
720 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
725 write_lock(&idev->lock);
727 spin_lock_bh(&ift->lock);
728 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
729 spin_unlock_bh(&ift->lock);
736 if (idev->cnf.use_tempaddr <= 0) {
737 write_unlock(&idev->lock);
739 "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
744 spin_lock_bh(&ifp->lock);
745 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
746 idev->cnf.use_tempaddr = -1; /*XXX*/
747 spin_unlock_bh(&ifp->lock);
748 write_unlock(&idev->lock);
750 "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
756 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
757 if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
758 spin_unlock_bh(&ifp->lock);
759 write_unlock(&idev->lock);
761 "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
767 memcpy(&addr.s6_addr[8], idev->rndid, 8);
768 tmp_valid_lft = min_t(__u32,
770 idev->cnf.temp_valid_lft);
771 tmp_prefered_lft = min_t(__u32,
773 idev->cnf.temp_prefered_lft - desync_factor / HZ);
774 tmp_plen = ifp->prefix_len;
775 max_addresses = idev->cnf.max_addresses;
776 tmp_cstamp = ifp->cstamp;
777 tmp_tstamp = ifp->tstamp;
778 spin_unlock_bh(&ifp->lock);
780 write_unlock(&idev->lock);
781 ift = !max_addresses ||
782 ipv6_count_addresses(idev) < max_addresses ?
783 ipv6_add_addr(idev, &addr, tmp_plen,
784 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK, IFA_F_TEMPORARY) : NULL;
785 if (!ift || IS_ERR(ift)) {
789 "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
791 write_lock(&idev->lock);
795 spin_lock_bh(&ift->lock);
797 ift->valid_lft = tmp_valid_lft;
798 ift->prefered_lft = tmp_prefered_lft;
799 ift->cstamp = tmp_cstamp;
800 ift->tstamp = tmp_tstamp;
801 spin_unlock_bh(&ift->lock);
803 addrconf_dad_start(ift, 0);
812 * Choose an appropriate source address (RFC3484)
814 struct ipv6_saddr_score {
822 #define IPV6_SADDR_SCORE_LOCAL 0x0001
823 #define IPV6_SADDR_SCORE_PREFERRED 0x0004
824 #define IPV6_SADDR_SCORE_HOA 0x0008
825 #define IPV6_SADDR_SCORE_OIF 0x0010
826 #define IPV6_SADDR_SCORE_LABEL 0x0020
827 #define IPV6_SADDR_SCORE_PRIVACY 0x0040
829 static int inline ipv6_saddr_preferred(int type)
831 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|
832 IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED))
837 /* static matching label */
838 static int inline ipv6_saddr_label(const struct in6_addr *addr, int type)
841 * prefix (longest match) label
842 * -----------------------------
849 if (type & IPV6_ADDR_LOOPBACK)
851 else if (type & IPV6_ADDR_COMPATv4)
853 else if (type & IPV6_ADDR_MAPPED)
855 else if (addr->s6_addr16[0] == htons(0x2002))
860 int ipv6_dev_get_saddr(struct net_device *daddr_dev,
861 struct in6_addr *daddr, struct in6_addr *saddr)
863 struct ipv6_saddr_score hiscore;
864 struct inet6_ifaddr *ifa_result = NULL;
865 int daddr_type = __ipv6_addr_type(daddr);
866 int daddr_scope = __ipv6_addr_src_scope(daddr_type);
867 u32 daddr_label = ipv6_saddr_label(daddr, daddr_type);
868 struct net_device *dev;
870 memset(&hiscore, 0, sizeof(hiscore));
872 read_lock(&dev_base_lock);
873 read_lock(&addrconf_lock);
875 for (dev = dev_base; dev; dev=dev->next) {
876 struct inet6_dev *idev;
877 struct inet6_ifaddr *ifa;
879 /* Rule 0: Candidate Source Address (section 4)
880 * - multicast and link-local destination address,
881 * the set of candidate source address MUST only
882 * include addresses assigned to interfaces
883 * belonging to the same link as the outgoing
885 * (- For site-local destination addresses, the
886 * set of candidate source addresses MUST only
887 * include addresses assigned to interfaces
888 * belonging to the same site as the outgoing
891 if ((daddr_type & IPV6_ADDR_MULTICAST ||
892 daddr_scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
893 daddr_dev && dev != daddr_dev)
896 idev = __in6_dev_get(dev);
900 read_lock_bh(&idev->lock);
901 for (ifa = idev->addr_list; ifa; ifa = ifa->if_next) {
902 struct ipv6_saddr_score score;
904 score.addr_type = __ipv6_addr_type(&ifa->addr);
906 /* Rule 0: Candidate Source Address (section 4)
907 * - In any case, anycast addresses, multicast
908 * addresses, and the unspecified address MUST
909 * NOT be included in a candidate set.
911 if (unlikely(score.addr_type == IPV6_ADDR_ANY ||
912 score.addr_type & IPV6_ADDR_MULTICAST)) {
913 LIMIT_NETDEBUG(KERN_DEBUG
914 "ADDRCONF: unspecified / multicast address"
915 "assigned as unicast address on %s",
925 if (ifa_result == NULL) {
926 /* record it if the first available entry */
930 /* Rule 1: Prefer same address */
931 if (hiscore.rule < 1) {
932 if (ipv6_addr_equal(&ifa_result->addr, daddr))
933 hiscore.attrs |= IPV6_SADDR_SCORE_LOCAL;
936 if (ipv6_addr_equal(&ifa->addr, daddr)) {
937 score.attrs |= IPV6_SADDR_SCORE_LOCAL;
938 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)) {
943 if (hiscore.attrs & IPV6_SADDR_SCORE_LOCAL)
947 /* Rule 2: Prefer appropriate scope */
948 if (hiscore.rule < 2) {
949 hiscore.scope = __ipv6_addr_src_scope(hiscore.addr_type);
952 score.scope = __ipv6_addr_src_scope(score.addr_type);
953 if (hiscore.scope < score.scope) {
954 if (hiscore.scope < daddr_scope) {
959 } else if (score.scope < hiscore.scope) {
960 if (score.scope < daddr_scope)
968 /* Rule 3: Avoid deprecated address */
969 if (hiscore.rule < 3) {
970 if (ipv6_saddr_preferred(hiscore.addr_type) ||
971 !(ifa_result->flags & IFA_F_DEPRECATED))
972 hiscore.attrs |= IPV6_SADDR_SCORE_PREFERRED;
975 if (ipv6_saddr_preferred(score.addr_type) ||
976 !(ifa->flags & IFA_F_DEPRECATED)) {
977 score.attrs |= IPV6_SADDR_SCORE_PREFERRED;
978 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)) {
983 if (hiscore.attrs & IPV6_SADDR_SCORE_PREFERRED)
987 /* Rule 4: Prefer home address -- not implemented yet */
989 /* Rule 5: Prefer outgoing interface */
990 if (hiscore.rule < 5) {
991 if (daddr_dev == NULL ||
992 daddr_dev == ifa_result->idev->dev)
993 hiscore.attrs |= IPV6_SADDR_SCORE_OIF;
996 if (daddr_dev == NULL ||
997 daddr_dev == ifa->idev->dev) {
998 score.attrs |= IPV6_SADDR_SCORE_OIF;
999 if (!(hiscore.attrs & IPV6_SADDR_SCORE_OIF)) {
1004 if (hiscore.attrs & IPV6_SADDR_SCORE_OIF)
1008 /* Rule 6: Prefer matching label */
1009 if (hiscore.rule < 6) {
1010 if (ipv6_saddr_label(&ifa_result->addr, hiscore.addr_type) == daddr_label)
1011 hiscore.attrs |= IPV6_SADDR_SCORE_LABEL;
1014 if (ipv6_saddr_label(&ifa->addr, score.addr_type) == daddr_label) {
1015 score.attrs |= IPV6_SADDR_SCORE_LABEL;
1016 if (!(hiscore.attrs & IPV6_SADDR_SCORE_LABEL)) {
1021 if (hiscore.attrs & IPV6_SADDR_SCORE_LABEL)
1025 #ifdef CONFIG_IPV6_PRIVACY
1026 /* Rule 7: Prefer public address
1027 * Note: prefer temprary address if use_tempaddr >= 2
1029 if (hiscore.rule < 7) {
1030 if ((!(ifa_result->flags & IFA_F_TEMPORARY)) ^
1031 (ifa_result->idev->cnf.use_tempaddr >= 2))
1032 hiscore.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1035 if ((!(ifa->flags & IFA_F_TEMPORARY)) ^
1036 (ifa->idev->cnf.use_tempaddr >= 2)) {
1037 score.attrs |= IPV6_SADDR_SCORE_PRIVACY;
1038 if (!(hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)) {
1043 if (hiscore.attrs & IPV6_SADDR_SCORE_PRIVACY)
1047 /* Rule 8: Use longest matching prefix */
1048 if (hiscore.rule < 8)
1049 hiscore.matchlen = ipv6_addr_diff(&ifa_result->addr, daddr);
1051 score.matchlen = ipv6_addr_diff(&ifa->addr, daddr);
1052 if (score.matchlen > hiscore.matchlen) {
1057 else if (score.matchlen < hiscore.matchlen)
1061 /* Final Rule: choose first available one */
1065 in6_ifa_put(ifa_result);
1070 read_unlock_bh(&idev->lock);
1072 read_unlock(&addrconf_lock);
1073 read_unlock(&dev_base_lock);
1076 return -EADDRNOTAVAIL;
1078 ipv6_addr_copy(saddr, &ifa_result->addr);
1079 in6_ifa_put(ifa_result);
1084 int ipv6_get_saddr(struct dst_entry *dst,
1085 struct in6_addr *daddr, struct in6_addr *saddr)
1087 return ipv6_dev_get_saddr(dst ? ((struct rt6_info *)dst)->rt6i_idev->dev : NULL, daddr, saddr);
1091 int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr)
1093 struct inet6_dev *idev;
1094 int err = -EADDRNOTAVAIL;
1096 read_lock(&addrconf_lock);
1097 if ((idev = __in6_dev_get(dev)) != NULL) {
1098 struct inet6_ifaddr *ifp;
1100 read_lock_bh(&idev->lock);
1101 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1102 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1103 ipv6_addr_copy(addr, &ifp->addr);
1108 read_unlock_bh(&idev->lock);
1110 read_unlock(&addrconf_lock);
1114 static int ipv6_count_addresses(struct inet6_dev *idev)
1117 struct inet6_ifaddr *ifp;
1119 read_lock_bh(&idev->lock);
1120 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next)
1122 read_unlock_bh(&idev->lock);
1126 int ipv6_chk_addr(struct in6_addr *addr, struct net_device *dev, int strict)
1128 struct inet6_ifaddr * ifp;
1129 u8 hash = ipv6_addr_hash(addr);
1131 read_lock_bh(&addrconf_hash_lock);
1132 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1133 if (ipv6_addr_equal(&ifp->addr, addr) &&
1134 !(ifp->flags&IFA_F_TENTATIVE)) {
1135 if (dev == NULL || ifp->idev->dev == dev ||
1136 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))
1140 read_unlock_bh(&addrconf_hash_lock);
1145 int ipv6_chk_same_addr(const struct in6_addr *addr, struct net_device *dev)
1147 struct inet6_ifaddr * ifp;
1148 u8 hash = ipv6_addr_hash(addr);
1150 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1151 if (ipv6_addr_equal(&ifp->addr, addr)) {
1152 if (dev == NULL || ifp->idev->dev == dev)
1159 struct inet6_ifaddr * ipv6_get_ifaddr(struct in6_addr *addr, struct net_device *dev, int strict)
1161 struct inet6_ifaddr * ifp;
1162 u8 hash = ipv6_addr_hash(addr);
1164 read_lock_bh(&addrconf_hash_lock);
1165 for(ifp = inet6_addr_lst[hash]; ifp; ifp=ifp->lst_next) {
1166 if (ipv6_addr_equal(&ifp->addr, addr)) {
1167 if (dev == NULL || ifp->idev->dev == dev ||
1168 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1174 read_unlock_bh(&addrconf_hash_lock);
1179 int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
1181 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
1182 const struct in6_addr *sk2_rcv_saddr6 = tcp_v6_rcv_saddr(sk2);
1183 u32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr;
1184 u32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
1185 int sk_ipv6only = ipv6_only_sock(sk);
1186 int sk2_ipv6only = inet_v6_ipv6only(sk2);
1187 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
1188 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
1190 if (!sk2_rcv_saddr && !sk_ipv6only)
1193 if (addr_type2 == IPV6_ADDR_ANY &&
1194 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
1197 if (addr_type == IPV6_ADDR_ANY &&
1198 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
1201 if (sk2_rcv_saddr6 &&
1202 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
1205 if (addr_type == IPV6_ADDR_MAPPED &&
1207 (!sk2_rcv_saddr || !sk_rcv_saddr || sk_rcv_saddr == sk2_rcv_saddr))
1213 /* Gets referenced address, destroys ifaddr */
1215 void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1217 if (net_ratelimit())
1218 printk(KERN_INFO "%s: duplicate address detected!\n", ifp->idev->dev->name);
1219 if (ifp->flags&IFA_F_PERMANENT) {
1220 spin_lock_bh(&ifp->lock);
1221 addrconf_del_timer(ifp);
1222 ifp->flags |= IFA_F_TENTATIVE;
1223 spin_unlock_bh(&ifp->lock);
1225 #ifdef CONFIG_IPV6_PRIVACY
1226 } else if (ifp->flags&IFA_F_TEMPORARY) {
1227 struct inet6_ifaddr *ifpub;
1228 spin_lock_bh(&ifp->lock);
1231 in6_ifa_hold(ifpub);
1232 spin_unlock_bh(&ifp->lock);
1233 ipv6_create_tempaddr(ifpub, ifp);
1236 spin_unlock_bh(&ifp->lock);
1245 /* Join to solicited addr multicast group. */
1247 void addrconf_join_solict(struct net_device *dev, struct in6_addr *addr)
1249 struct in6_addr maddr;
1251 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1254 addrconf_addr_solict_mult(addr, &maddr);
1255 ipv6_dev_mc_inc(dev, &maddr);
1258 void addrconf_leave_solict(struct inet6_dev *idev, struct in6_addr *addr)
1260 struct in6_addr maddr;
1262 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1265 addrconf_addr_solict_mult(addr, &maddr);
1266 __ipv6_dev_mc_dec(idev, &maddr);
1269 static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
1271 struct in6_addr addr;
1272 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1273 if (ipv6_addr_any(&addr))
1275 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1278 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
1280 struct in6_addr addr;
1281 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1282 if (ipv6_addr_any(&addr))
1284 __ipv6_dev_ac_dec(ifp->idev, &addr);
1287 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1289 switch (dev->type) {
1292 case ARPHRD_IEEE802_TR:
1293 if (dev->addr_len != ETH_ALEN)
1295 memcpy(eui, dev->dev_addr, 3);
1296 memcpy(eui + 5, dev->dev_addr + 3, 3);
1299 * The zSeries OSA network cards can be shared among various
1300 * OS instances, but the OSA cards have only one MAC address.
1301 * This leads to duplicate address conflicts in conjunction
1302 * with IPv6 if more than one instance uses the same card.
1304 * The driver for these cards can deliver a unique 16-bit
1305 * identifier for each instance sharing the same card. It is
1306 * placed instead of 0xFFFE in the interface identifier. The
1307 * "u" bit of the interface identifier is not inverted in this
1308 * case. Hence the resulting interface identifier has local
1309 * scope according to RFC2373.
1312 eui[3] = (dev->dev_id >> 8) & 0xFF;
1313 eui[4] = dev->dev_id & 0xFF;
1321 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1322 if (dev->addr_len != ARCNET_ALEN)
1325 eui[7] = *(u8*)dev->dev_addr;
1327 case ARPHRD_INFINIBAND:
1328 if (dev->addr_len != INFINIBAND_ALEN)
1330 memcpy(eui, dev->dev_addr + 12, 8);
1337 static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1340 struct inet6_ifaddr *ifp;
1342 read_lock_bh(&idev->lock);
1343 for (ifp=idev->addr_list; ifp; ifp=ifp->if_next) {
1344 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1345 memcpy(eui, ifp->addr.s6_addr+8, 8);
1350 read_unlock_bh(&idev->lock);
1354 #ifdef CONFIG_IPV6_PRIVACY
1355 /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1356 static int __ipv6_regen_rndid(struct inet6_dev *idev)
1358 struct net_device *dev;
1359 struct scatterlist sg[2];
1361 sg_set_buf(&sg[0], idev->entropy, 8);
1362 sg_set_buf(&sg[1], idev->work_eui64, 8);
1366 if (ipv6_generate_eui64(idev->work_eui64, dev)) {
1368 "__ipv6_regen_rndid(idev=%p): cannot get EUI64 identifier; use random bytes.\n",
1370 get_random_bytes(idev->work_eui64, sizeof(idev->work_eui64));
1373 spin_lock(&md5_tfm_lock);
1374 if (unlikely(md5_tfm == NULL)) {
1375 spin_unlock(&md5_tfm_lock);
1378 crypto_digest_init(md5_tfm);
1379 crypto_digest_update(md5_tfm, sg, 2);
1380 crypto_digest_final(md5_tfm, idev->work_digest);
1381 spin_unlock(&md5_tfm_lock);
1383 memcpy(idev->rndid, &idev->work_digest[0], 8);
1384 idev->rndid[0] &= ~0x02;
1385 memcpy(idev->entropy, &idev->work_digest[8], 8);
1388 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1389 * check if generated address is not inappropriate
1391 * - Reserved subnet anycast (RFC 2526)
1392 * 11111101 11....11 1xxxxxxx
1393 * - ISATAP (draft-ietf-ngtrans-isatap-13.txt) 5.1
1394 * 00-00-5E-FE-xx-xx-xx-xx
1396 * - XXX: already assigned to an address on the device
1398 if (idev->rndid[0] == 0xfd &&
1399 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1400 (idev->rndid[7]&0x80))
1402 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1403 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1405 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1412 static void ipv6_regen_rndid(unsigned long data)
1414 struct inet6_dev *idev = (struct inet6_dev *) data;
1415 unsigned long expires;
1417 read_lock_bh(&addrconf_lock);
1418 write_lock_bh(&idev->lock);
1423 if (__ipv6_regen_rndid(idev) < 0)
1427 idev->cnf.temp_prefered_lft * HZ -
1428 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - desync_factor;
1429 if (time_before(expires, jiffies)) {
1431 "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
1436 if (!mod_timer(&idev->regen_timer, expires))
1440 write_unlock_bh(&idev->lock);
1441 read_unlock_bh(&addrconf_lock);
1445 static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) {
1448 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1449 ret = __ipv6_regen_rndid(idev);
1459 addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
1460 unsigned long expires, u32 flags)
1462 struct in6_rtmsg rtmsg;
1464 memset(&rtmsg, 0, sizeof(rtmsg));
1465 ipv6_addr_copy(&rtmsg.rtmsg_dst, pfx);
1466 rtmsg.rtmsg_dst_len = plen;
1467 rtmsg.rtmsg_metric = IP6_RT_PRIO_ADDRCONF;
1468 rtmsg.rtmsg_ifindex = dev->ifindex;
1469 rtmsg.rtmsg_info = expires;
1470 rtmsg.rtmsg_flags = RTF_UP|flags;
1471 rtmsg.rtmsg_type = RTMSG_NEWROUTE;
1473 /* Prevent useless cloning on PtP SIT.
1474 This thing is done here expecting that the whole
1475 class of non-broadcast devices need not cloning.
1477 if (dev->type == ARPHRD_SIT && (dev->flags&IFF_POINTOPOINT))
1478 rtmsg.rtmsg_flags |= RTF_NONEXTHOP;
1480 ip6_route_add(&rtmsg, NULL, NULL, NULL);
1483 /* Create "default" multicast route to the interface */
1485 static void addrconf_add_mroute(struct net_device *dev)
1487 struct in6_rtmsg rtmsg;
1489 memset(&rtmsg, 0, sizeof(rtmsg));
1490 ipv6_addr_set(&rtmsg.rtmsg_dst,
1491 htonl(0xFF000000), 0, 0, 0);
1492 rtmsg.rtmsg_dst_len = 8;
1493 rtmsg.rtmsg_metric = IP6_RT_PRIO_ADDRCONF;
1494 rtmsg.rtmsg_ifindex = dev->ifindex;
1495 rtmsg.rtmsg_flags = RTF_UP;
1496 rtmsg.rtmsg_type = RTMSG_NEWROUTE;
1497 ip6_route_add(&rtmsg, NULL, NULL, NULL);
1500 static void sit_route_add(struct net_device *dev)
1502 struct in6_rtmsg rtmsg;
1504 memset(&rtmsg, 0, sizeof(rtmsg));
1506 rtmsg.rtmsg_type = RTMSG_NEWROUTE;
1507 rtmsg.rtmsg_metric = IP6_RT_PRIO_ADDRCONF;
1509 /* prefix length - 96 bits "::d.d.d.d" */
1510 rtmsg.rtmsg_dst_len = 96;
1511 rtmsg.rtmsg_flags = RTF_UP|RTF_NONEXTHOP;
1512 rtmsg.rtmsg_ifindex = dev->ifindex;
1514 ip6_route_add(&rtmsg, NULL, NULL, NULL);
1517 static void addrconf_add_lroute(struct net_device *dev)
1519 struct in6_addr addr;
1521 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
1522 addrconf_prefix_route(&addr, 64, dev, 0, 0);
1525 static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1527 struct inet6_dev *idev;
1531 if ((idev = ipv6_find_idev(dev)) == NULL)
1534 /* Add default multicast route */
1535 addrconf_add_mroute(dev);
1537 /* Add link local route */
1538 addrconf_add_lroute(dev);
1542 void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
1544 struct prefix_info *pinfo;
1548 unsigned long rt_expires;
1549 struct inet6_dev *in6_dev;
1551 pinfo = (struct prefix_info *) opt;
1553 if (len < sizeof(struct prefix_info)) {
1554 ADBG(("addrconf: prefix option too short\n"));
1559 * Validation checks ([ADDRCONF], page 19)
1562 addr_type = ipv6_addr_type(&pinfo->prefix);
1564 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1567 valid_lft = ntohl(pinfo->valid);
1568 prefered_lft = ntohl(pinfo->prefered);
1570 if (prefered_lft > valid_lft) {
1571 if (net_ratelimit())
1572 printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
1576 in6_dev = in6_dev_get(dev);
1578 if (in6_dev == NULL) {
1579 if (net_ratelimit())
1580 printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
1585 * Two things going on here:
1586 * 1) Add routes for on-link prefixes
1587 * 2) Configure prefixes with the auto flag set
1590 /* Avoid arithmetic overflow. Really, we could
1591 save rt_expires in seconds, likely valid_lft,
1592 but it would require division in fib gc, that it
1595 if (valid_lft >= 0x7FFFFFFF/HZ)
1598 rt_expires = jiffies + valid_lft * HZ;
1600 if (pinfo->onlink) {
1601 struct rt6_info *rt;
1602 rt = rt6_lookup(&pinfo->prefix, NULL, dev->ifindex, 1);
1604 if (rt && ((rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0)) {
1605 if (rt->rt6i_flags&RTF_EXPIRES) {
1606 if (valid_lft == 0) {
1607 ip6_del_rt(rt, NULL, NULL, NULL);
1610 rt->rt6i_expires = rt_expires;
1613 } else if (valid_lft) {
1614 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
1615 dev, rt_expires, RTF_ADDRCONF|RTF_EXPIRES|RTF_PREFIX_RT);
1618 dst_release(&rt->u.dst);
1621 /* Try to figure out our local address for this prefix */
1623 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
1624 struct inet6_ifaddr * ifp;
1625 struct in6_addr addr;
1626 int create = 0, update_lft = 0;
1628 if (pinfo->prefix_len == 64) {
1629 memcpy(&addr, &pinfo->prefix, 8);
1630 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1631 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1632 in6_dev_put(in6_dev);
1637 if (net_ratelimit())
1638 printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
1640 in6_dev_put(in6_dev);
1645 ifp = ipv6_get_ifaddr(&addr, dev, 1);
1647 if (ifp == NULL && valid_lft) {
1648 int max_addresses = in6_dev->cnf.max_addresses;
1650 /* Do not allow to create too much of autoconfigured
1651 * addresses; this would be too easy way to crash kernel.
1653 if (!max_addresses ||
1654 ipv6_count_addresses(in6_dev) < max_addresses)
1655 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
1656 addr_type&IPV6_ADDR_SCOPE_MASK, 0);
1658 if (!ifp || IS_ERR(ifp)) {
1659 in6_dev_put(in6_dev);
1663 update_lft = create = 1;
1664 ifp->cstamp = jiffies;
1665 addrconf_dad_start(ifp, RTF_ADDRCONF|RTF_PREFIX_RT);
1671 #ifdef CONFIG_IPV6_PRIVACY
1672 struct inet6_ifaddr *ift;
1676 /* update lifetime (RFC2462 5.5.3 e) */
1677 spin_lock(&ifp->lock);
1679 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
1680 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
1683 if (!update_lft && stored_lft) {
1684 if (valid_lft > MIN_VALID_LIFETIME ||
1685 valid_lft > stored_lft)
1687 else if (stored_lft <= MIN_VALID_LIFETIME) {
1688 /* valid_lft <= stored_lft is always true */
1692 valid_lft = MIN_VALID_LIFETIME;
1693 if (valid_lft < prefered_lft)
1694 prefered_lft = valid_lft;
1700 ifp->valid_lft = valid_lft;
1701 ifp->prefered_lft = prefered_lft;
1704 ifp->flags &= ~IFA_F_DEPRECATED;
1705 spin_unlock(&ifp->lock);
1707 if (!(flags&IFA_F_TENTATIVE))
1708 ipv6_ifa_notify(0, ifp);
1710 spin_unlock(&ifp->lock);
1712 #ifdef CONFIG_IPV6_PRIVACY
1713 read_lock_bh(&in6_dev->lock);
1714 /* update all temporary addresses in the list */
1715 for (ift=in6_dev->tempaddr_list; ift; ift=ift->tmp_next) {
1717 * When adjusting the lifetimes of an existing
1718 * temporary address, only lower the lifetimes.
1719 * Implementations must not increase the
1720 * lifetimes of an existing temporary address
1721 * when processing a Prefix Information Option.
1723 spin_lock(&ift->lock);
1725 if (ift->valid_lft > valid_lft &&
1726 ift->valid_lft - valid_lft > (jiffies - ift->tstamp) / HZ)
1727 ift->valid_lft = valid_lft + (jiffies - ift->tstamp) / HZ;
1728 if (ift->prefered_lft > prefered_lft &&
1729 ift->prefered_lft - prefered_lft > (jiffies - ift->tstamp) / HZ)
1730 ift->prefered_lft = prefered_lft + (jiffies - ift->tstamp) / HZ;
1731 spin_unlock(&ift->lock);
1732 if (!(flags&IFA_F_TENTATIVE))
1733 ipv6_ifa_notify(0, ift);
1736 if (create && in6_dev->cnf.use_tempaddr > 0) {
1738 * When a new public address is created as described in [ADDRCONF],
1739 * also create a new temporary address.
1741 read_unlock_bh(&in6_dev->lock);
1742 ipv6_create_tempaddr(ifp, NULL);
1744 read_unlock_bh(&in6_dev->lock);
1751 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
1752 in6_dev_put(in6_dev);
1756 * Set destination address.
1757 * Special case for SIT interfaces where we create a new "virtual"
1760 int addrconf_set_dstaddr(void __user *arg)
1762 struct in6_ifreq ireq;
1763 struct net_device *dev;
1769 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1772 dev = __dev_get_by_index(ireq.ifr6_ifindex);
1778 if (dev->type == ARPHRD_SIT) {
1781 struct ip_tunnel_parm p;
1783 err = -EADDRNOTAVAIL;
1784 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
1787 memset(&p, 0, sizeof(p));
1788 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
1792 p.iph.protocol = IPPROTO_IPV6;
1794 ifr.ifr_ifru.ifru_data = (void __user *)&p;
1796 oldfs = get_fs(); set_fs(KERNEL_DS);
1797 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
1802 if ((dev = __dev_get_by_name(p.name)) == NULL)
1804 err = dev_open(dev);
1814 * Manual configuration of address on an interface
1816 static int inet6_addr_add(int ifindex, struct in6_addr *pfx, int plen)
1818 struct inet6_ifaddr *ifp;
1819 struct inet6_dev *idev;
1820 struct net_device *dev;
1825 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1828 if (!(dev->flags&IFF_UP))
1831 if ((idev = addrconf_add_dev(dev)) == NULL)
1834 scope = ipv6_addr_scope(pfx);
1836 ifp = ipv6_add_addr(idev, pfx, plen, scope, IFA_F_PERMANENT);
1838 addrconf_dad_start(ifp, 0);
1843 return PTR_ERR(ifp);
1846 static int inet6_addr_del(int ifindex, struct in6_addr *pfx, int plen)
1848 struct inet6_ifaddr *ifp;
1849 struct inet6_dev *idev;
1850 struct net_device *dev;
1852 if ((dev = __dev_get_by_index(ifindex)) == NULL)
1855 if ((idev = __in6_dev_get(dev)) == NULL)
1858 read_lock_bh(&idev->lock);
1859 for (ifp = idev->addr_list; ifp; ifp=ifp->if_next) {
1860 if (ifp->prefix_len == plen &&
1861 ipv6_addr_equal(pfx, &ifp->addr)) {
1863 read_unlock_bh(&idev->lock);
1867 /* If the last address is deleted administratively,
1868 disable IPv6 on this interface.
1870 if (idev->addr_list == NULL)
1871 addrconf_ifdown(idev->dev, 1);
1875 read_unlock_bh(&idev->lock);
1876 return -EADDRNOTAVAIL;
1880 int addrconf_add_ifaddr(void __user *arg)
1882 struct in6_ifreq ireq;
1885 if (!capable(CAP_NET_ADMIN))
1888 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1892 err = inet6_addr_add(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
1897 int addrconf_del_ifaddr(void __user *arg)
1899 struct in6_ifreq ireq;
1902 if (!capable(CAP_NET_ADMIN))
1905 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
1909 err = inet6_addr_del(ireq.ifr6_ifindex, &ireq.ifr6_addr, ireq.ifr6_prefixlen);
1914 static void sit_add_v4_addrs(struct inet6_dev *idev)
1916 struct inet6_ifaddr * ifp;
1917 struct in6_addr addr;
1918 struct net_device *dev;
1923 memset(&addr, 0, sizeof(struct in6_addr));
1924 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
1926 if (idev->dev->flags&IFF_POINTOPOINT) {
1927 addr.s6_addr32[0] = htonl(0xfe800000);
1930 scope = IPV6_ADDR_COMPATv4;
1933 if (addr.s6_addr32[3]) {
1934 ifp = ipv6_add_addr(idev, &addr, 128, scope, IFA_F_PERMANENT);
1936 spin_lock_bh(&ifp->lock);
1937 ifp->flags &= ~IFA_F_TENTATIVE;
1938 spin_unlock_bh(&ifp->lock);
1939 ipv6_ifa_notify(RTM_NEWADDR, ifp);
1945 for (dev = dev_base; dev != NULL; dev = dev->next) {
1946 struct in_device * in_dev = __in_dev_get_rtnl(dev);
1947 if (in_dev && (dev->flags & IFF_UP)) {
1948 struct in_ifaddr * ifa;
1952 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
1955 addr.s6_addr32[3] = ifa->ifa_local;
1957 if (ifa->ifa_scope == RT_SCOPE_LINK)
1959 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
1960 if (idev->dev->flags&IFF_POINTOPOINT)
1964 if (idev->dev->flags&IFF_POINTOPOINT)
1969 ifp = ipv6_add_addr(idev, &addr, plen, flag,
1972 spin_lock_bh(&ifp->lock);
1973 ifp->flags &= ~IFA_F_TENTATIVE;
1974 spin_unlock_bh(&ifp->lock);
1975 ipv6_ifa_notify(RTM_NEWADDR, ifp);
1983 static void init_loopback(struct net_device *dev)
1985 struct inet6_dev *idev;
1986 struct inet6_ifaddr * ifp;
1992 if ((idev = ipv6_find_idev(dev)) == NULL) {
1993 printk(KERN_DEBUG "init loopback: add_dev failed\n");
1997 ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
1999 spin_lock_bh(&ifp->lock);
2000 ifp->flags &= ~IFA_F_TENTATIVE;
2001 spin_unlock_bh(&ifp->lock);
2002 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2007 static void addrconf_add_linklocal(struct inet6_dev *idev, struct in6_addr *addr)
2009 struct inet6_ifaddr * ifp;
2011 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, IFA_F_PERMANENT);
2013 addrconf_dad_start(ifp, 0);
2018 static void addrconf_dev_config(struct net_device *dev)
2020 struct in6_addr addr;
2021 struct inet6_dev * idev;
2025 if ((dev->type != ARPHRD_ETHER) &&
2026 (dev->type != ARPHRD_FDDI) &&
2027 (dev->type != ARPHRD_IEEE802_TR) &&
2028 (dev->type != ARPHRD_ARCNET) &&
2029 (dev->type != ARPHRD_INFINIBAND)) {
2030 /* Alas, we support only Ethernet autoconfiguration. */
2034 idev = addrconf_add_dev(dev);
2038 memset(&addr, 0, sizeof(struct in6_addr));
2039 addr.s6_addr32[0] = htonl(0xFE800000);
2041 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2042 addrconf_add_linklocal(idev, &addr);
2045 static void addrconf_sit_config(struct net_device *dev)
2047 struct inet6_dev *idev;
2052 * Configure the tunnel with one of our IPv4
2053 * addresses... we should configure all of
2054 * our v4 addrs in the tunnel
2057 if ((idev = ipv6_find_idev(dev)) == NULL) {
2058 printk(KERN_DEBUG "init sit: add_dev failed\n");
2062 sit_add_v4_addrs(idev);
2064 if (dev->flags&IFF_POINTOPOINT) {
2065 addrconf_add_mroute(dev);
2066 addrconf_add_lroute(dev);
2072 ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2074 struct in6_addr lladdr;
2076 if (!ipv6_get_lladdr(link_dev, &lladdr)) {
2077 addrconf_add_linklocal(idev, &lladdr);
2083 static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2085 struct net_device *link_dev;
2087 /* first try to inherit the link-local address from the link device */
2088 if (idev->dev->iflink &&
2089 (link_dev = __dev_get_by_index(idev->dev->iflink))) {
2090 if (!ipv6_inherit_linklocal(idev, link_dev))
2093 /* then try to inherit it from any device */
2094 for (link_dev = dev_base; link_dev; link_dev = link_dev->next) {
2095 if (!ipv6_inherit_linklocal(idev, link_dev))
2098 printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
2102 * Autoconfigure tunnel with a link-local address so routing protocols,
2103 * DHCPv6, MLD etc. can be run over the virtual link
2106 static void addrconf_ip6_tnl_config(struct net_device *dev)
2108 struct inet6_dev *idev;
2112 if ((idev = addrconf_add_dev(dev)) == NULL) {
2113 printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
2116 ip6_tnl_add_linklocal(idev);
2117 addrconf_add_mroute(dev);
2120 static int addrconf_notify(struct notifier_block *this, unsigned long event,
2123 struct net_device *dev = (struct net_device *) data;
2124 struct inet6_dev *idev = __in6_dev_get(dev);
2130 addrconf_sit_config(dev);
2132 case ARPHRD_TUNNEL6:
2133 addrconf_ip6_tnl_config(dev);
2135 case ARPHRD_LOOPBACK:
2140 addrconf_dev_config(dev);
2144 /* If the MTU changed during the interface down, when the
2145 interface up, the changed MTU must be reflected in the
2146 idev as well as routers.
2148 if (idev->cnf.mtu6 != dev->mtu && dev->mtu >= IPV6_MIN_MTU) {
2149 rt6_mtu_change(dev, dev->mtu);
2150 idev->cnf.mtu6 = dev->mtu;
2152 idev->tstamp = jiffies;
2153 inet6_ifinfo_notify(RTM_NEWLINK, idev);
2154 /* If the changed mtu during down is lower than IPV6_MIN_MTU
2155 stop IPv6 on this interface.
2157 if (dev->mtu < IPV6_MIN_MTU)
2158 addrconf_ifdown(dev, event != NETDEV_DOWN);
2162 case NETDEV_CHANGEMTU:
2163 if ( idev && dev->mtu >= IPV6_MIN_MTU) {
2164 rt6_mtu_change(dev, dev->mtu);
2165 idev->cnf.mtu6 = dev->mtu;
2169 /* MTU falled under IPV6_MIN_MTU. Stop IPv6 on this interface. */
2172 case NETDEV_UNREGISTER:
2174 * Remove all addresses from this interface.
2176 addrconf_ifdown(dev, event != NETDEV_DOWN);
2180 case NETDEV_CHANGENAME:
2181 #ifdef CONFIG_SYSCTL
2183 addrconf_sysctl_unregister(&idev->cnf);
2184 neigh_sysctl_unregister(idev->nd_parms);
2185 neigh_sysctl_register(dev, idev->nd_parms,
2186 NET_IPV6, NET_IPV6_NEIGH, "ipv6",
2187 &ndisc_ifinfo_sysctl_change,
2189 addrconf_sysctl_register(idev, &idev->cnf);
2199 * addrconf module should be notified of a device going up
2201 static struct notifier_block ipv6_dev_notf = {
2202 .notifier_call = addrconf_notify,
2206 static int addrconf_ifdown(struct net_device *dev, int how)
2208 struct inet6_dev *idev;
2209 struct inet6_ifaddr *ifa, **bifa;
2214 if (dev == &loopback_dev && how == 1)
2218 neigh_ifdown(&nd_tbl, dev);
2220 idev = __in6_dev_get(dev);
2224 /* Step 1: remove reference to ipv6 device from parent device.
2228 write_lock_bh(&addrconf_lock);
2229 dev->ip6_ptr = NULL;
2231 write_unlock_bh(&addrconf_lock);
2233 /* Step 1.5: remove snmp6 entry */
2234 snmp6_unregister_dev(idev);
2238 /* Step 2: clear hash table */
2239 for (i=0; i<IN6_ADDR_HSIZE; i++) {
2240 bifa = &inet6_addr_lst[i];
2242 write_lock_bh(&addrconf_hash_lock);
2243 while ((ifa = *bifa) != NULL) {
2244 if (ifa->idev == idev) {
2245 *bifa = ifa->lst_next;
2246 ifa->lst_next = NULL;
2247 addrconf_del_timer(ifa);
2251 bifa = &ifa->lst_next;
2253 write_unlock_bh(&addrconf_hash_lock);
2256 write_lock_bh(&idev->lock);
2258 /* Step 3: clear flags for stateless addrconf */
2260 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD);
2262 /* Step 4: clear address list */
2263 #ifdef CONFIG_IPV6_PRIVACY
2264 if (how == 1 && del_timer(&idev->regen_timer))
2267 /* clear tempaddr list */
2268 while ((ifa = idev->tempaddr_list) != NULL) {
2269 idev->tempaddr_list = ifa->tmp_next;
2270 ifa->tmp_next = NULL;
2272 write_unlock_bh(&idev->lock);
2273 spin_lock_bh(&ifa->lock);
2276 in6_ifa_put(ifa->ifpub);
2279 spin_unlock_bh(&ifa->lock);
2281 write_lock_bh(&idev->lock);
2284 while ((ifa = idev->addr_list) != NULL) {
2285 idev->addr_list = ifa->if_next;
2286 ifa->if_next = NULL;
2288 addrconf_del_timer(ifa);
2289 write_unlock_bh(&idev->lock);
2291 __ipv6_ifa_notify(RTM_DELADDR, ifa);
2294 write_lock_bh(&idev->lock);
2296 write_unlock_bh(&idev->lock);
2298 /* Step 5: Discard multicast list */
2301 ipv6_mc_destroy_dev(idev);
2305 /* Step 5: netlink notification of this interface */
2306 idev->tstamp = jiffies;
2307 inet6_ifinfo_notify(RTM_DELLINK, idev);
2309 /* Shot the device (if unregistered) */
2312 #ifdef CONFIG_SYSCTL
2313 addrconf_sysctl_unregister(&idev->cnf);
2314 neigh_sysctl_unregister(idev->nd_parms);
2316 neigh_parms_release(&nd_tbl, idev->nd_parms);
2317 neigh_ifdown(&nd_tbl, dev);
2323 static void addrconf_rs_timer(unsigned long data)
2325 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2327 if (ifp->idev->cnf.forwarding)
2330 if (ifp->idev->if_flags & IF_RA_RCVD) {
2332 * Announcement received after solicitation
2338 spin_lock(&ifp->lock);
2339 if (ifp->probes++ < ifp->idev->cnf.rtr_solicits) {
2340 struct in6_addr all_routers;
2342 /* The wait after the last probe can be shorter */
2343 addrconf_mod_timer(ifp, AC_RS,
2344 (ifp->probes == ifp->idev->cnf.rtr_solicits) ?
2345 ifp->idev->cnf.rtr_solicit_delay :
2346 ifp->idev->cnf.rtr_solicit_interval);
2347 spin_unlock(&ifp->lock);
2349 ipv6_addr_all_routers(&all_routers);
2351 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2353 spin_unlock(&ifp->lock);
2355 * Note: we do not support deprecated "all on-link"
2356 * assumption any longer.
2358 printk(KERN_DEBUG "%s: no IPv6 routers present\n",
2359 ifp->idev->dev->name);
2367 * Duplicate Address Detection
2369 static void addrconf_dad_start(struct inet6_ifaddr *ifp, u32 flags)
2371 struct inet6_dev *idev = ifp->idev;
2372 struct net_device *dev = idev->dev;
2373 unsigned long rand_num;
2375 addrconf_join_solict(dev, &ifp->addr);
2377 if (ifp->prefix_len != 128 && (ifp->flags&IFA_F_PERMANENT))
2378 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev, 0,
2381 net_srandom(ifp->addr.s6_addr32[3]);
2382 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2384 read_lock_bh(&idev->lock);
2387 spin_lock_bh(&ifp->lock);
2389 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
2390 !(ifp->flags&IFA_F_TENTATIVE)) {
2391 ifp->flags &= ~IFA_F_TENTATIVE;
2392 spin_unlock_bh(&ifp->lock);
2393 read_unlock_bh(&idev->lock);
2395 addrconf_dad_completed(ifp);
2399 ifp->probes = idev->cnf.dad_transmits;
2400 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2402 spin_unlock_bh(&ifp->lock);
2404 read_unlock_bh(&idev->lock);
2407 static void addrconf_dad_timer(unsigned long data)
2409 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
2410 struct inet6_dev *idev = ifp->idev;
2411 struct in6_addr unspec;
2412 struct in6_addr mcaddr;
2414 read_lock_bh(&idev->lock);
2416 read_unlock_bh(&idev->lock);
2419 spin_lock_bh(&ifp->lock);
2420 if (ifp->probes == 0) {
2422 * DAD was successful
2425 ifp->flags &= ~IFA_F_TENTATIVE;
2426 spin_unlock_bh(&ifp->lock);
2427 read_unlock_bh(&idev->lock);
2429 addrconf_dad_completed(ifp);
2435 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
2436 spin_unlock_bh(&ifp->lock);
2437 read_unlock_bh(&idev->lock);
2439 /* send a neighbour solicitation for our addr */
2440 memset(&unspec, 0, sizeof(unspec));
2441 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
2442 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &unspec);
2447 static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
2449 struct net_device * dev = ifp->idev->dev;
2452 * Configure the address for reception. Now it is valid.
2455 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2457 /* If added prefix is link local and forwarding is off,
2458 start sending router solicitations.
2461 if (ifp->idev->cnf.forwarding == 0 &&
2462 ifp->idev->cnf.rtr_solicits > 0 &&
2463 (dev->flags&IFF_LOOPBACK) == 0 &&
2464 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
2465 struct in6_addr all_routers;
2467 ipv6_addr_all_routers(&all_routers);
2470 * If a host as already performed a random delay
2471 * [...] as part of DAD [...] there is no need
2472 * to delay again before sending the first RS
2474 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &all_routers);
2476 spin_lock_bh(&ifp->lock);
2478 ifp->idev->if_flags |= IF_RS_SENT;
2479 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
2480 spin_unlock_bh(&ifp->lock);
2484 #ifdef CONFIG_PROC_FS
2485 struct if6_iter_state {
2489 static struct inet6_ifaddr *if6_get_first(struct seq_file *seq)
2491 struct inet6_ifaddr *ifa = NULL;
2492 struct if6_iter_state *state = seq->private;
2494 for (state->bucket = 0; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
2495 ifa = inet6_addr_lst[state->bucket];
2502 static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, struct inet6_ifaddr *ifa)
2504 struct if6_iter_state *state = seq->private;
2506 ifa = ifa->lst_next;
2508 if (!ifa && ++state->bucket < IN6_ADDR_HSIZE) {
2509 ifa = inet6_addr_lst[state->bucket];
2515 static struct inet6_ifaddr *if6_get_idx(struct seq_file *seq, loff_t pos)
2517 struct inet6_ifaddr *ifa = if6_get_first(seq);
2520 while(pos && (ifa = if6_get_next(seq, ifa)) != NULL)
2522 return pos ? NULL : ifa;
2525 static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
2527 read_lock_bh(&addrconf_hash_lock);
2528 return if6_get_idx(seq, *pos);
2531 static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2533 struct inet6_ifaddr *ifa;
2535 ifa = if6_get_next(seq, v);
2540 static void if6_seq_stop(struct seq_file *seq, void *v)
2542 read_unlock_bh(&addrconf_hash_lock);
2545 static int if6_seq_show(struct seq_file *seq, void *v)
2547 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
2549 "%04x%04x%04x%04x%04x%04x%04x%04x %02x %02x %02x %02x %8s\n",
2551 ifp->idev->dev->ifindex,
2555 ifp->idev->dev->name);
2559 static struct seq_operations if6_seq_ops = {
2560 .start = if6_seq_start,
2561 .next = if6_seq_next,
2562 .show = if6_seq_show,
2563 .stop = if6_seq_stop,
2566 static int if6_seq_open(struct inode *inode, struct file *file)
2568 struct seq_file *seq;
2570 struct if6_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
2574 memset(s, 0, sizeof(*s));
2576 rc = seq_open(file, &if6_seq_ops);
2580 seq = file->private_data;
2589 static struct file_operations if6_fops = {
2590 .owner = THIS_MODULE,
2591 .open = if6_seq_open,
2593 .llseek = seq_lseek,
2594 .release = seq_release_private,
2597 int __init if6_proc_init(void)
2599 if (!proc_net_fops_create("if_inet6", S_IRUGO, &if6_fops))
2604 void if6_proc_exit(void)
2606 proc_net_remove("if_inet6");
2608 #endif /* CONFIG_PROC_FS */
2611 * Periodic address status verification
2614 static void addrconf_verify(unsigned long foo)
2616 struct inet6_ifaddr *ifp;
2617 unsigned long now, next;
2620 spin_lock_bh(&addrconf_verify_lock);
2622 next = now + ADDR_CHECK_FREQUENCY;
2624 del_timer(&addr_chk_timer);
2626 for (i=0; i < IN6_ADDR_HSIZE; i++) {
2629 write_lock(&addrconf_hash_lock);
2630 for (ifp=inet6_addr_lst[i]; ifp; ifp=ifp->lst_next) {
2632 #ifdef CONFIG_IPV6_PRIVACY
2633 unsigned long regen_advance;
2636 if (ifp->flags & IFA_F_PERMANENT)
2639 spin_lock(&ifp->lock);
2640 age = (now - ifp->tstamp) / HZ;
2642 #ifdef CONFIG_IPV6_PRIVACY
2643 regen_advance = ifp->idev->cnf.regen_max_retry *
2644 ifp->idev->cnf.dad_transmits *
2645 ifp->idev->nd_parms->retrans_time / HZ;
2648 if (age >= ifp->valid_lft) {
2649 spin_unlock(&ifp->lock);
2651 write_unlock(&addrconf_hash_lock);
2654 } else if (age >= ifp->prefered_lft) {
2655 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2658 if (!(ifp->flags&IFA_F_DEPRECATED)) {
2660 ifp->flags |= IFA_F_DEPRECATED;
2663 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
2664 next = ifp->tstamp + ifp->valid_lft * HZ;
2666 spin_unlock(&ifp->lock);
2670 write_unlock(&addrconf_hash_lock);
2672 ipv6_ifa_notify(0, ifp);
2676 #ifdef CONFIG_IPV6_PRIVACY
2677 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
2678 !(ifp->flags&IFA_F_TENTATIVE)) {
2679 if (age >= ifp->prefered_lft - regen_advance) {
2680 struct inet6_ifaddr *ifpub = ifp->ifpub;
2681 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2682 next = ifp->tstamp + ifp->prefered_lft * HZ;
2683 if (!ifp->regen_count && ifpub) {
2686 in6_ifa_hold(ifpub);
2687 spin_unlock(&ifp->lock);
2688 write_unlock(&addrconf_hash_lock);
2689 ipv6_create_tempaddr(ifpub, ifp);
2694 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
2695 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
2696 spin_unlock(&ifp->lock);
2699 /* ifp->prefered_lft <= ifp->valid_lft */
2700 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
2701 next = ifp->tstamp + ifp->prefered_lft * HZ;
2702 spin_unlock(&ifp->lock);
2705 write_unlock(&addrconf_hash_lock);
2708 addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next;
2709 add_timer(&addr_chk_timer);
2710 spin_unlock_bh(&addrconf_verify_lock);
2714 inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2716 struct rtattr **rta = arg;
2717 struct ifaddrmsg *ifm = NLMSG_DATA(nlh);
2718 struct in6_addr *pfx;
2721 if (rta[IFA_ADDRESS-1]) {
2722 if (RTA_PAYLOAD(rta[IFA_ADDRESS-1]) < sizeof(*pfx))
2724 pfx = RTA_DATA(rta[IFA_ADDRESS-1]);
2726 if (rta[IFA_LOCAL-1]) {
2727 if (pfx && memcmp(pfx, RTA_DATA(rta[IFA_LOCAL-1]), sizeof(*pfx)))
2729 pfx = RTA_DATA(rta[IFA_LOCAL-1]);
2734 return inet6_addr_del(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
2738 inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2740 struct rtattr **rta = arg;
2741 struct ifaddrmsg *ifm = NLMSG_DATA(nlh);
2742 struct in6_addr *pfx;
2745 if (rta[IFA_ADDRESS-1]) {
2746 if (RTA_PAYLOAD(rta[IFA_ADDRESS-1]) < sizeof(*pfx))
2748 pfx = RTA_DATA(rta[IFA_ADDRESS-1]);
2750 if (rta[IFA_LOCAL-1]) {
2751 if (pfx && memcmp(pfx, RTA_DATA(rta[IFA_LOCAL-1]), sizeof(*pfx)))
2753 pfx = RTA_DATA(rta[IFA_LOCAL-1]);
2758 return inet6_addr_add(ifm->ifa_index, pfx, ifm->ifa_prefixlen);
2761 static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
2762 u32 pid, u32 seq, int event, unsigned int flags)
2764 struct ifaddrmsg *ifm;
2765 struct nlmsghdr *nlh;
2766 struct ifa_cacheinfo ci;
2767 unsigned char *b = skb->tail;
2769 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*ifm), flags);
2770 ifm = NLMSG_DATA(nlh);
2771 ifm->ifa_family = AF_INET6;
2772 ifm->ifa_prefixlen = ifa->prefix_len;
2773 ifm->ifa_flags = ifa->flags;
2774 ifm->ifa_scope = RT_SCOPE_UNIVERSE;
2775 if (ifa->scope&IFA_HOST)
2776 ifm->ifa_scope = RT_SCOPE_HOST;
2777 else if (ifa->scope&IFA_LINK)
2778 ifm->ifa_scope = RT_SCOPE_LINK;
2779 else if (ifa->scope&IFA_SITE)
2780 ifm->ifa_scope = RT_SCOPE_SITE;
2781 ifm->ifa_index = ifa->idev->dev->ifindex;
2782 RTA_PUT(skb, IFA_ADDRESS, 16, &ifa->addr);
2783 if (!(ifa->flags&IFA_F_PERMANENT)) {
2784 ci.ifa_prefered = ifa->prefered_lft;
2785 ci.ifa_valid = ifa->valid_lft;
2786 if (ci.ifa_prefered != INFINITY_LIFE_TIME) {
2787 long tval = (jiffies - ifa->tstamp)/HZ;
2788 ci.ifa_prefered -= tval;
2789 if (ci.ifa_valid != INFINITY_LIFE_TIME)
2790 ci.ifa_valid -= tval;
2793 ci.ifa_prefered = INFINITY_LIFE_TIME;
2794 ci.ifa_valid = INFINITY_LIFE_TIME;
2796 ci.cstamp = (__u32)(TIME_DELTA(ifa->cstamp, INITIAL_JIFFIES) / HZ * 100
2797 + TIME_DELTA(ifa->cstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
2798 ci.tstamp = (__u32)(TIME_DELTA(ifa->tstamp, INITIAL_JIFFIES) / HZ * 100
2799 + TIME_DELTA(ifa->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
2800 RTA_PUT(skb, IFA_CACHEINFO, sizeof(ci), &ci);
2801 nlh->nlmsg_len = skb->tail - b;
2806 skb_trim(skb, b - skb->data);
2810 static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
2811 u32 pid, u32 seq, int event, u16 flags)
2813 struct ifaddrmsg *ifm;
2814 struct nlmsghdr *nlh;
2815 struct ifa_cacheinfo ci;
2816 unsigned char *b = skb->tail;
2818 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*ifm), flags);
2819 ifm = NLMSG_DATA(nlh);
2820 ifm->ifa_family = AF_INET6;
2821 ifm->ifa_prefixlen = 128;
2822 ifm->ifa_flags = IFA_F_PERMANENT;
2823 ifm->ifa_scope = RT_SCOPE_UNIVERSE;
2824 if (ipv6_addr_scope(&ifmca->mca_addr)&IFA_SITE)
2825 ifm->ifa_scope = RT_SCOPE_SITE;
2826 ifm->ifa_index = ifmca->idev->dev->ifindex;
2827 RTA_PUT(skb, IFA_MULTICAST, 16, &ifmca->mca_addr);
2828 ci.cstamp = (__u32)(TIME_DELTA(ifmca->mca_cstamp, INITIAL_JIFFIES) / HZ
2829 * 100 + TIME_DELTA(ifmca->mca_cstamp, INITIAL_JIFFIES) % HZ
2831 ci.tstamp = (__u32)(TIME_DELTA(ifmca->mca_tstamp, INITIAL_JIFFIES) / HZ
2832 * 100 + TIME_DELTA(ifmca->mca_tstamp, INITIAL_JIFFIES) % HZ
2834 ci.ifa_prefered = INFINITY_LIFE_TIME;
2835 ci.ifa_valid = INFINITY_LIFE_TIME;
2836 RTA_PUT(skb, IFA_CACHEINFO, sizeof(ci), &ci);
2837 nlh->nlmsg_len = skb->tail - b;
2842 skb_trim(skb, b - skb->data);
2846 static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
2847 u32 pid, u32 seq, int event, unsigned int flags)
2849 struct ifaddrmsg *ifm;
2850 struct nlmsghdr *nlh;
2851 struct ifa_cacheinfo ci;
2852 unsigned char *b = skb->tail;
2854 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*ifm), flags);
2855 ifm = NLMSG_DATA(nlh);
2856 ifm->ifa_family = AF_INET6;
2857 ifm->ifa_prefixlen = 128;
2858 ifm->ifa_flags = IFA_F_PERMANENT;
2859 ifm->ifa_scope = RT_SCOPE_UNIVERSE;
2860 if (ipv6_addr_scope(&ifaca->aca_addr)&IFA_SITE)
2861 ifm->ifa_scope = RT_SCOPE_SITE;
2862 ifm->ifa_index = ifaca->aca_idev->dev->ifindex;
2863 RTA_PUT(skb, IFA_ANYCAST, 16, &ifaca->aca_addr);
2864 ci.cstamp = (__u32)(TIME_DELTA(ifaca->aca_cstamp, INITIAL_JIFFIES) / HZ
2865 * 100 + TIME_DELTA(ifaca->aca_cstamp, INITIAL_JIFFIES) % HZ
2867 ci.tstamp = (__u32)(TIME_DELTA(ifaca->aca_tstamp, INITIAL_JIFFIES) / HZ
2868 * 100 + TIME_DELTA(ifaca->aca_tstamp, INITIAL_JIFFIES) % HZ
2870 ci.ifa_prefered = INFINITY_LIFE_TIME;
2871 ci.ifa_valid = INFINITY_LIFE_TIME;
2872 RTA_PUT(skb, IFA_CACHEINFO, sizeof(ci), &ci);
2873 nlh->nlmsg_len = skb->tail - b;
2878 skb_trim(skb, b - skb->data);
2889 static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
2890 enum addr_type_t type)
2893 int s_idx, s_ip_idx;
2895 struct net_device *dev;
2896 struct inet6_dev *idev = NULL;
2897 struct inet6_ifaddr *ifa;
2898 struct ifmcaddr6 *ifmca;
2899 struct ifacaddr6 *ifaca;
2901 s_idx = cb->args[0];
2902 s_ip_idx = ip_idx = cb->args[1];
2903 read_lock(&dev_base_lock);
2905 for (dev = dev_base, idx = 0; dev; dev = dev->next, idx++) {
2911 if ((idev = in6_dev_get(dev)) == NULL)
2913 read_lock_bh(&idev->lock);
2916 /* unicast address incl. temp addr */
2917 for (ifa = idev->addr_list; ifa;
2918 ifa = ifa->if_next, ip_idx++) {
2919 if (ip_idx < s_ip_idx)
2921 if ((err = inet6_fill_ifaddr(skb, ifa,
2922 NETLINK_CB(cb->skb).pid,
2923 cb->nlh->nlmsg_seq, RTM_NEWADDR,
2928 case MULTICAST_ADDR:
2929 /* multicast address */
2930 for (ifmca = idev->mc_list; ifmca;
2931 ifmca = ifmca->next, ip_idx++) {
2932 if (ip_idx < s_ip_idx)
2934 if ((err = inet6_fill_ifmcaddr(skb, ifmca,
2935 NETLINK_CB(cb->skb).pid,
2936 cb->nlh->nlmsg_seq, RTM_GETMULTICAST,
2942 /* anycast address */
2943 for (ifaca = idev->ac_list; ifaca;
2944 ifaca = ifaca->aca_next, ip_idx++) {
2945 if (ip_idx < s_ip_idx)
2947 if ((err = inet6_fill_ifacaddr(skb, ifaca,
2948 NETLINK_CB(cb->skb).pid,
2949 cb->nlh->nlmsg_seq, RTM_GETANYCAST,
2957 read_unlock_bh(&idev->lock);
2962 read_unlock_bh(&idev->lock);
2965 read_unlock(&dev_base_lock);
2967 cb->args[1] = ip_idx;
2971 static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
2973 enum addr_type_t type = UNICAST_ADDR;
2974 return inet6_dump_addr(skb, cb, type);
2977 static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
2979 enum addr_type_t type = MULTICAST_ADDR;
2980 return inet6_dump_addr(skb, cb, type);
2984 static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
2986 enum addr_type_t type = ANYCAST_ADDR;
2987 return inet6_dump_addr(skb, cb, type);
2990 static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
2992 struct sk_buff *skb;
2993 int size = NLMSG_SPACE(sizeof(struct ifaddrmsg)+128);
2995 skb = alloc_skb(size, GFP_ATOMIC);
2997 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFADDR, ENOBUFS);
3000 if (inet6_fill_ifaddr(skb, ifa, current->pid, 0, event, 0) < 0) {
3002 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFADDR, EINVAL);
3005 NETLINK_CB(skb).dst_group = RTNLGRP_IPV6_IFADDR;
3006 netlink_broadcast(rtnl, skb, 0, RTNLGRP_IPV6_IFADDR, GFP_ATOMIC);
3009 static void inline ipv6_store_devconf(struct ipv6_devconf *cnf,
3010 __s32 *array, int bytes)
3012 memset(array, 0, bytes);
3013 array[DEVCONF_FORWARDING] = cnf->forwarding;
3014 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3015 array[DEVCONF_MTU6] = cnf->mtu6;
3016 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3017 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3018 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3019 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3020 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
3021 array[DEVCONF_RTR_SOLICIT_INTERVAL] = cnf->rtr_solicit_interval;
3022 array[DEVCONF_RTR_SOLICIT_DELAY] = cnf->rtr_solicit_delay;
3023 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3024 #ifdef CONFIG_IPV6_PRIVACY
3025 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3026 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3027 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3028 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3029 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3031 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
3034 static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
3035 u32 pid, u32 seq, int event, unsigned int flags)
3037 struct net_device *dev = idev->dev;
3038 __s32 *array = NULL;
3039 struct ifinfomsg *r;
3040 struct nlmsghdr *nlh;
3041 unsigned char *b = skb->tail;
3042 struct rtattr *subattr;
3043 __u32 mtu = dev->mtu;
3044 struct ifla_cacheinfo ci;
3046 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags);
3047 r = NLMSG_DATA(nlh);
3048 r->ifi_family = AF_INET6;
3050 r->ifi_type = dev->type;
3051 r->ifi_index = dev->ifindex;
3052 r->ifi_flags = dev_get_flags(dev);
3055 RTA_PUT(skb, IFLA_IFNAME, strlen(dev->name)+1, dev->name);
3058 RTA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
3060 RTA_PUT(skb, IFLA_MTU, sizeof(mtu), &mtu);
3061 if (dev->ifindex != dev->iflink)
3062 RTA_PUT(skb, IFLA_LINK, sizeof(int), &dev->iflink);
3064 subattr = (struct rtattr*)skb->tail;
3066 RTA_PUT(skb, IFLA_PROTINFO, 0, NULL);
3068 /* return the device flags */
3069 RTA_PUT(skb, IFLA_INET6_FLAGS, sizeof(__u32), &idev->if_flags);
3071 /* return interface cacheinfo */
3072 ci.max_reasm_len = IPV6_MAXPLEN;
3073 ci.tstamp = (__u32)(TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) / HZ * 100
3074 + TIME_DELTA(idev->tstamp, INITIAL_JIFFIES) % HZ * 100 / HZ);
3075 ci.reachable_time = idev->nd_parms->reachable_time;
3076 ci.retrans_time = idev->nd_parms->retrans_time;
3077 RTA_PUT(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci);
3079 /* return the device sysctl params */
3080 if ((array = kmalloc(DEVCONF_MAX * sizeof(*array), GFP_ATOMIC)) == NULL)
3081 goto rtattr_failure;
3082 ipv6_store_devconf(&idev->cnf, array, DEVCONF_MAX * sizeof(*array));
3083 RTA_PUT(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(*array), array);
3085 /* XXX - Statistics/MC not implemented */
3086 subattr->rta_len = skb->tail - (u8*)subattr;
3088 nlh->nlmsg_len = skb->tail - b;
3095 skb_trim(skb, b - skb->data);
3099 static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3102 int s_idx = cb->args[0];
3103 struct net_device *dev;
3104 struct inet6_dev *idev;
3106 read_lock(&dev_base_lock);
3107 for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
3110 if ((idev = in6_dev_get(dev)) == NULL)
3112 err = inet6_fill_ifinfo(skb, idev, NETLINK_CB(cb->skb).pid,
3113 cb->nlh->nlmsg_seq, RTM_NEWLINK, NLM_F_MULTI);
3118 read_unlock(&dev_base_lock);
3124 void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
3126 struct sk_buff *skb;
3128 int size = NLMSG_SPACE(sizeof(struct ifinfomsg)+128);
3130 skb = alloc_skb(size, GFP_ATOMIC);
3132 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFINFO, ENOBUFS);
3135 if (inet6_fill_ifinfo(skb, idev, current->pid, 0, event, 0) < 0) {
3137 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_IFINFO, EINVAL);
3140 NETLINK_CB(skb).dst_group = RTNLGRP_IPV6_IFINFO;
3141 netlink_broadcast(rtnl, skb, 0, RTNLGRP_IPV6_IFINFO, GFP_ATOMIC);
3144 static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
3145 struct prefix_info *pinfo, u32 pid, u32 seq,
3146 int event, unsigned int flags)
3148 struct prefixmsg *pmsg;
3149 struct nlmsghdr *nlh;
3150 unsigned char *b = skb->tail;
3151 struct prefix_cacheinfo ci;
3153 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*pmsg), flags);
3154 pmsg = NLMSG_DATA(nlh);
3155 pmsg->prefix_family = AF_INET6;
3156 pmsg->prefix_pad1 = 0;
3157 pmsg->prefix_pad2 = 0;
3158 pmsg->prefix_ifindex = idev->dev->ifindex;
3159 pmsg->prefix_len = pinfo->prefix_len;
3160 pmsg->prefix_type = pinfo->type;
3161 pmsg->prefix_pad3 = 0;
3163 pmsg->prefix_flags = 0;
3165 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
3166 if (pinfo->autoconf)
3167 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
3169 RTA_PUT(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix);
3171 ci.preferred_time = ntohl(pinfo->prefered);
3172 ci.valid_time = ntohl(pinfo->valid);
3173 RTA_PUT(skb, PREFIX_CACHEINFO, sizeof(ci), &ci);
3175 nlh->nlmsg_len = skb->tail - b;
3180 skb_trim(skb, b - skb->data);
3184 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
3185 struct prefix_info *pinfo)
3187 struct sk_buff *skb;
3188 int size = NLMSG_SPACE(sizeof(struct prefixmsg)+128);
3190 skb = alloc_skb(size, GFP_ATOMIC);
3192 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_PREFIX, ENOBUFS);
3195 if (inet6_fill_prefix(skb, idev, pinfo, current->pid, 0, event, 0) < 0) {
3197 netlink_set_err(rtnl, 0, RTNLGRP_IPV6_PREFIX, EINVAL);
3200 NETLINK_CB(skb).dst_group = RTNLGRP_IPV6_PREFIX;
3201 netlink_broadcast(rtnl, skb, 0, RTNLGRP_IPV6_PREFIX, GFP_ATOMIC);
3204 static struct rtnetlink_link inet6_rtnetlink_table[RTM_NR_MSGTYPES] = {
3205 [RTM_GETLINK - RTM_BASE] = { .dumpit = inet6_dump_ifinfo, },
3206 [RTM_NEWADDR - RTM_BASE] = { .doit = inet6_rtm_newaddr, },
3207 [RTM_DELADDR - RTM_BASE] = { .doit = inet6_rtm_deladdr, },
3208 [RTM_GETADDR - RTM_BASE] = { .dumpit = inet6_dump_ifaddr, },
3209 [RTM_GETMULTICAST - RTM_BASE] = { .dumpit = inet6_dump_ifmcaddr, },
3210 [RTM_GETANYCAST - RTM_BASE] = { .dumpit = inet6_dump_ifacaddr, },
3211 [RTM_NEWROUTE - RTM_BASE] = { .doit = inet6_rtm_newroute, },
3212 [RTM_DELROUTE - RTM_BASE] = { .doit = inet6_rtm_delroute, },
3213 [RTM_GETROUTE - RTM_BASE] = { .doit = inet6_rtm_getroute,
3214 .dumpit = inet6_dump_fib, },
3217 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3219 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
3223 dst_hold(&ifp->rt->u.dst);
3224 if (ip6_ins_rt(ifp->rt, NULL, NULL, NULL))
3225 dst_release(&ifp->rt->u.dst);
3226 if (ifp->idev->cnf.forwarding)
3227 addrconf_join_anycast(ifp);
3230 if (ifp->idev->cnf.forwarding)
3231 addrconf_leave_anycast(ifp);
3232 addrconf_leave_solict(ifp->idev, &ifp->addr);
3233 dst_hold(&ifp->rt->u.dst);
3234 if (ip6_del_rt(ifp->rt, NULL, NULL, NULL))
3235 dst_free(&ifp->rt->u.dst);
3237 dst_release(&ifp->rt->u.dst);
3242 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
3244 read_lock_bh(&addrconf_lock);
3245 if (likely(ifp->idev->dead == 0))
3246 __ipv6_ifa_notify(event, ifp);
3247 read_unlock_bh(&addrconf_lock);
3250 #ifdef CONFIG_SYSCTL
3253 int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
3254 void __user *buffer, size_t *lenp, loff_t *ppos)
3256 int *valp = ctl->data;
3260 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
3262 if (write && valp != &ipv6_devconf_dflt.forwarding) {
3263 if (valp != &ipv6_devconf.forwarding) {
3264 if ((!*valp) ^ (!val)) {
3265 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
3268 dev_forward_change(idev);
3271 ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding;
3272 addrconf_forward_change();
3275 rt6_purge_dflt_routers();
3281 static int addrconf_sysctl_forward_strategy(ctl_table *table,
3282 int __user *name, int nlen,
3283 void __user *oldval,
3284 size_t __user *oldlenp,
3285 void __user *newval, size_t newlen,
3288 int *valp = table->data;
3291 if (!newval || !newlen)
3293 if (newlen != sizeof(int))
3295 if (get_user(new, (int __user *)newval))
3299 if (oldval && oldlenp) {
3301 if (get_user(len, oldlenp))
3304 if (len > table->maxlen)
3305 len = table->maxlen;
3306 if (copy_to_user(oldval, valp, len))
3308 if (put_user(len, oldlenp))
3313 if (valp != &ipv6_devconf_dflt.forwarding) {
3314 if (valp != &ipv6_devconf.forwarding) {
3315 struct inet6_dev *idev = (struct inet6_dev *)table->extra1;
3317 if (unlikely(idev == NULL))
3319 changed = (!*valp) ^ (!new);
3322 dev_forward_change(idev);
3325 addrconf_forward_change();
3329 rt6_purge_dflt_routers();
3336 static struct addrconf_sysctl_table
3338 struct ctl_table_header *sysctl_header;
3339 ctl_table addrconf_vars[__NET_IPV6_MAX];
3340 ctl_table addrconf_dev[2];
3341 ctl_table addrconf_conf_dir[2];
3342 ctl_table addrconf_proto_dir[2];
3343 ctl_table addrconf_root_dir[2];
3344 } addrconf_sysctl = {
3345 .sysctl_header = NULL,
3348 .ctl_name = NET_IPV6_FORWARDING,
3349 .procname = "forwarding",
3350 .data = &ipv6_devconf.forwarding,
3351 .maxlen = sizeof(int),
3353 .proc_handler = &addrconf_sysctl_forward,
3354 .strategy = &addrconf_sysctl_forward_strategy,
3357 .ctl_name = NET_IPV6_HOP_LIMIT,
3358 .procname = "hop_limit",
3359 .data = &ipv6_devconf.hop_limit,
3360 .maxlen = sizeof(int),
3362 .proc_handler = proc_dointvec,
3365 .ctl_name = NET_IPV6_MTU,
3367 .data = &ipv6_devconf.mtu6,
3368 .maxlen = sizeof(int),
3370 .proc_handler = &proc_dointvec,
3373 .ctl_name = NET_IPV6_ACCEPT_RA,
3374 .procname = "accept_ra",
3375 .data = &ipv6_devconf.accept_ra,
3376 .maxlen = sizeof(int),
3378 .proc_handler = &proc_dointvec,
3381 .ctl_name = NET_IPV6_ACCEPT_REDIRECTS,
3382 .procname = "accept_redirects",
3383 .data = &ipv6_devconf.accept_redirects,
3384 .maxlen = sizeof(int),
3386 .proc_handler = &proc_dointvec,
3389 .ctl_name = NET_IPV6_AUTOCONF,
3390 .procname = "autoconf",
3391 .data = &ipv6_devconf.autoconf,
3392 .maxlen = sizeof(int),
3394 .proc_handler = &proc_dointvec,
3397 .ctl_name = NET_IPV6_DAD_TRANSMITS,
3398 .procname = "dad_transmits",
3399 .data = &ipv6_devconf.dad_transmits,
3400 .maxlen = sizeof(int),
3402 .proc_handler = &proc_dointvec,
3405 .ctl_name = NET_IPV6_RTR_SOLICITS,
3406 .procname = "router_solicitations",
3407 .data = &ipv6_devconf.rtr_solicits,
3408 .maxlen = sizeof(int),
3410 .proc_handler = &proc_dointvec,
3413 .ctl_name = NET_IPV6_RTR_SOLICIT_INTERVAL,
3414 .procname = "router_solicitation_interval",
3415 .data = &ipv6_devconf.rtr_solicit_interval,
3416 .maxlen = sizeof(int),
3418 .proc_handler = &proc_dointvec_jiffies,
3419 .strategy = &sysctl_jiffies,
3422 .ctl_name = NET_IPV6_RTR_SOLICIT_DELAY,
3423 .procname = "router_solicitation_delay",
3424 .data = &ipv6_devconf.rtr_solicit_delay,
3425 .maxlen = sizeof(int),
3427 .proc_handler = &proc_dointvec_jiffies,
3428 .strategy = &sysctl_jiffies,
3431 .ctl_name = NET_IPV6_FORCE_MLD_VERSION,
3432 .procname = "force_mld_version",
3433 .data = &ipv6_devconf.force_mld_version,
3434 .maxlen = sizeof(int),
3436 .proc_handler = &proc_dointvec,
3438 #ifdef CONFIG_IPV6_PRIVACY
3440 .ctl_name = NET_IPV6_USE_TEMPADDR,
3441 .procname = "use_tempaddr",
3442 .data = &ipv6_devconf.use_tempaddr,
3443 .maxlen = sizeof(int),
3445 .proc_handler = &proc_dointvec,
3448 .ctl_name = NET_IPV6_TEMP_VALID_LFT,
3449 .procname = "temp_valid_lft",
3450 .data = &ipv6_devconf.temp_valid_lft,
3451 .maxlen = sizeof(int),
3453 .proc_handler = &proc_dointvec,
3456 .ctl_name = NET_IPV6_TEMP_PREFERED_LFT,
3457 .procname = "temp_prefered_lft",
3458 .data = &ipv6_devconf.temp_prefered_lft,
3459 .maxlen = sizeof(int),
3461 .proc_handler = &proc_dointvec,
3464 .ctl_name = NET_IPV6_REGEN_MAX_RETRY,
3465 .procname = "regen_max_retry",
3466 .data = &ipv6_devconf.regen_max_retry,
3467 .maxlen = sizeof(int),
3469 .proc_handler = &proc_dointvec,
3472 .ctl_name = NET_IPV6_MAX_DESYNC_FACTOR,
3473 .procname = "max_desync_factor",
3474 .data = &ipv6_devconf.max_desync_factor,
3475 .maxlen = sizeof(int),
3477 .proc_handler = &proc_dointvec,
3481 .ctl_name = NET_IPV6_MAX_ADDRESSES,
3482 .procname = "max_addresses",
3483 .data = &ipv6_devconf.max_addresses,
3484 .maxlen = sizeof(int),
3486 .proc_handler = &proc_dointvec,
3489 .ctl_name = 0, /* sentinel */
3494 .ctl_name = NET_PROTO_CONF_ALL,
3497 .child = addrconf_sysctl.addrconf_vars,
3500 .ctl_name = 0, /* sentinel */
3503 .addrconf_conf_dir = {
3505 .ctl_name = NET_IPV6_CONF,
3508 .child = addrconf_sysctl.addrconf_dev,
3511 .ctl_name = 0, /* sentinel */
3514 .addrconf_proto_dir = {
3516 .ctl_name = NET_IPV6,
3519 .child = addrconf_sysctl.addrconf_conf_dir,
3522 .ctl_name = 0, /* sentinel */
3525 .addrconf_root_dir = {
3527 .ctl_name = CTL_NET,
3530 .child = addrconf_sysctl.addrconf_proto_dir,
3533 .ctl_name = 0, /* sentinel */
3538 static void addrconf_sysctl_register(struct inet6_dev *idev, struct ipv6_devconf *p)
3541 struct net_device *dev = idev ? idev->dev : NULL;
3542 struct addrconf_sysctl_table *t;
3543 char *dev_name = NULL;
3545 t = kmalloc(sizeof(*t), GFP_KERNEL);
3548 memcpy(t, &addrconf_sysctl, sizeof(*t));
3549 for (i=0; t->addrconf_vars[i].data; i++) {
3550 t->addrconf_vars[i].data += (char*)p - (char*)&ipv6_devconf;
3551 t->addrconf_vars[i].de = NULL;
3552 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
3555 dev_name = dev->name;
3556 t->addrconf_dev[0].ctl_name = dev->ifindex;
3558 dev_name = "default";
3559 t->addrconf_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
3563 * Make a copy of dev_name, because '.procname' is regarded as const
3564 * by sysctl and we wouldn't want anyone to change it under our feet
3565 * (see SIOCSIFNAME).
3567 dev_name = kstrdup(dev_name, GFP_KERNEL);
3571 t->addrconf_dev[0].procname = dev_name;
3573 t->addrconf_dev[0].child = t->addrconf_vars;
3574 t->addrconf_dev[0].de = NULL;
3575 t->addrconf_conf_dir[0].child = t->addrconf_dev;
3576 t->addrconf_conf_dir[0].de = NULL;
3577 t->addrconf_proto_dir[0].child = t->addrconf_conf_dir;
3578 t->addrconf_proto_dir[0].de = NULL;
3579 t->addrconf_root_dir[0].child = t->addrconf_proto_dir;
3580 t->addrconf_root_dir[0].de = NULL;
3582 t->sysctl_header = register_sysctl_table(t->addrconf_root_dir, 0);
3583 if (t->sysctl_header == NULL)
3598 static void addrconf_sysctl_unregister(struct ipv6_devconf *p)
3601 struct addrconf_sysctl_table *t = p->sysctl;
3603 unregister_sysctl_table(t->sysctl_header);
3604 kfree(t->addrconf_dev[0].procname);
3616 int register_inet6addr_notifier(struct notifier_block *nb)
3618 return notifier_chain_register(&inet6addr_chain, nb);
3621 int unregister_inet6addr_notifier(struct notifier_block *nb)
3623 return notifier_chain_unregister(&inet6addr_chain,nb);
3627 * Init / cleanup code
3630 int __init addrconf_init(void)
3634 /* The addrconf netdev notifier requires that loopback_dev
3635 * has it's ipv6 private information allocated and setup
3636 * before it can bring up and give link-local addresses
3637 * to other devices which are up.
3639 * Unfortunately, loopback_dev is not necessarily the first
3640 * entry in the global dev_base list of net devices. In fact,
3641 * it is likely to be the very last entry on that list.
3642 * So this causes the notifier registry below to try and
3643 * give link-local addresses to all devices besides loopback_dev
3644 * first, then loopback_dev, which cases all the non-loopback_dev
3645 * devices to fail to get a link-local address.
3647 * So, as a temporary fix, allocate the ipv6 structure for
3648 * loopback_dev first by hand.
3649 * Longer term, all of the dependencies ipv6 has upon the loopback
3650 * device and it being up should be removed.
3653 if (!ipv6_add_dev(&loopback_dev))
3659 ip6_null_entry.rt6i_idev = in6_dev_get(&loopback_dev);
3661 register_netdevice_notifier(&ipv6_dev_notf);
3663 #ifdef CONFIG_IPV6_PRIVACY
3664 md5_tfm = crypto_alloc_tfm("md5", 0);
3665 if (unlikely(md5_tfm == NULL))
3667 "failed to load transform for md5\n");
3671 rtnetlink_links[PF_INET6] = inet6_rtnetlink_table;
3672 #ifdef CONFIG_SYSCTL
3673 addrconf_sysctl.sysctl_header =
3674 register_sysctl_table(addrconf_sysctl.addrconf_root_dir, 0);
3675 addrconf_sysctl_register(NULL, &ipv6_devconf_dflt);
3681 void __exit addrconf_cleanup(void)
3683 struct net_device *dev;
3684 struct inet6_dev *idev;
3685 struct inet6_ifaddr *ifa;
3688 unregister_netdevice_notifier(&ipv6_dev_notf);
3690 rtnetlink_links[PF_INET6] = NULL;
3691 #ifdef CONFIG_SYSCTL
3692 addrconf_sysctl_unregister(&ipv6_devconf_dflt);
3693 addrconf_sysctl_unregister(&ipv6_devconf);
3702 for (dev=dev_base; dev; dev=dev->next) {
3703 if ((idev = __in6_dev_get(dev)) == NULL)
3705 addrconf_ifdown(dev, 1);
3707 addrconf_ifdown(&loopback_dev, 2);
3713 write_lock_bh(&addrconf_hash_lock);
3714 for (i=0; i < IN6_ADDR_HSIZE; i++) {
3715 for (ifa=inet6_addr_lst[i]; ifa; ) {
3716 struct inet6_ifaddr *bifa;
3719 ifa = ifa->lst_next;
3720 printk(KERN_DEBUG "bug: IPv6 address leakage detected: ifa=%p\n", bifa);
3721 /* Do not free it; something is wrong.
3722 Now we can investigate it with debugger.
3726 write_unlock_bh(&addrconf_hash_lock);
3728 del_timer(&addr_chk_timer);
3732 #ifdef CONFIG_IPV6_PRIVACY
3733 crypto_free_tfm(md5_tfm);
3737 #ifdef CONFIG_PROC_FS
3738 proc_net_remove("if_inet6");