1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * IPv6 Address [auto]configuration
4 * Linux INET6 implementation
7 * Pedro Roque <roque@di.fc.ul.pt>
8 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
14 * Janos Farkas : delete timer on ifdown
15 * <chexum@bankinf.banki.hu>
16 * Andi Kleen : kill double kfree on module
18 * Maciej W. Rozycki : FDDI support
19 * sekiya@USAGI : Don't send too many RS
21 * yoshfuji@USAGI : Fixed interval between DAD
23 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
24 * address validation timer.
25 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
27 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
28 * address on a same interface.
29 * YOSHIFUJI Hideaki @USAGI : ARCnet support
30 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
32 * YOSHIFUJI Hideaki @USAGI : improved source address
33 * selection; consider scope,
37 #define pr_fmt(fmt) "IPv6: " fmt
39 #include <linux/errno.h>
40 #include <linux/types.h>
41 #include <linux/kernel.h>
42 #include <linux/sched/signal.h>
43 #include <linux/socket.h>
44 #include <linux/sockios.h>
45 #include <linux/net.h>
46 #include <linux/inet.h>
47 #include <linux/in6.h>
48 #include <linux/netdevice.h>
49 #include <linux/if_addr.h>
50 #include <linux/if_arp.h>
51 #include <linux/if_arcnet.h>
52 #include <linux/if_infiniband.h>
53 #include <linux/route.h>
54 #include <linux/inetdevice.h>
55 #include <linux/init.h>
56 #include <linux/slab.h>
58 #include <linux/sysctl.h>
60 #include <linux/capability.h>
61 #include <linux/delay.h>
62 #include <linux/notifier.h>
63 #include <linux/string.h>
64 #include <linux/hash.h>
66 #include <net/net_namespace.h>
70 #include <net/6lowpan.h>
71 #include <net/firewire.h>
73 #include <net/protocol.h>
74 #include <net/ndisc.h>
75 #include <net/ip6_route.h>
76 #include <net/addrconf.h>
79 #include <net/netlink.h>
80 #include <net/pkt_sched.h>
81 #include <net/l3mdev.h>
82 #include <linux/if_tunnel.h>
83 #include <linux/rtnetlink.h>
84 #include <linux/netconf.h>
85 #include <linux/random.h>
86 #include <linux/uaccess.h>
87 #include <asm/unaligned.h>
89 #include <linux/proc_fs.h>
90 #include <linux/seq_file.h>
91 #include <linux/export.h>
93 #define INFINITY_LIFE_TIME 0xFFFFFFFF
95 #define IPV6_MAX_STRLEN \
96 sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
98 static inline u32
cstamp_delta(unsigned long cstamp
)
100 return (cstamp
- INITIAL_JIFFIES
) * 100UL / HZ
;
103 static inline s32
rfc3315_s14_backoff_init(s32 irt
)
105 /* multiply 'initial retransmission time' by 0.9 .. 1.1 */
106 u64 tmp
= (900000 + prandom_u32() % 200001) * (u64
)irt
;
107 do_div(tmp
, 1000000);
111 static inline s32
rfc3315_s14_backoff_update(s32 rt
, s32 mrt
)
113 /* multiply 'retransmission timeout' by 1.9 .. 2.1 */
114 u64 tmp
= (1900000 + prandom_u32() % 200001) * (u64
)rt
;
115 do_div(tmp
, 1000000);
116 if ((s32
)tmp
> mrt
) {
117 /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */
118 tmp
= (900000 + prandom_u32() % 200001) * (u64
)mrt
;
119 do_div(tmp
, 1000000);
125 static int addrconf_sysctl_register(struct inet6_dev
*idev
);
126 static void addrconf_sysctl_unregister(struct inet6_dev
*idev
);
128 static inline int addrconf_sysctl_register(struct inet6_dev
*idev
)
133 static inline void addrconf_sysctl_unregister(struct inet6_dev
*idev
)
138 static void ipv6_gen_rnd_iid(struct in6_addr
*addr
);
140 static int ipv6_generate_eui64(u8
*eui
, struct net_device
*dev
);
141 static int ipv6_count_addresses(const struct inet6_dev
*idev
);
142 static int ipv6_generate_stable_address(struct in6_addr
*addr
,
144 const struct inet6_dev
*idev
);
146 #define IN6_ADDR_HSIZE_SHIFT 8
147 #define IN6_ADDR_HSIZE (1 << IN6_ADDR_HSIZE_SHIFT)
149 * Configured unicast address hash table
151 static struct hlist_head inet6_addr_lst
[IN6_ADDR_HSIZE
];
152 static DEFINE_SPINLOCK(addrconf_hash_lock
);
154 static void addrconf_verify(void);
155 static void addrconf_verify_rtnl(void);
156 static void addrconf_verify_work(struct work_struct
*);
158 static struct workqueue_struct
*addrconf_wq
;
159 static DECLARE_DELAYED_WORK(addr_chk_work
, addrconf_verify_work
);
161 static void addrconf_join_anycast(struct inet6_ifaddr
*ifp
);
162 static void addrconf_leave_anycast(struct inet6_ifaddr
*ifp
);
164 static void addrconf_type_change(struct net_device
*dev
,
165 unsigned long event
);
166 static int addrconf_ifdown(struct net_device
*dev
, bool unregister
);
168 static struct fib6_info
*addrconf_get_prefix_route(const struct in6_addr
*pfx
,
170 const struct net_device
*dev
,
171 u32 flags
, u32 noflags
,
174 static void addrconf_dad_start(struct inet6_ifaddr
*ifp
);
175 static void addrconf_dad_work(struct work_struct
*w
);
176 static void addrconf_dad_completed(struct inet6_ifaddr
*ifp
, bool bump_id
,
178 static void addrconf_dad_run(struct inet6_dev
*idev
, bool restart
);
179 static void addrconf_rs_timer(struct timer_list
*t
);
180 static void __ipv6_ifa_notify(int event
, struct inet6_ifaddr
*ifa
);
181 static void ipv6_ifa_notify(int event
, struct inet6_ifaddr
*ifa
);
183 static void inet6_prefix_notify(int event
, struct inet6_dev
*idev
,
184 struct prefix_info
*pinfo
);
186 static struct ipv6_devconf ipv6_devconf __read_mostly
= {
188 .hop_limit
= IPV6_DEFAULT_HOPLIMIT
,
189 .mtu6
= IPV6_MIN_MTU
,
191 .accept_redirects
= 1,
193 .force_mld_version
= 0,
194 .mldv1_unsolicited_report_interval
= 10 * HZ
,
195 .mldv2_unsolicited_report_interval
= HZ
,
197 .rtr_solicits
= MAX_RTR_SOLICITATIONS
,
198 .rtr_solicit_interval
= RTR_SOLICITATION_INTERVAL
,
199 .rtr_solicit_max_interval
= RTR_SOLICITATION_MAX_INTERVAL
,
200 .rtr_solicit_delay
= MAX_RTR_SOLICITATION_DELAY
,
202 .temp_valid_lft
= TEMP_VALID_LIFETIME
,
203 .temp_prefered_lft
= TEMP_PREFERRED_LIFETIME
,
204 .regen_max_retry
= REGEN_MAX_RETRY
,
205 .max_desync_factor
= MAX_DESYNC_FACTOR
,
206 .max_addresses
= IPV6_MAX_ADDRESSES
,
207 .accept_ra_defrtr
= 1,
208 .accept_ra_from_local
= 0,
209 .accept_ra_min_hop_limit
= 1,
210 .accept_ra_pinfo
= 1,
211 #ifdef CONFIG_IPV6_ROUTER_PREF
212 .accept_ra_rtr_pref
= 1,
213 .rtr_probe_interval
= 60 * HZ
,
214 #ifdef CONFIG_IPV6_ROUTE_INFO
215 .accept_ra_rt_info_min_plen
= 0,
216 .accept_ra_rt_info_max_plen
= 0,
220 .accept_source_route
= 0, /* we do not accept RH0 by default. */
223 .suppress_frag_ndisc
= 1,
226 .initialized
= false,
228 .use_oif_addrs_only
= 0,
229 .ignore_routes_with_linkdown
= 0,
230 .keep_addr_on_down
= 0,
232 #ifdef CONFIG_IPV6_SEG6_HMAC
233 .seg6_require_hmac
= 0,
236 .addr_gen_mode
= IN6_ADDR_GEN_MODE_EUI64
,
238 .rpl_seg_enabled
= 0,
241 static struct ipv6_devconf ipv6_devconf_dflt __read_mostly
= {
243 .hop_limit
= IPV6_DEFAULT_HOPLIMIT
,
244 .mtu6
= IPV6_MIN_MTU
,
246 .accept_redirects
= 1,
248 .force_mld_version
= 0,
249 .mldv1_unsolicited_report_interval
= 10 * HZ
,
250 .mldv2_unsolicited_report_interval
= HZ
,
252 .rtr_solicits
= MAX_RTR_SOLICITATIONS
,
253 .rtr_solicit_interval
= RTR_SOLICITATION_INTERVAL
,
254 .rtr_solicit_max_interval
= RTR_SOLICITATION_MAX_INTERVAL
,
255 .rtr_solicit_delay
= MAX_RTR_SOLICITATION_DELAY
,
257 .temp_valid_lft
= TEMP_VALID_LIFETIME
,
258 .temp_prefered_lft
= TEMP_PREFERRED_LIFETIME
,
259 .regen_max_retry
= REGEN_MAX_RETRY
,
260 .max_desync_factor
= MAX_DESYNC_FACTOR
,
261 .max_addresses
= IPV6_MAX_ADDRESSES
,
262 .accept_ra_defrtr
= 1,
263 .accept_ra_from_local
= 0,
264 .accept_ra_min_hop_limit
= 1,
265 .accept_ra_pinfo
= 1,
266 #ifdef CONFIG_IPV6_ROUTER_PREF
267 .accept_ra_rtr_pref
= 1,
268 .rtr_probe_interval
= 60 * HZ
,
269 #ifdef CONFIG_IPV6_ROUTE_INFO
270 .accept_ra_rt_info_min_plen
= 0,
271 .accept_ra_rt_info_max_plen
= 0,
275 .accept_source_route
= 0, /* we do not accept RH0 by default. */
278 .suppress_frag_ndisc
= 1,
281 .initialized
= false,
283 .use_oif_addrs_only
= 0,
284 .ignore_routes_with_linkdown
= 0,
285 .keep_addr_on_down
= 0,
287 #ifdef CONFIG_IPV6_SEG6_HMAC
288 .seg6_require_hmac
= 0,
291 .addr_gen_mode
= IN6_ADDR_GEN_MODE_EUI64
,
293 .rpl_seg_enabled
= 0,
296 /* Check if link is ready: is it up and is a valid qdisc available */
297 static inline bool addrconf_link_ready(const struct net_device
*dev
)
299 return netif_oper_up(dev
) && !qdisc_tx_is_noop(dev
);
302 static void addrconf_del_rs_timer(struct inet6_dev
*idev
)
304 if (del_timer(&idev
->rs_timer
))
308 static void addrconf_del_dad_work(struct inet6_ifaddr
*ifp
)
310 if (cancel_delayed_work(&ifp
->dad_work
))
314 static void addrconf_mod_rs_timer(struct inet6_dev
*idev
,
317 if (!timer_pending(&idev
->rs_timer
))
319 mod_timer(&idev
->rs_timer
, jiffies
+ when
);
322 static void addrconf_mod_dad_work(struct inet6_ifaddr
*ifp
,
326 if (mod_delayed_work(addrconf_wq
, &ifp
->dad_work
, delay
))
330 static int snmp6_alloc_dev(struct inet6_dev
*idev
)
334 idev
->stats
.ipv6
= alloc_percpu(struct ipstats_mib
);
335 if (!idev
->stats
.ipv6
)
338 for_each_possible_cpu(i
) {
339 struct ipstats_mib
*addrconf_stats
;
340 addrconf_stats
= per_cpu_ptr(idev
->stats
.ipv6
, i
);
341 u64_stats_init(&addrconf_stats
->syncp
);
345 idev
->stats
.icmpv6dev
= kzalloc(sizeof(struct icmpv6_mib_device
),
347 if (!idev
->stats
.icmpv6dev
)
349 idev
->stats
.icmpv6msgdev
= kzalloc(sizeof(struct icmpv6msg_mib_device
),
351 if (!idev
->stats
.icmpv6msgdev
)
357 kfree(idev
->stats
.icmpv6dev
);
359 free_percpu(idev
->stats
.ipv6
);
364 static struct inet6_dev
*ipv6_add_dev(struct net_device
*dev
)
366 struct inet6_dev
*ndev
;
371 if (dev
->mtu
< IPV6_MIN_MTU
)
372 return ERR_PTR(-EINVAL
);
374 ndev
= kzalloc(sizeof(struct inet6_dev
), GFP_KERNEL
);
378 rwlock_init(&ndev
->lock
);
380 INIT_LIST_HEAD(&ndev
->addr_list
);
381 timer_setup(&ndev
->rs_timer
, addrconf_rs_timer
, 0);
382 memcpy(&ndev
->cnf
, dev_net(dev
)->ipv6
.devconf_dflt
, sizeof(ndev
->cnf
));
384 if (ndev
->cnf
.stable_secret
.initialized
)
385 ndev
->cnf
.addr_gen_mode
= IN6_ADDR_GEN_MODE_STABLE_PRIVACY
;
387 ndev
->cnf
.mtu6
= dev
->mtu
;
388 ndev
->nd_parms
= neigh_parms_alloc(dev
, &nd_tbl
);
389 if (!ndev
->nd_parms
) {
393 if (ndev
->cnf
.forwarding
)
394 dev_disable_lro(dev
);
395 /* We refer to the device */
398 if (snmp6_alloc_dev(ndev
) < 0) {
399 netdev_dbg(dev
, "%s: cannot allocate memory for statistics\n",
401 neigh_parms_release(&nd_tbl
, ndev
->nd_parms
);
407 if (snmp6_register_dev(ndev
) < 0) {
408 netdev_dbg(dev
, "%s: cannot create /proc/net/dev_snmp6/%s\n",
409 __func__
, dev
->name
);
413 /* One reference from device. */
414 refcount_set(&ndev
->refcnt
, 1);
416 if (dev
->flags
& (IFF_NOARP
| IFF_LOOPBACK
))
417 ndev
->cnf
.accept_dad
= -1;
419 #if IS_ENABLED(CONFIG_IPV6_SIT)
420 if (dev
->type
== ARPHRD_SIT
&& (dev
->priv_flags
& IFF_ISATAP
)) {
421 pr_info("%s: Disabled Multicast RS\n", dev
->name
);
422 ndev
->cnf
.rtr_solicits
= 0;
426 INIT_LIST_HEAD(&ndev
->tempaddr_list
);
427 ndev
->desync_factor
= U32_MAX
;
428 if ((dev
->flags
&IFF_LOOPBACK
) ||
429 dev
->type
== ARPHRD_TUNNEL
||
430 dev
->type
== ARPHRD_TUNNEL6
||
431 dev
->type
== ARPHRD_SIT
||
432 dev
->type
== ARPHRD_NONE
) {
433 ndev
->cnf
.use_tempaddr
= -1;
436 ndev
->token
= in6addr_any
;
438 if (netif_running(dev
) && addrconf_link_ready(dev
))
439 ndev
->if_flags
|= IF_READY
;
441 ipv6_mc_init_dev(ndev
);
442 ndev
->tstamp
= jiffies
;
443 err
= addrconf_sysctl_register(ndev
);
445 ipv6_mc_destroy_dev(ndev
);
446 snmp6_unregister_dev(ndev
);
449 /* protected by rtnl_lock */
450 rcu_assign_pointer(dev
->ip6_ptr
, ndev
);
452 /* Join interface-local all-node multicast group */
453 ipv6_dev_mc_inc(dev
, &in6addr_interfacelocal_allnodes
);
455 /* Join all-node multicast group */
456 ipv6_dev_mc_inc(dev
, &in6addr_linklocal_allnodes
);
458 /* Join all-router multicast group if forwarding is set */
459 if (ndev
->cnf
.forwarding
&& (dev
->flags
& IFF_MULTICAST
))
460 ipv6_dev_mc_inc(dev
, &in6addr_linklocal_allrouters
);
465 neigh_parms_release(&nd_tbl
, ndev
->nd_parms
);
467 in6_dev_finish_destroy(ndev
);
471 static struct inet6_dev
*ipv6_find_idev(struct net_device
*dev
)
473 struct inet6_dev
*idev
;
477 idev
= __in6_dev_get(dev
);
479 idev
= ipv6_add_dev(dev
);
484 if (dev
->flags
&IFF_UP
)
489 static int inet6_netconf_msgsize_devconf(int type
)
491 int size
= NLMSG_ALIGN(sizeof(struct netconfmsg
))
492 + nla_total_size(4); /* NETCONFA_IFINDEX */
495 if (type
== NETCONFA_ALL
)
498 if (all
|| type
== NETCONFA_FORWARDING
)
499 size
+= nla_total_size(4);
500 #ifdef CONFIG_IPV6_MROUTE
501 if (all
|| type
== NETCONFA_MC_FORWARDING
)
502 size
+= nla_total_size(4);
504 if (all
|| type
== NETCONFA_PROXY_NEIGH
)
505 size
+= nla_total_size(4);
507 if (all
|| type
== NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
)
508 size
+= nla_total_size(4);
513 static int inet6_netconf_fill_devconf(struct sk_buff
*skb
, int ifindex
,
514 struct ipv6_devconf
*devconf
, u32 portid
,
515 u32 seq
, int event
, unsigned int flags
,
518 struct nlmsghdr
*nlh
;
519 struct netconfmsg
*ncm
;
522 nlh
= nlmsg_put(skb
, portid
, seq
, event
, sizeof(struct netconfmsg
),
527 if (type
== NETCONFA_ALL
)
530 ncm
= nlmsg_data(nlh
);
531 ncm
->ncm_family
= AF_INET6
;
533 if (nla_put_s32(skb
, NETCONFA_IFINDEX
, ifindex
) < 0)
534 goto nla_put_failure
;
539 if ((all
|| type
== NETCONFA_FORWARDING
) &&
540 nla_put_s32(skb
, NETCONFA_FORWARDING
, devconf
->forwarding
) < 0)
541 goto nla_put_failure
;
542 #ifdef CONFIG_IPV6_MROUTE
543 if ((all
|| type
== NETCONFA_MC_FORWARDING
) &&
544 nla_put_s32(skb
, NETCONFA_MC_FORWARDING
,
545 devconf
->mc_forwarding
) < 0)
546 goto nla_put_failure
;
548 if ((all
|| type
== NETCONFA_PROXY_NEIGH
) &&
549 nla_put_s32(skb
, NETCONFA_PROXY_NEIGH
, devconf
->proxy_ndp
) < 0)
550 goto nla_put_failure
;
552 if ((all
|| type
== NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
) &&
553 nla_put_s32(skb
, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
,
554 devconf
->ignore_routes_with_linkdown
) < 0)
555 goto nla_put_failure
;
562 nlmsg_cancel(skb
, nlh
);
566 void inet6_netconf_notify_devconf(struct net
*net
, int event
, int type
,
567 int ifindex
, struct ipv6_devconf
*devconf
)
572 skb
= nlmsg_new(inet6_netconf_msgsize_devconf(type
), GFP_KERNEL
);
576 err
= inet6_netconf_fill_devconf(skb
, ifindex
, devconf
, 0, 0,
579 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
580 WARN_ON(err
== -EMSGSIZE
);
584 rtnl_notify(skb
, net
, 0, RTNLGRP_IPV6_NETCONF
, NULL
, GFP_KERNEL
);
587 rtnl_set_sk_err(net
, RTNLGRP_IPV6_NETCONF
, err
);
590 static const struct nla_policy devconf_ipv6_policy
[NETCONFA_MAX
+1] = {
591 [NETCONFA_IFINDEX
] = { .len
= sizeof(int) },
592 [NETCONFA_FORWARDING
] = { .len
= sizeof(int) },
593 [NETCONFA_PROXY_NEIGH
] = { .len
= sizeof(int) },
594 [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
] = { .len
= sizeof(int) },
597 static int inet6_netconf_valid_get_req(struct sk_buff
*skb
,
598 const struct nlmsghdr
*nlh
,
600 struct netlink_ext_ack
*extack
)
604 if (nlh
->nlmsg_len
< nlmsg_msg_size(sizeof(struct netconfmsg
))) {
605 NL_SET_ERR_MSG_MOD(extack
, "Invalid header for netconf get request");
609 if (!netlink_strict_get_check(skb
))
610 return nlmsg_parse_deprecated(nlh
, sizeof(struct netconfmsg
),
612 devconf_ipv6_policy
, extack
);
614 err
= nlmsg_parse_deprecated_strict(nlh
, sizeof(struct netconfmsg
),
616 devconf_ipv6_policy
, extack
);
620 for (i
= 0; i
<= NETCONFA_MAX
; i
++) {
625 case NETCONFA_IFINDEX
:
628 NL_SET_ERR_MSG_MOD(extack
, "Unsupported attribute in netconf get request");
636 static int inet6_netconf_get_devconf(struct sk_buff
*in_skb
,
637 struct nlmsghdr
*nlh
,
638 struct netlink_ext_ack
*extack
)
640 struct net
*net
= sock_net(in_skb
->sk
);
641 struct nlattr
*tb
[NETCONFA_MAX
+1];
642 struct inet6_dev
*in6_dev
= NULL
;
643 struct net_device
*dev
= NULL
;
645 struct ipv6_devconf
*devconf
;
649 err
= inet6_netconf_valid_get_req(in_skb
, nlh
, tb
, extack
);
653 if (!tb
[NETCONFA_IFINDEX
])
657 ifindex
= nla_get_s32(tb
[NETCONFA_IFINDEX
]);
659 case NETCONFA_IFINDEX_ALL
:
660 devconf
= net
->ipv6
.devconf_all
;
662 case NETCONFA_IFINDEX_DEFAULT
:
663 devconf
= net
->ipv6
.devconf_dflt
;
666 dev
= dev_get_by_index(net
, ifindex
);
669 in6_dev
= in6_dev_get(dev
);
672 devconf
= &in6_dev
->cnf
;
677 skb
= nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL
), GFP_KERNEL
);
681 err
= inet6_netconf_fill_devconf(skb
, ifindex
, devconf
,
682 NETLINK_CB(in_skb
).portid
,
683 nlh
->nlmsg_seq
, RTM_NEWNETCONF
, 0,
686 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
687 WARN_ON(err
== -EMSGSIZE
);
691 err
= rtnl_unicast(skb
, net
, NETLINK_CB(in_skb
).portid
);
694 in6_dev_put(in6_dev
);
700 static int inet6_netconf_dump_devconf(struct sk_buff
*skb
,
701 struct netlink_callback
*cb
)
703 const struct nlmsghdr
*nlh
= cb
->nlh
;
704 struct net
*net
= sock_net(skb
->sk
);
707 struct net_device
*dev
;
708 struct inet6_dev
*idev
;
709 struct hlist_head
*head
;
711 if (cb
->strict_check
) {
712 struct netlink_ext_ack
*extack
= cb
->extack
;
713 struct netconfmsg
*ncm
;
715 if (nlh
->nlmsg_len
< nlmsg_msg_size(sizeof(*ncm
))) {
716 NL_SET_ERR_MSG_MOD(extack
, "Invalid header for netconf dump request");
720 if (nlmsg_attrlen(nlh
, sizeof(*ncm
))) {
721 NL_SET_ERR_MSG_MOD(extack
, "Invalid data after header in netconf dump request");
727 s_idx
= idx
= cb
->args
[1];
729 for (h
= s_h
; h
< NETDEV_HASHENTRIES
; h
++, s_idx
= 0) {
731 head
= &net
->dev_index_head
[h
];
733 cb
->seq
= atomic_read(&net
->ipv6
.dev_addr_genid
) ^
735 hlist_for_each_entry_rcu(dev
, head
, index_hlist
) {
738 idev
= __in6_dev_get(dev
);
742 if (inet6_netconf_fill_devconf(skb
, dev
->ifindex
,
744 NETLINK_CB(cb
->skb
).portid
,
752 nl_dump_check_consistent(cb
, nlmsg_hdr(skb
));
758 if (h
== NETDEV_HASHENTRIES
) {
759 if (inet6_netconf_fill_devconf(skb
, NETCONFA_IFINDEX_ALL
,
760 net
->ipv6
.devconf_all
,
761 NETLINK_CB(cb
->skb
).portid
,
763 RTM_NEWNETCONF
, NLM_F_MULTI
,
769 if (h
== NETDEV_HASHENTRIES
+ 1) {
770 if (inet6_netconf_fill_devconf(skb
, NETCONFA_IFINDEX_DEFAULT
,
771 net
->ipv6
.devconf_dflt
,
772 NETLINK_CB(cb
->skb
).portid
,
774 RTM_NEWNETCONF
, NLM_F_MULTI
,
788 static void dev_forward_change(struct inet6_dev
*idev
)
790 struct net_device
*dev
;
791 struct inet6_ifaddr
*ifa
;
796 if (idev
->cnf
.forwarding
)
797 dev_disable_lro(dev
);
798 if (dev
->flags
& IFF_MULTICAST
) {
799 if (idev
->cnf
.forwarding
) {
800 ipv6_dev_mc_inc(dev
, &in6addr_linklocal_allrouters
);
801 ipv6_dev_mc_inc(dev
, &in6addr_interfacelocal_allrouters
);
802 ipv6_dev_mc_inc(dev
, &in6addr_sitelocal_allrouters
);
804 ipv6_dev_mc_dec(dev
, &in6addr_linklocal_allrouters
);
805 ipv6_dev_mc_dec(dev
, &in6addr_interfacelocal_allrouters
);
806 ipv6_dev_mc_dec(dev
, &in6addr_sitelocal_allrouters
);
810 list_for_each_entry(ifa
, &idev
->addr_list
, if_list
) {
811 if (ifa
->flags
&IFA_F_TENTATIVE
)
813 if (idev
->cnf
.forwarding
)
814 addrconf_join_anycast(ifa
);
816 addrconf_leave_anycast(ifa
);
818 inet6_netconf_notify_devconf(dev_net(dev
), RTM_NEWNETCONF
,
820 dev
->ifindex
, &idev
->cnf
);
824 static void addrconf_forward_change(struct net
*net
, __s32 newf
)
826 struct net_device
*dev
;
827 struct inet6_dev
*idev
;
829 for_each_netdev(net
, dev
) {
830 idev
= __in6_dev_get(dev
);
832 int changed
= (!idev
->cnf
.forwarding
) ^ (!newf
);
833 idev
->cnf
.forwarding
= newf
;
835 dev_forward_change(idev
);
840 static int addrconf_fixup_forwarding(struct ctl_table
*table
, int *p
, int newf
)
846 return restart_syscall();
848 net
= (struct net
*)table
->extra2
;
852 if (p
== &net
->ipv6
.devconf_dflt
->forwarding
) {
853 if ((!newf
) ^ (!old
))
854 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
856 NETCONFA_IFINDEX_DEFAULT
,
857 net
->ipv6
.devconf_dflt
);
862 if (p
== &net
->ipv6
.devconf_all
->forwarding
) {
863 int old_dflt
= net
->ipv6
.devconf_dflt
->forwarding
;
865 net
->ipv6
.devconf_dflt
->forwarding
= newf
;
866 if ((!newf
) ^ (!old_dflt
))
867 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
869 NETCONFA_IFINDEX_DEFAULT
,
870 net
->ipv6
.devconf_dflt
);
872 addrconf_forward_change(net
, newf
);
873 if ((!newf
) ^ (!old
))
874 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
876 NETCONFA_IFINDEX_ALL
,
877 net
->ipv6
.devconf_all
);
878 } else if ((!newf
) ^ (!old
))
879 dev_forward_change((struct inet6_dev
*)table
->extra1
);
883 rt6_purge_dflt_routers(net
);
887 static void addrconf_linkdown_change(struct net
*net
, __s32 newf
)
889 struct net_device
*dev
;
890 struct inet6_dev
*idev
;
892 for_each_netdev(net
, dev
) {
893 idev
= __in6_dev_get(dev
);
895 int changed
= (!idev
->cnf
.ignore_routes_with_linkdown
) ^ (!newf
);
897 idev
->cnf
.ignore_routes_with_linkdown
= newf
;
899 inet6_netconf_notify_devconf(dev_net(dev
),
901 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
,
908 static int addrconf_fixup_linkdown(struct ctl_table
*table
, int *p
, int newf
)
914 return restart_syscall();
916 net
= (struct net
*)table
->extra2
;
920 if (p
== &net
->ipv6
.devconf_dflt
->ignore_routes_with_linkdown
) {
921 if ((!newf
) ^ (!old
))
922 inet6_netconf_notify_devconf(net
,
924 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
,
925 NETCONFA_IFINDEX_DEFAULT
,
926 net
->ipv6
.devconf_dflt
);
931 if (p
== &net
->ipv6
.devconf_all
->ignore_routes_with_linkdown
) {
932 net
->ipv6
.devconf_dflt
->ignore_routes_with_linkdown
= newf
;
933 addrconf_linkdown_change(net
, newf
);
934 if ((!newf
) ^ (!old
))
935 inet6_netconf_notify_devconf(net
,
937 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN
,
938 NETCONFA_IFINDEX_ALL
,
939 net
->ipv6
.devconf_all
);
948 /* Nobody refers to this ifaddr, destroy it */
949 void inet6_ifa_finish_destroy(struct inet6_ifaddr
*ifp
)
951 WARN_ON(!hlist_unhashed(&ifp
->addr_lst
));
953 #ifdef NET_REFCNT_DEBUG
954 pr_debug("%s\n", __func__
);
957 in6_dev_put(ifp
->idev
);
959 if (cancel_delayed_work(&ifp
->dad_work
))
960 pr_notice("delayed DAD work was pending while freeing ifa=%p\n",
963 if (ifp
->state
!= INET6_IFADDR_STATE_DEAD
) {
964 pr_warn("Freeing alive inet6 address %p\n", ifp
);
972 ipv6_link_dev_addr(struct inet6_dev
*idev
, struct inet6_ifaddr
*ifp
)
975 int ifp_scope
= ipv6_addr_src_scope(&ifp
->addr
);
978 * Each device address list is sorted in order of scope -
979 * global before linklocal.
981 list_for_each(p
, &idev
->addr_list
) {
982 struct inet6_ifaddr
*ifa
983 = list_entry(p
, struct inet6_ifaddr
, if_list
);
984 if (ifp_scope
>= ipv6_addr_src_scope(&ifa
->addr
))
988 list_add_tail_rcu(&ifp
->if_list
, p
);
991 static u32
inet6_addr_hash(const struct net
*net
, const struct in6_addr
*addr
)
993 u32 val
= ipv6_addr_hash(addr
) ^ net_hash_mix(net
);
995 return hash_32(val
, IN6_ADDR_HSIZE_SHIFT
);
998 static bool ipv6_chk_same_addr(struct net
*net
, const struct in6_addr
*addr
,
999 struct net_device
*dev
, unsigned int hash
)
1001 struct inet6_ifaddr
*ifp
;
1003 hlist_for_each_entry(ifp
, &inet6_addr_lst
[hash
], addr_lst
) {
1004 if (!net_eq(dev_net(ifp
->idev
->dev
), net
))
1006 if (ipv6_addr_equal(&ifp
->addr
, addr
)) {
1007 if (!dev
|| ifp
->idev
->dev
== dev
)
1014 static int ipv6_add_addr_hash(struct net_device
*dev
, struct inet6_ifaddr
*ifa
)
1016 unsigned int hash
= inet6_addr_hash(dev_net(dev
), &ifa
->addr
);
1019 spin_lock(&addrconf_hash_lock
);
1021 /* Ignore adding duplicate addresses on an interface */
1022 if (ipv6_chk_same_addr(dev_net(dev
), &ifa
->addr
, dev
, hash
)) {
1023 netdev_dbg(dev
, "ipv6_add_addr: already assigned\n");
1026 hlist_add_head_rcu(&ifa
->addr_lst
, &inet6_addr_lst
[hash
]);
1029 spin_unlock(&addrconf_hash_lock
);
1034 /* On success it returns ifp with increased reference count */
1036 static struct inet6_ifaddr
*
1037 ipv6_add_addr(struct inet6_dev
*idev
, struct ifa6_config
*cfg
,
1038 bool can_block
, struct netlink_ext_ack
*extack
)
1040 gfp_t gfp_flags
= can_block
? GFP_KERNEL
: GFP_ATOMIC
;
1041 int addr_type
= ipv6_addr_type(cfg
->pfx
);
1042 struct net
*net
= dev_net(idev
->dev
);
1043 struct inet6_ifaddr
*ifa
= NULL
;
1044 struct fib6_info
*f6i
= NULL
;
1047 if (addr_type
== IPV6_ADDR_ANY
||
1048 (addr_type
& IPV6_ADDR_MULTICAST
&&
1049 !(cfg
->ifa_flags
& IFA_F_MCAUTOJOIN
)) ||
1050 (!(idev
->dev
->flags
& IFF_LOOPBACK
) &&
1051 !netif_is_l3_master(idev
->dev
) &&
1052 addr_type
& IPV6_ADDR_LOOPBACK
))
1053 return ERR_PTR(-EADDRNOTAVAIL
);
1056 err
= -ENODEV
; /*XXX*/
1060 if (idev
->cnf
.disable_ipv6
) {
1065 /* validator notifier needs to be blocking;
1066 * do not call in atomic context
1069 struct in6_validator_info i6vi
= {
1070 .i6vi_addr
= *cfg
->pfx
,
1075 err
= inet6addr_validator_notifier_call_chain(NETDEV_UP
, &i6vi
);
1076 err
= notifier_to_errno(err
);
1081 ifa
= kzalloc(sizeof(*ifa
), gfp_flags
);
1087 f6i
= addrconf_f6i_alloc(net
, idev
, cfg
->pfx
, false, gfp_flags
);
1094 if (net
->ipv6
.devconf_all
->disable_policy
||
1095 idev
->cnf
.disable_policy
)
1096 f6i
->dst_nopolicy
= true;
1098 neigh_parms_data_state_setall(idev
->nd_parms
);
1100 ifa
->addr
= *cfg
->pfx
;
1102 ifa
->peer_addr
= *cfg
->peer_pfx
;
1104 spin_lock_init(&ifa
->lock
);
1105 INIT_DELAYED_WORK(&ifa
->dad_work
, addrconf_dad_work
);
1106 INIT_HLIST_NODE(&ifa
->addr_lst
);
1107 ifa
->scope
= cfg
->scope
;
1108 ifa
->prefix_len
= cfg
->plen
;
1109 ifa
->rt_priority
= cfg
->rt_priority
;
1110 ifa
->flags
= cfg
->ifa_flags
;
1111 /* No need to add the TENTATIVE flag for addresses with NODAD */
1112 if (!(cfg
->ifa_flags
& IFA_F_NODAD
))
1113 ifa
->flags
|= IFA_F_TENTATIVE
;
1114 ifa
->valid_lft
= cfg
->valid_lft
;
1115 ifa
->prefered_lft
= cfg
->preferred_lft
;
1116 ifa
->cstamp
= ifa
->tstamp
= jiffies
;
1117 ifa
->tokenized
= false;
1125 refcount_set(&ifa
->refcnt
, 1);
1129 err
= ipv6_add_addr_hash(idev
->dev
, ifa
);
1131 rcu_read_unlock_bh();
1135 write_lock(&idev
->lock
);
1137 /* Add to inet6_dev unicast addr list. */
1138 ipv6_link_dev_addr(idev
, ifa
);
1140 if (ifa
->flags
&IFA_F_TEMPORARY
) {
1141 list_add(&ifa
->tmp_list
, &idev
->tempaddr_list
);
1146 write_unlock(&idev
->lock
);
1148 rcu_read_unlock_bh();
1150 inet6addr_notifier_call_chain(NETDEV_UP
, ifa
);
1152 if (unlikely(err
< 0)) {
1153 fib6_info_release(f6i
);
1157 in6_dev_put(ifa
->idev
);
1166 enum cleanup_prefix_rt_t
{
1167 CLEANUP_PREFIX_RT_NOP
, /* no cleanup action for prefix route */
1168 CLEANUP_PREFIX_RT_DEL
, /* delete the prefix route */
1169 CLEANUP_PREFIX_RT_EXPIRE
, /* update the lifetime of the prefix route */
1173 * Check, whether the prefix for ifp would still need a prefix route
1174 * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
1177 * 1) we don't purge prefix if address was not permanent.
1178 * prefix is managed by its own lifetime.
1179 * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
1180 * 3) if there are no addresses, delete prefix.
1181 * 4) if there are still other permanent address(es),
1182 * corresponding prefix is still permanent.
1183 * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
1184 * don't purge the prefix, assume user space is managing it.
1185 * 6) otherwise, update prefix lifetime to the
1186 * longest valid lifetime among the corresponding
1187 * addresses on the device.
1188 * Note: subsequent RA will update lifetime.
1190 static enum cleanup_prefix_rt_t
1191 check_cleanup_prefix_route(struct inet6_ifaddr
*ifp
, unsigned long *expires
)
1193 struct inet6_ifaddr
*ifa
;
1194 struct inet6_dev
*idev
= ifp
->idev
;
1195 unsigned long lifetime
;
1196 enum cleanup_prefix_rt_t action
= CLEANUP_PREFIX_RT_DEL
;
1200 list_for_each_entry(ifa
, &idev
->addr_list
, if_list
) {
1203 if (ifa
->prefix_len
!= ifp
->prefix_len
||
1204 !ipv6_prefix_equal(&ifa
->addr
, &ifp
->addr
,
1207 if (ifa
->flags
& (IFA_F_PERMANENT
| IFA_F_NOPREFIXROUTE
))
1208 return CLEANUP_PREFIX_RT_NOP
;
1210 action
= CLEANUP_PREFIX_RT_EXPIRE
;
1212 spin_lock(&ifa
->lock
);
1214 lifetime
= addrconf_timeout_fixup(ifa
->valid_lft
, HZ
);
1216 * Note: Because this address is
1217 * not permanent, lifetime <
1218 * LONG_MAX / HZ here.
1220 if (time_before(*expires
, ifa
->tstamp
+ lifetime
* HZ
))
1221 *expires
= ifa
->tstamp
+ lifetime
* HZ
;
1222 spin_unlock(&ifa
->lock
);
1229 cleanup_prefix_route(struct inet6_ifaddr
*ifp
, unsigned long expires
,
1230 bool del_rt
, bool del_peer
)
1232 struct fib6_info
*f6i
;
1234 f6i
= addrconf_get_prefix_route(del_peer
? &ifp
->peer_addr
: &ifp
->addr
,
1236 ifp
->idev
->dev
, 0, RTF_DEFAULT
, true);
1239 ip6_del_rt(dev_net(ifp
->idev
->dev
), f6i
, false);
1241 if (!(f6i
->fib6_flags
& RTF_EXPIRES
))
1242 fib6_set_expires(f6i
, expires
);
1243 fib6_info_release(f6i
);
1249 /* This function wants to get referenced ifp and releases it before return */
1251 static void ipv6_del_addr(struct inet6_ifaddr
*ifp
)
1254 enum cleanup_prefix_rt_t action
= CLEANUP_PREFIX_RT_NOP
;
1255 unsigned long expires
;
1259 spin_lock_bh(&ifp
->lock
);
1261 ifp
->state
= INET6_IFADDR_STATE_DEAD
;
1262 spin_unlock_bh(&ifp
->lock
);
1264 if (state
== INET6_IFADDR_STATE_DEAD
)
1267 spin_lock_bh(&addrconf_hash_lock
);
1268 hlist_del_init_rcu(&ifp
->addr_lst
);
1269 spin_unlock_bh(&addrconf_hash_lock
);
1271 write_lock_bh(&ifp
->idev
->lock
);
1273 if (ifp
->flags
&IFA_F_TEMPORARY
) {
1274 list_del(&ifp
->tmp_list
);
1276 in6_ifa_put(ifp
->ifpub
);
1282 if (ifp
->flags
& IFA_F_PERMANENT
&& !(ifp
->flags
& IFA_F_NOPREFIXROUTE
))
1283 action
= check_cleanup_prefix_route(ifp
, &expires
);
1285 list_del_rcu(&ifp
->if_list
);
1288 write_unlock_bh(&ifp
->idev
->lock
);
1290 addrconf_del_dad_work(ifp
);
1292 ipv6_ifa_notify(RTM_DELADDR
, ifp
);
1294 inet6addr_notifier_call_chain(NETDEV_DOWN
, ifp
);
1296 if (action
!= CLEANUP_PREFIX_RT_NOP
) {
1297 cleanup_prefix_route(ifp
, expires
,
1298 action
== CLEANUP_PREFIX_RT_DEL
, false);
1301 /* clean up prefsrc entries */
1302 rt6_remove_prefsrc(ifp
);
1307 static int ipv6_create_tempaddr(struct inet6_ifaddr
*ifp
, bool block
)
1309 struct inet6_dev
*idev
= ifp
->idev
;
1310 unsigned long tmp_tstamp
, age
;
1311 unsigned long regen_advance
;
1312 unsigned long now
= jiffies
;
1313 s32 cnf_temp_preferred_lft
;
1314 struct inet6_ifaddr
*ift
;
1315 struct ifa6_config cfg
;
1316 long max_desync_factor
;
1317 struct in6_addr addr
;
1320 write_lock_bh(&idev
->lock
);
1324 if (idev
->cnf
.use_tempaddr
<= 0) {
1325 write_unlock_bh(&idev
->lock
);
1326 pr_info("%s: use_tempaddr is disabled\n", __func__
);
1331 spin_lock_bh(&ifp
->lock
);
1332 if (ifp
->regen_count
++ >= idev
->cnf
.regen_max_retry
) {
1333 idev
->cnf
.use_tempaddr
= -1; /*XXX*/
1334 spin_unlock_bh(&ifp
->lock
);
1335 write_unlock_bh(&idev
->lock
);
1336 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1343 memcpy(addr
.s6_addr
, ifp
->addr
.s6_addr
, 8);
1344 ipv6_gen_rnd_iid(&addr
);
1346 age
= (now
- ifp
->tstamp
) / HZ
;
1348 regen_advance
= idev
->cnf
.regen_max_retry
*
1349 idev
->cnf
.dad_transmits
*
1350 max(NEIGH_VAR(idev
->nd_parms
, RETRANS_TIME
), HZ
/100) / HZ
;
1352 /* recalculate max_desync_factor each time and update
1353 * idev->desync_factor if it's larger
1355 cnf_temp_preferred_lft
= READ_ONCE(idev
->cnf
.temp_prefered_lft
);
1356 max_desync_factor
= min_t(__u32
,
1357 idev
->cnf
.max_desync_factor
,
1358 cnf_temp_preferred_lft
- regen_advance
);
1360 if (unlikely(idev
->desync_factor
> max_desync_factor
)) {
1361 if (max_desync_factor
> 0) {
1362 get_random_bytes(&idev
->desync_factor
,
1363 sizeof(idev
->desync_factor
));
1364 idev
->desync_factor
%= max_desync_factor
;
1366 idev
->desync_factor
= 0;
1370 memset(&cfg
, 0, sizeof(cfg
));
1371 cfg
.valid_lft
= min_t(__u32
, ifp
->valid_lft
,
1372 idev
->cnf
.temp_valid_lft
+ age
);
1373 cfg
.preferred_lft
= cnf_temp_preferred_lft
+ age
- idev
->desync_factor
;
1374 cfg
.preferred_lft
= min_t(__u32
, ifp
->prefered_lft
, cfg
.preferred_lft
);
1376 cfg
.plen
= ifp
->prefix_len
;
1377 tmp_tstamp
= ifp
->tstamp
;
1378 spin_unlock_bh(&ifp
->lock
);
1380 write_unlock_bh(&idev
->lock
);
1382 /* A temporary address is created only if this calculated Preferred
1383 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1384 * an implementation must not create a temporary address with a zero
1385 * Preferred Lifetime.
1386 * Use age calculation as in addrconf_verify to avoid unnecessary
1387 * temporary addresses being generated.
1389 age
= (now
- tmp_tstamp
+ ADDRCONF_TIMER_FUZZ_MINUS
) / HZ
;
1390 if (cfg
.preferred_lft
<= regen_advance
+ age
) {
1397 cfg
.ifa_flags
= IFA_F_TEMPORARY
;
1398 /* set in addrconf_prefix_rcv() */
1399 if (ifp
->flags
& IFA_F_OPTIMISTIC
)
1400 cfg
.ifa_flags
|= IFA_F_OPTIMISTIC
;
1403 cfg
.scope
= ipv6_addr_scope(cfg
.pfx
);
1405 ift
= ipv6_add_addr(idev
, &cfg
, block
, NULL
);
1409 pr_info("%s: retry temporary address regeneration\n", __func__
);
1410 write_lock_bh(&idev
->lock
);
1414 spin_lock_bh(&ift
->lock
);
1417 ift
->tstamp
= tmp_tstamp
;
1418 spin_unlock_bh(&ift
->lock
);
1420 addrconf_dad_start(ift
);
1428 * Choose an appropriate source address (RFC3484)
1431 IPV6_SADDR_RULE_INIT
= 0,
1432 IPV6_SADDR_RULE_LOCAL
,
1433 IPV6_SADDR_RULE_SCOPE
,
1434 IPV6_SADDR_RULE_PREFERRED
,
1435 #ifdef CONFIG_IPV6_MIP6
1436 IPV6_SADDR_RULE_HOA
,
1438 IPV6_SADDR_RULE_OIF
,
1439 IPV6_SADDR_RULE_LABEL
,
1440 IPV6_SADDR_RULE_PRIVACY
,
1441 IPV6_SADDR_RULE_ORCHID
,
1442 IPV6_SADDR_RULE_PREFIX
,
1443 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1444 IPV6_SADDR_RULE_NOT_OPTIMISTIC
,
1449 struct ipv6_saddr_score
{
1452 struct inet6_ifaddr
*ifa
;
1453 DECLARE_BITMAP(scorebits
, IPV6_SADDR_RULE_MAX
);
1458 struct ipv6_saddr_dst
{
1459 const struct in6_addr
*addr
;
1466 static inline int ipv6_saddr_preferred(int type
)
1468 if (type
& (IPV6_ADDR_MAPPED
|IPV6_ADDR_COMPATv4
|IPV6_ADDR_LOOPBACK
))
1473 static bool ipv6_use_optimistic_addr(struct net
*net
,
1474 struct inet6_dev
*idev
)
1476 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1479 if (!net
->ipv6
.devconf_all
->optimistic_dad
&& !idev
->cnf
.optimistic_dad
)
1481 if (!net
->ipv6
.devconf_all
->use_optimistic
&& !idev
->cnf
.use_optimistic
)
1490 static bool ipv6_allow_optimistic_dad(struct net
*net
,
1491 struct inet6_dev
*idev
)
1493 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1496 if (!net
->ipv6
.devconf_all
->optimistic_dad
&& !idev
->cnf
.optimistic_dad
)
1505 static int ipv6_get_saddr_eval(struct net
*net
,
1506 struct ipv6_saddr_score
*score
,
1507 struct ipv6_saddr_dst
*dst
,
1512 if (i
<= score
->rule
) {
1514 case IPV6_SADDR_RULE_SCOPE
:
1515 ret
= score
->scopedist
;
1517 case IPV6_SADDR_RULE_PREFIX
:
1518 ret
= score
->matchlen
;
1521 ret
= !!test_bit(i
, score
->scorebits
);
1527 case IPV6_SADDR_RULE_INIT
:
1528 /* Rule 0: remember if hiscore is not ready yet */
1531 case IPV6_SADDR_RULE_LOCAL
:
1532 /* Rule 1: Prefer same address */
1533 ret
= ipv6_addr_equal(&score
->ifa
->addr
, dst
->addr
);
1535 case IPV6_SADDR_RULE_SCOPE
:
1536 /* Rule 2: Prefer appropriate scope
1541 * ---+--+-+---> scope
1543 * | d is scope of the destination.
1545 * | \ <- smaller scope is better if
1546 * B-15 | \ if scope is enough for destination.
1547 * | ret = B - scope (-1 <= scope >= d <= 15).
1549 * |/ <- greater is better
1550 * -C / if scope is not enough for destination.
1551 * /| ret = scope - C (-1 <= d < scope <= 15).
1553 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1554 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1555 * Assume B = 0 and we get C > 29.
1557 ret
= __ipv6_addr_src_scope(score
->addr_type
);
1558 if (ret
>= dst
->scope
)
1561 ret
-= 128; /* 30 is enough */
1562 score
->scopedist
= ret
;
1564 case IPV6_SADDR_RULE_PREFERRED
:
1566 /* Rule 3: Avoid deprecated and optimistic addresses */
1567 u8 avoid
= IFA_F_DEPRECATED
;
1569 if (!ipv6_use_optimistic_addr(net
, score
->ifa
->idev
))
1570 avoid
|= IFA_F_OPTIMISTIC
;
1571 ret
= ipv6_saddr_preferred(score
->addr_type
) ||
1572 !(score
->ifa
->flags
& avoid
);
1575 #ifdef CONFIG_IPV6_MIP6
1576 case IPV6_SADDR_RULE_HOA
:
1578 /* Rule 4: Prefer home address */
1579 int prefhome
= !(dst
->prefs
& IPV6_PREFER_SRC_COA
);
1580 ret
= !(score
->ifa
->flags
& IFA_F_HOMEADDRESS
) ^ prefhome
;
1584 case IPV6_SADDR_RULE_OIF
:
1585 /* Rule 5: Prefer outgoing interface */
1586 ret
= (!dst
->ifindex
||
1587 dst
->ifindex
== score
->ifa
->idev
->dev
->ifindex
);
1589 case IPV6_SADDR_RULE_LABEL
:
1590 /* Rule 6: Prefer matching label */
1591 ret
= ipv6_addr_label(net
,
1592 &score
->ifa
->addr
, score
->addr_type
,
1593 score
->ifa
->idev
->dev
->ifindex
) == dst
->label
;
1595 case IPV6_SADDR_RULE_PRIVACY
:
1597 /* Rule 7: Prefer public address
1598 * Note: prefer temporary address if use_tempaddr >= 2
1600 int preftmp
= dst
->prefs
& (IPV6_PREFER_SRC_PUBLIC
|IPV6_PREFER_SRC_TMP
) ?
1601 !!(dst
->prefs
& IPV6_PREFER_SRC_TMP
) :
1602 score
->ifa
->idev
->cnf
.use_tempaddr
>= 2;
1603 ret
= (!(score
->ifa
->flags
& IFA_F_TEMPORARY
)) ^ preftmp
;
1606 case IPV6_SADDR_RULE_ORCHID
:
1607 /* Rule 8-: Prefer ORCHID vs ORCHID or
1608 * non-ORCHID vs non-ORCHID
1610 ret
= !(ipv6_addr_orchid(&score
->ifa
->addr
) ^
1611 ipv6_addr_orchid(dst
->addr
));
1613 case IPV6_SADDR_RULE_PREFIX
:
1614 /* Rule 8: Use longest matching prefix */
1615 ret
= ipv6_addr_diff(&score
->ifa
->addr
, dst
->addr
);
1616 if (ret
> score
->ifa
->prefix_len
)
1617 ret
= score
->ifa
->prefix_len
;
1618 score
->matchlen
= ret
;
1620 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1621 case IPV6_SADDR_RULE_NOT_OPTIMISTIC
:
1622 /* Optimistic addresses still have lower precedence than other
1623 * preferred addresses.
1625 ret
= !(score
->ifa
->flags
& IFA_F_OPTIMISTIC
);
1633 __set_bit(i
, score
->scorebits
);
1639 static int __ipv6_dev_get_saddr(struct net
*net
,
1640 struct ipv6_saddr_dst
*dst
,
1641 struct inet6_dev
*idev
,
1642 struct ipv6_saddr_score
*scores
,
1645 struct ipv6_saddr_score
*score
= &scores
[1 - hiscore_idx
], *hiscore
= &scores
[hiscore_idx
];
1647 list_for_each_entry_rcu(score
->ifa
, &idev
->addr_list
, if_list
) {
1651 * - Tentative Address (RFC2462 section 5.4)
1652 * - A tentative address is not considered
1653 * "assigned to an interface" in the traditional
1654 * sense, unless it is also flagged as optimistic.
1655 * - Candidate Source Address (section 4)
1656 * - In any case, anycast addresses, multicast
1657 * addresses, and the unspecified address MUST
1658 * NOT be included in a candidate set.
1660 if ((score
->ifa
->flags
& IFA_F_TENTATIVE
) &&
1661 (!(score
->ifa
->flags
& IFA_F_OPTIMISTIC
)))
1664 score
->addr_type
= __ipv6_addr_type(&score
->ifa
->addr
);
1666 if (unlikely(score
->addr_type
== IPV6_ADDR_ANY
||
1667 score
->addr_type
& IPV6_ADDR_MULTICAST
)) {
1668 net_dbg_ratelimited("ADDRCONF: unspecified / multicast address assigned as unicast address on %s",
1674 bitmap_zero(score
->scorebits
, IPV6_SADDR_RULE_MAX
);
1676 for (i
= 0; i
< IPV6_SADDR_RULE_MAX
; i
++) {
1677 int minihiscore
, miniscore
;
1679 minihiscore
= ipv6_get_saddr_eval(net
, hiscore
, dst
, i
);
1680 miniscore
= ipv6_get_saddr_eval(net
, score
, dst
, i
);
1682 if (minihiscore
> miniscore
) {
1683 if (i
== IPV6_SADDR_RULE_SCOPE
&&
1684 score
->scopedist
> 0) {
1687 * each remaining entry
1688 * has too small (not enough)
1689 * scope, because ifa entries
1690 * are sorted by their scope
1696 } else if (minihiscore
< miniscore
) {
1697 swap(hiscore
, score
);
1698 hiscore_idx
= 1 - hiscore_idx
;
1700 /* restore our iterator */
1701 score
->ifa
= hiscore
->ifa
;
1711 static int ipv6_get_saddr_master(struct net
*net
,
1712 const struct net_device
*dst_dev
,
1713 const struct net_device
*master
,
1714 struct ipv6_saddr_dst
*dst
,
1715 struct ipv6_saddr_score
*scores
,
1718 struct inet6_dev
*idev
;
1720 idev
= __in6_dev_get(dst_dev
);
1722 hiscore_idx
= __ipv6_dev_get_saddr(net
, dst
, idev
,
1723 scores
, hiscore_idx
);
1725 idev
= __in6_dev_get(master
);
1727 hiscore_idx
= __ipv6_dev_get_saddr(net
, dst
, idev
,
1728 scores
, hiscore_idx
);
1733 int ipv6_dev_get_saddr(struct net
*net
, const struct net_device
*dst_dev
,
1734 const struct in6_addr
*daddr
, unsigned int prefs
,
1735 struct in6_addr
*saddr
)
1737 struct ipv6_saddr_score scores
[2], *hiscore
;
1738 struct ipv6_saddr_dst dst
;
1739 struct inet6_dev
*idev
;
1740 struct net_device
*dev
;
1742 bool use_oif_addr
= false;
1743 int hiscore_idx
= 0;
1746 dst_type
= __ipv6_addr_type(daddr
);
1748 dst
.ifindex
= dst_dev
? dst_dev
->ifindex
: 0;
1749 dst
.scope
= __ipv6_addr_src_scope(dst_type
);
1750 dst
.label
= ipv6_addr_label(net
, daddr
, dst_type
, dst
.ifindex
);
1753 scores
[hiscore_idx
].rule
= -1;
1754 scores
[hiscore_idx
].ifa
= NULL
;
1758 /* Candidate Source Address (section 4)
1759 * - multicast and link-local destination address,
1760 * the set of candidate source address MUST only
1761 * include addresses assigned to interfaces
1762 * belonging to the same link as the outgoing
1764 * (- For site-local destination addresses, the
1765 * set of candidate source addresses MUST only
1766 * include addresses assigned to interfaces
1767 * belonging to the same site as the outgoing
1769 * - "It is RECOMMENDED that the candidate source addresses
1770 * be the set of unicast addresses assigned to the
1771 * interface that will be used to send to the destination
1772 * (the 'outgoing' interface)." (RFC 6724)
1775 idev
= __in6_dev_get(dst_dev
);
1776 if ((dst_type
& IPV6_ADDR_MULTICAST
) ||
1777 dst
.scope
<= IPV6_ADDR_SCOPE_LINKLOCAL
||
1778 (idev
&& idev
->cnf
.use_oif_addrs_only
)) {
1779 use_oif_addr
= true;
1785 hiscore_idx
= __ipv6_dev_get_saddr(net
, &dst
, idev
, scores
, hiscore_idx
);
1787 const struct net_device
*master
;
1790 /* if dst_dev exists and is enslaved to an L3 device, then
1791 * prefer addresses from dst_dev and then the master over
1792 * any other enslaved devices in the L3 domain.
1794 master
= l3mdev_master_dev_rcu(dst_dev
);
1796 master_idx
= master
->ifindex
;
1798 hiscore_idx
= ipv6_get_saddr_master(net
, dst_dev
,
1800 scores
, hiscore_idx
);
1802 if (scores
[hiscore_idx
].ifa
)
1806 for_each_netdev_rcu(net
, dev
) {
1807 /* only consider addresses on devices in the
1810 if (l3mdev_master_ifindex_rcu(dev
) != master_idx
)
1812 idev
= __in6_dev_get(dev
);
1815 hiscore_idx
= __ipv6_dev_get_saddr(net
, &dst
, idev
, scores
, hiscore_idx
);
1820 hiscore
= &scores
[hiscore_idx
];
1822 ret
= -EADDRNOTAVAIL
;
1824 *saddr
= hiscore
->ifa
->addr
;
1829 EXPORT_SYMBOL(ipv6_dev_get_saddr
);
1831 int __ipv6_get_lladdr(struct inet6_dev
*idev
, struct in6_addr
*addr
,
1834 struct inet6_ifaddr
*ifp
;
1835 int err
= -EADDRNOTAVAIL
;
1837 list_for_each_entry_reverse(ifp
, &idev
->addr_list
, if_list
) {
1838 if (ifp
->scope
> IFA_LINK
)
1840 if (ifp
->scope
== IFA_LINK
&&
1841 !(ifp
->flags
& banned_flags
)) {
1850 int ipv6_get_lladdr(struct net_device
*dev
, struct in6_addr
*addr
,
1853 struct inet6_dev
*idev
;
1854 int err
= -EADDRNOTAVAIL
;
1857 idev
= __in6_dev_get(dev
);
1859 read_lock_bh(&idev
->lock
);
1860 err
= __ipv6_get_lladdr(idev
, addr
, banned_flags
);
1861 read_unlock_bh(&idev
->lock
);
1867 static int ipv6_count_addresses(const struct inet6_dev
*idev
)
1869 const struct inet6_ifaddr
*ifp
;
1873 list_for_each_entry_rcu(ifp
, &idev
->addr_list
, if_list
)
1879 int ipv6_chk_addr(struct net
*net
, const struct in6_addr
*addr
,
1880 const struct net_device
*dev
, int strict
)
1882 return ipv6_chk_addr_and_flags(net
, addr
, dev
, !dev
,
1883 strict
, IFA_F_TENTATIVE
);
1885 EXPORT_SYMBOL(ipv6_chk_addr
);
1887 /* device argument is used to find the L3 domain of interest. If
1888 * skip_dev_check is set, then the ifp device is not checked against
1889 * the passed in dev argument. So the 2 cases for addresses checks are:
1890 * 1. does the address exist in the L3 domain that dev is part of
1891 * (skip_dev_check = true), or
1893 * 2. does the address exist on the specific device
1894 * (skip_dev_check = false)
1896 static struct net_device
*
1897 __ipv6_chk_addr_and_flags(struct net
*net
, const struct in6_addr
*addr
,
1898 const struct net_device
*dev
, bool skip_dev_check
,
1899 int strict
, u32 banned_flags
)
1901 unsigned int hash
= inet6_addr_hash(net
, addr
);
1902 struct net_device
*l3mdev
, *ndev
;
1903 struct inet6_ifaddr
*ifp
;
1908 l3mdev
= l3mdev_master_dev_rcu(dev
);
1912 hlist_for_each_entry_rcu(ifp
, &inet6_addr_lst
[hash
], addr_lst
) {
1913 ndev
= ifp
->idev
->dev
;
1914 if (!net_eq(dev_net(ndev
), net
))
1917 if (l3mdev_master_dev_rcu(ndev
) != l3mdev
)
1920 /* Decouple optimistic from tentative for evaluation here.
1921 * Ban optimistic addresses explicitly, when required.
1923 ifp_flags
= (ifp
->flags
&IFA_F_OPTIMISTIC
)
1924 ? (ifp
->flags
&~IFA_F_TENTATIVE
)
1926 if (ipv6_addr_equal(&ifp
->addr
, addr
) &&
1927 !(ifp_flags
&banned_flags
) &&
1928 (!dev
|| ndev
== dev
||
1929 !(ifp
->scope
&(IFA_LINK
|IFA_HOST
) || strict
))) {
1939 int ipv6_chk_addr_and_flags(struct net
*net
, const struct in6_addr
*addr
,
1940 const struct net_device
*dev
, bool skip_dev_check
,
1941 int strict
, u32 banned_flags
)
1943 return __ipv6_chk_addr_and_flags(net
, addr
, dev
, skip_dev_check
,
1944 strict
, banned_flags
) ? 1 : 0;
1946 EXPORT_SYMBOL(ipv6_chk_addr_and_flags
);
1949 /* Compares an address/prefix_len with addresses on device @dev.
1950 * If one is found it returns true.
1952 bool ipv6_chk_custom_prefix(const struct in6_addr
*addr
,
1953 const unsigned int prefix_len
, struct net_device
*dev
)
1955 const struct inet6_ifaddr
*ifa
;
1956 const struct inet6_dev
*idev
;
1960 idev
= __in6_dev_get(dev
);
1962 list_for_each_entry_rcu(ifa
, &idev
->addr_list
, if_list
) {
1963 ret
= ipv6_prefix_equal(addr
, &ifa
->addr
, prefix_len
);
1972 EXPORT_SYMBOL(ipv6_chk_custom_prefix
);
1974 int ipv6_chk_prefix(const struct in6_addr
*addr
, struct net_device
*dev
)
1976 const struct inet6_ifaddr
*ifa
;
1977 const struct inet6_dev
*idev
;
1982 idev
= __in6_dev_get(dev
);
1984 list_for_each_entry_rcu(ifa
, &idev
->addr_list
, if_list
) {
1985 onlink
= ipv6_prefix_equal(addr
, &ifa
->addr
,
1994 EXPORT_SYMBOL(ipv6_chk_prefix
);
1997 * ipv6_dev_find - find the first device with a given source address.
1998 * @net: the net namespace
1999 * @addr: the source address
2000 * @dev: used to find the L3 domain of interest
2002 * The caller should be protected by RCU, or RTNL.
2004 struct net_device
*ipv6_dev_find(struct net
*net
, const struct in6_addr
*addr
,
2005 struct net_device
*dev
)
2007 return __ipv6_chk_addr_and_flags(net
, addr
, dev
, !dev
, 1,
2010 EXPORT_SYMBOL(ipv6_dev_find
);
2012 struct inet6_ifaddr
*ipv6_get_ifaddr(struct net
*net
, const struct in6_addr
*addr
,
2013 struct net_device
*dev
, int strict
)
2015 unsigned int hash
= inet6_addr_hash(net
, addr
);
2016 struct inet6_ifaddr
*ifp
, *result
= NULL
;
2019 hlist_for_each_entry_rcu(ifp
, &inet6_addr_lst
[hash
], addr_lst
) {
2020 if (!net_eq(dev_net(ifp
->idev
->dev
), net
))
2022 if (ipv6_addr_equal(&ifp
->addr
, addr
)) {
2023 if (!dev
|| ifp
->idev
->dev
== dev
||
2024 !(ifp
->scope
&(IFA_LINK
|IFA_HOST
) || strict
)) {
2036 /* Gets referenced address, destroys ifaddr */
2038 static void addrconf_dad_stop(struct inet6_ifaddr
*ifp
, int dad_failed
)
2041 ifp
->flags
|= IFA_F_DADFAILED
;
2043 if (ifp
->flags
&IFA_F_TEMPORARY
) {
2044 struct inet6_ifaddr
*ifpub
;
2045 spin_lock_bh(&ifp
->lock
);
2048 in6_ifa_hold(ifpub
);
2049 spin_unlock_bh(&ifp
->lock
);
2050 ipv6_create_tempaddr(ifpub
, true);
2053 spin_unlock_bh(&ifp
->lock
);
2056 } else if (ifp
->flags
&IFA_F_PERMANENT
|| !dad_failed
) {
2057 spin_lock_bh(&ifp
->lock
);
2058 addrconf_del_dad_work(ifp
);
2059 ifp
->flags
|= IFA_F_TENTATIVE
;
2061 ifp
->flags
&= ~IFA_F_OPTIMISTIC
;
2062 spin_unlock_bh(&ifp
->lock
);
2064 ipv6_ifa_notify(0, ifp
);
2071 static int addrconf_dad_end(struct inet6_ifaddr
*ifp
)
2075 spin_lock_bh(&ifp
->lock
);
2076 if (ifp
->state
== INET6_IFADDR_STATE_DAD
) {
2077 ifp
->state
= INET6_IFADDR_STATE_POSTDAD
;
2080 spin_unlock_bh(&ifp
->lock
);
2085 void addrconf_dad_failure(struct sk_buff
*skb
, struct inet6_ifaddr
*ifp
)
2087 struct inet6_dev
*idev
= ifp
->idev
;
2088 struct net
*net
= dev_net(ifp
->idev
->dev
);
2090 if (addrconf_dad_end(ifp
)) {
2095 net_info_ratelimited("%s: IPv6 duplicate address %pI6c used by %pM detected!\n",
2096 ifp
->idev
->dev
->name
, &ifp
->addr
, eth_hdr(skb
)->h_source
);
2098 spin_lock_bh(&ifp
->lock
);
2100 if (ifp
->flags
& IFA_F_STABLE_PRIVACY
) {
2101 struct in6_addr new_addr
;
2102 struct inet6_ifaddr
*ifp2
;
2103 int retries
= ifp
->stable_privacy_retry
+ 1;
2104 struct ifa6_config cfg
= {
2106 .plen
= ifp
->prefix_len
,
2107 .ifa_flags
= ifp
->flags
,
2108 .valid_lft
= ifp
->valid_lft
,
2109 .preferred_lft
= ifp
->prefered_lft
,
2110 .scope
= ifp
->scope
,
2113 if (retries
> net
->ipv6
.sysctl
.idgen_retries
) {
2114 net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n",
2115 ifp
->idev
->dev
->name
);
2119 new_addr
= ifp
->addr
;
2120 if (ipv6_generate_stable_address(&new_addr
, retries
,
2124 spin_unlock_bh(&ifp
->lock
);
2126 if (idev
->cnf
.max_addresses
&&
2127 ipv6_count_addresses(idev
) >=
2128 idev
->cnf
.max_addresses
)
2131 net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n",
2132 ifp
->idev
->dev
->name
);
2134 ifp2
= ipv6_add_addr(idev
, &cfg
, false, NULL
);
2138 spin_lock_bh(&ifp2
->lock
);
2139 ifp2
->stable_privacy_retry
= retries
;
2140 ifp2
->state
= INET6_IFADDR_STATE_PREDAD
;
2141 spin_unlock_bh(&ifp2
->lock
);
2143 addrconf_mod_dad_work(ifp2
, net
->ipv6
.sysctl
.idgen_delay
);
2146 spin_lock_bh(&ifp
->lock
);
2150 /* transition from _POSTDAD to _ERRDAD */
2151 ifp
->state
= INET6_IFADDR_STATE_ERRDAD
;
2152 spin_unlock_bh(&ifp
->lock
);
2154 addrconf_mod_dad_work(ifp
, 0);
2158 /* Join to solicited addr multicast group.
2159 * caller must hold RTNL */
2160 void addrconf_join_solict(struct net_device
*dev
, const struct in6_addr
*addr
)
2162 struct in6_addr maddr
;
2164 if (dev
->flags
&(IFF_LOOPBACK
|IFF_NOARP
))
2167 addrconf_addr_solict_mult(addr
, &maddr
);
2168 ipv6_dev_mc_inc(dev
, &maddr
);
2171 /* caller must hold RTNL */
2172 void addrconf_leave_solict(struct inet6_dev
*idev
, const struct in6_addr
*addr
)
2174 struct in6_addr maddr
;
2176 if (idev
->dev
->flags
&(IFF_LOOPBACK
|IFF_NOARP
))
2179 addrconf_addr_solict_mult(addr
, &maddr
);
2180 __ipv6_dev_mc_dec(idev
, &maddr
);
2183 /* caller must hold RTNL */
2184 static void addrconf_join_anycast(struct inet6_ifaddr
*ifp
)
2186 struct in6_addr addr
;
2188 if (ifp
->prefix_len
>= 127) /* RFC 6164 */
2190 ipv6_addr_prefix(&addr
, &ifp
->addr
, ifp
->prefix_len
);
2191 if (ipv6_addr_any(&addr
))
2193 __ipv6_dev_ac_inc(ifp
->idev
, &addr
);
2196 /* caller must hold RTNL */
2197 static void addrconf_leave_anycast(struct inet6_ifaddr
*ifp
)
2199 struct in6_addr addr
;
2201 if (ifp
->prefix_len
>= 127) /* RFC 6164 */
2203 ipv6_addr_prefix(&addr
, &ifp
->addr
, ifp
->prefix_len
);
2204 if (ipv6_addr_any(&addr
))
2206 __ipv6_dev_ac_dec(ifp
->idev
, &addr
);
2209 static int addrconf_ifid_6lowpan(u8
*eui
, struct net_device
*dev
)
2211 switch (dev
->addr_len
) {
2213 memcpy(eui
, dev
->dev_addr
, 3);
2216 memcpy(eui
+ 5, dev
->dev_addr
+ 3, 3);
2218 case EUI64_ADDR_LEN
:
2219 memcpy(eui
, dev
->dev_addr
, EUI64_ADDR_LEN
);
2229 static int addrconf_ifid_ieee1394(u8
*eui
, struct net_device
*dev
)
2231 union fwnet_hwaddr
*ha
;
2233 if (dev
->addr_len
!= FWNET_ALEN
)
2236 ha
= (union fwnet_hwaddr
*)dev
->dev_addr
;
2238 memcpy(eui
, &ha
->uc
.uniq_id
, sizeof(ha
->uc
.uniq_id
));
2243 static int addrconf_ifid_arcnet(u8
*eui
, struct net_device
*dev
)
2245 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
2246 if (dev
->addr_len
!= ARCNET_ALEN
)
2249 eui
[7] = *(u8
*)dev
->dev_addr
;
2253 static int addrconf_ifid_infiniband(u8
*eui
, struct net_device
*dev
)
2255 if (dev
->addr_len
!= INFINIBAND_ALEN
)
2257 memcpy(eui
, dev
->dev_addr
+ 12, 8);
2262 static int __ipv6_isatap_ifid(u8
*eui
, __be32 addr
)
2266 eui
[0] = (ipv4_is_zeronet(addr
) || ipv4_is_private_10(addr
) ||
2267 ipv4_is_loopback(addr
) || ipv4_is_linklocal_169(addr
) ||
2268 ipv4_is_private_172(addr
) || ipv4_is_test_192(addr
) ||
2269 ipv4_is_anycast_6to4(addr
) || ipv4_is_private_192(addr
) ||
2270 ipv4_is_test_198(addr
) || ipv4_is_multicast(addr
) ||
2271 ipv4_is_lbcast(addr
)) ? 0x00 : 0x02;
2275 memcpy(eui
+ 4, &addr
, 4);
2279 static int addrconf_ifid_sit(u8
*eui
, struct net_device
*dev
)
2281 if (dev
->priv_flags
& IFF_ISATAP
)
2282 return __ipv6_isatap_ifid(eui
, *(__be32
*)dev
->dev_addr
);
2286 static int addrconf_ifid_gre(u8
*eui
, struct net_device
*dev
)
2288 return __ipv6_isatap_ifid(eui
, *(__be32
*)dev
->dev_addr
);
2291 static int addrconf_ifid_ip6tnl(u8
*eui
, struct net_device
*dev
)
2293 memcpy(eui
, dev
->perm_addr
, 3);
2294 memcpy(eui
+ 5, dev
->perm_addr
+ 3, 3);
2301 static int ipv6_generate_eui64(u8
*eui
, struct net_device
*dev
)
2303 switch (dev
->type
) {
2306 return addrconf_ifid_eui48(eui
, dev
);
2308 return addrconf_ifid_arcnet(eui
, dev
);
2309 case ARPHRD_INFINIBAND
:
2310 return addrconf_ifid_infiniband(eui
, dev
);
2312 return addrconf_ifid_sit(eui
, dev
);
2315 return addrconf_ifid_gre(eui
, dev
);
2316 case ARPHRD_6LOWPAN
:
2317 return addrconf_ifid_6lowpan(eui
, dev
);
2318 case ARPHRD_IEEE1394
:
2319 return addrconf_ifid_ieee1394(eui
, dev
);
2320 case ARPHRD_TUNNEL6
:
2323 return addrconf_ifid_ip6tnl(eui
, dev
);
2328 static int ipv6_inherit_eui64(u8
*eui
, struct inet6_dev
*idev
)
2331 struct inet6_ifaddr
*ifp
;
2333 read_lock_bh(&idev
->lock
);
2334 list_for_each_entry_reverse(ifp
, &idev
->addr_list
, if_list
) {
2335 if (ifp
->scope
> IFA_LINK
)
2337 if (ifp
->scope
== IFA_LINK
&& !(ifp
->flags
&IFA_F_TENTATIVE
)) {
2338 memcpy(eui
, ifp
->addr
.s6_addr
+8, 8);
2343 read_unlock_bh(&idev
->lock
);
2347 /* Generation of a randomized Interface Identifier
2348 * draft-ietf-6man-rfc4941bis, Section 3.3.1
2351 static void ipv6_gen_rnd_iid(struct in6_addr
*addr
)
2354 get_random_bytes(&addr
->s6_addr
[8], 8);
2356 /* <draft-ietf-6man-rfc4941bis-08.txt>, Section 3.3.1:
2357 * check if generated address is not inappropriate:
2359 * - Reserved IPv6 Interface Identifers
2360 * - XXX: already assigned to an address on the device
2363 /* Subnet-router anycast: 0000:0000:0000:0000 */
2364 if (!(addr
->s6_addr32
[2] | addr
->s6_addr32
[3]))
2367 /* IANA Ethernet block: 0200:5EFF:FE00:0000-0200:5EFF:FE00:5212
2368 * Proxy Mobile IPv6: 0200:5EFF:FE00:5213
2369 * IANA Ethernet block: 0200:5EFF:FE00:5214-0200:5EFF:FEFF:FFFF
2371 if (ntohl(addr
->s6_addr32
[2]) == 0x02005eff &&
2372 (ntohl(addr
->s6_addr32
[3]) & 0Xff000000) == 0xfe000000)
2375 /* Reserved subnet anycast addresses */
2376 if (ntohl(addr
->s6_addr32
[2]) == 0xfdffffff &&
2377 ntohl(addr
->s6_addr32
[3]) >= 0Xffffff80)
2386 addrconf_prefix_route(struct in6_addr
*pfx
, int plen
, u32 metric
,
2387 struct net_device
*dev
, unsigned long expires
,
2388 u32 flags
, gfp_t gfp_flags
)
2390 struct fib6_config cfg
= {
2391 .fc_table
= l3mdev_fib_table(dev
) ? : RT6_TABLE_PREFIX
,
2392 .fc_metric
= metric
? : IP6_RT_PRIO_ADDRCONF
,
2393 .fc_ifindex
= dev
->ifindex
,
2394 .fc_expires
= expires
,
2396 .fc_flags
= RTF_UP
| flags
,
2397 .fc_nlinfo
.nl_net
= dev_net(dev
),
2398 .fc_protocol
= RTPROT_KERNEL
,
2399 .fc_type
= RTN_UNICAST
,
2404 /* Prevent useless cloning on PtP SIT.
2405 This thing is done here expecting that the whole
2406 class of non-broadcast devices need not cloning.
2408 #if IS_ENABLED(CONFIG_IPV6_SIT)
2409 if (dev
->type
== ARPHRD_SIT
&& (dev
->flags
& IFF_POINTOPOINT
))
2410 cfg
.fc_flags
|= RTF_NONEXTHOP
;
2413 ip6_route_add(&cfg
, gfp_flags
, NULL
);
2417 static struct fib6_info
*addrconf_get_prefix_route(const struct in6_addr
*pfx
,
2419 const struct net_device
*dev
,
2420 u32 flags
, u32 noflags
,
2423 struct fib6_node
*fn
;
2424 struct fib6_info
*rt
= NULL
;
2425 struct fib6_table
*table
;
2426 u32 tb_id
= l3mdev_fib_table(dev
) ? : RT6_TABLE_PREFIX
;
2428 table
= fib6_get_table(dev_net(dev
), tb_id
);
2433 fn
= fib6_locate(&table
->tb6_root
, pfx
, plen
, NULL
, 0, true);
2437 for_each_fib6_node_rt_rcu(fn
) {
2438 /* prefix routes only use builtin fib6_nh */
2442 if (rt
->fib6_nh
->fib_nh_dev
->ifindex
!= dev
->ifindex
)
2444 if (no_gw
&& rt
->fib6_nh
->fib_nh_gw_family
)
2446 if ((rt
->fib6_flags
& flags
) != flags
)
2448 if ((rt
->fib6_flags
& noflags
) != 0)
2450 if (!fib6_info_hold_safe(rt
))
2460 /* Create "default" multicast route to the interface */
2462 static void addrconf_add_mroute(struct net_device
*dev
)
2464 struct fib6_config cfg
= {
2465 .fc_table
= l3mdev_fib_table(dev
) ? : RT6_TABLE_LOCAL
,
2466 .fc_metric
= IP6_RT_PRIO_ADDRCONF
,
2467 .fc_ifindex
= dev
->ifindex
,
2470 .fc_type
= RTN_UNICAST
,
2471 .fc_nlinfo
.nl_net
= dev_net(dev
),
2474 ipv6_addr_set(&cfg
.fc_dst
, htonl(0xFF000000), 0, 0, 0);
2476 ip6_route_add(&cfg
, GFP_KERNEL
, NULL
);
2479 static struct inet6_dev
*addrconf_add_dev(struct net_device
*dev
)
2481 struct inet6_dev
*idev
;
2485 idev
= ipv6_find_idev(dev
);
2489 if (idev
->cnf
.disable_ipv6
)
2490 return ERR_PTR(-EACCES
);
2492 /* Add default multicast route */
2493 if (!(dev
->flags
& IFF_LOOPBACK
) && !netif_is_l3_master(dev
))
2494 addrconf_add_mroute(dev
);
2499 static void manage_tempaddrs(struct inet6_dev
*idev
,
2500 struct inet6_ifaddr
*ifp
,
2501 __u32 valid_lft
, __u32 prefered_lft
,
2502 bool create
, unsigned long now
)
2505 struct inet6_ifaddr
*ift
;
2507 read_lock_bh(&idev
->lock
);
2508 /* update all temporary addresses in the list */
2509 list_for_each_entry(ift
, &idev
->tempaddr_list
, tmp_list
) {
2510 int age
, max_valid
, max_prefered
;
2512 if (ifp
!= ift
->ifpub
)
2515 /* RFC 4941 section 3.3:
2516 * If a received option will extend the lifetime of a public
2517 * address, the lifetimes of temporary addresses should
2518 * be extended, subject to the overall constraint that no
2519 * temporary addresses should ever remain "valid" or "preferred"
2520 * for a time longer than (TEMP_VALID_LIFETIME) or
2521 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2523 age
= (now
- ift
->cstamp
) / HZ
;
2524 max_valid
= idev
->cnf
.temp_valid_lft
- age
;
2528 max_prefered
= idev
->cnf
.temp_prefered_lft
-
2529 idev
->desync_factor
- age
;
2530 if (max_prefered
< 0)
2533 if (valid_lft
> max_valid
)
2534 valid_lft
= max_valid
;
2536 if (prefered_lft
> max_prefered
)
2537 prefered_lft
= max_prefered
;
2539 spin_lock(&ift
->lock
);
2541 ift
->valid_lft
= valid_lft
;
2542 ift
->prefered_lft
= prefered_lft
;
2544 if (prefered_lft
> 0)
2545 ift
->flags
&= ~IFA_F_DEPRECATED
;
2547 spin_unlock(&ift
->lock
);
2548 if (!(flags
&IFA_F_TENTATIVE
))
2549 ipv6_ifa_notify(0, ift
);
2552 if ((create
|| list_empty(&idev
->tempaddr_list
)) &&
2553 idev
->cnf
.use_tempaddr
> 0) {
2554 /* When a new public address is created as described
2555 * in [ADDRCONF], also create a new temporary address.
2556 * Also create a temporary address if it's enabled but
2557 * no temporary address currently exists.
2559 read_unlock_bh(&idev
->lock
);
2560 ipv6_create_tempaddr(ifp
, false);
2562 read_unlock_bh(&idev
->lock
);
2566 static bool is_addr_mode_generate_stable(struct inet6_dev
*idev
)
2568 return idev
->cnf
.addr_gen_mode
== IN6_ADDR_GEN_MODE_STABLE_PRIVACY
||
2569 idev
->cnf
.addr_gen_mode
== IN6_ADDR_GEN_MODE_RANDOM
;
2572 int addrconf_prefix_rcv_add_addr(struct net
*net
, struct net_device
*dev
,
2573 const struct prefix_info
*pinfo
,
2574 struct inet6_dev
*in6_dev
,
2575 const struct in6_addr
*addr
, int addr_type
,
2576 u32 addr_flags
, bool sllao
, bool tokenized
,
2577 __u32 valid_lft
, u32 prefered_lft
)
2579 struct inet6_ifaddr
*ifp
= ipv6_get_ifaddr(net
, addr
, dev
, 1);
2582 if (!ifp
&& valid_lft
) {
2583 int max_addresses
= in6_dev
->cnf
.max_addresses
;
2584 struct ifa6_config cfg
= {
2586 .plen
= pinfo
->prefix_len
,
2587 .ifa_flags
= addr_flags
,
2588 .valid_lft
= valid_lft
,
2589 .preferred_lft
= prefered_lft
,
2590 .scope
= addr_type
& IPV6_ADDR_SCOPE_MASK
,
2593 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2594 if ((net
->ipv6
.devconf_all
->optimistic_dad
||
2595 in6_dev
->cnf
.optimistic_dad
) &&
2596 !net
->ipv6
.devconf_all
->forwarding
&& sllao
)
2597 cfg
.ifa_flags
|= IFA_F_OPTIMISTIC
;
2600 /* Do not allow to create too much of autoconfigured
2601 * addresses; this would be too easy way to crash kernel.
2603 if (!max_addresses
||
2604 ipv6_count_addresses(in6_dev
) < max_addresses
)
2605 ifp
= ipv6_add_addr(in6_dev
, &cfg
, false, NULL
);
2607 if (IS_ERR_OR_NULL(ifp
))
2611 spin_lock_bh(&ifp
->lock
);
2612 ifp
->flags
|= IFA_F_MANAGETEMPADDR
;
2613 ifp
->cstamp
= jiffies
;
2614 ifp
->tokenized
= tokenized
;
2615 spin_unlock_bh(&ifp
->lock
);
2616 addrconf_dad_start(ifp
);
2624 /* Update lifetime (RFC4862 5.5.3 e)
2625 * We deviate from RFC4862 by honoring all Valid Lifetimes to
2626 * improve the reaction of SLAAC to renumbering events
2627 * (draft-gont-6man-slaac-renum-06, Section 4.2)
2629 spin_lock_bh(&ifp
->lock
);
2631 if (ifp
->valid_lft
> (now
- ifp
->tstamp
) / HZ
)
2632 stored_lft
= ifp
->valid_lft
- (now
- ifp
->tstamp
) / HZ
;
2636 if (!create
&& stored_lft
) {
2637 ifp
->valid_lft
= valid_lft
;
2638 ifp
->prefered_lft
= prefered_lft
;
2641 ifp
->flags
&= ~IFA_F_DEPRECATED
;
2642 spin_unlock_bh(&ifp
->lock
);
2644 if (!(flags
&IFA_F_TENTATIVE
))
2645 ipv6_ifa_notify(0, ifp
);
2647 spin_unlock_bh(&ifp
->lock
);
2649 manage_tempaddrs(in6_dev
, ifp
, valid_lft
, prefered_lft
,
2658 EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr
);
2660 void addrconf_prefix_rcv(struct net_device
*dev
, u8
*opt
, int len
, bool sllao
)
2662 struct prefix_info
*pinfo
;
2667 struct inet6_dev
*in6_dev
;
2668 struct net
*net
= dev_net(dev
);
2670 pinfo
= (struct prefix_info
*) opt
;
2672 if (len
< sizeof(struct prefix_info
)) {
2673 netdev_dbg(dev
, "addrconf: prefix option too short\n");
2678 * Validation checks ([ADDRCONF], page 19)
2681 addr_type
= ipv6_addr_type(&pinfo
->prefix
);
2683 if (addr_type
& (IPV6_ADDR_MULTICAST
|IPV6_ADDR_LINKLOCAL
))
2686 valid_lft
= ntohl(pinfo
->valid
);
2687 prefered_lft
= ntohl(pinfo
->prefered
);
2689 if (prefered_lft
> valid_lft
) {
2690 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
2694 in6_dev
= in6_dev_get(dev
);
2697 net_dbg_ratelimited("addrconf: device %s not configured\n",
2703 * Two things going on here:
2704 * 1) Add routes for on-link prefixes
2705 * 2) Configure prefixes with the auto flag set
2708 if (pinfo
->onlink
) {
2709 struct fib6_info
*rt
;
2710 unsigned long rt_expires
;
2712 /* Avoid arithmetic overflow. Really, we could
2713 * save rt_expires in seconds, likely valid_lft,
2714 * but it would require division in fib gc, that it
2718 rt_expires
= addrconf_timeout_fixup(valid_lft
, HZ
);
2720 rt_expires
= addrconf_timeout_fixup(valid_lft
, USER_HZ
);
2722 if (addrconf_finite_timeout(rt_expires
))
2725 rt
= addrconf_get_prefix_route(&pinfo
->prefix
,
2728 RTF_ADDRCONF
| RTF_PREFIX_RT
,
2732 /* Autoconf prefix route */
2733 if (valid_lft
== 0) {
2734 ip6_del_rt(net
, rt
, false);
2736 } else if (addrconf_finite_timeout(rt_expires
)) {
2738 fib6_set_expires(rt
, jiffies
+ rt_expires
);
2740 fib6_clean_expires(rt
);
2742 } else if (valid_lft
) {
2743 clock_t expires
= 0;
2744 int flags
= RTF_ADDRCONF
| RTF_PREFIX_RT
;
2745 if (addrconf_finite_timeout(rt_expires
)) {
2747 flags
|= RTF_EXPIRES
;
2748 expires
= jiffies_to_clock_t(rt_expires
);
2750 addrconf_prefix_route(&pinfo
->prefix
, pinfo
->prefix_len
,
2751 0, dev
, expires
, flags
,
2754 fib6_info_release(rt
);
2757 /* Try to figure out our local address for this prefix */
2759 if (pinfo
->autoconf
&& in6_dev
->cnf
.autoconf
) {
2760 struct in6_addr addr
;
2761 bool tokenized
= false, dev_addr_generated
= false;
2763 if (pinfo
->prefix_len
== 64) {
2764 memcpy(&addr
, &pinfo
->prefix
, 8);
2766 if (!ipv6_addr_any(&in6_dev
->token
)) {
2767 read_lock_bh(&in6_dev
->lock
);
2768 memcpy(addr
.s6_addr
+ 8,
2769 in6_dev
->token
.s6_addr
+ 8, 8);
2770 read_unlock_bh(&in6_dev
->lock
);
2772 } else if (is_addr_mode_generate_stable(in6_dev
) &&
2773 !ipv6_generate_stable_address(&addr
, 0,
2775 addr_flags
|= IFA_F_STABLE_PRIVACY
;
2777 } else if (ipv6_generate_eui64(addr
.s6_addr
+ 8, dev
) &&
2778 ipv6_inherit_eui64(addr
.s6_addr
+ 8, in6_dev
)) {
2781 dev_addr_generated
= true;
2785 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2790 err
= addrconf_prefix_rcv_add_addr(net
, dev
, pinfo
, in6_dev
,
2793 tokenized
, valid_lft
,
2798 /* Ignore error case here because previous prefix add addr was
2799 * successful which will be notified.
2801 ndisc_ops_prefix_rcv_add_addr(net
, dev
, pinfo
, in6_dev
, &addr
,
2802 addr_type
, addr_flags
, sllao
,
2803 tokenized
, valid_lft
,
2805 dev_addr_generated
);
2807 inet6_prefix_notify(RTM_NEWPREFIX
, in6_dev
, pinfo
);
2809 in6_dev_put(in6_dev
);
2812 static int addrconf_set_sit_dstaddr(struct net
*net
, struct net_device
*dev
,
2813 struct in6_ifreq
*ireq
)
2815 struct ip_tunnel_parm p
= { };
2818 if (!(ipv6_addr_type(&ireq
->ifr6_addr
) & IPV6_ADDR_COMPATv4
))
2819 return -EADDRNOTAVAIL
;
2821 p
.iph
.daddr
= ireq
->ifr6_addr
.s6_addr32
[3];
2824 p
.iph
.protocol
= IPPROTO_IPV6
;
2827 if (!dev
->netdev_ops
->ndo_tunnel_ctl
)
2829 err
= dev
->netdev_ops
->ndo_tunnel_ctl(dev
, &p
, SIOCADDTUNNEL
);
2833 dev
= __dev_get_by_name(net
, p
.name
);
2836 return dev_open(dev
, NULL
);
2840 * Set destination address.
2841 * Special case for SIT interfaces where we create a new "virtual"
2844 int addrconf_set_dstaddr(struct net
*net
, void __user
*arg
)
2846 struct net_device
*dev
;
2847 struct in6_ifreq ireq
;
2850 if (!IS_ENABLED(CONFIG_IPV6_SIT
))
2852 if (copy_from_user(&ireq
, arg
, sizeof(struct in6_ifreq
)))
2856 dev
= __dev_get_by_index(net
, ireq
.ifr6_ifindex
);
2857 if (dev
&& dev
->type
== ARPHRD_SIT
)
2858 err
= addrconf_set_sit_dstaddr(net
, dev
, &ireq
);
2863 static int ipv6_mc_config(struct sock
*sk
, bool join
,
2864 const struct in6_addr
*addr
, int ifindex
)
2872 ret
= ipv6_sock_mc_join(sk
, ifindex
, addr
);
2874 ret
= ipv6_sock_mc_drop(sk
, ifindex
, addr
);
2881 * Manual configuration of address on an interface
2883 static int inet6_addr_add(struct net
*net
, int ifindex
,
2884 struct ifa6_config
*cfg
,
2885 struct netlink_ext_ack
*extack
)
2887 struct inet6_ifaddr
*ifp
;
2888 struct inet6_dev
*idev
;
2889 struct net_device
*dev
;
2890 unsigned long timeout
;
2896 if (cfg
->plen
> 128)
2899 /* check the lifetime */
2900 if (!cfg
->valid_lft
|| cfg
->preferred_lft
> cfg
->valid_lft
)
2903 if (cfg
->ifa_flags
& IFA_F_MANAGETEMPADDR
&& cfg
->plen
!= 64)
2906 dev
= __dev_get_by_index(net
, ifindex
);
2910 idev
= addrconf_add_dev(dev
);
2912 return PTR_ERR(idev
);
2914 if (cfg
->ifa_flags
& IFA_F_MCAUTOJOIN
) {
2915 int ret
= ipv6_mc_config(net
->ipv6
.mc_autojoin_sk
,
2916 true, cfg
->pfx
, ifindex
);
2922 cfg
->scope
= ipv6_addr_scope(cfg
->pfx
);
2924 timeout
= addrconf_timeout_fixup(cfg
->valid_lft
, HZ
);
2925 if (addrconf_finite_timeout(timeout
)) {
2926 expires
= jiffies_to_clock_t(timeout
* HZ
);
2927 cfg
->valid_lft
= timeout
;
2928 flags
= RTF_EXPIRES
;
2932 cfg
->ifa_flags
|= IFA_F_PERMANENT
;
2935 timeout
= addrconf_timeout_fixup(cfg
->preferred_lft
, HZ
);
2936 if (addrconf_finite_timeout(timeout
)) {
2938 cfg
->ifa_flags
|= IFA_F_DEPRECATED
;
2939 cfg
->preferred_lft
= timeout
;
2942 ifp
= ipv6_add_addr(idev
, cfg
, true, extack
);
2944 if (!(cfg
->ifa_flags
& IFA_F_NOPREFIXROUTE
)) {
2945 addrconf_prefix_route(&ifp
->addr
, ifp
->prefix_len
,
2946 ifp
->rt_priority
, dev
, expires
,
2950 /* Send a netlink notification if DAD is enabled and
2951 * optimistic flag is not set
2953 if (!(ifp
->flags
& (IFA_F_OPTIMISTIC
| IFA_F_NODAD
)))
2954 ipv6_ifa_notify(0, ifp
);
2956 * Note that section 3.1 of RFC 4429 indicates
2957 * that the Optimistic flag should not be set for
2958 * manually configured addresses
2960 addrconf_dad_start(ifp
);
2961 if (cfg
->ifa_flags
& IFA_F_MANAGETEMPADDR
)
2962 manage_tempaddrs(idev
, ifp
, cfg
->valid_lft
,
2963 cfg
->preferred_lft
, true, jiffies
);
2965 addrconf_verify_rtnl();
2967 } else if (cfg
->ifa_flags
& IFA_F_MCAUTOJOIN
) {
2968 ipv6_mc_config(net
->ipv6
.mc_autojoin_sk
, false,
2972 return PTR_ERR(ifp
);
2975 static int inet6_addr_del(struct net
*net
, int ifindex
, u32 ifa_flags
,
2976 const struct in6_addr
*pfx
, unsigned int plen
)
2978 struct inet6_ifaddr
*ifp
;
2979 struct inet6_dev
*idev
;
2980 struct net_device
*dev
;
2985 dev
= __dev_get_by_index(net
, ifindex
);
2989 idev
= __in6_dev_get(dev
);
2993 read_lock_bh(&idev
->lock
);
2994 list_for_each_entry(ifp
, &idev
->addr_list
, if_list
) {
2995 if (ifp
->prefix_len
== plen
&&
2996 ipv6_addr_equal(pfx
, &ifp
->addr
)) {
2998 read_unlock_bh(&idev
->lock
);
3000 if (!(ifp
->flags
& IFA_F_TEMPORARY
) &&
3001 (ifa_flags
& IFA_F_MANAGETEMPADDR
))
3002 manage_tempaddrs(idev
, ifp
, 0, 0, false,
3005 addrconf_verify_rtnl();
3006 if (ipv6_addr_is_multicast(pfx
)) {
3007 ipv6_mc_config(net
->ipv6
.mc_autojoin_sk
,
3008 false, pfx
, dev
->ifindex
);
3013 read_unlock_bh(&idev
->lock
);
3014 return -EADDRNOTAVAIL
;
3018 int addrconf_add_ifaddr(struct net
*net
, void __user
*arg
)
3020 struct ifa6_config cfg
= {
3021 .ifa_flags
= IFA_F_PERMANENT
,
3022 .preferred_lft
= INFINITY_LIFE_TIME
,
3023 .valid_lft
= INFINITY_LIFE_TIME
,
3025 struct in6_ifreq ireq
;
3028 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
3031 if (copy_from_user(&ireq
, arg
, sizeof(struct in6_ifreq
)))
3034 cfg
.pfx
= &ireq
.ifr6_addr
;
3035 cfg
.plen
= ireq
.ifr6_prefixlen
;
3038 err
= inet6_addr_add(net
, ireq
.ifr6_ifindex
, &cfg
, NULL
);
3043 int addrconf_del_ifaddr(struct net
*net
, void __user
*arg
)
3045 struct in6_ifreq ireq
;
3048 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
3051 if (copy_from_user(&ireq
, arg
, sizeof(struct in6_ifreq
)))
3055 err
= inet6_addr_del(net
, ireq
.ifr6_ifindex
, 0, &ireq
.ifr6_addr
,
3056 ireq
.ifr6_prefixlen
);
3061 static void add_addr(struct inet6_dev
*idev
, const struct in6_addr
*addr
,
3062 int plen
, int scope
)
3064 struct inet6_ifaddr
*ifp
;
3065 struct ifa6_config cfg
= {
3068 .ifa_flags
= IFA_F_PERMANENT
,
3069 .valid_lft
= INFINITY_LIFE_TIME
,
3070 .preferred_lft
= INFINITY_LIFE_TIME
,
3074 ifp
= ipv6_add_addr(idev
, &cfg
, true, NULL
);
3076 spin_lock_bh(&ifp
->lock
);
3077 ifp
->flags
&= ~IFA_F_TENTATIVE
;
3078 spin_unlock_bh(&ifp
->lock
);
3079 rt_genid_bump_ipv6(dev_net(idev
->dev
));
3080 ipv6_ifa_notify(RTM_NEWADDR
, ifp
);
3085 #if IS_ENABLED(CONFIG_IPV6_SIT)
3086 static void sit_add_v4_addrs(struct inet6_dev
*idev
)
3088 struct in6_addr addr
;
3089 struct net_device
*dev
;
3090 struct net
*net
= dev_net(idev
->dev
);
3096 memset(&addr
, 0, sizeof(struct in6_addr
));
3097 memcpy(&addr
.s6_addr32
[3], idev
->dev
->dev_addr
, 4);
3099 if (idev
->dev
->flags
&IFF_POINTOPOINT
) {
3100 addr
.s6_addr32
[0] = htonl(0xfe800000);
3104 scope
= IPV6_ADDR_COMPATv4
;
3106 pflags
|= RTF_NONEXTHOP
;
3109 if (addr
.s6_addr32
[3]) {
3110 add_addr(idev
, &addr
, plen
, scope
);
3111 addrconf_prefix_route(&addr
, plen
, 0, idev
->dev
, 0, pflags
,
3116 for_each_netdev(net
, dev
) {
3117 struct in_device
*in_dev
= __in_dev_get_rtnl(dev
);
3118 if (in_dev
&& (dev
->flags
& IFF_UP
)) {
3119 struct in_ifaddr
*ifa
;
3122 in_dev_for_each_ifa_rtnl(ifa
, in_dev
) {
3123 addr
.s6_addr32
[3] = ifa
->ifa_local
;
3125 if (ifa
->ifa_scope
== RT_SCOPE_LINK
)
3127 if (ifa
->ifa_scope
>= RT_SCOPE_HOST
) {
3128 if (idev
->dev
->flags
&IFF_POINTOPOINT
)
3133 add_addr(idev
, &addr
, plen
, flag
);
3134 addrconf_prefix_route(&addr
, plen
, 0, idev
->dev
,
3135 0, pflags
, GFP_KERNEL
);
3142 static void init_loopback(struct net_device
*dev
)
3144 struct inet6_dev
*idev
;
3150 idev
= ipv6_find_idev(dev
);
3152 pr_debug("%s: add_dev failed\n", __func__
);
3156 add_addr(idev
, &in6addr_loopback
, 128, IFA_HOST
);
3159 void addrconf_add_linklocal(struct inet6_dev
*idev
,
3160 const struct in6_addr
*addr
, u32 flags
)
3162 struct ifa6_config cfg
= {
3165 .ifa_flags
= flags
| IFA_F_PERMANENT
,
3166 .valid_lft
= INFINITY_LIFE_TIME
,
3167 .preferred_lft
= INFINITY_LIFE_TIME
,
3170 struct inet6_ifaddr
*ifp
;
3172 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3173 if ((dev_net(idev
->dev
)->ipv6
.devconf_all
->optimistic_dad
||
3174 idev
->cnf
.optimistic_dad
) &&
3175 !dev_net(idev
->dev
)->ipv6
.devconf_all
->forwarding
)
3176 cfg
.ifa_flags
|= IFA_F_OPTIMISTIC
;
3179 ifp
= ipv6_add_addr(idev
, &cfg
, true, NULL
);
3181 addrconf_prefix_route(&ifp
->addr
, ifp
->prefix_len
, 0, idev
->dev
,
3183 addrconf_dad_start(ifp
);
3187 EXPORT_SYMBOL_GPL(addrconf_add_linklocal
);
3189 static bool ipv6_reserved_interfaceid(struct in6_addr address
)
3191 if ((address
.s6_addr32
[2] | address
.s6_addr32
[3]) == 0)
3194 if (address
.s6_addr32
[2] == htonl(0x02005eff) &&
3195 ((address
.s6_addr32
[3] & htonl(0xfe000000)) == htonl(0xfe000000)))
3198 if (address
.s6_addr32
[2] == htonl(0xfdffffff) &&
3199 ((address
.s6_addr32
[3] & htonl(0xffffff80)) == htonl(0xffffff80)))
3205 static int ipv6_generate_stable_address(struct in6_addr
*address
,
3207 const struct inet6_dev
*idev
)
3209 static DEFINE_SPINLOCK(lock
);
3210 static __u32 digest
[SHA1_DIGEST_WORDS
];
3211 static __u32 workspace
[SHA1_WORKSPACE_WORDS
];
3214 char __data
[SHA1_BLOCK_SIZE
];
3216 struct in6_addr secret
;
3218 unsigned char hwaddr
[MAX_ADDR_LEN
];
3223 struct in6_addr secret
;
3224 struct in6_addr temp
;
3225 struct net
*net
= dev_net(idev
->dev
);
3227 BUILD_BUG_ON(sizeof(data
.__data
) != sizeof(data
));
3229 if (idev
->cnf
.stable_secret
.initialized
)
3230 secret
= idev
->cnf
.stable_secret
.secret
;
3231 else if (net
->ipv6
.devconf_dflt
->stable_secret
.initialized
)
3232 secret
= net
->ipv6
.devconf_dflt
->stable_secret
.secret
;
3237 spin_lock_bh(&lock
);
3240 memset(&data
, 0, sizeof(data
));
3241 memset(workspace
, 0, sizeof(workspace
));
3242 memcpy(data
.hwaddr
, idev
->dev
->perm_addr
, idev
->dev
->addr_len
);
3243 data
.prefix
[0] = address
->s6_addr32
[0];
3244 data
.prefix
[1] = address
->s6_addr32
[1];
3245 data
.secret
= secret
;
3246 data
.dad_count
= dad_count
;
3248 sha1_transform(digest
, data
.__data
, workspace
);
3251 temp
.s6_addr32
[2] = (__force __be32
)digest
[0];
3252 temp
.s6_addr32
[3] = (__force __be32
)digest
[1];
3254 spin_unlock_bh(&lock
);
3256 if (ipv6_reserved_interfaceid(temp
)) {
3258 if (dad_count
> dev_net(idev
->dev
)->ipv6
.sysctl
.idgen_retries
)
3267 static void ipv6_gen_mode_random_init(struct inet6_dev
*idev
)
3269 struct ipv6_stable_secret
*s
= &idev
->cnf
.stable_secret
;
3273 s
= &idev
->cnf
.stable_secret
;
3274 get_random_bytes(&s
->secret
, sizeof(s
->secret
));
3275 s
->initialized
= true;
3278 static void addrconf_addr_gen(struct inet6_dev
*idev
, bool prefix_route
)
3280 struct in6_addr addr
;
3282 /* no link local addresses on L3 master devices */
3283 if (netif_is_l3_master(idev
->dev
))
3286 /* no link local addresses on devices flagged as slaves */
3287 if (idev
->dev
->flags
& IFF_SLAVE
)
3290 ipv6_addr_set(&addr
, htonl(0xFE800000), 0, 0, 0);
3292 switch (idev
->cnf
.addr_gen_mode
) {
3293 case IN6_ADDR_GEN_MODE_RANDOM
:
3294 ipv6_gen_mode_random_init(idev
);
3296 case IN6_ADDR_GEN_MODE_STABLE_PRIVACY
:
3297 if (!ipv6_generate_stable_address(&addr
, 0, idev
))
3298 addrconf_add_linklocal(idev
, &addr
,
3299 IFA_F_STABLE_PRIVACY
);
3300 else if (prefix_route
)
3301 addrconf_prefix_route(&addr
, 64, 0, idev
->dev
,
3304 case IN6_ADDR_GEN_MODE_EUI64
:
3305 /* addrconf_add_linklocal also adds a prefix_route and we
3306 * only need to care about prefix routes if ipv6_generate_eui64
3307 * couldn't generate one.
3309 if (ipv6_generate_eui64(addr
.s6_addr
+ 8, idev
->dev
) == 0)
3310 addrconf_add_linklocal(idev
, &addr
, 0);
3311 else if (prefix_route
)
3312 addrconf_prefix_route(&addr
, 64, 0, idev
->dev
,
3315 case IN6_ADDR_GEN_MODE_NONE
:
3317 /* will not add any link local address */
3322 static void addrconf_dev_config(struct net_device
*dev
)
3324 struct inet6_dev
*idev
;
3328 if ((dev
->type
!= ARPHRD_ETHER
) &&
3329 (dev
->type
!= ARPHRD_FDDI
) &&
3330 (dev
->type
!= ARPHRD_ARCNET
) &&
3331 (dev
->type
!= ARPHRD_INFINIBAND
) &&
3332 (dev
->type
!= ARPHRD_IEEE1394
) &&
3333 (dev
->type
!= ARPHRD_TUNNEL6
) &&
3334 (dev
->type
!= ARPHRD_6LOWPAN
) &&
3335 (dev
->type
!= ARPHRD_IP6GRE
) &&
3336 (dev
->type
!= ARPHRD_IPGRE
) &&
3337 (dev
->type
!= ARPHRD_TUNNEL
) &&
3338 (dev
->type
!= ARPHRD_NONE
) &&
3339 (dev
->type
!= ARPHRD_RAWIP
)) {
3340 /* Alas, we support only Ethernet autoconfiguration. */
3341 idev
= __in6_dev_get(dev
);
3342 if (!IS_ERR_OR_NULL(idev
) && dev
->flags
& IFF_UP
&&
3343 dev
->flags
& IFF_MULTICAST
)
3348 idev
= addrconf_add_dev(dev
);
3352 /* this device type has no EUI support */
3353 if (dev
->type
== ARPHRD_NONE
&&
3354 idev
->cnf
.addr_gen_mode
== IN6_ADDR_GEN_MODE_EUI64
)
3355 idev
->cnf
.addr_gen_mode
= IN6_ADDR_GEN_MODE_RANDOM
;
3357 addrconf_addr_gen(idev
, false);
3360 #if IS_ENABLED(CONFIG_IPV6_SIT)
3361 static void addrconf_sit_config(struct net_device
*dev
)
3363 struct inet6_dev
*idev
;
3368 * Configure the tunnel with one of our IPv4
3369 * addresses... we should configure all of
3370 * our v4 addrs in the tunnel
3373 idev
= ipv6_find_idev(dev
);
3375 pr_debug("%s: add_dev failed\n", __func__
);
3379 if (dev
->priv_flags
& IFF_ISATAP
) {
3380 addrconf_addr_gen(idev
, false);
3384 sit_add_v4_addrs(idev
);
3386 if (dev
->flags
&IFF_POINTOPOINT
)
3387 addrconf_add_mroute(dev
);
3391 #if IS_ENABLED(CONFIG_NET_IPGRE)
3392 static void addrconf_gre_config(struct net_device
*dev
)
3394 struct inet6_dev
*idev
;
3398 idev
= ipv6_find_idev(dev
);
3400 pr_debug("%s: add_dev failed\n", __func__
);
3404 addrconf_addr_gen(idev
, true);
3405 if (dev
->flags
& IFF_POINTOPOINT
)
3406 addrconf_add_mroute(dev
);
3410 static int fixup_permanent_addr(struct net
*net
,
3411 struct inet6_dev
*idev
,
3412 struct inet6_ifaddr
*ifp
)
3414 /* !fib6_node means the host route was removed from the
3415 * FIB, for example, if 'lo' device is taken down. In that
3416 * case regenerate the host route.
3418 if (!ifp
->rt
|| !ifp
->rt
->fib6_node
) {
3419 struct fib6_info
*f6i
, *prev
;
3421 f6i
= addrconf_f6i_alloc(net
, idev
, &ifp
->addr
, false,
3424 return PTR_ERR(f6i
);
3426 /* ifp->rt can be accessed outside of rtnl */
3427 spin_lock(&ifp
->lock
);
3430 spin_unlock(&ifp
->lock
);
3432 fib6_info_release(prev
);
3435 if (!(ifp
->flags
& IFA_F_NOPREFIXROUTE
)) {
3436 addrconf_prefix_route(&ifp
->addr
, ifp
->prefix_len
,
3437 ifp
->rt_priority
, idev
->dev
, 0, 0,
3441 if (ifp
->state
== INET6_IFADDR_STATE_PREDAD
)
3442 addrconf_dad_start(ifp
);
3447 static void addrconf_permanent_addr(struct net
*net
, struct net_device
*dev
)
3449 struct inet6_ifaddr
*ifp
, *tmp
;
3450 struct inet6_dev
*idev
;
3452 idev
= __in6_dev_get(dev
);
3456 write_lock_bh(&idev
->lock
);
3458 list_for_each_entry_safe(ifp
, tmp
, &idev
->addr_list
, if_list
) {
3459 if ((ifp
->flags
& IFA_F_PERMANENT
) &&
3460 fixup_permanent_addr(net
, idev
, ifp
) < 0) {
3461 write_unlock_bh(&idev
->lock
);
3464 write_lock_bh(&idev
->lock
);
3466 net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n",
3467 idev
->dev
->name
, &ifp
->addr
);
3471 write_unlock_bh(&idev
->lock
);
3474 static int addrconf_notify(struct notifier_block
*this, unsigned long event
,
3477 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
3478 struct netdev_notifier_change_info
*change_info
;
3479 struct netdev_notifier_changeupper_info
*info
;
3480 struct inet6_dev
*idev
= __in6_dev_get(dev
);
3481 struct net
*net
= dev_net(dev
);
3482 int run_pending
= 0;
3486 case NETDEV_REGISTER
:
3487 if (!idev
&& dev
->mtu
>= IPV6_MIN_MTU
) {
3488 idev
= ipv6_add_dev(dev
);
3490 return notifier_from_errno(PTR_ERR(idev
));
3494 case NETDEV_CHANGEMTU
:
3495 /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */
3496 if (dev
->mtu
< IPV6_MIN_MTU
) {
3497 addrconf_ifdown(dev
, dev
!= net
->loopback_dev
);
3502 rt6_mtu_change(dev
, dev
->mtu
);
3503 idev
->cnf
.mtu6
= dev
->mtu
;
3507 /* allocate new idev */
3508 idev
= ipv6_add_dev(dev
);
3512 /* device is still not ready */
3513 if (!(idev
->if_flags
& IF_READY
))
3520 if (dev
->flags
& IFF_SLAVE
)
3523 if (idev
&& idev
->cnf
.disable_ipv6
)
3526 if (event
== NETDEV_UP
) {
3527 /* restore routes for permanent addresses */
3528 addrconf_permanent_addr(net
, dev
);
3530 if (!addrconf_link_ready(dev
)) {
3531 /* device is not ready yet. */
3532 pr_debug("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
3537 if (!idev
&& dev
->mtu
>= IPV6_MIN_MTU
)
3538 idev
= ipv6_add_dev(dev
);
3540 if (!IS_ERR_OR_NULL(idev
)) {
3541 idev
->if_flags
|= IF_READY
;
3544 } else if (event
== NETDEV_CHANGE
) {
3545 if (!addrconf_link_ready(dev
)) {
3546 /* device is still not ready. */
3547 rt6_sync_down_dev(dev
, event
);
3551 if (!IS_ERR_OR_NULL(idev
)) {
3552 if (idev
->if_flags
& IF_READY
) {
3553 /* device is already configured -
3554 * but resend MLD reports, we might
3555 * have roamed and need to update
3556 * multicast snooping switches
3560 if (change_info
->flags_changed
& IFF_NOARP
)
3561 addrconf_dad_run(idev
, true);
3562 rt6_sync_up(dev
, RTNH_F_LINKDOWN
);
3565 idev
->if_flags
|= IF_READY
;
3568 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
3574 switch (dev
->type
) {
3575 #if IS_ENABLED(CONFIG_IPV6_SIT)
3577 addrconf_sit_config(dev
);
3580 #if IS_ENABLED(CONFIG_NET_IPGRE)
3582 addrconf_gre_config(dev
);
3585 case ARPHRD_LOOPBACK
:
3590 addrconf_dev_config(dev
);
3594 if (!IS_ERR_OR_NULL(idev
)) {
3596 addrconf_dad_run(idev
, false);
3598 /* Device has an address by now */
3599 rt6_sync_up(dev
, RTNH_F_DEAD
);
3602 * If the MTU changed during the interface down,
3603 * when the interface up, the changed MTU must be
3604 * reflected in the idev as well as routers.
3606 if (idev
->cnf
.mtu6
!= dev
->mtu
&&
3607 dev
->mtu
>= IPV6_MIN_MTU
) {
3608 rt6_mtu_change(dev
, dev
->mtu
);
3609 idev
->cnf
.mtu6
= dev
->mtu
;
3611 idev
->tstamp
= jiffies
;
3612 inet6_ifinfo_notify(RTM_NEWLINK
, idev
);
3615 * If the changed mtu during down is lower than
3616 * IPV6_MIN_MTU stop IPv6 on this interface.
3618 if (dev
->mtu
< IPV6_MIN_MTU
)
3619 addrconf_ifdown(dev
, dev
!= net
->loopback_dev
);
3624 case NETDEV_UNREGISTER
:
3626 * Remove all addresses from this interface.
3628 addrconf_ifdown(dev
, event
!= NETDEV_DOWN
);
3631 case NETDEV_CHANGENAME
:
3633 snmp6_unregister_dev(idev
);
3634 addrconf_sysctl_unregister(idev
);
3635 err
= addrconf_sysctl_register(idev
);
3637 return notifier_from_errno(err
);
3638 err
= snmp6_register_dev(idev
);
3640 addrconf_sysctl_unregister(idev
);
3641 return notifier_from_errno(err
);
3646 case NETDEV_PRE_TYPE_CHANGE
:
3647 case NETDEV_POST_TYPE_CHANGE
:
3649 addrconf_type_change(dev
, event
);
3652 case NETDEV_CHANGEUPPER
:
3655 /* flush all routes if dev is linked to or unlinked from
3656 * an L3 master device (e.g., VRF)
3658 if (info
->upper_dev
&& netif_is_l3_master(info
->upper_dev
))
3659 addrconf_ifdown(dev
, false);
3666 * addrconf module should be notified of a device going up
3668 static struct notifier_block ipv6_dev_notf
= {
3669 .notifier_call
= addrconf_notify
,
3670 .priority
= ADDRCONF_NOTIFY_PRIORITY
,
3673 static void addrconf_type_change(struct net_device
*dev
, unsigned long event
)
3675 struct inet6_dev
*idev
;
3678 idev
= __in6_dev_get(dev
);
3680 if (event
== NETDEV_POST_TYPE_CHANGE
)
3681 ipv6_mc_remap(idev
);
3682 else if (event
== NETDEV_PRE_TYPE_CHANGE
)
3683 ipv6_mc_unmap(idev
);
3686 static bool addr_is_local(const struct in6_addr
*addr
)
3688 return ipv6_addr_type(addr
) &
3689 (IPV6_ADDR_LINKLOCAL
| IPV6_ADDR_LOOPBACK
);
3692 static int addrconf_ifdown(struct net_device
*dev
, bool unregister
)
3694 unsigned long event
= unregister
? NETDEV_UNREGISTER
: NETDEV_DOWN
;
3695 struct net
*net
= dev_net(dev
);
3696 struct inet6_dev
*idev
;
3697 struct inet6_ifaddr
*ifa
, *tmp
;
3698 bool keep_addr
= false;
3703 rt6_disable_ip(dev
, event
);
3705 idev
= __in6_dev_get(dev
);
3710 * Step 1: remove reference to ipv6 device from parent device.
3716 /* protected by rtnl_lock */
3717 RCU_INIT_POINTER(dev
->ip6_ptr
, NULL
);
3719 /* Step 1.5: remove snmp6 entry */
3720 snmp6_unregister_dev(idev
);
3724 /* combine the user config with event to determine if permanent
3725 * addresses are to be removed from address hash table
3727 if (!unregister
&& !idev
->cnf
.disable_ipv6
) {
3728 /* aggregate the system setting and interface setting */
3729 int _keep_addr
= net
->ipv6
.devconf_all
->keep_addr_on_down
;
3732 _keep_addr
= idev
->cnf
.keep_addr_on_down
;
3734 keep_addr
= (_keep_addr
> 0);
3737 /* Step 2: clear hash table */
3738 for (i
= 0; i
< IN6_ADDR_HSIZE
; i
++) {
3739 struct hlist_head
*h
= &inet6_addr_lst
[i
];
3741 spin_lock_bh(&addrconf_hash_lock
);
3743 hlist_for_each_entry_rcu(ifa
, h
, addr_lst
) {
3744 if (ifa
->idev
== idev
) {
3745 addrconf_del_dad_work(ifa
);
3746 /* combined flag + permanent flag decide if
3747 * address is retained on a down event
3750 !(ifa
->flags
& IFA_F_PERMANENT
) ||
3751 addr_is_local(&ifa
->addr
)) {
3752 hlist_del_init_rcu(&ifa
->addr_lst
);
3757 spin_unlock_bh(&addrconf_hash_lock
);
3760 write_lock_bh(&idev
->lock
);
3762 addrconf_del_rs_timer(idev
);
3764 /* Step 2: clear flags for stateless addrconf */
3766 idev
->if_flags
&= ~(IF_RS_SENT
|IF_RA_RCVD
|IF_READY
);
3768 /* Step 3: clear tempaddr list */
3769 while (!list_empty(&idev
->tempaddr_list
)) {
3770 ifa
= list_first_entry(&idev
->tempaddr_list
,
3771 struct inet6_ifaddr
, tmp_list
);
3772 list_del(&ifa
->tmp_list
);
3773 write_unlock_bh(&idev
->lock
);
3774 spin_lock_bh(&ifa
->lock
);
3777 in6_ifa_put(ifa
->ifpub
);
3780 spin_unlock_bh(&ifa
->lock
);
3782 write_lock_bh(&idev
->lock
);
3785 list_for_each_entry_safe(ifa
, tmp
, &idev
->addr_list
, if_list
) {
3786 struct fib6_info
*rt
= NULL
;
3789 addrconf_del_dad_work(ifa
);
3791 keep
= keep_addr
&& (ifa
->flags
& IFA_F_PERMANENT
) &&
3792 !addr_is_local(&ifa
->addr
);
3794 write_unlock_bh(&idev
->lock
);
3795 spin_lock_bh(&ifa
->lock
);
3798 /* set state to skip the notifier below */
3799 state
= INET6_IFADDR_STATE_DEAD
;
3800 ifa
->state
= INET6_IFADDR_STATE_PREDAD
;
3801 if (!(ifa
->flags
& IFA_F_NODAD
))
3802 ifa
->flags
|= IFA_F_TENTATIVE
;
3808 ifa
->state
= INET6_IFADDR_STATE_DEAD
;
3811 spin_unlock_bh(&ifa
->lock
);
3814 ip6_del_rt(net
, rt
, false);
3816 if (state
!= INET6_IFADDR_STATE_DEAD
) {
3817 __ipv6_ifa_notify(RTM_DELADDR
, ifa
);
3818 inet6addr_notifier_call_chain(NETDEV_DOWN
, ifa
);
3820 if (idev
->cnf
.forwarding
)
3821 addrconf_leave_anycast(ifa
);
3822 addrconf_leave_solict(ifa
->idev
, &ifa
->addr
);
3825 write_lock_bh(&idev
->lock
);
3827 list_del_rcu(&ifa
->if_list
);
3832 write_unlock_bh(&idev
->lock
);
3834 /* Step 5: Discard anycast and multicast list */
3836 ipv6_ac_destroy_dev(idev
);
3837 ipv6_mc_destroy_dev(idev
);
3842 idev
->tstamp
= jiffies
;
3844 /* Last: Shot the device (if unregistered) */
3846 addrconf_sysctl_unregister(idev
);
3847 neigh_parms_release(&nd_tbl
, idev
->nd_parms
);
3848 neigh_ifdown(&nd_tbl
, dev
);
3854 static void addrconf_rs_timer(struct timer_list
*t
)
3856 struct inet6_dev
*idev
= from_timer(idev
, t
, rs_timer
);
3857 struct net_device
*dev
= idev
->dev
;
3858 struct in6_addr lladdr
;
3860 write_lock(&idev
->lock
);
3861 if (idev
->dead
|| !(idev
->if_flags
& IF_READY
))
3864 if (!ipv6_accept_ra(idev
))
3867 /* Announcement received after solicitation was sent */
3868 if (idev
->if_flags
& IF_RA_RCVD
)
3871 if (idev
->rs_probes
++ < idev
->cnf
.rtr_solicits
|| idev
->cnf
.rtr_solicits
< 0) {
3872 write_unlock(&idev
->lock
);
3873 if (!ipv6_get_lladdr(dev
, &lladdr
, IFA_F_TENTATIVE
))
3874 ndisc_send_rs(dev
, &lladdr
,
3875 &in6addr_linklocal_allrouters
);
3879 write_lock(&idev
->lock
);
3880 idev
->rs_interval
= rfc3315_s14_backoff_update(
3881 idev
->rs_interval
, idev
->cnf
.rtr_solicit_max_interval
);
3882 /* The wait after the last probe can be shorter */
3883 addrconf_mod_rs_timer(idev
, (idev
->rs_probes
==
3884 idev
->cnf
.rtr_solicits
) ?
3885 idev
->cnf
.rtr_solicit_delay
:
3889 * Note: we do not support deprecated "all on-link"
3890 * assumption any longer.
3892 pr_debug("%s: no IPv6 routers present\n", idev
->dev
->name
);
3896 write_unlock(&idev
->lock
);
3902 * Duplicate Address Detection
3904 static void addrconf_dad_kick(struct inet6_ifaddr
*ifp
)
3906 unsigned long rand_num
;
3907 struct inet6_dev
*idev
= ifp
->idev
;
3910 if (ifp
->flags
& IFA_F_OPTIMISTIC
)
3913 rand_num
= prandom_u32() % (idev
->cnf
.rtr_solicit_delay
? : 1);
3916 if (idev
->cnf
.enhanced_dad
||
3917 dev_net(idev
->dev
)->ipv6
.devconf_all
->enhanced_dad
) {
3919 get_random_bytes(&nonce
, 6);
3922 ifp
->dad_nonce
= nonce
;
3923 ifp
->dad_probes
= idev
->cnf
.dad_transmits
;
3924 addrconf_mod_dad_work(ifp
, rand_num
);
3927 static void addrconf_dad_begin(struct inet6_ifaddr
*ifp
)
3929 struct inet6_dev
*idev
= ifp
->idev
;
3930 struct net_device
*dev
= idev
->dev
;
3931 bool bump_id
, notify
= false;
3934 addrconf_join_solict(dev
, &ifp
->addr
);
3936 prandom_seed((__force u32
) ifp
->addr
.s6_addr32
[3]);
3938 read_lock_bh(&idev
->lock
);
3939 spin_lock(&ifp
->lock
);
3940 if (ifp
->state
== INET6_IFADDR_STATE_DEAD
)
3944 if (dev
->flags
&(IFF_NOARP
|IFF_LOOPBACK
) ||
3945 (net
->ipv6
.devconf_all
->accept_dad
< 1 &&
3946 idev
->cnf
.accept_dad
< 1) ||
3947 !(ifp
->flags
&IFA_F_TENTATIVE
) ||
3948 ifp
->flags
& IFA_F_NODAD
) {
3949 bool send_na
= false;
3951 if (ifp
->flags
& IFA_F_TENTATIVE
&&
3952 !(ifp
->flags
& IFA_F_OPTIMISTIC
))
3954 bump_id
= ifp
->flags
& IFA_F_TENTATIVE
;
3955 ifp
->flags
&= ~(IFA_F_TENTATIVE
|IFA_F_OPTIMISTIC
|IFA_F_DADFAILED
);
3956 spin_unlock(&ifp
->lock
);
3957 read_unlock_bh(&idev
->lock
);
3959 addrconf_dad_completed(ifp
, bump_id
, send_na
);
3963 if (!(idev
->if_flags
& IF_READY
)) {
3964 spin_unlock(&ifp
->lock
);
3965 read_unlock_bh(&idev
->lock
);
3967 * If the device is not ready:
3968 * - keep it tentative if it is a permanent address.
3969 * - otherwise, kill it.
3972 addrconf_dad_stop(ifp
, 0);
3977 * Optimistic nodes can start receiving
3980 if (ifp
->flags
& IFA_F_OPTIMISTIC
) {
3981 ip6_ins_rt(net
, ifp
->rt
);
3982 if (ipv6_use_optimistic_addr(net
, idev
)) {
3983 /* Because optimistic nodes can use this address,
3984 * notify listeners. If DAD fails, RTM_DELADDR is sent.
3990 addrconf_dad_kick(ifp
);
3992 spin_unlock(&ifp
->lock
);
3993 read_unlock_bh(&idev
->lock
);
3995 ipv6_ifa_notify(RTM_NEWADDR
, ifp
);
3998 static void addrconf_dad_start(struct inet6_ifaddr
*ifp
)
4000 bool begin_dad
= false;
4002 spin_lock_bh(&ifp
->lock
);
4003 if (ifp
->state
!= INET6_IFADDR_STATE_DEAD
) {
4004 ifp
->state
= INET6_IFADDR_STATE_PREDAD
;
4007 spin_unlock_bh(&ifp
->lock
);
4010 addrconf_mod_dad_work(ifp
, 0);
4013 static void addrconf_dad_work(struct work_struct
*w
)
4015 struct inet6_ifaddr
*ifp
= container_of(to_delayed_work(w
),
4016 struct inet6_ifaddr
,
4018 struct inet6_dev
*idev
= ifp
->idev
;
4019 bool bump_id
, disable_ipv6
= false;
4020 struct in6_addr mcaddr
;
4026 } action
= DAD_PROCESS
;
4030 spin_lock_bh(&ifp
->lock
);
4031 if (ifp
->state
== INET6_IFADDR_STATE_PREDAD
) {
4033 ifp
->state
= INET6_IFADDR_STATE_DAD
;
4034 } else if (ifp
->state
== INET6_IFADDR_STATE_ERRDAD
) {
4036 ifp
->state
= INET6_IFADDR_STATE_POSTDAD
;
4038 if ((dev_net(idev
->dev
)->ipv6
.devconf_all
->accept_dad
> 1 ||
4039 idev
->cnf
.accept_dad
> 1) &&
4040 !idev
->cnf
.disable_ipv6
&&
4041 !(ifp
->flags
& IFA_F_STABLE_PRIVACY
)) {
4042 struct in6_addr addr
;
4044 addr
.s6_addr32
[0] = htonl(0xfe800000);
4045 addr
.s6_addr32
[1] = 0;
4047 if (!ipv6_generate_eui64(addr
.s6_addr
+ 8, idev
->dev
) &&
4048 ipv6_addr_equal(&ifp
->addr
, &addr
)) {
4049 /* DAD failed for link-local based on MAC */
4050 idev
->cnf
.disable_ipv6
= 1;
4052 pr_info("%s: IPv6 being disabled!\n",
4053 ifp
->idev
->dev
->name
);
4054 disable_ipv6
= true;
4058 spin_unlock_bh(&ifp
->lock
);
4060 if (action
== DAD_BEGIN
) {
4061 addrconf_dad_begin(ifp
);
4063 } else if (action
== DAD_ABORT
) {
4065 addrconf_dad_stop(ifp
, 1);
4067 addrconf_ifdown(idev
->dev
, false);
4071 if (!ifp
->dad_probes
&& addrconf_dad_end(ifp
))
4074 write_lock_bh(&idev
->lock
);
4075 if (idev
->dead
|| !(idev
->if_flags
& IF_READY
)) {
4076 write_unlock_bh(&idev
->lock
);
4080 spin_lock(&ifp
->lock
);
4081 if (ifp
->state
== INET6_IFADDR_STATE_DEAD
) {
4082 spin_unlock(&ifp
->lock
);
4083 write_unlock_bh(&idev
->lock
);
4087 if (ifp
->dad_probes
== 0) {
4088 bool send_na
= false;
4091 * DAD was successful
4094 if (ifp
->flags
& IFA_F_TENTATIVE
&&
4095 !(ifp
->flags
& IFA_F_OPTIMISTIC
))
4097 bump_id
= ifp
->flags
& IFA_F_TENTATIVE
;
4098 ifp
->flags
&= ~(IFA_F_TENTATIVE
|IFA_F_OPTIMISTIC
|IFA_F_DADFAILED
);
4099 spin_unlock(&ifp
->lock
);
4100 write_unlock_bh(&idev
->lock
);
4102 addrconf_dad_completed(ifp
, bump_id
, send_na
);
4108 addrconf_mod_dad_work(ifp
,
4109 max(NEIGH_VAR(ifp
->idev
->nd_parms
, RETRANS_TIME
),
4111 spin_unlock(&ifp
->lock
);
4112 write_unlock_bh(&idev
->lock
);
4114 /* send a neighbour solicitation for our addr */
4115 addrconf_addr_solict_mult(&ifp
->addr
, &mcaddr
);
4116 ndisc_send_ns(ifp
->idev
->dev
, &ifp
->addr
, &mcaddr
, &in6addr_any
,
4123 /* ifp->idev must be at least read locked */
4124 static bool ipv6_lonely_lladdr(struct inet6_ifaddr
*ifp
)
4126 struct inet6_ifaddr
*ifpiter
;
4127 struct inet6_dev
*idev
= ifp
->idev
;
4129 list_for_each_entry_reverse(ifpiter
, &idev
->addr_list
, if_list
) {
4130 if (ifpiter
->scope
> IFA_LINK
)
4132 if (ifp
!= ifpiter
&& ifpiter
->scope
== IFA_LINK
&&
4133 (ifpiter
->flags
& (IFA_F_PERMANENT
|IFA_F_TENTATIVE
|
4134 IFA_F_OPTIMISTIC
|IFA_F_DADFAILED
)) ==
4141 static void addrconf_dad_completed(struct inet6_ifaddr
*ifp
, bool bump_id
,
4144 struct net_device
*dev
= ifp
->idev
->dev
;
4145 struct in6_addr lladdr
;
4146 bool send_rs
, send_mld
;
4148 addrconf_del_dad_work(ifp
);
4151 * Configure the address for reception. Now it is valid.
4154 ipv6_ifa_notify(RTM_NEWADDR
, ifp
);
4156 /* If added prefix is link local and we are prepared to process
4157 router advertisements, start sending router solicitations.
4160 read_lock_bh(&ifp
->idev
->lock
);
4161 send_mld
= ifp
->scope
== IFA_LINK
&& ipv6_lonely_lladdr(ifp
);
4162 send_rs
= send_mld
&&
4163 ipv6_accept_ra(ifp
->idev
) &&
4164 ifp
->idev
->cnf
.rtr_solicits
!= 0 &&
4165 (dev
->flags
&IFF_LOOPBACK
) == 0;
4166 read_unlock_bh(&ifp
->idev
->lock
);
4168 /* While dad is in progress mld report's source address is in6_addrany.
4169 * Resend with proper ll now.
4172 ipv6_mc_dad_complete(ifp
->idev
);
4174 /* send unsolicited NA if enabled */
4176 (ifp
->idev
->cnf
.ndisc_notify
||
4177 dev_net(dev
)->ipv6
.devconf_all
->ndisc_notify
)) {
4178 ndisc_send_na(dev
, &in6addr_linklocal_allnodes
, &ifp
->addr
,
4179 /*router=*/ !!ifp
->idev
->cnf
.forwarding
,
4180 /*solicited=*/ false, /*override=*/ true,
4186 * If a host as already performed a random delay
4187 * [...] as part of DAD [...] there is no need
4188 * to delay again before sending the first RS
4190 if (ipv6_get_lladdr(dev
, &lladdr
, IFA_F_TENTATIVE
))
4192 ndisc_send_rs(dev
, &lladdr
, &in6addr_linklocal_allrouters
);
4194 write_lock_bh(&ifp
->idev
->lock
);
4195 spin_lock(&ifp
->lock
);
4196 ifp
->idev
->rs_interval
= rfc3315_s14_backoff_init(
4197 ifp
->idev
->cnf
.rtr_solicit_interval
);
4198 ifp
->idev
->rs_probes
= 1;
4199 ifp
->idev
->if_flags
|= IF_RS_SENT
;
4200 addrconf_mod_rs_timer(ifp
->idev
, ifp
->idev
->rs_interval
);
4201 spin_unlock(&ifp
->lock
);
4202 write_unlock_bh(&ifp
->idev
->lock
);
4206 rt_genid_bump_ipv6(dev_net(dev
));
4208 /* Make sure that a new temporary address will be created
4209 * before this temporary address becomes deprecated.
4211 if (ifp
->flags
& IFA_F_TEMPORARY
)
4212 addrconf_verify_rtnl();
4215 static void addrconf_dad_run(struct inet6_dev
*idev
, bool restart
)
4217 struct inet6_ifaddr
*ifp
;
4219 read_lock_bh(&idev
->lock
);
4220 list_for_each_entry(ifp
, &idev
->addr_list
, if_list
) {
4221 spin_lock(&ifp
->lock
);
4222 if ((ifp
->flags
& IFA_F_TENTATIVE
&&
4223 ifp
->state
== INET6_IFADDR_STATE_DAD
) || restart
) {
4225 ifp
->state
= INET6_IFADDR_STATE_PREDAD
;
4226 addrconf_dad_kick(ifp
);
4228 spin_unlock(&ifp
->lock
);
4230 read_unlock_bh(&idev
->lock
);
4233 #ifdef CONFIG_PROC_FS
4234 struct if6_iter_state
{
4235 struct seq_net_private p
;
4240 static struct inet6_ifaddr
*if6_get_first(struct seq_file
*seq
, loff_t pos
)
4242 struct if6_iter_state
*state
= seq
->private;
4243 struct net
*net
= seq_file_net(seq
);
4244 struct inet6_ifaddr
*ifa
= NULL
;
4247 /* initial bucket if pos is 0 */
4253 for (; state
->bucket
< IN6_ADDR_HSIZE
; ++state
->bucket
) {
4254 hlist_for_each_entry_rcu(ifa
, &inet6_addr_lst
[state
->bucket
],
4256 if (!net_eq(dev_net(ifa
->idev
->dev
), net
))
4258 /* sync with offset */
4259 if (p
< state
->offset
) {
4266 /* prepare for next bucket */
4273 static struct inet6_ifaddr
*if6_get_next(struct seq_file
*seq
,
4274 struct inet6_ifaddr
*ifa
)
4276 struct if6_iter_state
*state
= seq
->private;
4277 struct net
*net
= seq_file_net(seq
);
4279 hlist_for_each_entry_continue_rcu(ifa
, addr_lst
) {
4280 if (!net_eq(dev_net(ifa
->idev
->dev
), net
))
4287 while (++state
->bucket
< IN6_ADDR_HSIZE
) {
4288 hlist_for_each_entry_rcu(ifa
,
4289 &inet6_addr_lst
[state
->bucket
], addr_lst
) {
4290 if (!net_eq(dev_net(ifa
->idev
->dev
), net
))
4299 static void *if6_seq_start(struct seq_file
*seq
, loff_t
*pos
)
4303 return if6_get_first(seq
, *pos
);
4306 static void *if6_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
4308 struct inet6_ifaddr
*ifa
;
4310 ifa
= if6_get_next(seq
, v
);
4315 static void if6_seq_stop(struct seq_file
*seq
, void *v
)
4321 static int if6_seq_show(struct seq_file
*seq
, void *v
)
4323 struct inet6_ifaddr
*ifp
= (struct inet6_ifaddr
*)v
;
4324 seq_printf(seq
, "%pi6 %02x %02x %02x %02x %8s\n",
4326 ifp
->idev
->dev
->ifindex
,
4330 ifp
->idev
->dev
->name
);
4334 static const struct seq_operations if6_seq_ops
= {
4335 .start
= if6_seq_start
,
4336 .next
= if6_seq_next
,
4337 .show
= if6_seq_show
,
4338 .stop
= if6_seq_stop
,
4341 static int __net_init
if6_proc_net_init(struct net
*net
)
4343 if (!proc_create_net("if_inet6", 0444, net
->proc_net
, &if6_seq_ops
,
4344 sizeof(struct if6_iter_state
)))
4349 static void __net_exit
if6_proc_net_exit(struct net
*net
)
4351 remove_proc_entry("if_inet6", net
->proc_net
);
4354 static struct pernet_operations if6_proc_net_ops
= {
4355 .init
= if6_proc_net_init
,
4356 .exit
= if6_proc_net_exit
,
4359 int __init
if6_proc_init(void)
4361 return register_pernet_subsys(&if6_proc_net_ops
);
4364 void if6_proc_exit(void)
4366 unregister_pernet_subsys(&if6_proc_net_ops
);
4368 #endif /* CONFIG_PROC_FS */
4370 #if IS_ENABLED(CONFIG_IPV6_MIP6)
4371 /* Check if address is a home address configured on any interface. */
4372 int ipv6_chk_home_addr(struct net
*net
, const struct in6_addr
*addr
)
4374 unsigned int hash
= inet6_addr_hash(net
, addr
);
4375 struct inet6_ifaddr
*ifp
= NULL
;
4379 hlist_for_each_entry_rcu(ifp
, &inet6_addr_lst
[hash
], addr_lst
) {
4380 if (!net_eq(dev_net(ifp
->idev
->dev
), net
))
4382 if (ipv6_addr_equal(&ifp
->addr
, addr
) &&
4383 (ifp
->flags
& IFA_F_HOMEADDRESS
)) {
4393 /* RFC6554 has some algorithm to avoid loops in segment routing by
4394 * checking if the segments contains any of a local interface address.
4398 * To detect loops in the SRH, a router MUST determine if the SRH
4399 * includes multiple addresses assigned to any interface on that router.
4400 * If such addresses appear more than once and are separated by at least
4401 * one address not assigned to that router.
4403 int ipv6_chk_rpl_srh_loop(struct net
*net
, const struct in6_addr
*segs
,
4404 unsigned char nsegs
)
4406 const struct in6_addr
*addr
;
4407 int i
, ret
= 0, found
= 0;
4408 struct inet6_ifaddr
*ifp
;
4409 bool separated
= false;
4414 for (i
= 0; i
< nsegs
; i
++) {
4416 hash
= inet6_addr_hash(net
, addr
);
4419 hlist_for_each_entry_rcu(ifp
, &inet6_addr_lst
[hash
], addr_lst
) {
4420 if (!net_eq(dev_net(ifp
->idev
->dev
), net
))
4423 if (ipv6_addr_equal(&ifp
->addr
, addr
)) {
4430 if (found
> 1 && separated
) {
4447 * Periodic address status verification
4450 static void addrconf_verify_rtnl(void)
4452 unsigned long now
, next
, next_sec
, next_sched
;
4453 struct inet6_ifaddr
*ifp
;
4460 next
= round_jiffies_up(now
+ ADDR_CHECK_FREQUENCY
);
4462 cancel_delayed_work(&addr_chk_work
);
4464 for (i
= 0; i
< IN6_ADDR_HSIZE
; i
++) {
4466 hlist_for_each_entry_rcu_bh(ifp
, &inet6_addr_lst
[i
], addr_lst
) {
4469 /* When setting preferred_lft to a value not zero or
4470 * infinity, while valid_lft is infinity
4471 * IFA_F_PERMANENT has a non-infinity life time.
4473 if ((ifp
->flags
& IFA_F_PERMANENT
) &&
4474 (ifp
->prefered_lft
== INFINITY_LIFE_TIME
))
4477 spin_lock(&ifp
->lock
);
4478 /* We try to batch several events at once. */
4479 age
= (now
- ifp
->tstamp
+ ADDRCONF_TIMER_FUZZ_MINUS
) / HZ
;
4481 if (ifp
->valid_lft
!= INFINITY_LIFE_TIME
&&
4482 age
>= ifp
->valid_lft
) {
4483 spin_unlock(&ifp
->lock
);
4487 } else if (ifp
->prefered_lft
== INFINITY_LIFE_TIME
) {
4488 spin_unlock(&ifp
->lock
);
4490 } else if (age
>= ifp
->prefered_lft
) {
4491 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
4494 if (!(ifp
->flags
&IFA_F_DEPRECATED
)) {
4496 ifp
->flags
|= IFA_F_DEPRECATED
;
4499 if ((ifp
->valid_lft
!= INFINITY_LIFE_TIME
) &&
4500 (time_before(ifp
->tstamp
+ ifp
->valid_lft
* HZ
, next
)))
4501 next
= ifp
->tstamp
+ ifp
->valid_lft
* HZ
;
4503 spin_unlock(&ifp
->lock
);
4508 ipv6_ifa_notify(0, ifp
);
4512 } else if ((ifp
->flags
&IFA_F_TEMPORARY
) &&
4513 !(ifp
->flags
&IFA_F_TENTATIVE
)) {
4514 unsigned long regen_advance
= ifp
->idev
->cnf
.regen_max_retry
*
4515 ifp
->idev
->cnf
.dad_transmits
*
4516 max(NEIGH_VAR(ifp
->idev
->nd_parms
, RETRANS_TIME
), HZ
/100) / HZ
;
4518 if (age
>= ifp
->prefered_lft
- regen_advance
) {
4519 struct inet6_ifaddr
*ifpub
= ifp
->ifpub
;
4520 if (time_before(ifp
->tstamp
+ ifp
->prefered_lft
* HZ
, next
))
4521 next
= ifp
->tstamp
+ ifp
->prefered_lft
* HZ
;
4522 if (!ifp
->regen_count
&& ifpub
) {
4525 in6_ifa_hold(ifpub
);
4526 spin_unlock(&ifp
->lock
);
4528 spin_lock(&ifpub
->lock
);
4529 ifpub
->regen_count
= 0;
4530 spin_unlock(&ifpub
->lock
);
4531 rcu_read_unlock_bh();
4532 ipv6_create_tempaddr(ifpub
, true);
4538 } else if (time_before(ifp
->tstamp
+ ifp
->prefered_lft
* HZ
- regen_advance
* HZ
, next
))
4539 next
= ifp
->tstamp
+ ifp
->prefered_lft
* HZ
- regen_advance
* HZ
;
4540 spin_unlock(&ifp
->lock
);
4542 /* ifp->prefered_lft <= ifp->valid_lft */
4543 if (time_before(ifp
->tstamp
+ ifp
->prefered_lft
* HZ
, next
))
4544 next
= ifp
->tstamp
+ ifp
->prefered_lft
* HZ
;
4545 spin_unlock(&ifp
->lock
);
4550 next_sec
= round_jiffies_up(next
);
4553 /* If rounded timeout is accurate enough, accept it. */
4554 if (time_before(next_sec
, next
+ ADDRCONF_TIMER_FUZZ
))
4555 next_sched
= next_sec
;
4557 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
4558 if (time_before(next_sched
, jiffies
+ ADDRCONF_TIMER_FUZZ_MAX
))
4559 next_sched
= jiffies
+ ADDRCONF_TIMER_FUZZ_MAX
;
4561 pr_debug("now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
4562 now
, next
, next_sec
, next_sched
);
4563 mod_delayed_work(addrconf_wq
, &addr_chk_work
, next_sched
- now
);
4564 rcu_read_unlock_bh();
4567 static void addrconf_verify_work(struct work_struct
*w
)
4570 addrconf_verify_rtnl();
4574 static void addrconf_verify(void)
4576 mod_delayed_work(addrconf_wq
, &addr_chk_work
, 0);
4579 static struct in6_addr
*extract_addr(struct nlattr
*addr
, struct nlattr
*local
,
4580 struct in6_addr
**peer_pfx
)
4582 struct in6_addr
*pfx
= NULL
;
4587 pfx
= nla_data(addr
);
4590 if (pfx
&& nla_memcmp(local
, pfx
, sizeof(*pfx
)))
4592 pfx
= nla_data(local
);
4598 static const struct nla_policy ifa_ipv6_policy
[IFA_MAX
+1] = {
4599 [IFA_ADDRESS
] = { .len
= sizeof(struct in6_addr
) },
4600 [IFA_LOCAL
] = { .len
= sizeof(struct in6_addr
) },
4601 [IFA_CACHEINFO
] = { .len
= sizeof(struct ifa_cacheinfo
) },
4602 [IFA_FLAGS
] = { .len
= sizeof(u32
) },
4603 [IFA_RT_PRIORITY
] = { .len
= sizeof(u32
) },
4604 [IFA_TARGET_NETNSID
] = { .type
= NLA_S32
},
4608 inet6_rtm_deladdr(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
4609 struct netlink_ext_ack
*extack
)
4611 struct net
*net
= sock_net(skb
->sk
);
4612 struct ifaddrmsg
*ifm
;
4613 struct nlattr
*tb
[IFA_MAX
+1];
4614 struct in6_addr
*pfx
, *peer_pfx
;
4618 err
= nlmsg_parse_deprecated(nlh
, sizeof(*ifm
), tb
, IFA_MAX
,
4619 ifa_ipv6_policy
, extack
);
4623 ifm
= nlmsg_data(nlh
);
4624 pfx
= extract_addr(tb
[IFA_ADDRESS
], tb
[IFA_LOCAL
], &peer_pfx
);
4628 ifa_flags
= tb
[IFA_FLAGS
] ? nla_get_u32(tb
[IFA_FLAGS
]) : ifm
->ifa_flags
;
4630 /* We ignore other flags so far. */
4631 ifa_flags
&= IFA_F_MANAGETEMPADDR
;
4633 return inet6_addr_del(net
, ifm
->ifa_index
, ifa_flags
, pfx
,
4634 ifm
->ifa_prefixlen
);
4637 static int modify_prefix_route(struct inet6_ifaddr
*ifp
,
4638 unsigned long expires
, u32 flags
,
4641 struct fib6_info
*f6i
;
4644 f6i
= addrconf_get_prefix_route(modify_peer
? &ifp
->peer_addr
: &ifp
->addr
,
4646 ifp
->idev
->dev
, 0, RTF_DEFAULT
, true);
4650 prio
= ifp
->rt_priority
? : IP6_RT_PRIO_ADDRCONF
;
4651 if (f6i
->fib6_metric
!= prio
) {
4652 /* delete old one */
4653 ip6_del_rt(dev_net(ifp
->idev
->dev
), f6i
, false);
4656 addrconf_prefix_route(modify_peer
? &ifp
->peer_addr
: &ifp
->addr
,
4658 ifp
->rt_priority
, ifp
->idev
->dev
,
4659 expires
, flags
, GFP_KERNEL
);
4662 fib6_clean_expires(f6i
);
4664 fib6_set_expires(f6i
, expires
);
4666 fib6_info_release(f6i
);
4672 static int inet6_addr_modify(struct inet6_ifaddr
*ifp
, struct ifa6_config
*cfg
)
4676 unsigned long timeout
;
4677 bool was_managetempaddr
;
4678 bool had_prefixroute
;
4679 bool new_peer
= false;
4683 if (!cfg
->valid_lft
|| cfg
->preferred_lft
> cfg
->valid_lft
)
4686 if (cfg
->ifa_flags
& IFA_F_MANAGETEMPADDR
&&
4687 (ifp
->flags
& IFA_F_TEMPORARY
|| ifp
->prefix_len
!= 64))
4690 if (!(ifp
->flags
& IFA_F_TENTATIVE
) || ifp
->flags
& IFA_F_DADFAILED
)
4691 cfg
->ifa_flags
&= ~IFA_F_OPTIMISTIC
;
4693 timeout
= addrconf_timeout_fixup(cfg
->valid_lft
, HZ
);
4694 if (addrconf_finite_timeout(timeout
)) {
4695 expires
= jiffies_to_clock_t(timeout
* HZ
);
4696 cfg
->valid_lft
= timeout
;
4697 flags
= RTF_EXPIRES
;
4701 cfg
->ifa_flags
|= IFA_F_PERMANENT
;
4704 timeout
= addrconf_timeout_fixup(cfg
->preferred_lft
, HZ
);
4705 if (addrconf_finite_timeout(timeout
)) {
4707 cfg
->ifa_flags
|= IFA_F_DEPRECATED
;
4708 cfg
->preferred_lft
= timeout
;
4711 if (cfg
->peer_pfx
&&
4712 memcmp(&ifp
->peer_addr
, cfg
->peer_pfx
, sizeof(struct in6_addr
))) {
4713 if (!ipv6_addr_any(&ifp
->peer_addr
))
4714 cleanup_prefix_route(ifp
, expires
, true, true);
4718 spin_lock_bh(&ifp
->lock
);
4719 was_managetempaddr
= ifp
->flags
& IFA_F_MANAGETEMPADDR
;
4720 had_prefixroute
= ifp
->flags
& IFA_F_PERMANENT
&&
4721 !(ifp
->flags
& IFA_F_NOPREFIXROUTE
);
4722 ifp
->flags
&= ~(IFA_F_DEPRECATED
| IFA_F_PERMANENT
| IFA_F_NODAD
|
4723 IFA_F_HOMEADDRESS
| IFA_F_MANAGETEMPADDR
|
4724 IFA_F_NOPREFIXROUTE
);
4725 ifp
->flags
|= cfg
->ifa_flags
;
4726 ifp
->tstamp
= jiffies
;
4727 ifp
->valid_lft
= cfg
->valid_lft
;
4728 ifp
->prefered_lft
= cfg
->preferred_lft
;
4730 if (cfg
->rt_priority
&& cfg
->rt_priority
!= ifp
->rt_priority
)
4731 ifp
->rt_priority
= cfg
->rt_priority
;
4734 ifp
->peer_addr
= *cfg
->peer_pfx
;
4736 spin_unlock_bh(&ifp
->lock
);
4737 if (!(ifp
->flags
&IFA_F_TENTATIVE
))
4738 ipv6_ifa_notify(0, ifp
);
4740 if (!(cfg
->ifa_flags
& IFA_F_NOPREFIXROUTE
)) {
4743 if (had_prefixroute
)
4744 rc
= modify_prefix_route(ifp
, expires
, flags
, false);
4746 /* prefix route could have been deleted; if so restore it */
4747 if (rc
== -ENOENT
) {
4748 addrconf_prefix_route(&ifp
->addr
, ifp
->prefix_len
,
4749 ifp
->rt_priority
, ifp
->idev
->dev
,
4750 expires
, flags
, GFP_KERNEL
);
4753 if (had_prefixroute
&& !ipv6_addr_any(&ifp
->peer_addr
))
4754 rc
= modify_prefix_route(ifp
, expires
, flags
, true);
4756 if (rc
== -ENOENT
&& !ipv6_addr_any(&ifp
->peer_addr
)) {
4757 addrconf_prefix_route(&ifp
->peer_addr
, ifp
->prefix_len
,
4758 ifp
->rt_priority
, ifp
->idev
->dev
,
4759 expires
, flags
, GFP_KERNEL
);
4761 } else if (had_prefixroute
) {
4762 enum cleanup_prefix_rt_t action
;
4763 unsigned long rt_expires
;
4765 write_lock_bh(&ifp
->idev
->lock
);
4766 action
= check_cleanup_prefix_route(ifp
, &rt_expires
);
4767 write_unlock_bh(&ifp
->idev
->lock
);
4769 if (action
!= CLEANUP_PREFIX_RT_NOP
) {
4770 cleanup_prefix_route(ifp
, rt_expires
,
4771 action
== CLEANUP_PREFIX_RT_DEL
, false);
4775 if (was_managetempaddr
|| ifp
->flags
& IFA_F_MANAGETEMPADDR
) {
4776 if (was_managetempaddr
&&
4777 !(ifp
->flags
& IFA_F_MANAGETEMPADDR
)) {
4779 cfg
->preferred_lft
= 0;
4781 manage_tempaddrs(ifp
->idev
, ifp
, cfg
->valid_lft
,
4782 cfg
->preferred_lft
, !was_managetempaddr
,
4786 addrconf_verify_rtnl();
4792 inet6_rtm_newaddr(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
4793 struct netlink_ext_ack
*extack
)
4795 struct net
*net
= sock_net(skb
->sk
);
4796 struct ifaddrmsg
*ifm
;
4797 struct nlattr
*tb
[IFA_MAX
+1];
4798 struct in6_addr
*peer_pfx
;
4799 struct inet6_ifaddr
*ifa
;
4800 struct net_device
*dev
;
4801 struct inet6_dev
*idev
;
4802 struct ifa6_config cfg
;
4805 err
= nlmsg_parse_deprecated(nlh
, sizeof(*ifm
), tb
, IFA_MAX
,
4806 ifa_ipv6_policy
, extack
);
4810 memset(&cfg
, 0, sizeof(cfg
));
4812 ifm
= nlmsg_data(nlh
);
4813 cfg
.pfx
= extract_addr(tb
[IFA_ADDRESS
], tb
[IFA_LOCAL
], &peer_pfx
);
4817 cfg
.peer_pfx
= peer_pfx
;
4818 cfg
.plen
= ifm
->ifa_prefixlen
;
4819 if (tb
[IFA_RT_PRIORITY
])
4820 cfg
.rt_priority
= nla_get_u32(tb
[IFA_RT_PRIORITY
]);
4822 cfg
.valid_lft
= INFINITY_LIFE_TIME
;
4823 cfg
.preferred_lft
= INFINITY_LIFE_TIME
;
4825 if (tb
[IFA_CACHEINFO
]) {
4826 struct ifa_cacheinfo
*ci
;
4828 ci
= nla_data(tb
[IFA_CACHEINFO
]);
4829 cfg
.valid_lft
= ci
->ifa_valid
;
4830 cfg
.preferred_lft
= ci
->ifa_prefered
;
4833 dev
= __dev_get_by_index(net
, ifm
->ifa_index
);
4838 cfg
.ifa_flags
= nla_get_u32(tb
[IFA_FLAGS
]);
4840 cfg
.ifa_flags
= ifm
->ifa_flags
;
4842 /* We ignore other flags so far. */
4843 cfg
.ifa_flags
&= IFA_F_NODAD
| IFA_F_HOMEADDRESS
|
4844 IFA_F_MANAGETEMPADDR
| IFA_F_NOPREFIXROUTE
|
4845 IFA_F_MCAUTOJOIN
| IFA_F_OPTIMISTIC
;
4847 idev
= ipv6_find_idev(dev
);
4849 return PTR_ERR(idev
);
4851 if (!ipv6_allow_optimistic_dad(net
, idev
))
4852 cfg
.ifa_flags
&= ~IFA_F_OPTIMISTIC
;
4854 if (cfg
.ifa_flags
& IFA_F_NODAD
&&
4855 cfg
.ifa_flags
& IFA_F_OPTIMISTIC
) {
4856 NL_SET_ERR_MSG(extack
, "IFA_F_NODAD and IFA_F_OPTIMISTIC are mutually exclusive");
4860 ifa
= ipv6_get_ifaddr(net
, cfg
.pfx
, dev
, 1);
4863 * It would be best to check for !NLM_F_CREATE here but
4864 * userspace already relies on not having to provide this.
4866 return inet6_addr_add(net
, ifm
->ifa_index
, &cfg
, extack
);
4869 if (nlh
->nlmsg_flags
& NLM_F_EXCL
||
4870 !(nlh
->nlmsg_flags
& NLM_F_REPLACE
))
4873 err
= inet6_addr_modify(ifa
, &cfg
);
4880 static void put_ifaddrmsg(struct nlmsghdr
*nlh
, u8 prefixlen
, u32 flags
,
4881 u8 scope
, int ifindex
)
4883 struct ifaddrmsg
*ifm
;
4885 ifm
= nlmsg_data(nlh
);
4886 ifm
->ifa_family
= AF_INET6
;
4887 ifm
->ifa_prefixlen
= prefixlen
;
4888 ifm
->ifa_flags
= flags
;
4889 ifm
->ifa_scope
= scope
;
4890 ifm
->ifa_index
= ifindex
;
4893 static int put_cacheinfo(struct sk_buff
*skb
, unsigned long cstamp
,
4894 unsigned long tstamp
, u32 preferred
, u32 valid
)
4896 struct ifa_cacheinfo ci
;
4898 ci
.cstamp
= cstamp_delta(cstamp
);
4899 ci
.tstamp
= cstamp_delta(tstamp
);
4900 ci
.ifa_prefered
= preferred
;
4901 ci
.ifa_valid
= valid
;
4903 return nla_put(skb
, IFA_CACHEINFO
, sizeof(ci
), &ci
);
4906 static inline int rt_scope(int ifa_scope
)
4908 if (ifa_scope
& IFA_HOST
)
4909 return RT_SCOPE_HOST
;
4910 else if (ifa_scope
& IFA_LINK
)
4911 return RT_SCOPE_LINK
;
4912 else if (ifa_scope
& IFA_SITE
)
4913 return RT_SCOPE_SITE
;
4915 return RT_SCOPE_UNIVERSE
;
4918 static inline int inet6_ifaddr_msgsize(void)
4920 return NLMSG_ALIGN(sizeof(struct ifaddrmsg
))
4921 + nla_total_size(16) /* IFA_LOCAL */
4922 + nla_total_size(16) /* IFA_ADDRESS */
4923 + nla_total_size(sizeof(struct ifa_cacheinfo
))
4924 + nla_total_size(4) /* IFA_FLAGS */
4925 + nla_total_size(4) /* IFA_RT_PRIORITY */;
4934 struct inet6_fill_args
{
4941 enum addr_type_t type
;
4944 static int inet6_fill_ifaddr(struct sk_buff
*skb
, struct inet6_ifaddr
*ifa
,
4945 struct inet6_fill_args
*args
)
4947 struct nlmsghdr
*nlh
;
4948 u32 preferred
, valid
;
4950 nlh
= nlmsg_put(skb
, args
->portid
, args
->seq
, args
->event
,
4951 sizeof(struct ifaddrmsg
), args
->flags
);
4955 put_ifaddrmsg(nlh
, ifa
->prefix_len
, ifa
->flags
, rt_scope(ifa
->scope
),
4956 ifa
->idev
->dev
->ifindex
);
4958 if (args
->netnsid
>= 0 &&
4959 nla_put_s32(skb
, IFA_TARGET_NETNSID
, args
->netnsid
))
4962 if (!((ifa
->flags
&IFA_F_PERMANENT
) &&
4963 (ifa
->prefered_lft
== INFINITY_LIFE_TIME
))) {
4964 preferred
= ifa
->prefered_lft
;
4965 valid
= ifa
->valid_lft
;
4966 if (preferred
!= INFINITY_LIFE_TIME
) {
4967 long tval
= (jiffies
- ifa
->tstamp
)/HZ
;
4968 if (preferred
> tval
)
4972 if (valid
!= INFINITY_LIFE_TIME
) {
4980 preferred
= INFINITY_LIFE_TIME
;
4981 valid
= INFINITY_LIFE_TIME
;
4984 if (!ipv6_addr_any(&ifa
->peer_addr
)) {
4985 if (nla_put_in6_addr(skb
, IFA_LOCAL
, &ifa
->addr
) < 0 ||
4986 nla_put_in6_addr(skb
, IFA_ADDRESS
, &ifa
->peer_addr
) < 0)
4989 if (nla_put_in6_addr(skb
, IFA_ADDRESS
, &ifa
->addr
) < 0)
4992 if (ifa
->rt_priority
&&
4993 nla_put_u32(skb
, IFA_RT_PRIORITY
, ifa
->rt_priority
))
4996 if (put_cacheinfo(skb
, ifa
->cstamp
, ifa
->tstamp
, preferred
, valid
) < 0)
4999 if (nla_put_u32(skb
, IFA_FLAGS
, ifa
->flags
) < 0)
5002 nlmsg_end(skb
, nlh
);
5006 nlmsg_cancel(skb
, nlh
);
5010 static int inet6_fill_ifmcaddr(struct sk_buff
*skb
, struct ifmcaddr6
*ifmca
,
5011 struct inet6_fill_args
*args
)
5013 struct nlmsghdr
*nlh
;
5014 u8 scope
= RT_SCOPE_UNIVERSE
;
5015 int ifindex
= ifmca
->idev
->dev
->ifindex
;
5017 if (ipv6_addr_scope(&ifmca
->mca_addr
) & IFA_SITE
)
5018 scope
= RT_SCOPE_SITE
;
5020 nlh
= nlmsg_put(skb
, args
->portid
, args
->seq
, args
->event
,
5021 sizeof(struct ifaddrmsg
), args
->flags
);
5025 if (args
->netnsid
>= 0 &&
5026 nla_put_s32(skb
, IFA_TARGET_NETNSID
, args
->netnsid
)) {
5027 nlmsg_cancel(skb
, nlh
);
5031 put_ifaddrmsg(nlh
, 128, IFA_F_PERMANENT
, scope
, ifindex
);
5032 if (nla_put_in6_addr(skb
, IFA_MULTICAST
, &ifmca
->mca_addr
) < 0 ||
5033 put_cacheinfo(skb
, ifmca
->mca_cstamp
, ifmca
->mca_tstamp
,
5034 INFINITY_LIFE_TIME
, INFINITY_LIFE_TIME
) < 0) {
5035 nlmsg_cancel(skb
, nlh
);
5039 nlmsg_end(skb
, nlh
);
5043 static int inet6_fill_ifacaddr(struct sk_buff
*skb
, struct ifacaddr6
*ifaca
,
5044 struct inet6_fill_args
*args
)
5046 struct net_device
*dev
= fib6_info_nh_dev(ifaca
->aca_rt
);
5047 int ifindex
= dev
? dev
->ifindex
: 1;
5048 struct nlmsghdr
*nlh
;
5049 u8 scope
= RT_SCOPE_UNIVERSE
;
5051 if (ipv6_addr_scope(&ifaca
->aca_addr
) & IFA_SITE
)
5052 scope
= RT_SCOPE_SITE
;
5054 nlh
= nlmsg_put(skb
, args
->portid
, args
->seq
, args
->event
,
5055 sizeof(struct ifaddrmsg
), args
->flags
);
5059 if (args
->netnsid
>= 0 &&
5060 nla_put_s32(skb
, IFA_TARGET_NETNSID
, args
->netnsid
)) {
5061 nlmsg_cancel(skb
, nlh
);
5065 put_ifaddrmsg(nlh
, 128, IFA_F_PERMANENT
, scope
, ifindex
);
5066 if (nla_put_in6_addr(skb
, IFA_ANYCAST
, &ifaca
->aca_addr
) < 0 ||
5067 put_cacheinfo(skb
, ifaca
->aca_cstamp
, ifaca
->aca_tstamp
,
5068 INFINITY_LIFE_TIME
, INFINITY_LIFE_TIME
) < 0) {
5069 nlmsg_cancel(skb
, nlh
);
5073 nlmsg_end(skb
, nlh
);
5077 /* called with rcu_read_lock() */
5078 static int in6_dump_addrs(struct inet6_dev
*idev
, struct sk_buff
*skb
,
5079 struct netlink_callback
*cb
, int s_ip_idx
,
5080 struct inet6_fill_args
*fillargs
)
5082 struct ifmcaddr6
*ifmca
;
5083 struct ifacaddr6
*ifaca
;
5087 read_lock_bh(&idev
->lock
);
5088 switch (fillargs
->type
) {
5089 case UNICAST_ADDR
: {
5090 struct inet6_ifaddr
*ifa
;
5091 fillargs
->event
= RTM_NEWADDR
;
5093 /* unicast address incl. temp addr */
5094 list_for_each_entry(ifa
, &idev
->addr_list
, if_list
) {
5095 if (ip_idx
< s_ip_idx
)
5097 err
= inet6_fill_ifaddr(skb
, ifa
, fillargs
);
5100 nl_dump_check_consistent(cb
, nlmsg_hdr(skb
));
5106 case MULTICAST_ADDR
:
5107 fillargs
->event
= RTM_GETMULTICAST
;
5109 /* multicast address */
5110 for (ifmca
= idev
->mc_list
; ifmca
;
5111 ifmca
= ifmca
->next
, ip_idx
++) {
5112 if (ip_idx
< s_ip_idx
)
5114 err
= inet6_fill_ifmcaddr(skb
, ifmca
, fillargs
);
5120 fillargs
->event
= RTM_GETANYCAST
;
5121 /* anycast address */
5122 for (ifaca
= idev
->ac_list
; ifaca
;
5123 ifaca
= ifaca
->aca_next
, ip_idx
++) {
5124 if (ip_idx
< s_ip_idx
)
5126 err
= inet6_fill_ifacaddr(skb
, ifaca
, fillargs
);
5134 read_unlock_bh(&idev
->lock
);
5135 cb
->args
[2] = ip_idx
;
5139 static int inet6_valid_dump_ifaddr_req(const struct nlmsghdr
*nlh
,
5140 struct inet6_fill_args
*fillargs
,
5141 struct net
**tgt_net
, struct sock
*sk
,
5142 struct netlink_callback
*cb
)
5144 struct netlink_ext_ack
*extack
= cb
->extack
;
5145 struct nlattr
*tb
[IFA_MAX
+1];
5146 struct ifaddrmsg
*ifm
;
5149 if (nlh
->nlmsg_len
< nlmsg_msg_size(sizeof(*ifm
))) {
5150 NL_SET_ERR_MSG_MOD(extack
, "Invalid header for address dump request");
5154 ifm
= nlmsg_data(nlh
);
5155 if (ifm
->ifa_prefixlen
|| ifm
->ifa_flags
|| ifm
->ifa_scope
) {
5156 NL_SET_ERR_MSG_MOD(extack
, "Invalid values in header for address dump request");
5160 fillargs
->ifindex
= ifm
->ifa_index
;
5161 if (fillargs
->ifindex
) {
5162 cb
->answer_flags
|= NLM_F_DUMP_FILTERED
;
5163 fillargs
->flags
|= NLM_F_DUMP_FILTERED
;
5166 err
= nlmsg_parse_deprecated_strict(nlh
, sizeof(*ifm
), tb
, IFA_MAX
,
5167 ifa_ipv6_policy
, extack
);
5171 for (i
= 0; i
<= IFA_MAX
; ++i
) {
5175 if (i
== IFA_TARGET_NETNSID
) {
5178 fillargs
->netnsid
= nla_get_s32(tb
[i
]);
5179 net
= rtnl_get_net_ns_capable(sk
, fillargs
->netnsid
);
5181 fillargs
->netnsid
= -1;
5182 NL_SET_ERR_MSG_MOD(extack
, "Invalid target network namespace id");
5183 return PTR_ERR(net
);
5187 NL_SET_ERR_MSG_MOD(extack
, "Unsupported attribute in dump request");
5195 static int inet6_dump_addr(struct sk_buff
*skb
, struct netlink_callback
*cb
,
5196 enum addr_type_t type
)
5198 const struct nlmsghdr
*nlh
= cb
->nlh
;
5199 struct inet6_fill_args fillargs
= {
5200 .portid
= NETLINK_CB(cb
->skb
).portid
,
5201 .seq
= cb
->nlh
->nlmsg_seq
,
5202 .flags
= NLM_F_MULTI
,
5206 struct net
*net
= sock_net(skb
->sk
);
5207 struct net
*tgt_net
= net
;
5208 int idx
, s_idx
, s_ip_idx
;
5210 struct net_device
*dev
;
5211 struct inet6_dev
*idev
;
5212 struct hlist_head
*head
;
5216 s_idx
= idx
= cb
->args
[1];
5217 s_ip_idx
= cb
->args
[2];
5219 if (cb
->strict_check
) {
5220 err
= inet6_valid_dump_ifaddr_req(nlh
, &fillargs
, &tgt_net
,
5226 if (fillargs
.ifindex
) {
5227 dev
= __dev_get_by_index(tgt_net
, fillargs
.ifindex
);
5232 idev
= __in6_dev_get(dev
);
5234 err
= in6_dump_addrs(idev
, skb
, cb
, s_ip_idx
,
5244 cb
->seq
= atomic_read(&tgt_net
->ipv6
.dev_addr_genid
) ^ tgt_net
->dev_base_seq
;
5245 for (h
= s_h
; h
< NETDEV_HASHENTRIES
; h
++, s_idx
= 0) {
5247 head
= &tgt_net
->dev_index_head
[h
];
5248 hlist_for_each_entry_rcu(dev
, head
, index_hlist
) {
5251 if (h
> s_h
|| idx
> s_idx
)
5253 idev
= __in6_dev_get(dev
);
5257 if (in6_dump_addrs(idev
, skb
, cb
, s_ip_idx
,
5269 if (fillargs
.netnsid
>= 0)
5272 return skb
->len
? : err
;
5275 static int inet6_dump_ifaddr(struct sk_buff
*skb
, struct netlink_callback
*cb
)
5277 enum addr_type_t type
= UNICAST_ADDR
;
5279 return inet6_dump_addr(skb
, cb
, type
);
5282 static int inet6_dump_ifmcaddr(struct sk_buff
*skb
, struct netlink_callback
*cb
)
5284 enum addr_type_t type
= MULTICAST_ADDR
;
5286 return inet6_dump_addr(skb
, cb
, type
);
5290 static int inet6_dump_ifacaddr(struct sk_buff
*skb
, struct netlink_callback
*cb
)
5292 enum addr_type_t type
= ANYCAST_ADDR
;
5294 return inet6_dump_addr(skb
, cb
, type
);
5297 static int inet6_rtm_valid_getaddr_req(struct sk_buff
*skb
,
5298 const struct nlmsghdr
*nlh
,
5300 struct netlink_ext_ack
*extack
)
5302 struct ifaddrmsg
*ifm
;
5305 if (nlh
->nlmsg_len
< nlmsg_msg_size(sizeof(*ifm
))) {
5306 NL_SET_ERR_MSG_MOD(extack
, "Invalid header for get address request");
5310 if (!netlink_strict_get_check(skb
))
5311 return nlmsg_parse_deprecated(nlh
, sizeof(*ifm
), tb
, IFA_MAX
,
5312 ifa_ipv6_policy
, extack
);
5314 ifm
= nlmsg_data(nlh
);
5315 if (ifm
->ifa_prefixlen
|| ifm
->ifa_flags
|| ifm
->ifa_scope
) {
5316 NL_SET_ERR_MSG_MOD(extack
, "Invalid values in header for get address request");
5320 err
= nlmsg_parse_deprecated_strict(nlh
, sizeof(*ifm
), tb
, IFA_MAX
,
5321 ifa_ipv6_policy
, extack
);
5325 for (i
= 0; i
<= IFA_MAX
; i
++) {
5330 case IFA_TARGET_NETNSID
:
5335 NL_SET_ERR_MSG_MOD(extack
, "Unsupported attribute in get address request");
5343 static int inet6_rtm_getaddr(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
,
5344 struct netlink_ext_ack
*extack
)
5346 struct net
*net
= sock_net(in_skb
->sk
);
5347 struct inet6_fill_args fillargs
= {
5348 .portid
= NETLINK_CB(in_skb
).portid
,
5349 .seq
= nlh
->nlmsg_seq
,
5350 .event
= RTM_NEWADDR
,
5354 struct net
*tgt_net
= net
;
5355 struct ifaddrmsg
*ifm
;
5356 struct nlattr
*tb
[IFA_MAX
+1];
5357 struct in6_addr
*addr
= NULL
, *peer
;
5358 struct net_device
*dev
= NULL
;
5359 struct inet6_ifaddr
*ifa
;
5360 struct sk_buff
*skb
;
5363 err
= inet6_rtm_valid_getaddr_req(in_skb
, nlh
, tb
, extack
);
5367 if (tb
[IFA_TARGET_NETNSID
]) {
5368 fillargs
.netnsid
= nla_get_s32(tb
[IFA_TARGET_NETNSID
]);
5370 tgt_net
= rtnl_get_net_ns_capable(NETLINK_CB(in_skb
).sk
,
5372 if (IS_ERR(tgt_net
))
5373 return PTR_ERR(tgt_net
);
5376 addr
= extract_addr(tb
[IFA_ADDRESS
], tb
[IFA_LOCAL
], &peer
);
5380 ifm
= nlmsg_data(nlh
);
5382 dev
= dev_get_by_index(tgt_net
, ifm
->ifa_index
);
5384 ifa
= ipv6_get_ifaddr(tgt_net
, addr
, dev
, 1);
5386 err
= -EADDRNOTAVAIL
;
5390 skb
= nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL
);
5396 err
= inet6_fill_ifaddr(skb
, ifa
, &fillargs
);
5398 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5399 WARN_ON(err
== -EMSGSIZE
);
5403 err
= rtnl_unicast(skb
, tgt_net
, NETLINK_CB(in_skb
).portid
);
5409 if (fillargs
.netnsid
>= 0)
5415 static void inet6_ifa_notify(int event
, struct inet6_ifaddr
*ifa
)
5417 struct sk_buff
*skb
;
5418 struct net
*net
= dev_net(ifa
->idev
->dev
);
5419 struct inet6_fill_args fillargs
= {
5428 skb
= nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC
);
5432 err
= inet6_fill_ifaddr(skb
, ifa
, &fillargs
);
5434 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5435 WARN_ON(err
== -EMSGSIZE
);
5439 rtnl_notify(skb
, net
, 0, RTNLGRP_IPV6_IFADDR
, NULL
, GFP_ATOMIC
);
5443 rtnl_set_sk_err(net
, RTNLGRP_IPV6_IFADDR
, err
);
5446 static inline void ipv6_store_devconf(struct ipv6_devconf
*cnf
,
5447 __s32
*array
, int bytes
)
5449 BUG_ON(bytes
< (DEVCONF_MAX
* 4));
5451 memset(array
, 0, bytes
);
5452 array
[DEVCONF_FORWARDING
] = cnf
->forwarding
;
5453 array
[DEVCONF_HOPLIMIT
] = cnf
->hop_limit
;
5454 array
[DEVCONF_MTU6
] = cnf
->mtu6
;
5455 array
[DEVCONF_ACCEPT_RA
] = cnf
->accept_ra
;
5456 array
[DEVCONF_ACCEPT_REDIRECTS
] = cnf
->accept_redirects
;
5457 array
[DEVCONF_AUTOCONF
] = cnf
->autoconf
;
5458 array
[DEVCONF_DAD_TRANSMITS
] = cnf
->dad_transmits
;
5459 array
[DEVCONF_RTR_SOLICITS
] = cnf
->rtr_solicits
;
5460 array
[DEVCONF_RTR_SOLICIT_INTERVAL
] =
5461 jiffies_to_msecs(cnf
->rtr_solicit_interval
);
5462 array
[DEVCONF_RTR_SOLICIT_MAX_INTERVAL
] =
5463 jiffies_to_msecs(cnf
->rtr_solicit_max_interval
);
5464 array
[DEVCONF_RTR_SOLICIT_DELAY
] =
5465 jiffies_to_msecs(cnf
->rtr_solicit_delay
);
5466 array
[DEVCONF_FORCE_MLD_VERSION
] = cnf
->force_mld_version
;
5467 array
[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL
] =
5468 jiffies_to_msecs(cnf
->mldv1_unsolicited_report_interval
);
5469 array
[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL
] =
5470 jiffies_to_msecs(cnf
->mldv2_unsolicited_report_interval
);
5471 array
[DEVCONF_USE_TEMPADDR
] = cnf
->use_tempaddr
;
5472 array
[DEVCONF_TEMP_VALID_LFT
] = cnf
->temp_valid_lft
;
5473 array
[DEVCONF_TEMP_PREFERED_LFT
] = cnf
->temp_prefered_lft
;
5474 array
[DEVCONF_REGEN_MAX_RETRY
] = cnf
->regen_max_retry
;
5475 array
[DEVCONF_MAX_DESYNC_FACTOR
] = cnf
->max_desync_factor
;
5476 array
[DEVCONF_MAX_ADDRESSES
] = cnf
->max_addresses
;
5477 array
[DEVCONF_ACCEPT_RA_DEFRTR
] = cnf
->accept_ra_defrtr
;
5478 array
[DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT
] = cnf
->accept_ra_min_hop_limit
;
5479 array
[DEVCONF_ACCEPT_RA_PINFO
] = cnf
->accept_ra_pinfo
;
5480 #ifdef CONFIG_IPV6_ROUTER_PREF
5481 array
[DEVCONF_ACCEPT_RA_RTR_PREF
] = cnf
->accept_ra_rtr_pref
;
5482 array
[DEVCONF_RTR_PROBE_INTERVAL
] =
5483 jiffies_to_msecs(cnf
->rtr_probe_interval
);
5484 #ifdef CONFIG_IPV6_ROUTE_INFO
5485 array
[DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN
] = cnf
->accept_ra_rt_info_min_plen
;
5486 array
[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN
] = cnf
->accept_ra_rt_info_max_plen
;
5489 array
[DEVCONF_PROXY_NDP
] = cnf
->proxy_ndp
;
5490 array
[DEVCONF_ACCEPT_SOURCE_ROUTE
] = cnf
->accept_source_route
;
5491 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5492 array
[DEVCONF_OPTIMISTIC_DAD
] = cnf
->optimistic_dad
;
5493 array
[DEVCONF_USE_OPTIMISTIC
] = cnf
->use_optimistic
;
5495 #ifdef CONFIG_IPV6_MROUTE
5496 array
[DEVCONF_MC_FORWARDING
] = cnf
->mc_forwarding
;
5498 array
[DEVCONF_DISABLE_IPV6
] = cnf
->disable_ipv6
;
5499 array
[DEVCONF_ACCEPT_DAD
] = cnf
->accept_dad
;
5500 array
[DEVCONF_FORCE_TLLAO
] = cnf
->force_tllao
;
5501 array
[DEVCONF_NDISC_NOTIFY
] = cnf
->ndisc_notify
;
5502 array
[DEVCONF_SUPPRESS_FRAG_NDISC
] = cnf
->suppress_frag_ndisc
;
5503 array
[DEVCONF_ACCEPT_RA_FROM_LOCAL
] = cnf
->accept_ra_from_local
;
5504 array
[DEVCONF_ACCEPT_RA_MTU
] = cnf
->accept_ra_mtu
;
5505 array
[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN
] = cnf
->ignore_routes_with_linkdown
;
5506 /* we omit DEVCONF_STABLE_SECRET for now */
5507 array
[DEVCONF_USE_OIF_ADDRS_ONLY
] = cnf
->use_oif_addrs_only
;
5508 array
[DEVCONF_DROP_UNICAST_IN_L2_MULTICAST
] = cnf
->drop_unicast_in_l2_multicast
;
5509 array
[DEVCONF_DROP_UNSOLICITED_NA
] = cnf
->drop_unsolicited_na
;
5510 array
[DEVCONF_KEEP_ADDR_ON_DOWN
] = cnf
->keep_addr_on_down
;
5511 array
[DEVCONF_SEG6_ENABLED
] = cnf
->seg6_enabled
;
5512 #ifdef CONFIG_IPV6_SEG6_HMAC
5513 array
[DEVCONF_SEG6_REQUIRE_HMAC
] = cnf
->seg6_require_hmac
;
5515 array
[DEVCONF_ENHANCED_DAD
] = cnf
->enhanced_dad
;
5516 array
[DEVCONF_ADDR_GEN_MODE
] = cnf
->addr_gen_mode
;
5517 array
[DEVCONF_DISABLE_POLICY
] = cnf
->disable_policy
;
5518 array
[DEVCONF_NDISC_TCLASS
] = cnf
->ndisc_tclass
;
5519 array
[DEVCONF_RPL_SEG_ENABLED
] = cnf
->rpl_seg_enabled
;
5522 static inline size_t inet6_ifla6_size(void)
5524 return nla_total_size(4) /* IFLA_INET6_FLAGS */
5525 + nla_total_size(sizeof(struct ifla_cacheinfo
))
5526 + nla_total_size(DEVCONF_MAX
* 4) /* IFLA_INET6_CONF */
5527 + nla_total_size(IPSTATS_MIB_MAX
* 8) /* IFLA_INET6_STATS */
5528 + nla_total_size(ICMP6_MIB_MAX
* 8) /* IFLA_INET6_ICMP6STATS */
5529 + nla_total_size(sizeof(struct in6_addr
)) /* IFLA_INET6_TOKEN */
5530 + nla_total_size(1) /* IFLA_INET6_ADDR_GEN_MODE */
5534 static inline size_t inet6_if_nlmsg_size(void)
5536 return NLMSG_ALIGN(sizeof(struct ifinfomsg
))
5537 + nla_total_size(IFNAMSIZ
) /* IFLA_IFNAME */
5538 + nla_total_size(MAX_ADDR_LEN
) /* IFLA_ADDRESS */
5539 + nla_total_size(4) /* IFLA_MTU */
5540 + nla_total_size(4) /* IFLA_LINK */
5541 + nla_total_size(1) /* IFLA_OPERSTATE */
5542 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
5545 static inline void __snmp6_fill_statsdev(u64
*stats
, atomic_long_t
*mib
,
5549 int pad
= bytes
- sizeof(u64
) * ICMP6_MIB_MAX
;
5552 /* Use put_unaligned() because stats may not be aligned for u64. */
5553 put_unaligned(ICMP6_MIB_MAX
, &stats
[0]);
5554 for (i
= 1; i
< ICMP6_MIB_MAX
; i
++)
5555 put_unaligned(atomic_long_read(&mib
[i
]), &stats
[i
]);
5557 memset(&stats
[ICMP6_MIB_MAX
], 0, pad
);
5560 static inline void __snmp6_fill_stats64(u64
*stats
, void __percpu
*mib
,
5561 int bytes
, size_t syncpoff
)
5564 u64 buff
[IPSTATS_MIB_MAX
];
5565 int pad
= bytes
- sizeof(u64
) * IPSTATS_MIB_MAX
;
5569 memset(buff
, 0, sizeof(buff
));
5570 buff
[0] = IPSTATS_MIB_MAX
;
5572 for_each_possible_cpu(c
) {
5573 for (i
= 1; i
< IPSTATS_MIB_MAX
; i
++)
5574 buff
[i
] += snmp_get_cpu_field64(mib
, c
, i
, syncpoff
);
5577 memcpy(stats
, buff
, IPSTATS_MIB_MAX
* sizeof(u64
));
5578 memset(&stats
[IPSTATS_MIB_MAX
], 0, pad
);
5581 static void snmp6_fill_stats(u64
*stats
, struct inet6_dev
*idev
, int attrtype
,
5585 case IFLA_INET6_STATS
:
5586 __snmp6_fill_stats64(stats
, idev
->stats
.ipv6
, bytes
,
5587 offsetof(struct ipstats_mib
, syncp
));
5589 case IFLA_INET6_ICMP6STATS
:
5590 __snmp6_fill_statsdev(stats
, idev
->stats
.icmpv6dev
->mibs
, bytes
);
5595 static int inet6_fill_ifla6_attrs(struct sk_buff
*skb
, struct inet6_dev
*idev
,
5596 u32 ext_filter_mask
)
5599 struct ifla_cacheinfo ci
;
5601 if (nla_put_u32(skb
, IFLA_INET6_FLAGS
, idev
->if_flags
))
5602 goto nla_put_failure
;
5603 ci
.max_reasm_len
= IPV6_MAXPLEN
;
5604 ci
.tstamp
= cstamp_delta(idev
->tstamp
);
5605 ci
.reachable_time
= jiffies_to_msecs(idev
->nd_parms
->reachable_time
);
5606 ci
.retrans_time
= jiffies_to_msecs(NEIGH_VAR(idev
->nd_parms
, RETRANS_TIME
));
5607 if (nla_put(skb
, IFLA_INET6_CACHEINFO
, sizeof(ci
), &ci
))
5608 goto nla_put_failure
;
5609 nla
= nla_reserve(skb
, IFLA_INET6_CONF
, DEVCONF_MAX
* sizeof(s32
));
5611 goto nla_put_failure
;
5612 ipv6_store_devconf(&idev
->cnf
, nla_data(nla
), nla_len(nla
));
5614 /* XXX - MC not implemented */
5616 if (ext_filter_mask
& RTEXT_FILTER_SKIP_STATS
)
5619 nla
= nla_reserve(skb
, IFLA_INET6_STATS
, IPSTATS_MIB_MAX
* sizeof(u64
));
5621 goto nla_put_failure
;
5622 snmp6_fill_stats(nla_data(nla
), idev
, IFLA_INET6_STATS
, nla_len(nla
));
5624 nla
= nla_reserve(skb
, IFLA_INET6_ICMP6STATS
, ICMP6_MIB_MAX
* sizeof(u64
));
5626 goto nla_put_failure
;
5627 snmp6_fill_stats(nla_data(nla
), idev
, IFLA_INET6_ICMP6STATS
, nla_len(nla
));
5629 nla
= nla_reserve(skb
, IFLA_INET6_TOKEN
, sizeof(struct in6_addr
));
5631 goto nla_put_failure
;
5632 read_lock_bh(&idev
->lock
);
5633 memcpy(nla_data(nla
), idev
->token
.s6_addr
, nla_len(nla
));
5634 read_unlock_bh(&idev
->lock
);
5636 if (nla_put_u8(skb
, IFLA_INET6_ADDR_GEN_MODE
, idev
->cnf
.addr_gen_mode
))
5637 goto nla_put_failure
;
5645 static size_t inet6_get_link_af_size(const struct net_device
*dev
,
5646 u32 ext_filter_mask
)
5648 if (!__in6_dev_get(dev
))
5651 return inet6_ifla6_size();
5654 static int inet6_fill_link_af(struct sk_buff
*skb
, const struct net_device
*dev
,
5655 u32 ext_filter_mask
)
5657 struct inet6_dev
*idev
= __in6_dev_get(dev
);
5662 if (inet6_fill_ifla6_attrs(skb
, idev
, ext_filter_mask
) < 0)
5668 static int inet6_set_iftoken(struct inet6_dev
*idev
, struct in6_addr
*token
)
5670 struct inet6_ifaddr
*ifp
;
5671 struct net_device
*dev
= idev
->dev
;
5672 bool clear_token
, update_rs
= false;
5673 struct in6_addr ll_addr
;
5679 if (dev
->flags
& (IFF_LOOPBACK
| IFF_NOARP
))
5681 if (!ipv6_accept_ra(idev
))
5683 if (idev
->cnf
.rtr_solicits
== 0)
5686 write_lock_bh(&idev
->lock
);
5688 BUILD_BUG_ON(sizeof(token
->s6_addr
) != 16);
5689 memcpy(idev
->token
.s6_addr
+ 8, token
->s6_addr
+ 8, 8);
5691 write_unlock_bh(&idev
->lock
);
5693 clear_token
= ipv6_addr_any(token
);
5697 if (!idev
->dead
&& (idev
->if_flags
& IF_READY
) &&
5698 !ipv6_get_lladdr(dev
, &ll_addr
, IFA_F_TENTATIVE
|
5699 IFA_F_OPTIMISTIC
)) {
5700 /* If we're not ready, then normal ifup will take care
5701 * of this. Otherwise, we need to request our rs here.
5703 ndisc_send_rs(dev
, &ll_addr
, &in6addr_linklocal_allrouters
);
5708 write_lock_bh(&idev
->lock
);
5711 idev
->if_flags
|= IF_RS_SENT
;
5712 idev
->rs_interval
= rfc3315_s14_backoff_init(
5713 idev
->cnf
.rtr_solicit_interval
);
5714 idev
->rs_probes
= 1;
5715 addrconf_mod_rs_timer(idev
, idev
->rs_interval
);
5718 /* Well, that's kinda nasty ... */
5719 list_for_each_entry(ifp
, &idev
->addr_list
, if_list
) {
5720 spin_lock(&ifp
->lock
);
5721 if (ifp
->tokenized
) {
5723 ifp
->prefered_lft
= 0;
5725 spin_unlock(&ifp
->lock
);
5728 write_unlock_bh(&idev
->lock
);
5729 inet6_ifinfo_notify(RTM_NEWLINK
, idev
);
5730 addrconf_verify_rtnl();
5734 static const struct nla_policy inet6_af_policy
[IFLA_INET6_MAX
+ 1] = {
5735 [IFLA_INET6_ADDR_GEN_MODE
] = { .type
= NLA_U8
},
5736 [IFLA_INET6_TOKEN
] = { .len
= sizeof(struct in6_addr
) },
5739 static int check_addr_gen_mode(int mode
)
5741 if (mode
!= IN6_ADDR_GEN_MODE_EUI64
&&
5742 mode
!= IN6_ADDR_GEN_MODE_NONE
&&
5743 mode
!= IN6_ADDR_GEN_MODE_STABLE_PRIVACY
&&
5744 mode
!= IN6_ADDR_GEN_MODE_RANDOM
)
5749 static int check_stable_privacy(struct inet6_dev
*idev
, struct net
*net
,
5752 if (mode
== IN6_ADDR_GEN_MODE_STABLE_PRIVACY
&&
5753 !idev
->cnf
.stable_secret
.initialized
&&
5754 !net
->ipv6
.devconf_dflt
->stable_secret
.initialized
)
5759 static int inet6_validate_link_af(const struct net_device
*dev
,
5760 const struct nlattr
*nla
)
5762 struct nlattr
*tb
[IFLA_INET6_MAX
+ 1];
5763 struct inet6_dev
*idev
= NULL
;
5767 idev
= __in6_dev_get(dev
);
5769 return -EAFNOSUPPORT
;
5772 err
= nla_parse_nested_deprecated(tb
, IFLA_INET6_MAX
, nla
,
5773 inet6_af_policy
, NULL
);
5777 if (!tb
[IFLA_INET6_TOKEN
] && !tb
[IFLA_INET6_ADDR_GEN_MODE
])
5780 if (tb
[IFLA_INET6_ADDR_GEN_MODE
]) {
5781 u8 mode
= nla_get_u8(tb
[IFLA_INET6_ADDR_GEN_MODE
]);
5783 if (check_addr_gen_mode(mode
) < 0)
5785 if (dev
&& check_stable_privacy(idev
, dev_net(dev
), mode
) < 0)
5792 static int inet6_set_link_af(struct net_device
*dev
, const struct nlattr
*nla
)
5794 struct inet6_dev
*idev
= __in6_dev_get(dev
);
5795 struct nlattr
*tb
[IFLA_INET6_MAX
+ 1];
5799 return -EAFNOSUPPORT
;
5801 if (nla_parse_nested_deprecated(tb
, IFLA_INET6_MAX
, nla
, NULL
, NULL
) < 0)
5804 if (tb
[IFLA_INET6_TOKEN
]) {
5805 err
= inet6_set_iftoken(idev
, nla_data(tb
[IFLA_INET6_TOKEN
]));
5810 if (tb
[IFLA_INET6_ADDR_GEN_MODE
]) {
5811 u8 mode
= nla_get_u8(tb
[IFLA_INET6_ADDR_GEN_MODE
]);
5813 idev
->cnf
.addr_gen_mode
= mode
;
5819 static int inet6_fill_ifinfo(struct sk_buff
*skb
, struct inet6_dev
*idev
,
5820 u32 portid
, u32 seq
, int event
, unsigned int flags
)
5822 struct net_device
*dev
= idev
->dev
;
5823 struct ifinfomsg
*hdr
;
5824 struct nlmsghdr
*nlh
;
5827 nlh
= nlmsg_put(skb
, portid
, seq
, event
, sizeof(*hdr
), flags
);
5831 hdr
= nlmsg_data(nlh
);
5832 hdr
->ifi_family
= AF_INET6
;
5834 hdr
->ifi_type
= dev
->type
;
5835 hdr
->ifi_index
= dev
->ifindex
;
5836 hdr
->ifi_flags
= dev_get_flags(dev
);
5837 hdr
->ifi_change
= 0;
5839 if (nla_put_string(skb
, IFLA_IFNAME
, dev
->name
) ||
5841 nla_put(skb
, IFLA_ADDRESS
, dev
->addr_len
, dev
->dev_addr
)) ||
5842 nla_put_u32(skb
, IFLA_MTU
, dev
->mtu
) ||
5843 (dev
->ifindex
!= dev_get_iflink(dev
) &&
5844 nla_put_u32(skb
, IFLA_LINK
, dev_get_iflink(dev
))) ||
5845 nla_put_u8(skb
, IFLA_OPERSTATE
,
5846 netif_running(dev
) ? dev
->operstate
: IF_OPER_DOWN
))
5847 goto nla_put_failure
;
5848 protoinfo
= nla_nest_start_noflag(skb
, IFLA_PROTINFO
);
5850 goto nla_put_failure
;
5852 if (inet6_fill_ifla6_attrs(skb
, idev
, 0) < 0)
5853 goto nla_put_failure
;
5855 nla_nest_end(skb
, protoinfo
);
5856 nlmsg_end(skb
, nlh
);
5860 nlmsg_cancel(skb
, nlh
);
5864 static int inet6_valid_dump_ifinfo(const struct nlmsghdr
*nlh
,
5865 struct netlink_ext_ack
*extack
)
5867 struct ifinfomsg
*ifm
;
5869 if (nlh
->nlmsg_len
< nlmsg_msg_size(sizeof(*ifm
))) {
5870 NL_SET_ERR_MSG_MOD(extack
, "Invalid header for link dump request");
5874 if (nlmsg_attrlen(nlh
, sizeof(*ifm
))) {
5875 NL_SET_ERR_MSG_MOD(extack
, "Invalid data after header");
5879 ifm
= nlmsg_data(nlh
);
5880 if (ifm
->__ifi_pad
|| ifm
->ifi_type
|| ifm
->ifi_flags
||
5881 ifm
->ifi_change
|| ifm
->ifi_index
) {
5882 NL_SET_ERR_MSG_MOD(extack
, "Invalid values in header for dump request");
5889 static int inet6_dump_ifinfo(struct sk_buff
*skb
, struct netlink_callback
*cb
)
5891 struct net
*net
= sock_net(skb
->sk
);
5894 struct net_device
*dev
;
5895 struct inet6_dev
*idev
;
5896 struct hlist_head
*head
;
5898 /* only requests using strict checking can pass data to
5899 * influence the dump
5901 if (cb
->strict_check
) {
5902 int err
= inet6_valid_dump_ifinfo(cb
->nlh
, cb
->extack
);
5909 s_idx
= cb
->args
[1];
5912 for (h
= s_h
; h
< NETDEV_HASHENTRIES
; h
++, s_idx
= 0) {
5914 head
= &net
->dev_index_head
[h
];
5915 hlist_for_each_entry_rcu(dev
, head
, index_hlist
) {
5918 idev
= __in6_dev_get(dev
);
5921 if (inet6_fill_ifinfo(skb
, idev
,
5922 NETLINK_CB(cb
->skb
).portid
,
5924 RTM_NEWLINK
, NLM_F_MULTI
) < 0)
5938 void inet6_ifinfo_notify(int event
, struct inet6_dev
*idev
)
5940 struct sk_buff
*skb
;
5941 struct net
*net
= dev_net(idev
->dev
);
5944 skb
= nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC
);
5948 err
= inet6_fill_ifinfo(skb
, idev
, 0, 0, event
, 0);
5950 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
5951 WARN_ON(err
== -EMSGSIZE
);
5955 rtnl_notify(skb
, net
, 0, RTNLGRP_IPV6_IFINFO
, NULL
, GFP_ATOMIC
);
5959 rtnl_set_sk_err(net
, RTNLGRP_IPV6_IFINFO
, err
);
5962 static inline size_t inet6_prefix_nlmsg_size(void)
5964 return NLMSG_ALIGN(sizeof(struct prefixmsg
))
5965 + nla_total_size(sizeof(struct in6_addr
))
5966 + nla_total_size(sizeof(struct prefix_cacheinfo
));
5969 static int inet6_fill_prefix(struct sk_buff
*skb
, struct inet6_dev
*idev
,
5970 struct prefix_info
*pinfo
, u32 portid
, u32 seq
,
5971 int event
, unsigned int flags
)
5973 struct prefixmsg
*pmsg
;
5974 struct nlmsghdr
*nlh
;
5975 struct prefix_cacheinfo ci
;
5977 nlh
= nlmsg_put(skb
, portid
, seq
, event
, sizeof(*pmsg
), flags
);
5981 pmsg
= nlmsg_data(nlh
);
5982 pmsg
->prefix_family
= AF_INET6
;
5983 pmsg
->prefix_pad1
= 0;
5984 pmsg
->prefix_pad2
= 0;
5985 pmsg
->prefix_ifindex
= idev
->dev
->ifindex
;
5986 pmsg
->prefix_len
= pinfo
->prefix_len
;
5987 pmsg
->prefix_type
= pinfo
->type
;
5988 pmsg
->prefix_pad3
= 0;
5989 pmsg
->prefix_flags
= 0;
5991 pmsg
->prefix_flags
|= IF_PREFIX_ONLINK
;
5992 if (pinfo
->autoconf
)
5993 pmsg
->prefix_flags
|= IF_PREFIX_AUTOCONF
;
5995 if (nla_put(skb
, PREFIX_ADDRESS
, sizeof(pinfo
->prefix
), &pinfo
->prefix
))
5996 goto nla_put_failure
;
5997 ci
.preferred_time
= ntohl(pinfo
->prefered
);
5998 ci
.valid_time
= ntohl(pinfo
->valid
);
5999 if (nla_put(skb
, PREFIX_CACHEINFO
, sizeof(ci
), &ci
))
6000 goto nla_put_failure
;
6001 nlmsg_end(skb
, nlh
);
6005 nlmsg_cancel(skb
, nlh
);
6009 static void inet6_prefix_notify(int event
, struct inet6_dev
*idev
,
6010 struct prefix_info
*pinfo
)
6012 struct sk_buff
*skb
;
6013 struct net
*net
= dev_net(idev
->dev
);
6016 skb
= nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC
);
6020 err
= inet6_fill_prefix(skb
, idev
, pinfo
, 0, 0, event
, 0);
6022 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
6023 WARN_ON(err
== -EMSGSIZE
);
6027 rtnl_notify(skb
, net
, 0, RTNLGRP_IPV6_PREFIX
, NULL
, GFP_ATOMIC
);
6031 rtnl_set_sk_err(net
, RTNLGRP_IPV6_PREFIX
, err
);
6034 static void __ipv6_ifa_notify(int event
, struct inet6_ifaddr
*ifp
)
6036 struct net
*net
= dev_net(ifp
->idev
->dev
);
6041 inet6_ifa_notify(event
? : RTM_NEWADDR
, ifp
);
6046 * If the address was optimistic we inserted the route at the
6047 * start of our DAD process, so we don't need to do it again.
6048 * If the device was taken down in the middle of the DAD
6049 * cycle there is a race where we could get here without a
6050 * host route, so nothing to insert. That will be fixed when
6051 * the device is brought up.
6053 if (ifp
->rt
&& !rcu_access_pointer(ifp
->rt
->fib6_node
)) {
6054 ip6_ins_rt(net
, ifp
->rt
);
6055 } else if (!ifp
->rt
&& (ifp
->idev
->dev
->flags
& IFF_UP
)) {
6056 pr_warn("BUG: Address %pI6c on device %s is missing its host route.\n",
6057 &ifp
->addr
, ifp
->idev
->dev
->name
);
6060 if (ifp
->idev
->cnf
.forwarding
)
6061 addrconf_join_anycast(ifp
);
6062 if (!ipv6_addr_any(&ifp
->peer_addr
))
6063 addrconf_prefix_route(&ifp
->peer_addr
, 128,
6064 ifp
->rt_priority
, ifp
->idev
->dev
,
6068 if (ifp
->idev
->cnf
.forwarding
)
6069 addrconf_leave_anycast(ifp
);
6070 addrconf_leave_solict(ifp
->idev
, &ifp
->addr
);
6071 if (!ipv6_addr_any(&ifp
->peer_addr
)) {
6072 struct fib6_info
*rt
;
6074 rt
= addrconf_get_prefix_route(&ifp
->peer_addr
, 128,
6075 ifp
->idev
->dev
, 0, 0,
6078 ip6_del_rt(net
, rt
, false);
6081 ip6_del_rt(net
, ifp
->rt
, false);
6084 rt_genid_bump_ipv6(net
);
6087 atomic_inc(&net
->ipv6
.dev_addr_genid
);
6090 static void ipv6_ifa_notify(int event
, struct inet6_ifaddr
*ifp
)
6093 if (likely(ifp
->idev
->dead
== 0))
6094 __ipv6_ifa_notify(event
, ifp
);
6095 rcu_read_unlock_bh();
6098 #ifdef CONFIG_SYSCTL
6100 static int addrconf_sysctl_forward(struct ctl_table
*ctl
, int write
,
6101 void *buffer
, size_t *lenp
, loff_t
*ppos
)
6103 int *valp
= ctl
->data
;
6106 struct ctl_table lctl
;
6110 * ctl->data points to idev->cnf.forwarding, we should
6111 * not modify it until we get the rtnl lock.
6116 ret
= proc_dointvec(&lctl
, write
, buffer
, lenp
, ppos
);
6119 ret
= addrconf_fixup_forwarding(ctl
, valp
, val
);
6125 static int addrconf_sysctl_mtu(struct ctl_table
*ctl
, int write
,
6126 void *buffer
, size_t *lenp
, loff_t
*ppos
)
6128 struct inet6_dev
*idev
= ctl
->extra1
;
6129 int min_mtu
= IPV6_MIN_MTU
;
6130 struct ctl_table lctl
;
6133 lctl
.extra1
= &min_mtu
;
6134 lctl
.extra2
= idev
? &idev
->dev
->mtu
: NULL
;
6136 return proc_dointvec_minmax(&lctl
, write
, buffer
, lenp
, ppos
);
6139 static void dev_disable_change(struct inet6_dev
*idev
)
6141 struct netdev_notifier_info info
;
6143 if (!idev
|| !idev
->dev
)
6146 netdev_notifier_info_init(&info
, idev
->dev
);
6147 if (idev
->cnf
.disable_ipv6
)
6148 addrconf_notify(NULL
, NETDEV_DOWN
, &info
);
6150 addrconf_notify(NULL
, NETDEV_UP
, &info
);
6153 static void addrconf_disable_change(struct net
*net
, __s32 newf
)
6155 struct net_device
*dev
;
6156 struct inet6_dev
*idev
;
6158 for_each_netdev(net
, dev
) {
6159 idev
= __in6_dev_get(dev
);
6161 int changed
= (!idev
->cnf
.disable_ipv6
) ^ (!newf
);
6162 idev
->cnf
.disable_ipv6
= newf
;
6164 dev_disable_change(idev
);
6169 static int addrconf_disable_ipv6(struct ctl_table
*table
, int *p
, int newf
)
6174 if (!rtnl_trylock())
6175 return restart_syscall();
6177 net
= (struct net
*)table
->extra2
;
6181 if (p
== &net
->ipv6
.devconf_dflt
->disable_ipv6
) {
6186 if (p
== &net
->ipv6
.devconf_all
->disable_ipv6
) {
6187 net
->ipv6
.devconf_dflt
->disable_ipv6
= newf
;
6188 addrconf_disable_change(net
, newf
);
6189 } else if ((!newf
) ^ (!old
))
6190 dev_disable_change((struct inet6_dev
*)table
->extra1
);
6196 static int addrconf_sysctl_disable(struct ctl_table
*ctl
, int write
,
6197 void *buffer
, size_t *lenp
, loff_t
*ppos
)
6199 int *valp
= ctl
->data
;
6202 struct ctl_table lctl
;
6206 * ctl->data points to idev->cnf.disable_ipv6, we should
6207 * not modify it until we get the rtnl lock.
6212 ret
= proc_dointvec(&lctl
, write
, buffer
, lenp
, ppos
);
6215 ret
= addrconf_disable_ipv6(ctl
, valp
, val
);
6221 static int addrconf_sysctl_proxy_ndp(struct ctl_table
*ctl
, int write
,
6222 void *buffer
, size_t *lenp
, loff_t
*ppos
)
6224 int *valp
= ctl
->data
;
6229 ret
= proc_dointvec(ctl
, write
, buffer
, lenp
, ppos
);
6232 if (write
&& old
!= new) {
6233 struct net
*net
= ctl
->extra2
;
6235 if (!rtnl_trylock())
6236 return restart_syscall();
6238 if (valp
== &net
->ipv6
.devconf_dflt
->proxy_ndp
)
6239 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
6240 NETCONFA_PROXY_NEIGH
,
6241 NETCONFA_IFINDEX_DEFAULT
,
6242 net
->ipv6
.devconf_dflt
);
6243 else if (valp
== &net
->ipv6
.devconf_all
->proxy_ndp
)
6244 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
6245 NETCONFA_PROXY_NEIGH
,
6246 NETCONFA_IFINDEX_ALL
,
6247 net
->ipv6
.devconf_all
);
6249 struct inet6_dev
*idev
= ctl
->extra1
;
6251 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
6252 NETCONFA_PROXY_NEIGH
,
6262 static int addrconf_sysctl_addr_gen_mode(struct ctl_table
*ctl
, int write
,
6263 void *buffer
, size_t *lenp
,
6268 struct inet6_dev
*idev
= (struct inet6_dev
*)ctl
->extra1
;
6269 struct net
*net
= (struct net
*)ctl
->extra2
;
6270 struct ctl_table tmp
= {
6272 .maxlen
= sizeof(new_val
),
6276 if (!rtnl_trylock())
6277 return restart_syscall();
6279 new_val
= *((u32
*)ctl
->data
);
6281 ret
= proc_douintvec(&tmp
, write
, buffer
, lenp
, ppos
);
6286 if (check_addr_gen_mode(new_val
) < 0) {
6292 if (check_stable_privacy(idev
, net
, new_val
) < 0) {
6297 if (idev
->cnf
.addr_gen_mode
!= new_val
) {
6298 idev
->cnf
.addr_gen_mode
= new_val
;
6299 addrconf_dev_config(idev
->dev
);
6301 } else if (&net
->ipv6
.devconf_all
->addr_gen_mode
== ctl
->data
) {
6302 struct net_device
*dev
;
6304 net
->ipv6
.devconf_dflt
->addr_gen_mode
= new_val
;
6305 for_each_netdev(net
, dev
) {
6306 idev
= __in6_dev_get(dev
);
6308 idev
->cnf
.addr_gen_mode
!= new_val
) {
6309 idev
->cnf
.addr_gen_mode
= new_val
;
6310 addrconf_dev_config(idev
->dev
);
6315 *((u32
*)ctl
->data
) = new_val
;
6324 static int addrconf_sysctl_stable_secret(struct ctl_table
*ctl
, int write
,
6325 void *buffer
, size_t *lenp
,
6329 struct in6_addr addr
;
6330 char str
[IPV6_MAX_STRLEN
];
6331 struct ctl_table lctl
= *ctl
;
6332 struct net
*net
= ctl
->extra2
;
6333 struct ipv6_stable_secret
*secret
= ctl
->data
;
6335 if (&net
->ipv6
.devconf_all
->stable_secret
== ctl
->data
)
6338 lctl
.maxlen
= IPV6_MAX_STRLEN
;
6341 if (!rtnl_trylock())
6342 return restart_syscall();
6344 if (!write
&& !secret
->initialized
) {
6349 err
= snprintf(str
, sizeof(str
), "%pI6", &secret
->secret
);
6350 if (err
>= sizeof(str
)) {
6355 err
= proc_dostring(&lctl
, write
, buffer
, lenp
, ppos
);
6359 if (in6_pton(str
, -1, addr
.in6_u
.u6_addr8
, -1, NULL
) != 1) {
6364 secret
->initialized
= true;
6365 secret
->secret
= addr
;
6367 if (&net
->ipv6
.devconf_dflt
->stable_secret
== ctl
->data
) {
6368 struct net_device
*dev
;
6370 for_each_netdev(net
, dev
) {
6371 struct inet6_dev
*idev
= __in6_dev_get(dev
);
6374 idev
->cnf
.addr_gen_mode
=
6375 IN6_ADDR_GEN_MODE_STABLE_PRIVACY
;
6379 struct inet6_dev
*idev
= ctl
->extra1
;
6381 idev
->cnf
.addr_gen_mode
= IN6_ADDR_GEN_MODE_STABLE_PRIVACY
;
6391 int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table
*ctl
,
6392 int write
, void *buffer
,
6396 int *valp
= ctl
->data
;
6399 struct ctl_table lctl
;
6402 /* ctl->data points to idev->cnf.ignore_routes_when_linkdown
6403 * we should not modify it until we get the rtnl lock.
6408 ret
= proc_dointvec(&lctl
, write
, buffer
, lenp
, ppos
);
6411 ret
= addrconf_fixup_linkdown(ctl
, valp
, val
);
6418 void addrconf_set_nopolicy(struct rt6_info
*rt
, int action
)
6422 rt
->dst
.flags
|= DST_NOPOLICY
;
6424 rt
->dst
.flags
&= ~DST_NOPOLICY
;
6429 void addrconf_disable_policy_idev(struct inet6_dev
*idev
, int val
)
6431 struct inet6_ifaddr
*ifa
;
6433 read_lock_bh(&idev
->lock
);
6434 list_for_each_entry(ifa
, &idev
->addr_list
, if_list
) {
6435 spin_lock(&ifa
->lock
);
6437 /* host routes only use builtin fib6_nh */
6438 struct fib6_nh
*nh
= ifa
->rt
->fib6_nh
;
6442 ifa
->rt
->dst_nopolicy
= val
? true : false;
6443 if (nh
->rt6i_pcpu
) {
6444 for_each_possible_cpu(cpu
) {
6445 struct rt6_info
**rtp
;
6447 rtp
= per_cpu_ptr(nh
->rt6i_pcpu
, cpu
);
6448 addrconf_set_nopolicy(*rtp
, val
);
6453 spin_unlock(&ifa
->lock
);
6455 read_unlock_bh(&idev
->lock
);
6459 int addrconf_disable_policy(struct ctl_table
*ctl
, int *valp
, int val
)
6461 struct inet6_dev
*idev
;
6464 if (!rtnl_trylock())
6465 return restart_syscall();
6469 net
= (struct net
*)ctl
->extra2
;
6470 if (valp
== &net
->ipv6
.devconf_dflt
->disable_policy
) {
6475 if (valp
== &net
->ipv6
.devconf_all
->disable_policy
) {
6476 struct net_device
*dev
;
6478 for_each_netdev(net
, dev
) {
6479 idev
= __in6_dev_get(dev
);
6481 addrconf_disable_policy_idev(idev
, val
);
6484 idev
= (struct inet6_dev
*)ctl
->extra1
;
6485 addrconf_disable_policy_idev(idev
, val
);
6492 static int addrconf_sysctl_disable_policy(struct ctl_table
*ctl
, int write
,
6493 void *buffer
, size_t *lenp
, loff_t
*ppos
)
6495 int *valp
= ctl
->data
;
6498 struct ctl_table lctl
;
6503 ret
= proc_dointvec(&lctl
, write
, buffer
, lenp
, ppos
);
6505 if (write
&& (*valp
!= val
))
6506 ret
= addrconf_disable_policy(ctl
, valp
, val
);
6514 static int minus_one
= -1;
6515 static const int two_five_five
= 255;
6517 static const struct ctl_table addrconf_sysctl
[] = {
6519 .procname
= "forwarding",
6520 .data
= &ipv6_devconf
.forwarding
,
6521 .maxlen
= sizeof(int),
6523 .proc_handler
= addrconf_sysctl_forward
,
6526 .procname
= "hop_limit",
6527 .data
= &ipv6_devconf
.hop_limit
,
6528 .maxlen
= sizeof(int),
6530 .proc_handler
= proc_dointvec_minmax
,
6531 .extra1
= (void *)SYSCTL_ONE
,
6532 .extra2
= (void *)&two_five_five
,
6536 .data
= &ipv6_devconf
.mtu6
,
6537 .maxlen
= sizeof(int),
6539 .proc_handler
= addrconf_sysctl_mtu
,
6542 .procname
= "accept_ra",
6543 .data
= &ipv6_devconf
.accept_ra
,
6544 .maxlen
= sizeof(int),
6546 .proc_handler
= proc_dointvec
,
6549 .procname
= "accept_redirects",
6550 .data
= &ipv6_devconf
.accept_redirects
,
6551 .maxlen
= sizeof(int),
6553 .proc_handler
= proc_dointvec
,
6556 .procname
= "autoconf",
6557 .data
= &ipv6_devconf
.autoconf
,
6558 .maxlen
= sizeof(int),
6560 .proc_handler
= proc_dointvec
,
6563 .procname
= "dad_transmits",
6564 .data
= &ipv6_devconf
.dad_transmits
,
6565 .maxlen
= sizeof(int),
6567 .proc_handler
= proc_dointvec
,
6570 .procname
= "router_solicitations",
6571 .data
= &ipv6_devconf
.rtr_solicits
,
6572 .maxlen
= sizeof(int),
6574 .proc_handler
= proc_dointvec_minmax
,
6575 .extra1
= &minus_one
,
6578 .procname
= "router_solicitation_interval",
6579 .data
= &ipv6_devconf
.rtr_solicit_interval
,
6580 .maxlen
= sizeof(int),
6582 .proc_handler
= proc_dointvec_jiffies
,
6585 .procname
= "router_solicitation_max_interval",
6586 .data
= &ipv6_devconf
.rtr_solicit_max_interval
,
6587 .maxlen
= sizeof(int),
6589 .proc_handler
= proc_dointvec_jiffies
,
6592 .procname
= "router_solicitation_delay",
6593 .data
= &ipv6_devconf
.rtr_solicit_delay
,
6594 .maxlen
= sizeof(int),
6596 .proc_handler
= proc_dointvec_jiffies
,
6599 .procname
= "force_mld_version",
6600 .data
= &ipv6_devconf
.force_mld_version
,
6601 .maxlen
= sizeof(int),
6603 .proc_handler
= proc_dointvec
,
6606 .procname
= "mldv1_unsolicited_report_interval",
6608 &ipv6_devconf
.mldv1_unsolicited_report_interval
,
6609 .maxlen
= sizeof(int),
6611 .proc_handler
= proc_dointvec_ms_jiffies
,
6614 .procname
= "mldv2_unsolicited_report_interval",
6616 &ipv6_devconf
.mldv2_unsolicited_report_interval
,
6617 .maxlen
= sizeof(int),
6619 .proc_handler
= proc_dointvec_ms_jiffies
,
6622 .procname
= "use_tempaddr",
6623 .data
= &ipv6_devconf
.use_tempaddr
,
6624 .maxlen
= sizeof(int),
6626 .proc_handler
= proc_dointvec
,
6629 .procname
= "temp_valid_lft",
6630 .data
= &ipv6_devconf
.temp_valid_lft
,
6631 .maxlen
= sizeof(int),
6633 .proc_handler
= proc_dointvec
,
6636 .procname
= "temp_prefered_lft",
6637 .data
= &ipv6_devconf
.temp_prefered_lft
,
6638 .maxlen
= sizeof(int),
6640 .proc_handler
= proc_dointvec
,
6643 .procname
= "regen_max_retry",
6644 .data
= &ipv6_devconf
.regen_max_retry
,
6645 .maxlen
= sizeof(int),
6647 .proc_handler
= proc_dointvec
,
6650 .procname
= "max_desync_factor",
6651 .data
= &ipv6_devconf
.max_desync_factor
,
6652 .maxlen
= sizeof(int),
6654 .proc_handler
= proc_dointvec
,
6657 .procname
= "max_addresses",
6658 .data
= &ipv6_devconf
.max_addresses
,
6659 .maxlen
= sizeof(int),
6661 .proc_handler
= proc_dointvec
,
6664 .procname
= "accept_ra_defrtr",
6665 .data
= &ipv6_devconf
.accept_ra_defrtr
,
6666 .maxlen
= sizeof(int),
6668 .proc_handler
= proc_dointvec
,
6671 .procname
= "accept_ra_min_hop_limit",
6672 .data
= &ipv6_devconf
.accept_ra_min_hop_limit
,
6673 .maxlen
= sizeof(int),
6675 .proc_handler
= proc_dointvec
,
6678 .procname
= "accept_ra_pinfo",
6679 .data
= &ipv6_devconf
.accept_ra_pinfo
,
6680 .maxlen
= sizeof(int),
6682 .proc_handler
= proc_dointvec
,
6684 #ifdef CONFIG_IPV6_ROUTER_PREF
6686 .procname
= "accept_ra_rtr_pref",
6687 .data
= &ipv6_devconf
.accept_ra_rtr_pref
,
6688 .maxlen
= sizeof(int),
6690 .proc_handler
= proc_dointvec
,
6693 .procname
= "router_probe_interval",
6694 .data
= &ipv6_devconf
.rtr_probe_interval
,
6695 .maxlen
= sizeof(int),
6697 .proc_handler
= proc_dointvec_jiffies
,
6699 #ifdef CONFIG_IPV6_ROUTE_INFO
6701 .procname
= "accept_ra_rt_info_min_plen",
6702 .data
= &ipv6_devconf
.accept_ra_rt_info_min_plen
,
6703 .maxlen
= sizeof(int),
6705 .proc_handler
= proc_dointvec
,
6708 .procname
= "accept_ra_rt_info_max_plen",
6709 .data
= &ipv6_devconf
.accept_ra_rt_info_max_plen
,
6710 .maxlen
= sizeof(int),
6712 .proc_handler
= proc_dointvec
,
6717 .procname
= "proxy_ndp",
6718 .data
= &ipv6_devconf
.proxy_ndp
,
6719 .maxlen
= sizeof(int),
6721 .proc_handler
= addrconf_sysctl_proxy_ndp
,
6724 .procname
= "accept_source_route",
6725 .data
= &ipv6_devconf
.accept_source_route
,
6726 .maxlen
= sizeof(int),
6728 .proc_handler
= proc_dointvec
,
6730 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
6732 .procname
= "optimistic_dad",
6733 .data
= &ipv6_devconf
.optimistic_dad
,
6734 .maxlen
= sizeof(int),
6736 .proc_handler
= proc_dointvec
,
6739 .procname
= "use_optimistic",
6740 .data
= &ipv6_devconf
.use_optimistic
,
6741 .maxlen
= sizeof(int),
6743 .proc_handler
= proc_dointvec
,
6746 #ifdef CONFIG_IPV6_MROUTE
6748 .procname
= "mc_forwarding",
6749 .data
= &ipv6_devconf
.mc_forwarding
,
6750 .maxlen
= sizeof(int),
6752 .proc_handler
= proc_dointvec
,
6756 .procname
= "disable_ipv6",
6757 .data
= &ipv6_devconf
.disable_ipv6
,
6758 .maxlen
= sizeof(int),
6760 .proc_handler
= addrconf_sysctl_disable
,
6763 .procname
= "accept_dad",
6764 .data
= &ipv6_devconf
.accept_dad
,
6765 .maxlen
= sizeof(int),
6767 .proc_handler
= proc_dointvec
,
6770 .procname
= "force_tllao",
6771 .data
= &ipv6_devconf
.force_tllao
,
6772 .maxlen
= sizeof(int),
6774 .proc_handler
= proc_dointvec
6777 .procname
= "ndisc_notify",
6778 .data
= &ipv6_devconf
.ndisc_notify
,
6779 .maxlen
= sizeof(int),
6781 .proc_handler
= proc_dointvec
6784 .procname
= "suppress_frag_ndisc",
6785 .data
= &ipv6_devconf
.suppress_frag_ndisc
,
6786 .maxlen
= sizeof(int),
6788 .proc_handler
= proc_dointvec
6791 .procname
= "accept_ra_from_local",
6792 .data
= &ipv6_devconf
.accept_ra_from_local
,
6793 .maxlen
= sizeof(int),
6795 .proc_handler
= proc_dointvec
,
6798 .procname
= "accept_ra_mtu",
6799 .data
= &ipv6_devconf
.accept_ra_mtu
,
6800 .maxlen
= sizeof(int),
6802 .proc_handler
= proc_dointvec
,
6805 .procname
= "stable_secret",
6806 .data
= &ipv6_devconf
.stable_secret
,
6807 .maxlen
= IPV6_MAX_STRLEN
,
6809 .proc_handler
= addrconf_sysctl_stable_secret
,
6812 .procname
= "use_oif_addrs_only",
6813 .data
= &ipv6_devconf
.use_oif_addrs_only
,
6814 .maxlen
= sizeof(int),
6816 .proc_handler
= proc_dointvec
,
6819 .procname
= "ignore_routes_with_linkdown",
6820 .data
= &ipv6_devconf
.ignore_routes_with_linkdown
,
6821 .maxlen
= sizeof(int),
6823 .proc_handler
= addrconf_sysctl_ignore_routes_with_linkdown
,
6826 .procname
= "drop_unicast_in_l2_multicast",
6827 .data
= &ipv6_devconf
.drop_unicast_in_l2_multicast
,
6828 .maxlen
= sizeof(int),
6830 .proc_handler
= proc_dointvec
,
6833 .procname
= "drop_unsolicited_na",
6834 .data
= &ipv6_devconf
.drop_unsolicited_na
,
6835 .maxlen
= sizeof(int),
6837 .proc_handler
= proc_dointvec
,
6840 .procname
= "keep_addr_on_down",
6841 .data
= &ipv6_devconf
.keep_addr_on_down
,
6842 .maxlen
= sizeof(int),
6844 .proc_handler
= proc_dointvec
,
6848 .procname
= "seg6_enabled",
6849 .data
= &ipv6_devconf
.seg6_enabled
,
6850 .maxlen
= sizeof(int),
6852 .proc_handler
= proc_dointvec
,
6854 #ifdef CONFIG_IPV6_SEG6_HMAC
6856 .procname
= "seg6_require_hmac",
6857 .data
= &ipv6_devconf
.seg6_require_hmac
,
6858 .maxlen
= sizeof(int),
6860 .proc_handler
= proc_dointvec
,
6864 .procname
= "enhanced_dad",
6865 .data
= &ipv6_devconf
.enhanced_dad
,
6866 .maxlen
= sizeof(int),
6868 .proc_handler
= proc_dointvec
,
6871 .procname
= "addr_gen_mode",
6872 .data
= &ipv6_devconf
.addr_gen_mode
,
6873 .maxlen
= sizeof(int),
6875 .proc_handler
= addrconf_sysctl_addr_gen_mode
,
6878 .procname
= "disable_policy",
6879 .data
= &ipv6_devconf
.disable_policy
,
6880 .maxlen
= sizeof(int),
6882 .proc_handler
= addrconf_sysctl_disable_policy
,
6885 .procname
= "ndisc_tclass",
6886 .data
= &ipv6_devconf
.ndisc_tclass
,
6887 .maxlen
= sizeof(int),
6889 .proc_handler
= proc_dointvec_minmax
,
6890 .extra1
= (void *)SYSCTL_ZERO
,
6891 .extra2
= (void *)&two_five_five
,
6894 .procname
= "rpl_seg_enabled",
6895 .data
= &ipv6_devconf
.rpl_seg_enabled
,
6896 .maxlen
= sizeof(int),
6898 .proc_handler
= proc_dointvec
,
6905 static int __addrconf_sysctl_register(struct net
*net
, char *dev_name
,
6906 struct inet6_dev
*idev
, struct ipv6_devconf
*p
)
6909 struct ctl_table
*table
;
6910 char path
[sizeof("net/ipv6/conf/") + IFNAMSIZ
];
6912 table
= kmemdup(addrconf_sysctl
, sizeof(addrconf_sysctl
), GFP_KERNEL
);
6916 for (i
= 0; table
[i
].data
; i
++) {
6917 table
[i
].data
+= (char *)p
- (char *)&ipv6_devconf
;
6918 /* If one of these is already set, then it is not safe to
6919 * overwrite either of them: this makes proc_dointvec_minmax
6922 if (!table
[i
].extra1
&& !table
[i
].extra2
) {
6923 table
[i
].extra1
= idev
; /* embedded; no ref */
6924 table
[i
].extra2
= net
;
6928 snprintf(path
, sizeof(path
), "net/ipv6/conf/%s", dev_name
);
6930 p
->sysctl_header
= register_net_sysctl(net
, path
, table
);
6931 if (!p
->sysctl_header
)
6934 if (!strcmp(dev_name
, "all"))
6935 ifindex
= NETCONFA_IFINDEX_ALL
;
6936 else if (!strcmp(dev_name
, "default"))
6937 ifindex
= NETCONFA_IFINDEX_DEFAULT
;
6939 ifindex
= idev
->dev
->ifindex
;
6940 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
, NETCONFA_ALL
,
6950 static void __addrconf_sysctl_unregister(struct net
*net
,
6951 struct ipv6_devconf
*p
, int ifindex
)
6953 struct ctl_table
*table
;
6955 if (!p
->sysctl_header
)
6958 table
= p
->sysctl_header
->ctl_table_arg
;
6959 unregister_net_sysctl_table(p
->sysctl_header
);
6960 p
->sysctl_header
= NULL
;
6963 inet6_netconf_notify_devconf(net
, RTM_DELNETCONF
, 0, ifindex
, NULL
);
6966 static int addrconf_sysctl_register(struct inet6_dev
*idev
)
6970 if (!sysctl_dev_name_is_allowed(idev
->dev
->name
))
6973 err
= neigh_sysctl_register(idev
->dev
, idev
->nd_parms
,
6974 &ndisc_ifinfo_sysctl_change
);
6977 err
= __addrconf_sysctl_register(dev_net(idev
->dev
), idev
->dev
->name
,
6980 neigh_sysctl_unregister(idev
->nd_parms
);
6985 static void addrconf_sysctl_unregister(struct inet6_dev
*idev
)
6987 __addrconf_sysctl_unregister(dev_net(idev
->dev
), &idev
->cnf
,
6988 idev
->dev
->ifindex
);
6989 neigh_sysctl_unregister(idev
->nd_parms
);
6995 static int __net_init
addrconf_init_net(struct net
*net
)
6998 struct ipv6_devconf
*all
, *dflt
;
7000 all
= kmemdup(&ipv6_devconf
, sizeof(ipv6_devconf
), GFP_KERNEL
);
7004 dflt
= kmemdup(&ipv6_devconf_dflt
, sizeof(ipv6_devconf_dflt
), GFP_KERNEL
);
7006 goto err_alloc_dflt
;
7008 if (IS_ENABLED(CONFIG_SYSCTL
) &&
7009 !net_eq(net
, &init_net
)) {
7010 switch (sysctl_devconf_inherit_init_net
) {
7011 case 1: /* copy from init_net */
7012 memcpy(all
, init_net
.ipv6
.devconf_all
,
7013 sizeof(ipv6_devconf
));
7014 memcpy(dflt
, init_net
.ipv6
.devconf_dflt
,
7015 sizeof(ipv6_devconf_dflt
));
7017 case 3: /* copy from the current netns */
7018 memcpy(all
, current
->nsproxy
->net_ns
->ipv6
.devconf_all
,
7019 sizeof(ipv6_devconf
));
7021 current
->nsproxy
->net_ns
->ipv6
.devconf_dflt
,
7022 sizeof(ipv6_devconf_dflt
));
7026 /* use compiled values */
7031 /* these will be inherited by all namespaces */
7032 dflt
->autoconf
= ipv6_defaults
.autoconf
;
7033 dflt
->disable_ipv6
= ipv6_defaults
.disable_ipv6
;
7035 dflt
->stable_secret
.initialized
= false;
7036 all
->stable_secret
.initialized
= false;
7038 net
->ipv6
.devconf_all
= all
;
7039 net
->ipv6
.devconf_dflt
= dflt
;
7041 #ifdef CONFIG_SYSCTL
7042 err
= __addrconf_sysctl_register(net
, "all", NULL
, all
);
7046 err
= __addrconf_sysctl_register(net
, "default", NULL
, dflt
);
7052 #ifdef CONFIG_SYSCTL
7054 __addrconf_sysctl_unregister(net
, all
, NETCONFA_IFINDEX_ALL
);
7064 static void __net_exit
addrconf_exit_net(struct net
*net
)
7066 #ifdef CONFIG_SYSCTL
7067 __addrconf_sysctl_unregister(net
, net
->ipv6
.devconf_dflt
,
7068 NETCONFA_IFINDEX_DEFAULT
);
7069 __addrconf_sysctl_unregister(net
, net
->ipv6
.devconf_all
,
7070 NETCONFA_IFINDEX_ALL
);
7072 kfree(net
->ipv6
.devconf_dflt
);
7073 kfree(net
->ipv6
.devconf_all
);
7076 static struct pernet_operations addrconf_ops
= {
7077 .init
= addrconf_init_net
,
7078 .exit
= addrconf_exit_net
,
7081 static struct rtnl_af_ops inet6_ops __read_mostly
= {
7083 .fill_link_af
= inet6_fill_link_af
,
7084 .get_link_af_size
= inet6_get_link_af_size
,
7085 .validate_link_af
= inet6_validate_link_af
,
7086 .set_link_af
= inet6_set_link_af
,
7090 * Init / cleanup code
7093 int __init
addrconf_init(void)
7095 struct inet6_dev
*idev
;
7098 err
= ipv6_addr_label_init();
7100 pr_crit("%s: cannot initialize default policy table: %d\n",
7105 err
= register_pernet_subsys(&addrconf_ops
);
7109 addrconf_wq
= create_workqueue("ipv6_addrconf");
7115 /* The addrconf netdev notifier requires that loopback_dev
7116 * has it's ipv6 private information allocated and setup
7117 * before it can bring up and give link-local addresses
7118 * to other devices which are up.
7120 * Unfortunately, loopback_dev is not necessarily the first
7121 * entry in the global dev_base list of net devices. In fact,
7122 * it is likely to be the very last entry on that list.
7123 * So this causes the notifier registry below to try and
7124 * give link-local addresses to all devices besides loopback_dev
7125 * first, then loopback_dev, which cases all the non-loopback_dev
7126 * devices to fail to get a link-local address.
7128 * So, as a temporary fix, allocate the ipv6 structure for
7129 * loopback_dev first by hand.
7130 * Longer term, all of the dependencies ipv6 has upon the loopback
7131 * device and it being up should be removed.
7134 idev
= ipv6_add_dev(init_net
.loopback_dev
);
7137 err
= PTR_ERR(idev
);
7141 ip6_route_init_special_entries();
7143 for (i
= 0; i
< IN6_ADDR_HSIZE
; i
++)
7144 INIT_HLIST_HEAD(&inet6_addr_lst
[i
]);
7146 register_netdevice_notifier(&ipv6_dev_notf
);
7150 rtnl_af_register(&inet6_ops
);
7152 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_GETLINK
,
7153 NULL
, inet6_dump_ifinfo
, 0);
7157 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_NEWADDR
,
7158 inet6_rtm_newaddr
, NULL
, 0);
7161 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_DELADDR
,
7162 inet6_rtm_deladdr
, NULL
, 0);
7165 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_GETADDR
,
7166 inet6_rtm_getaddr
, inet6_dump_ifaddr
,
7167 RTNL_FLAG_DOIT_UNLOCKED
);
7170 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_GETMULTICAST
,
7171 NULL
, inet6_dump_ifmcaddr
, 0);
7174 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_GETANYCAST
,
7175 NULL
, inet6_dump_ifacaddr
, 0);
7178 err
= rtnl_register_module(THIS_MODULE
, PF_INET6
, RTM_GETNETCONF
,
7179 inet6_netconf_get_devconf
,
7180 inet6_netconf_dump_devconf
,
7181 RTNL_FLAG_DOIT_UNLOCKED
);
7184 err
= ipv6_addr_label_rtnl_register();
7190 rtnl_unregister_all(PF_INET6
);
7191 rtnl_af_unregister(&inet6_ops
);
7192 unregister_netdevice_notifier(&ipv6_dev_notf
);
7194 destroy_workqueue(addrconf_wq
);
7196 unregister_pernet_subsys(&addrconf_ops
);
7198 ipv6_addr_label_cleanup();
7203 void addrconf_cleanup(void)
7205 struct net_device
*dev
;
7208 unregister_netdevice_notifier(&ipv6_dev_notf
);
7209 unregister_pernet_subsys(&addrconf_ops
);
7210 ipv6_addr_label_cleanup();
7212 rtnl_af_unregister(&inet6_ops
);
7216 /* clean dev list */
7217 for_each_netdev(&init_net
, dev
) {
7218 if (__in6_dev_get(dev
) == NULL
)
7220 addrconf_ifdown(dev
, true);
7222 addrconf_ifdown(init_net
.loopback_dev
, true);
7227 spin_lock_bh(&addrconf_hash_lock
);
7228 for (i
= 0; i
< IN6_ADDR_HSIZE
; i
++)
7229 WARN_ON(!hlist_empty(&inet6_addr_lst
[i
]));
7230 spin_unlock_bh(&addrconf_hash_lock
);
7231 cancel_delayed_work(&addr_chk_work
);
7234 destroy_workqueue(addrconf_wq
);