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 spin_unlock_bh(&ifp
->lock
);
2472 read_unlock_bh(&idev
->lock
);
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 addrconf_dad_kick(ifp
);
2483 spin_unlock_bh(&ifp
->lock
);
2485 read_unlock_bh(&idev
->lock
);
2488 static void addrconf_dad_timer(unsigned long data
)
2490 struct inet6_ifaddr
*ifp
= (struct inet6_ifaddr
*) data
;
2491 struct inet6_dev
*idev
= ifp
->idev
;
2492 struct in6_addr unspec
;
2493 struct in6_addr mcaddr
;
2495 read_lock_bh(&idev
->lock
);
2497 read_unlock_bh(&idev
->lock
);
2500 spin_lock_bh(&ifp
->lock
);
2501 if (ifp
->probes
== 0) {
2503 * DAD was successful
2506 ifp
->flags
&= ~IFA_F_TENTATIVE
;
2507 spin_unlock_bh(&ifp
->lock
);
2508 read_unlock_bh(&idev
->lock
);
2510 addrconf_dad_completed(ifp
);
2516 addrconf_mod_timer(ifp
, AC_DAD
, ifp
->idev
->nd_parms
->retrans_time
);
2517 spin_unlock_bh(&ifp
->lock
);
2518 read_unlock_bh(&idev
->lock
);
2520 /* send a neighbour solicitation for our addr */
2521 memset(&unspec
, 0, sizeof(unspec
));
2522 addrconf_addr_solict_mult(&ifp
->addr
, &mcaddr
);
2523 ndisc_send_ns(ifp
->idev
->dev
, NULL
, &ifp
->addr
, &mcaddr
, &unspec
);
2528 static void addrconf_dad_completed(struct inet6_ifaddr
*ifp
)
2530 struct net_device
* dev
= ifp
->idev
->dev
;
2533 * Configure the address for reception. Now it is valid.
2536 ipv6_ifa_notify(RTM_NEWADDR
, ifp
);
2538 /* If added prefix is link local and forwarding is off,
2539 start sending router solicitations.
2542 if (ifp
->idev
->cnf
.forwarding
== 0 &&
2543 ifp
->idev
->cnf
.rtr_solicits
> 0 &&
2544 (dev
->flags
&IFF_LOOPBACK
) == 0 &&
2545 (ipv6_addr_type(&ifp
->addr
) & IPV6_ADDR_LINKLOCAL
)) {
2546 struct in6_addr all_routers
;
2548 ipv6_addr_all_routers(&all_routers
);
2551 * If a host as already performed a random delay
2552 * [...] as part of DAD [...] there is no need
2553 * to delay again before sending the first RS
2555 ndisc_send_rs(ifp
->idev
->dev
, &ifp
->addr
, &all_routers
);
2557 spin_lock_bh(&ifp
->lock
);
2559 ifp
->idev
->if_flags
|= IF_RS_SENT
;
2560 addrconf_mod_timer(ifp
, AC_RS
, ifp
->idev
->cnf
.rtr_solicit_interval
);
2561 spin_unlock_bh(&ifp
->lock
);
2565 static void addrconf_dad_run(struct inet6_dev
*idev
) {
2566 struct inet6_ifaddr
*ifp
;
2568 read_lock_bh(&idev
->lock
);
2569 for (ifp
= idev
->addr_list
; ifp
; ifp
= ifp
->if_next
) {
2570 spin_lock_bh(&ifp
->lock
);
2571 if (!(ifp
->flags
& IFA_F_TENTATIVE
)) {
2572 spin_unlock_bh(&ifp
->lock
);
2575 spin_unlock_bh(&ifp
->lock
);
2576 addrconf_dad_kick(ifp
);
2578 read_unlock_bh(&idev
->lock
);
2581 #ifdef CONFIG_PROC_FS
2582 struct if6_iter_state
{
2586 static struct inet6_ifaddr
*if6_get_first(struct seq_file
*seq
)
2588 struct inet6_ifaddr
*ifa
= NULL
;
2589 struct if6_iter_state
*state
= seq
->private;
2591 for (state
->bucket
= 0; state
->bucket
< IN6_ADDR_HSIZE
; ++state
->bucket
) {
2592 ifa
= inet6_addr_lst
[state
->bucket
];
2599 static struct inet6_ifaddr
*if6_get_next(struct seq_file
*seq
, struct inet6_ifaddr
*ifa
)
2601 struct if6_iter_state
*state
= seq
->private;
2603 ifa
= ifa
->lst_next
;
2605 if (!ifa
&& ++state
->bucket
< IN6_ADDR_HSIZE
) {
2606 ifa
= inet6_addr_lst
[state
->bucket
];
2612 static struct inet6_ifaddr
*if6_get_idx(struct seq_file
*seq
, loff_t pos
)
2614 struct inet6_ifaddr
*ifa
= if6_get_first(seq
);
2617 while(pos
&& (ifa
= if6_get_next(seq
, ifa
)) != NULL
)
2619 return pos
? NULL
: ifa
;
2622 static void *if6_seq_start(struct seq_file
*seq
, loff_t
*pos
)
2624 read_lock_bh(&addrconf_hash_lock
);
2625 return if6_get_idx(seq
, *pos
);
2628 static void *if6_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
2630 struct inet6_ifaddr
*ifa
;
2632 ifa
= if6_get_next(seq
, v
);
2637 static void if6_seq_stop(struct seq_file
*seq
, void *v
)
2639 read_unlock_bh(&addrconf_hash_lock
);
2642 static int if6_seq_show(struct seq_file
*seq
, void *v
)
2644 struct inet6_ifaddr
*ifp
= (struct inet6_ifaddr
*)v
;
2646 "%04x%04x%04x%04x%04x%04x%04x%04x %02x %02x %02x %02x %8s\n",
2648 ifp
->idev
->dev
->ifindex
,
2652 ifp
->idev
->dev
->name
);
2656 static struct seq_operations if6_seq_ops
= {
2657 .start
= if6_seq_start
,
2658 .next
= if6_seq_next
,
2659 .show
= if6_seq_show
,
2660 .stop
= if6_seq_stop
,
2663 static int if6_seq_open(struct inode
*inode
, struct file
*file
)
2665 struct seq_file
*seq
;
2667 struct if6_iter_state
*s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
2671 memset(s
, 0, sizeof(*s
));
2673 rc
= seq_open(file
, &if6_seq_ops
);
2677 seq
= file
->private_data
;
2686 static struct file_operations if6_fops
= {
2687 .owner
= THIS_MODULE
,
2688 .open
= if6_seq_open
,
2690 .llseek
= seq_lseek
,
2691 .release
= seq_release_private
,
2694 int __init
if6_proc_init(void)
2696 if (!proc_net_fops_create("if_inet6", S_IRUGO
, &if6_fops
))
2701 void if6_proc_exit(void)
2703 proc_net_remove("if_inet6");
2705 #endif /* CONFIG_PROC_FS */
2708 * Periodic address status verification
2711 static void addrconf_verify(unsigned long foo
)
2713 struct inet6_ifaddr
*ifp
;
2714 unsigned long now
, next
;
2717 spin_lock_bh(&addrconf_verify_lock
);
2719 next
= now
+ ADDR_CHECK_FREQUENCY
;
2721 del_timer(&addr_chk_timer
);
2723 for (i
=0; i
< IN6_ADDR_HSIZE
; i
++) {
2726 read_lock(&addrconf_hash_lock
);
2727 for (ifp
=inet6_addr_lst
[i
]; ifp
; ifp
=ifp
->lst_next
) {
2729 #ifdef CONFIG_IPV6_PRIVACY
2730 unsigned long regen_advance
;
2733 if (ifp
->flags
& IFA_F_PERMANENT
)
2736 spin_lock(&ifp
->lock
);
2737 age
= (now
- ifp
->tstamp
) / HZ
;
2739 #ifdef CONFIG_IPV6_PRIVACY
2740 regen_advance
= ifp
->idev
->cnf
.regen_max_retry
*
2741 ifp
->idev
->cnf
.dad_transmits
*
2742 ifp
->idev
->nd_parms
->retrans_time
/ HZ
;
2745 if (age
>= ifp
->valid_lft
) {
2746 spin_unlock(&ifp
->lock
);
2748 read_unlock(&addrconf_hash_lock
);
2751 } else if (age
>= ifp
->prefered_lft
) {
2752 /* jiffies - ifp->tsamp > age >= ifp->prefered_lft */
2755 if (!(ifp
->flags
&IFA_F_DEPRECATED
)) {
2757 ifp
->flags
|= IFA_F_DEPRECATED
;
2760 if (time_before(ifp
->tstamp
+ ifp
->valid_lft
* HZ
, next
))
2761 next
= ifp
->tstamp
+ ifp
->valid_lft
* HZ
;
2763 spin_unlock(&ifp
->lock
);
2767 read_unlock(&addrconf_hash_lock
);
2769 ipv6_ifa_notify(0, ifp
);
2773 #ifdef CONFIG_IPV6_PRIVACY
2774 } else if ((ifp
->flags
&IFA_F_TEMPORARY
) &&
2775 !(ifp
->flags
&IFA_F_TENTATIVE
)) {
2776 if (age
>= ifp
->prefered_lft
- regen_advance
) {
2777 struct inet6_ifaddr
*ifpub
= ifp
->ifpub
;
2778 if (time_before(ifp
->tstamp
+ ifp
->prefered_lft
* HZ
, next
))
2779 next
= ifp
->tstamp
+ ifp
->prefered_lft
* HZ
;
2780 if (!ifp
->regen_count
&& ifpub
) {
2783 in6_ifa_hold(ifpub
);
2784 spin_unlock(&ifp
->lock
);
2785 read_unlock(&addrconf_hash_lock
);
2786 spin_lock(&ifpub
->lock
);
2787 ifpub
->regen_count
= 0;
2788 spin_unlock(&ifpub
->lock
);
2789 ipv6_create_tempaddr(ifpub
, ifp
);
2794 } else if (time_before(ifp
->tstamp
+ ifp
->prefered_lft
* HZ
- regen_advance
* HZ
, next
))
2795 next
= ifp
->tstamp
+ ifp
->prefered_lft
* HZ
- regen_advance
* HZ
;
2796 spin_unlock(&ifp
->lock
);
2799 /* ifp->prefered_lft <= ifp->valid_lft */
2800 if (time_before(ifp
->tstamp
+ ifp
->prefered_lft
* HZ
, next
))
2801 next
= ifp
->tstamp
+ ifp
->prefered_lft
* HZ
;
2802 spin_unlock(&ifp
->lock
);
2805 read_unlock(&addrconf_hash_lock
);
2808 addr_chk_timer
.expires
= time_before(next
, jiffies
+ HZ
) ? jiffies
+ HZ
: next
;
2809 add_timer(&addr_chk_timer
);
2810 spin_unlock_bh(&addrconf_verify_lock
);
2814 inet6_rtm_deladdr(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
2816 struct rtattr
**rta
= arg
;
2817 struct ifaddrmsg
*ifm
= NLMSG_DATA(nlh
);
2818 struct in6_addr
*pfx
;
2821 if (rta
[IFA_ADDRESS
-1]) {
2822 if (RTA_PAYLOAD(rta
[IFA_ADDRESS
-1]) < sizeof(*pfx
))
2824 pfx
= RTA_DATA(rta
[IFA_ADDRESS
-1]);
2826 if (rta
[IFA_LOCAL
-1]) {
2827 if (pfx
&& memcmp(pfx
, RTA_DATA(rta
[IFA_LOCAL
-1]), sizeof(*pfx
)))
2829 pfx
= RTA_DATA(rta
[IFA_LOCAL
-1]);
2834 return inet6_addr_del(ifm
->ifa_index
, pfx
, ifm
->ifa_prefixlen
);
2838 inet6_rtm_newaddr(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
2840 struct rtattr
**rta
= arg
;
2841 struct ifaddrmsg
*ifm
= NLMSG_DATA(nlh
);
2842 struct in6_addr
*pfx
;
2845 if (rta
[IFA_ADDRESS
-1]) {
2846 if (RTA_PAYLOAD(rta
[IFA_ADDRESS
-1]) < sizeof(*pfx
))
2848 pfx
= RTA_DATA(rta
[IFA_ADDRESS
-1]);
2850 if (rta
[IFA_LOCAL
-1]) {
2851 if (pfx
&& memcmp(pfx
, RTA_DATA(rta
[IFA_LOCAL
-1]), sizeof(*pfx
)))
2853 pfx
= RTA_DATA(rta
[IFA_LOCAL
-1]);
2858 return inet6_addr_add(ifm
->ifa_index
, pfx
, ifm
->ifa_prefixlen
);
2861 static int inet6_fill_ifaddr(struct sk_buff
*skb
, struct inet6_ifaddr
*ifa
,
2862 u32 pid
, u32 seq
, int event
, unsigned int flags
)
2864 struct ifaddrmsg
*ifm
;
2865 struct nlmsghdr
*nlh
;
2866 struct ifa_cacheinfo ci
;
2867 unsigned char *b
= skb
->tail
;
2869 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*ifm
), flags
);
2870 ifm
= NLMSG_DATA(nlh
);
2871 ifm
->ifa_family
= AF_INET6
;
2872 ifm
->ifa_prefixlen
= ifa
->prefix_len
;
2873 ifm
->ifa_flags
= ifa
->flags
;
2874 ifm
->ifa_scope
= RT_SCOPE_UNIVERSE
;
2875 if (ifa
->scope
&IFA_HOST
)
2876 ifm
->ifa_scope
= RT_SCOPE_HOST
;
2877 else if (ifa
->scope
&IFA_LINK
)
2878 ifm
->ifa_scope
= RT_SCOPE_LINK
;
2879 else if (ifa
->scope
&IFA_SITE
)
2880 ifm
->ifa_scope
= RT_SCOPE_SITE
;
2881 ifm
->ifa_index
= ifa
->idev
->dev
->ifindex
;
2882 RTA_PUT(skb
, IFA_ADDRESS
, 16, &ifa
->addr
);
2883 if (!(ifa
->flags
&IFA_F_PERMANENT
)) {
2884 ci
.ifa_prefered
= ifa
->prefered_lft
;
2885 ci
.ifa_valid
= ifa
->valid_lft
;
2886 if (ci
.ifa_prefered
!= INFINITY_LIFE_TIME
) {
2887 long tval
= (jiffies
- ifa
->tstamp
)/HZ
;
2888 ci
.ifa_prefered
-= tval
;
2889 if (ci
.ifa_valid
!= INFINITY_LIFE_TIME
)
2890 ci
.ifa_valid
-= tval
;
2893 ci
.ifa_prefered
= INFINITY_LIFE_TIME
;
2894 ci
.ifa_valid
= INFINITY_LIFE_TIME
;
2896 ci
.cstamp
= (__u32
)(TIME_DELTA(ifa
->cstamp
, INITIAL_JIFFIES
) / HZ
* 100
2897 + TIME_DELTA(ifa
->cstamp
, INITIAL_JIFFIES
) % HZ
* 100 / HZ
);
2898 ci
.tstamp
= (__u32
)(TIME_DELTA(ifa
->tstamp
, INITIAL_JIFFIES
) / HZ
* 100
2899 + TIME_DELTA(ifa
->tstamp
, INITIAL_JIFFIES
) % HZ
* 100 / HZ
);
2900 RTA_PUT(skb
, IFA_CACHEINFO
, sizeof(ci
), &ci
);
2901 nlh
->nlmsg_len
= skb
->tail
- b
;
2906 skb_trim(skb
, b
- skb
->data
);
2910 static int inet6_fill_ifmcaddr(struct sk_buff
*skb
, struct ifmcaddr6
*ifmca
,
2911 u32 pid
, u32 seq
, int event
, u16 flags
)
2913 struct ifaddrmsg
*ifm
;
2914 struct nlmsghdr
*nlh
;
2915 struct ifa_cacheinfo ci
;
2916 unsigned char *b
= skb
->tail
;
2918 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*ifm
), flags
);
2919 ifm
= NLMSG_DATA(nlh
);
2920 ifm
->ifa_family
= AF_INET6
;
2921 ifm
->ifa_prefixlen
= 128;
2922 ifm
->ifa_flags
= IFA_F_PERMANENT
;
2923 ifm
->ifa_scope
= RT_SCOPE_UNIVERSE
;
2924 if (ipv6_addr_scope(&ifmca
->mca_addr
)&IFA_SITE
)
2925 ifm
->ifa_scope
= RT_SCOPE_SITE
;
2926 ifm
->ifa_index
= ifmca
->idev
->dev
->ifindex
;
2927 RTA_PUT(skb
, IFA_MULTICAST
, 16, &ifmca
->mca_addr
);
2928 ci
.cstamp
= (__u32
)(TIME_DELTA(ifmca
->mca_cstamp
, INITIAL_JIFFIES
) / HZ
2929 * 100 + TIME_DELTA(ifmca
->mca_cstamp
, INITIAL_JIFFIES
) % HZ
2931 ci
.tstamp
= (__u32
)(TIME_DELTA(ifmca
->mca_tstamp
, INITIAL_JIFFIES
) / HZ
2932 * 100 + TIME_DELTA(ifmca
->mca_tstamp
, INITIAL_JIFFIES
) % HZ
2934 ci
.ifa_prefered
= INFINITY_LIFE_TIME
;
2935 ci
.ifa_valid
= INFINITY_LIFE_TIME
;
2936 RTA_PUT(skb
, IFA_CACHEINFO
, sizeof(ci
), &ci
);
2937 nlh
->nlmsg_len
= skb
->tail
- b
;
2942 skb_trim(skb
, b
- skb
->data
);
2946 static int inet6_fill_ifacaddr(struct sk_buff
*skb
, struct ifacaddr6
*ifaca
,
2947 u32 pid
, u32 seq
, int event
, unsigned int flags
)
2949 struct ifaddrmsg
*ifm
;
2950 struct nlmsghdr
*nlh
;
2951 struct ifa_cacheinfo ci
;
2952 unsigned char *b
= skb
->tail
;
2954 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*ifm
), flags
);
2955 ifm
= NLMSG_DATA(nlh
);
2956 ifm
->ifa_family
= AF_INET6
;
2957 ifm
->ifa_prefixlen
= 128;
2958 ifm
->ifa_flags
= IFA_F_PERMANENT
;
2959 ifm
->ifa_scope
= RT_SCOPE_UNIVERSE
;
2960 if (ipv6_addr_scope(&ifaca
->aca_addr
)&IFA_SITE
)
2961 ifm
->ifa_scope
= RT_SCOPE_SITE
;
2962 ifm
->ifa_index
= ifaca
->aca_idev
->dev
->ifindex
;
2963 RTA_PUT(skb
, IFA_ANYCAST
, 16, &ifaca
->aca_addr
);
2964 ci
.cstamp
= (__u32
)(TIME_DELTA(ifaca
->aca_cstamp
, INITIAL_JIFFIES
) / HZ
2965 * 100 + TIME_DELTA(ifaca
->aca_cstamp
, INITIAL_JIFFIES
) % HZ
2967 ci
.tstamp
= (__u32
)(TIME_DELTA(ifaca
->aca_tstamp
, INITIAL_JIFFIES
) / HZ
2968 * 100 + TIME_DELTA(ifaca
->aca_tstamp
, INITIAL_JIFFIES
) % HZ
2970 ci
.ifa_prefered
= INFINITY_LIFE_TIME
;
2971 ci
.ifa_valid
= INFINITY_LIFE_TIME
;
2972 RTA_PUT(skb
, IFA_CACHEINFO
, sizeof(ci
), &ci
);
2973 nlh
->nlmsg_len
= skb
->tail
- b
;
2978 skb_trim(skb
, b
- skb
->data
);
2989 static int inet6_dump_addr(struct sk_buff
*skb
, struct netlink_callback
*cb
,
2990 enum addr_type_t type
)
2993 int s_idx
, s_ip_idx
;
2995 struct net_device
*dev
;
2996 struct inet6_dev
*idev
= NULL
;
2997 struct inet6_ifaddr
*ifa
;
2998 struct ifmcaddr6
*ifmca
;
2999 struct ifacaddr6
*ifaca
;
3001 s_idx
= cb
->args
[0];
3002 s_ip_idx
= ip_idx
= cb
->args
[1];
3003 read_lock(&dev_base_lock
);
3005 for (dev
= dev_base
, idx
= 0; dev
; dev
= dev
->next
, idx
++) {
3011 if ((idev
= in6_dev_get(dev
)) == NULL
)
3013 read_lock_bh(&idev
->lock
);
3016 /* unicast address incl. temp addr */
3017 for (ifa
= idev
->addr_list
; ifa
;
3018 ifa
= ifa
->if_next
, ip_idx
++) {
3019 if (ip_idx
< s_ip_idx
)
3021 if ((err
= inet6_fill_ifaddr(skb
, ifa
,
3022 NETLINK_CB(cb
->skb
).pid
,
3023 cb
->nlh
->nlmsg_seq
, RTM_NEWADDR
,
3028 case MULTICAST_ADDR
:
3029 /* multicast address */
3030 for (ifmca
= idev
->mc_list
; ifmca
;
3031 ifmca
= ifmca
->next
, ip_idx
++) {
3032 if (ip_idx
< s_ip_idx
)
3034 if ((err
= inet6_fill_ifmcaddr(skb
, ifmca
,
3035 NETLINK_CB(cb
->skb
).pid
,
3036 cb
->nlh
->nlmsg_seq
, RTM_GETMULTICAST
,
3042 /* anycast address */
3043 for (ifaca
= idev
->ac_list
; ifaca
;
3044 ifaca
= ifaca
->aca_next
, ip_idx
++) {
3045 if (ip_idx
< s_ip_idx
)
3047 if ((err
= inet6_fill_ifacaddr(skb
, ifaca
,
3048 NETLINK_CB(cb
->skb
).pid
,
3049 cb
->nlh
->nlmsg_seq
, RTM_GETANYCAST
,
3057 read_unlock_bh(&idev
->lock
);
3062 read_unlock_bh(&idev
->lock
);
3065 read_unlock(&dev_base_lock
);
3067 cb
->args
[1] = ip_idx
;
3071 static int inet6_dump_ifaddr(struct sk_buff
*skb
, struct netlink_callback
*cb
)
3073 enum addr_type_t type
= UNICAST_ADDR
;
3074 return inet6_dump_addr(skb
, cb
, type
);
3077 static int inet6_dump_ifmcaddr(struct sk_buff
*skb
, struct netlink_callback
*cb
)
3079 enum addr_type_t type
= MULTICAST_ADDR
;
3080 return inet6_dump_addr(skb
, cb
, type
);
3084 static int inet6_dump_ifacaddr(struct sk_buff
*skb
, struct netlink_callback
*cb
)
3086 enum addr_type_t type
= ANYCAST_ADDR
;
3087 return inet6_dump_addr(skb
, cb
, type
);
3090 static void inet6_ifa_notify(int event
, struct inet6_ifaddr
*ifa
)
3092 struct sk_buff
*skb
;
3093 int size
= NLMSG_SPACE(sizeof(struct ifaddrmsg
)+128);
3095 skb
= alloc_skb(size
, GFP_ATOMIC
);
3097 netlink_set_err(rtnl
, 0, RTNLGRP_IPV6_IFADDR
, ENOBUFS
);
3100 if (inet6_fill_ifaddr(skb
, ifa
, current
->pid
, 0, event
, 0) < 0) {
3102 netlink_set_err(rtnl
, 0, RTNLGRP_IPV6_IFADDR
, EINVAL
);
3105 NETLINK_CB(skb
).dst_group
= RTNLGRP_IPV6_IFADDR
;
3106 netlink_broadcast(rtnl
, skb
, 0, RTNLGRP_IPV6_IFADDR
, GFP_ATOMIC
);
3109 static void inline ipv6_store_devconf(struct ipv6_devconf
*cnf
,
3110 __s32
*array
, int bytes
)
3112 memset(array
, 0, bytes
);
3113 array
[DEVCONF_FORWARDING
] = cnf
->forwarding
;
3114 array
[DEVCONF_HOPLIMIT
] = cnf
->hop_limit
;
3115 array
[DEVCONF_MTU6
] = cnf
->mtu6
;
3116 array
[DEVCONF_ACCEPT_RA
] = cnf
->accept_ra
;
3117 array
[DEVCONF_ACCEPT_REDIRECTS
] = cnf
->accept_redirects
;
3118 array
[DEVCONF_AUTOCONF
] = cnf
->autoconf
;
3119 array
[DEVCONF_DAD_TRANSMITS
] = cnf
->dad_transmits
;
3120 array
[DEVCONF_RTR_SOLICITS
] = cnf
->rtr_solicits
;
3121 array
[DEVCONF_RTR_SOLICIT_INTERVAL
] = cnf
->rtr_solicit_interval
;
3122 array
[DEVCONF_RTR_SOLICIT_DELAY
] = cnf
->rtr_solicit_delay
;
3123 array
[DEVCONF_FORCE_MLD_VERSION
] = cnf
->force_mld_version
;
3124 #ifdef CONFIG_IPV6_PRIVACY
3125 array
[DEVCONF_USE_TEMPADDR
] = cnf
->use_tempaddr
;
3126 array
[DEVCONF_TEMP_VALID_LFT
] = cnf
->temp_valid_lft
;
3127 array
[DEVCONF_TEMP_PREFERED_LFT
] = cnf
->temp_prefered_lft
;
3128 array
[DEVCONF_REGEN_MAX_RETRY
] = cnf
->regen_max_retry
;
3129 array
[DEVCONF_MAX_DESYNC_FACTOR
] = cnf
->max_desync_factor
;
3131 array
[DEVCONF_MAX_ADDRESSES
] = cnf
->max_addresses
;
3134 static int inet6_fill_ifinfo(struct sk_buff
*skb
, struct inet6_dev
*idev
,
3135 u32 pid
, u32 seq
, int event
, unsigned int flags
)
3137 struct net_device
*dev
= idev
->dev
;
3138 __s32
*array
= NULL
;
3139 struct ifinfomsg
*r
;
3140 struct nlmsghdr
*nlh
;
3141 unsigned char *b
= skb
->tail
;
3142 struct rtattr
*subattr
;
3143 __u32 mtu
= dev
->mtu
;
3144 struct ifla_cacheinfo ci
;
3146 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*r
), flags
);
3147 r
= NLMSG_DATA(nlh
);
3148 r
->ifi_family
= AF_INET6
;
3150 r
->ifi_type
= dev
->type
;
3151 r
->ifi_index
= dev
->ifindex
;
3152 r
->ifi_flags
= dev_get_flags(dev
);
3155 RTA_PUT(skb
, IFLA_IFNAME
, strlen(dev
->name
)+1, dev
->name
);
3158 RTA_PUT(skb
, IFLA_ADDRESS
, dev
->addr_len
, dev
->dev_addr
);
3160 RTA_PUT(skb
, IFLA_MTU
, sizeof(mtu
), &mtu
);
3161 if (dev
->ifindex
!= dev
->iflink
)
3162 RTA_PUT(skb
, IFLA_LINK
, sizeof(int), &dev
->iflink
);
3164 subattr
= (struct rtattr
*)skb
->tail
;
3166 RTA_PUT(skb
, IFLA_PROTINFO
, 0, NULL
);
3168 /* return the device flags */
3169 RTA_PUT(skb
, IFLA_INET6_FLAGS
, sizeof(__u32
), &idev
->if_flags
);
3171 /* return interface cacheinfo */
3172 ci
.max_reasm_len
= IPV6_MAXPLEN
;
3173 ci
.tstamp
= (__u32
)(TIME_DELTA(idev
->tstamp
, INITIAL_JIFFIES
) / HZ
* 100
3174 + TIME_DELTA(idev
->tstamp
, INITIAL_JIFFIES
) % HZ
* 100 / HZ
);
3175 ci
.reachable_time
= idev
->nd_parms
->reachable_time
;
3176 ci
.retrans_time
= idev
->nd_parms
->retrans_time
;
3177 RTA_PUT(skb
, IFLA_INET6_CACHEINFO
, sizeof(ci
), &ci
);
3179 /* return the device sysctl params */
3180 if ((array
= kmalloc(DEVCONF_MAX
* sizeof(*array
), GFP_ATOMIC
)) == NULL
)
3181 goto rtattr_failure
;
3182 ipv6_store_devconf(&idev
->cnf
, array
, DEVCONF_MAX
* sizeof(*array
));
3183 RTA_PUT(skb
, IFLA_INET6_CONF
, DEVCONF_MAX
* sizeof(*array
), array
);
3185 /* XXX - Statistics/MC not implemented */
3186 subattr
->rta_len
= skb
->tail
- (u8
*)subattr
;
3188 nlh
->nlmsg_len
= skb
->tail
- b
;
3195 skb_trim(skb
, b
- skb
->data
);
3199 static int inet6_dump_ifinfo(struct sk_buff
*skb
, struct netlink_callback
*cb
)
3202 int s_idx
= cb
->args
[0];
3203 struct net_device
*dev
;
3204 struct inet6_dev
*idev
;
3206 read_lock(&dev_base_lock
);
3207 for (dev
=dev_base
, idx
=0; dev
; dev
= dev
->next
, idx
++) {
3210 if ((idev
= in6_dev_get(dev
)) == NULL
)
3212 err
= inet6_fill_ifinfo(skb
, idev
, NETLINK_CB(cb
->skb
).pid
,
3213 cb
->nlh
->nlmsg_seq
, RTM_NEWLINK
, NLM_F_MULTI
);
3218 read_unlock(&dev_base_lock
);
3224 void inet6_ifinfo_notify(int event
, struct inet6_dev
*idev
)
3226 struct sk_buff
*skb
;
3228 int size
= NLMSG_SPACE(sizeof(struct ifinfomsg
)+128);
3230 skb
= alloc_skb(size
, GFP_ATOMIC
);
3232 netlink_set_err(rtnl
, 0, RTNLGRP_IPV6_IFINFO
, ENOBUFS
);
3235 if (inet6_fill_ifinfo(skb
, idev
, current
->pid
, 0, event
, 0) < 0) {
3237 netlink_set_err(rtnl
, 0, RTNLGRP_IPV6_IFINFO
, EINVAL
);
3240 NETLINK_CB(skb
).dst_group
= RTNLGRP_IPV6_IFINFO
;
3241 netlink_broadcast(rtnl
, skb
, 0, RTNLGRP_IPV6_IFINFO
, GFP_ATOMIC
);
3244 static int inet6_fill_prefix(struct sk_buff
*skb
, struct inet6_dev
*idev
,
3245 struct prefix_info
*pinfo
, u32 pid
, u32 seq
,
3246 int event
, unsigned int flags
)
3248 struct prefixmsg
*pmsg
;
3249 struct nlmsghdr
*nlh
;
3250 unsigned char *b
= skb
->tail
;
3251 struct prefix_cacheinfo ci
;
3253 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*pmsg
), flags
);
3254 pmsg
= NLMSG_DATA(nlh
);
3255 pmsg
->prefix_family
= AF_INET6
;
3256 pmsg
->prefix_pad1
= 0;
3257 pmsg
->prefix_pad2
= 0;
3258 pmsg
->prefix_ifindex
= idev
->dev
->ifindex
;
3259 pmsg
->prefix_len
= pinfo
->prefix_len
;
3260 pmsg
->prefix_type
= pinfo
->type
;
3261 pmsg
->prefix_pad3
= 0;
3263 pmsg
->prefix_flags
= 0;
3265 pmsg
->prefix_flags
|= IF_PREFIX_ONLINK
;
3266 if (pinfo
->autoconf
)
3267 pmsg
->prefix_flags
|= IF_PREFIX_AUTOCONF
;
3269 RTA_PUT(skb
, PREFIX_ADDRESS
, sizeof(pinfo
->prefix
), &pinfo
->prefix
);
3271 ci
.preferred_time
= ntohl(pinfo
->prefered
);
3272 ci
.valid_time
= ntohl(pinfo
->valid
);
3273 RTA_PUT(skb
, PREFIX_CACHEINFO
, sizeof(ci
), &ci
);
3275 nlh
->nlmsg_len
= skb
->tail
- b
;
3280 skb_trim(skb
, b
- skb
->data
);
3284 static void inet6_prefix_notify(int event
, struct inet6_dev
*idev
,
3285 struct prefix_info
*pinfo
)
3287 struct sk_buff
*skb
;
3288 int size
= NLMSG_SPACE(sizeof(struct prefixmsg
)+128);
3290 skb
= alloc_skb(size
, GFP_ATOMIC
);
3292 netlink_set_err(rtnl
, 0, RTNLGRP_IPV6_PREFIX
, ENOBUFS
);
3295 if (inet6_fill_prefix(skb
, idev
, pinfo
, current
->pid
, 0, event
, 0) < 0) {
3297 netlink_set_err(rtnl
, 0, RTNLGRP_IPV6_PREFIX
, EINVAL
);
3300 NETLINK_CB(skb
).dst_group
= RTNLGRP_IPV6_PREFIX
;
3301 netlink_broadcast(rtnl
, skb
, 0, RTNLGRP_IPV6_PREFIX
, GFP_ATOMIC
);
3304 static struct rtnetlink_link inet6_rtnetlink_table
[RTM_NR_MSGTYPES
] = {
3305 [RTM_GETLINK
- RTM_BASE
] = { .dumpit
= inet6_dump_ifinfo
, },
3306 [RTM_NEWADDR
- RTM_BASE
] = { .doit
= inet6_rtm_newaddr
, },
3307 [RTM_DELADDR
- RTM_BASE
] = { .doit
= inet6_rtm_deladdr
, },
3308 [RTM_GETADDR
- RTM_BASE
] = { .dumpit
= inet6_dump_ifaddr
, },
3309 [RTM_GETMULTICAST
- RTM_BASE
] = { .dumpit
= inet6_dump_ifmcaddr
, },
3310 [RTM_GETANYCAST
- RTM_BASE
] = { .dumpit
= inet6_dump_ifacaddr
, },
3311 [RTM_NEWROUTE
- RTM_BASE
] = { .doit
= inet6_rtm_newroute
, },
3312 [RTM_DELROUTE
- RTM_BASE
] = { .doit
= inet6_rtm_delroute
, },
3313 [RTM_GETROUTE
- RTM_BASE
] = { .doit
= inet6_rtm_getroute
,
3314 .dumpit
= inet6_dump_fib
, },
3317 static void __ipv6_ifa_notify(int event
, struct inet6_ifaddr
*ifp
)
3319 inet6_ifa_notify(event
? : RTM_NEWADDR
, ifp
);
3323 dst_hold(&ifp
->rt
->u
.dst
);
3324 if (ip6_ins_rt(ifp
->rt
, NULL
, NULL
, NULL
))
3325 dst_release(&ifp
->rt
->u
.dst
);
3326 if (ifp
->idev
->cnf
.forwarding
)
3327 addrconf_join_anycast(ifp
);
3330 if (ifp
->idev
->cnf
.forwarding
)
3331 addrconf_leave_anycast(ifp
);
3332 addrconf_leave_solict(ifp
->idev
, &ifp
->addr
);
3333 dst_hold(&ifp
->rt
->u
.dst
);
3334 if (ip6_del_rt(ifp
->rt
, NULL
, NULL
, NULL
))
3335 dst_free(&ifp
->rt
->u
.dst
);
3337 dst_release(&ifp
->rt
->u
.dst
);
3342 static void ipv6_ifa_notify(int event
, struct inet6_ifaddr
*ifp
)
3344 read_lock_bh(&addrconf_lock
);
3345 if (likely(ifp
->idev
->dead
== 0))
3346 __ipv6_ifa_notify(event
, ifp
);
3347 read_unlock_bh(&addrconf_lock
);
3350 #ifdef CONFIG_SYSCTL
3353 int addrconf_sysctl_forward(ctl_table
*ctl
, int write
, struct file
* filp
,
3354 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3356 int *valp
= ctl
->data
;
3360 ret
= proc_dointvec(ctl
, write
, filp
, buffer
, lenp
, ppos
);
3362 if (write
&& valp
!= &ipv6_devconf_dflt
.forwarding
) {
3363 if (valp
!= &ipv6_devconf
.forwarding
) {
3364 if ((!*valp
) ^ (!val
)) {
3365 struct inet6_dev
*idev
= (struct inet6_dev
*)ctl
->extra1
;
3368 dev_forward_change(idev
);
3371 ipv6_devconf_dflt
.forwarding
= ipv6_devconf
.forwarding
;
3372 addrconf_forward_change();
3375 rt6_purge_dflt_routers();
3381 static int addrconf_sysctl_forward_strategy(ctl_table
*table
,
3382 int __user
*name
, int nlen
,
3383 void __user
*oldval
,
3384 size_t __user
*oldlenp
,
3385 void __user
*newval
, size_t newlen
,
3388 int *valp
= table
->data
;
3391 if (!newval
|| !newlen
)
3393 if (newlen
!= sizeof(int))
3395 if (get_user(new, (int __user
*)newval
))
3399 if (oldval
&& oldlenp
) {
3401 if (get_user(len
, oldlenp
))
3404 if (len
> table
->maxlen
)
3405 len
= table
->maxlen
;
3406 if (copy_to_user(oldval
, valp
, len
))
3408 if (put_user(len
, oldlenp
))
3413 if (valp
!= &ipv6_devconf_dflt
.forwarding
) {
3414 if (valp
!= &ipv6_devconf
.forwarding
) {
3415 struct inet6_dev
*idev
= (struct inet6_dev
*)table
->extra1
;
3417 if (unlikely(idev
== NULL
))
3419 changed
= (!*valp
) ^ (!new);
3422 dev_forward_change(idev
);
3425 addrconf_forward_change();
3429 rt6_purge_dflt_routers();
3436 static struct addrconf_sysctl_table
3438 struct ctl_table_header
*sysctl_header
;
3439 ctl_table addrconf_vars
[__NET_IPV6_MAX
];
3440 ctl_table addrconf_dev
[2];
3441 ctl_table addrconf_conf_dir
[2];
3442 ctl_table addrconf_proto_dir
[2];
3443 ctl_table addrconf_root_dir
[2];
3444 } addrconf_sysctl
= {
3445 .sysctl_header
= NULL
,
3448 .ctl_name
= NET_IPV6_FORWARDING
,
3449 .procname
= "forwarding",
3450 .data
= &ipv6_devconf
.forwarding
,
3451 .maxlen
= sizeof(int),
3453 .proc_handler
= &addrconf_sysctl_forward
,
3454 .strategy
= &addrconf_sysctl_forward_strategy
,
3457 .ctl_name
= NET_IPV6_HOP_LIMIT
,
3458 .procname
= "hop_limit",
3459 .data
= &ipv6_devconf
.hop_limit
,
3460 .maxlen
= sizeof(int),
3462 .proc_handler
= proc_dointvec
,
3465 .ctl_name
= NET_IPV6_MTU
,
3467 .data
= &ipv6_devconf
.mtu6
,
3468 .maxlen
= sizeof(int),
3470 .proc_handler
= &proc_dointvec
,
3473 .ctl_name
= NET_IPV6_ACCEPT_RA
,
3474 .procname
= "accept_ra",
3475 .data
= &ipv6_devconf
.accept_ra
,
3476 .maxlen
= sizeof(int),
3478 .proc_handler
= &proc_dointvec
,
3481 .ctl_name
= NET_IPV6_ACCEPT_REDIRECTS
,
3482 .procname
= "accept_redirects",
3483 .data
= &ipv6_devconf
.accept_redirects
,
3484 .maxlen
= sizeof(int),
3486 .proc_handler
= &proc_dointvec
,
3489 .ctl_name
= NET_IPV6_AUTOCONF
,
3490 .procname
= "autoconf",
3491 .data
= &ipv6_devconf
.autoconf
,
3492 .maxlen
= sizeof(int),
3494 .proc_handler
= &proc_dointvec
,
3497 .ctl_name
= NET_IPV6_DAD_TRANSMITS
,
3498 .procname
= "dad_transmits",
3499 .data
= &ipv6_devconf
.dad_transmits
,
3500 .maxlen
= sizeof(int),
3502 .proc_handler
= &proc_dointvec
,
3505 .ctl_name
= NET_IPV6_RTR_SOLICITS
,
3506 .procname
= "router_solicitations",
3507 .data
= &ipv6_devconf
.rtr_solicits
,
3508 .maxlen
= sizeof(int),
3510 .proc_handler
= &proc_dointvec
,
3513 .ctl_name
= NET_IPV6_RTR_SOLICIT_INTERVAL
,
3514 .procname
= "router_solicitation_interval",
3515 .data
= &ipv6_devconf
.rtr_solicit_interval
,
3516 .maxlen
= sizeof(int),
3518 .proc_handler
= &proc_dointvec_jiffies
,
3519 .strategy
= &sysctl_jiffies
,
3522 .ctl_name
= NET_IPV6_RTR_SOLICIT_DELAY
,
3523 .procname
= "router_solicitation_delay",
3524 .data
= &ipv6_devconf
.rtr_solicit_delay
,
3525 .maxlen
= sizeof(int),
3527 .proc_handler
= &proc_dointvec_jiffies
,
3528 .strategy
= &sysctl_jiffies
,
3531 .ctl_name
= NET_IPV6_FORCE_MLD_VERSION
,
3532 .procname
= "force_mld_version",
3533 .data
= &ipv6_devconf
.force_mld_version
,
3534 .maxlen
= sizeof(int),
3536 .proc_handler
= &proc_dointvec
,
3538 #ifdef CONFIG_IPV6_PRIVACY
3540 .ctl_name
= NET_IPV6_USE_TEMPADDR
,
3541 .procname
= "use_tempaddr",
3542 .data
= &ipv6_devconf
.use_tempaddr
,
3543 .maxlen
= sizeof(int),
3545 .proc_handler
= &proc_dointvec
,
3548 .ctl_name
= NET_IPV6_TEMP_VALID_LFT
,
3549 .procname
= "temp_valid_lft",
3550 .data
= &ipv6_devconf
.temp_valid_lft
,
3551 .maxlen
= sizeof(int),
3553 .proc_handler
= &proc_dointvec
,
3556 .ctl_name
= NET_IPV6_TEMP_PREFERED_LFT
,
3557 .procname
= "temp_prefered_lft",
3558 .data
= &ipv6_devconf
.temp_prefered_lft
,
3559 .maxlen
= sizeof(int),
3561 .proc_handler
= &proc_dointvec
,
3564 .ctl_name
= NET_IPV6_REGEN_MAX_RETRY
,
3565 .procname
= "regen_max_retry",
3566 .data
= &ipv6_devconf
.regen_max_retry
,
3567 .maxlen
= sizeof(int),
3569 .proc_handler
= &proc_dointvec
,
3572 .ctl_name
= NET_IPV6_MAX_DESYNC_FACTOR
,
3573 .procname
= "max_desync_factor",
3574 .data
= &ipv6_devconf
.max_desync_factor
,
3575 .maxlen
= sizeof(int),
3577 .proc_handler
= &proc_dointvec
,
3581 .ctl_name
= NET_IPV6_MAX_ADDRESSES
,
3582 .procname
= "max_addresses",
3583 .data
= &ipv6_devconf
.max_addresses
,
3584 .maxlen
= sizeof(int),
3586 .proc_handler
= &proc_dointvec
,
3589 .ctl_name
= 0, /* sentinel */
3594 .ctl_name
= NET_PROTO_CONF_ALL
,
3597 .child
= addrconf_sysctl
.addrconf_vars
,
3600 .ctl_name
= 0, /* sentinel */
3603 .addrconf_conf_dir
= {
3605 .ctl_name
= NET_IPV6_CONF
,
3608 .child
= addrconf_sysctl
.addrconf_dev
,
3611 .ctl_name
= 0, /* sentinel */
3614 .addrconf_proto_dir
= {
3616 .ctl_name
= NET_IPV6
,
3619 .child
= addrconf_sysctl
.addrconf_conf_dir
,
3622 .ctl_name
= 0, /* sentinel */
3625 .addrconf_root_dir
= {
3627 .ctl_name
= CTL_NET
,
3630 .child
= addrconf_sysctl
.addrconf_proto_dir
,
3633 .ctl_name
= 0, /* sentinel */
3638 static void addrconf_sysctl_register(struct inet6_dev
*idev
, struct ipv6_devconf
*p
)
3641 struct net_device
*dev
= idev
? idev
->dev
: NULL
;
3642 struct addrconf_sysctl_table
*t
;
3643 char *dev_name
= NULL
;
3645 t
= kmalloc(sizeof(*t
), GFP_KERNEL
);
3648 memcpy(t
, &addrconf_sysctl
, sizeof(*t
));
3649 for (i
=0; t
->addrconf_vars
[i
].data
; i
++) {
3650 t
->addrconf_vars
[i
].data
+= (char*)p
- (char*)&ipv6_devconf
;
3651 t
->addrconf_vars
[i
].de
= NULL
;
3652 t
->addrconf_vars
[i
].extra1
= idev
; /* embedded; no ref */
3655 dev_name
= dev
->name
;
3656 t
->addrconf_dev
[0].ctl_name
= dev
->ifindex
;
3658 dev_name
= "default";
3659 t
->addrconf_dev
[0].ctl_name
= NET_PROTO_CONF_DEFAULT
;
3663 * Make a copy of dev_name, because '.procname' is regarded as const
3664 * by sysctl and we wouldn't want anyone to change it under our feet
3665 * (see SIOCSIFNAME).
3667 dev_name
= kstrdup(dev_name
, GFP_KERNEL
);
3671 t
->addrconf_dev
[0].procname
= dev_name
;
3673 t
->addrconf_dev
[0].child
= t
->addrconf_vars
;
3674 t
->addrconf_dev
[0].de
= NULL
;
3675 t
->addrconf_conf_dir
[0].child
= t
->addrconf_dev
;
3676 t
->addrconf_conf_dir
[0].de
= NULL
;
3677 t
->addrconf_proto_dir
[0].child
= t
->addrconf_conf_dir
;
3678 t
->addrconf_proto_dir
[0].de
= NULL
;
3679 t
->addrconf_root_dir
[0].child
= t
->addrconf_proto_dir
;
3680 t
->addrconf_root_dir
[0].de
= NULL
;
3682 t
->sysctl_header
= register_sysctl_table(t
->addrconf_root_dir
, 0);
3683 if (t
->sysctl_header
== NULL
)
3698 static void addrconf_sysctl_unregister(struct ipv6_devconf
*p
)
3701 struct addrconf_sysctl_table
*t
= p
->sysctl
;
3703 unregister_sysctl_table(t
->sysctl_header
);
3704 kfree(t
->addrconf_dev
[0].procname
);
3716 int register_inet6addr_notifier(struct notifier_block
*nb
)
3718 return notifier_chain_register(&inet6addr_chain
, nb
);
3721 int unregister_inet6addr_notifier(struct notifier_block
*nb
)
3723 return notifier_chain_unregister(&inet6addr_chain
,nb
);
3727 * Init / cleanup code
3730 int __init
addrconf_init(void)
3734 /* The addrconf netdev notifier requires that loopback_dev
3735 * has it's ipv6 private information allocated and setup
3736 * before it can bring up and give link-local addresses
3737 * to other devices which are up.
3739 * Unfortunately, loopback_dev is not necessarily the first
3740 * entry in the global dev_base list of net devices. In fact,
3741 * it is likely to be the very last entry on that list.
3742 * So this causes the notifier registry below to try and
3743 * give link-local addresses to all devices besides loopback_dev
3744 * first, then loopback_dev, which cases all the non-loopback_dev
3745 * devices to fail to get a link-local address.
3747 * So, as a temporary fix, allocate the ipv6 structure for
3748 * loopback_dev first by hand.
3749 * Longer term, all of the dependencies ipv6 has upon the loopback
3750 * device and it being up should be removed.
3753 if (!ipv6_add_dev(&loopback_dev
))
3759 ip6_null_entry
.rt6i_idev
= in6_dev_get(&loopback_dev
);
3761 register_netdevice_notifier(&ipv6_dev_notf
);
3763 #ifdef CONFIG_IPV6_PRIVACY
3764 md5_tfm
= crypto_alloc_tfm("md5", 0);
3765 if (unlikely(md5_tfm
== NULL
))
3767 "failed to load transform for md5\n");
3771 rtnetlink_links
[PF_INET6
] = inet6_rtnetlink_table
;
3772 #ifdef CONFIG_SYSCTL
3773 addrconf_sysctl
.sysctl_header
=
3774 register_sysctl_table(addrconf_sysctl
.addrconf_root_dir
, 0);
3775 addrconf_sysctl_register(NULL
, &ipv6_devconf_dflt
);
3781 void __exit
addrconf_cleanup(void)
3783 struct net_device
*dev
;
3784 struct inet6_dev
*idev
;
3785 struct inet6_ifaddr
*ifa
;
3788 unregister_netdevice_notifier(&ipv6_dev_notf
);
3790 rtnetlink_links
[PF_INET6
] = NULL
;
3791 #ifdef CONFIG_SYSCTL
3792 addrconf_sysctl_unregister(&ipv6_devconf_dflt
);
3793 addrconf_sysctl_unregister(&ipv6_devconf
);
3802 for (dev
=dev_base
; dev
; dev
=dev
->next
) {
3803 if ((idev
= __in6_dev_get(dev
)) == NULL
)
3805 addrconf_ifdown(dev
, 1);
3807 addrconf_ifdown(&loopback_dev
, 2);
3813 write_lock_bh(&addrconf_hash_lock
);
3814 for (i
=0; i
< IN6_ADDR_HSIZE
; i
++) {
3815 for (ifa
=inet6_addr_lst
[i
]; ifa
; ) {
3816 struct inet6_ifaddr
*bifa
;
3819 ifa
= ifa
->lst_next
;
3820 printk(KERN_DEBUG
"bug: IPv6 address leakage detected: ifa=%p\n", bifa
);
3821 /* Do not free it; something is wrong.
3822 Now we can investigate it with debugger.
3826 write_unlock_bh(&addrconf_hash_lock
);
3828 del_timer(&addr_chk_timer
);
3832 #ifdef CONFIG_IPV6_PRIVACY
3833 crypto_free_tfm(md5_tfm
);
3837 #ifdef CONFIG_PROC_FS
3838 proc_net_remove("if_inet6");