xref: /linux/net/ipv6/addrconf.c (revision ee975351cf0c2a11cdf97eae58265c126cb32850)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *	IPv6 Address [auto]configuration
4  *	Linux INET6 implementation
5  *
6  *	Authors:
7  *	Pedro Roque		<roque@di.fc.ul.pt>
8  *	Alexey Kuznetsov	<kuznet@ms2.inr.ac.ru>
9  */
10 
11 /*
12  *	Changes:
13  *
14  *	Janos Farkas			:	delete timer on ifdown
15  *	<chexum@bankinf.banki.hu>
16  *	Andi Kleen			:	kill double kfree on module
17  *						unload.
18  *	Maciej W. Rozycki		:	FDDI support
19  *	sekiya@USAGI			:	Don't send too many RS
20  *						packets.
21  *	yoshfuji@USAGI			:       Fixed interval between DAD
22  *						packets.
23  *	YOSHIFUJI Hideaki @USAGI	:	improved accuracy of
24  *						address validation timer.
25  *	YOSHIFUJI Hideaki @USAGI	:	Privacy Extensions (RFC3041)
26  *						support.
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
31  *						seq_file.
32  *	YOSHIFUJI Hideaki @USAGI	:	improved source address
33  *						selection; consider scope,
34  *						status etc.
35  */
36 
37 #define pr_fmt(fmt) "IPv6: " fmt
38 
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>
57 #ifdef CONFIG_SYSCTL
58 #include <linux/sysctl.h>
59 #endif
60 #include <linux/capability.h>
61 #include <linux/delay.h>
62 #include <linux/notifier.h>
63 #include <linux/string.h>
64 #include <linux/hash.h>
65 
66 #include <net/net_namespace.h>
67 #include <net/sock.h>
68 #include <net/snmp.h>
69 
70 #include <net/6lowpan.h>
71 #include <net/firewire.h>
72 #include <net/ipv6.h>
73 #include <net/protocol.h>
74 #include <net/ndisc.h>
75 #include <net/ip6_route.h>
76 #include <net/addrconf.h>
77 #include <net/tcp.h>
78 #include <net/ip.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>
88 
89 #include <linux/proc_fs.h>
90 #include <linux/seq_file.h>
91 #include <linux/export.h>
92 #include <linux/ioam6.h>
93 
94 #define	INFINITY_LIFE_TIME	0xFFFFFFFF
95 
96 #define IPV6_MAX_STRLEN \
97 	sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
98 
99 static inline u32 cstamp_delta(unsigned long cstamp)
100 {
101 	return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
102 }
103 
104 static inline s32 rfc3315_s14_backoff_init(s32 irt)
105 {
106 	/* multiply 'initial retransmission time' by 0.9 .. 1.1 */
107 	u64 tmp = get_random_u32_inclusive(900000, 1100000) * (u64)irt;
108 	do_div(tmp, 1000000);
109 	return (s32)tmp;
110 }
111 
112 static inline s32 rfc3315_s14_backoff_update(s32 rt, s32 mrt)
113 {
114 	/* multiply 'retransmission timeout' by 1.9 .. 2.1 */
115 	u64 tmp = get_random_u32_inclusive(1900000, 2100000) * (u64)rt;
116 	do_div(tmp, 1000000);
117 	if ((s32)tmp > mrt) {
118 		/* multiply 'maximum retransmission time' by 0.9 .. 1.1 */
119 		tmp = get_random_u32_inclusive(900000, 1100000) * (u64)mrt;
120 		do_div(tmp, 1000000);
121 	}
122 	return (s32)tmp;
123 }
124 
125 #ifdef CONFIG_SYSCTL
126 static int addrconf_sysctl_register(struct inet6_dev *idev);
127 static void addrconf_sysctl_unregister(struct inet6_dev *idev);
128 #else
129 static inline int addrconf_sysctl_register(struct inet6_dev *idev)
130 {
131 	return 0;
132 }
133 
134 static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
135 {
136 }
137 #endif
138 
139 static void ipv6_gen_rnd_iid(struct in6_addr *addr);
140 
141 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
142 static int ipv6_count_addresses(const struct inet6_dev *idev);
143 static int ipv6_generate_stable_address(struct in6_addr *addr,
144 					u8 dad_count,
145 					const struct inet6_dev *idev);
146 
147 #define IN6_ADDR_HSIZE_SHIFT	8
148 #define IN6_ADDR_HSIZE		(1 << IN6_ADDR_HSIZE_SHIFT)
149 
150 static void addrconf_verify(struct net *net);
151 static void addrconf_verify_rtnl(struct net *net);
152 
153 static struct workqueue_struct *addrconf_wq;
154 
155 static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
156 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
157 
158 static void addrconf_type_change(struct net_device *dev,
159 				 unsigned long event);
160 static int addrconf_ifdown(struct net_device *dev, bool unregister);
161 
162 static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
163 						  int plen,
164 						  const struct net_device *dev,
165 						  u32 flags, u32 noflags,
166 						  bool no_gw);
167 
168 static void addrconf_dad_start(struct inet6_ifaddr *ifp);
169 static void addrconf_dad_work(struct work_struct *w);
170 static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id,
171 				   bool send_na);
172 static void addrconf_dad_run(struct inet6_dev *idev, bool restart);
173 static void addrconf_rs_timer(struct timer_list *t);
174 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
175 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
176 
177 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
178 				struct prefix_info *pinfo);
179 
180 static struct ipv6_devconf ipv6_devconf __read_mostly = {
181 	.forwarding		= 0,
182 	.hop_limit		= IPV6_DEFAULT_HOPLIMIT,
183 	.mtu6			= IPV6_MIN_MTU,
184 	.accept_ra		= 1,
185 	.accept_redirects	= 1,
186 	.autoconf		= 1,
187 	.force_mld_version	= 0,
188 	.mldv1_unsolicited_report_interval = 10 * HZ,
189 	.mldv2_unsolicited_report_interval = HZ,
190 	.dad_transmits		= 1,
191 	.rtr_solicits		= MAX_RTR_SOLICITATIONS,
192 	.rtr_solicit_interval	= RTR_SOLICITATION_INTERVAL,
193 	.rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
194 	.rtr_solicit_delay	= MAX_RTR_SOLICITATION_DELAY,
195 	.use_tempaddr		= 0,
196 	.temp_valid_lft		= TEMP_VALID_LIFETIME,
197 	.temp_prefered_lft	= TEMP_PREFERRED_LIFETIME,
198 	.regen_min_advance	= REGEN_MIN_ADVANCE,
199 	.regen_max_retry	= REGEN_MAX_RETRY,
200 	.max_desync_factor	= MAX_DESYNC_FACTOR,
201 	.max_addresses		= IPV6_MAX_ADDRESSES,
202 	.accept_ra_defrtr	= 1,
203 	.ra_defrtr_metric	= IP6_RT_PRIO_USER,
204 	.accept_ra_from_local	= 0,
205 	.accept_ra_min_hop_limit= 1,
206 	.accept_ra_min_lft	= 0,
207 	.accept_ra_pinfo	= 1,
208 #ifdef CONFIG_IPV6_ROUTER_PREF
209 	.accept_ra_rtr_pref	= 1,
210 	.rtr_probe_interval	= 60 * HZ,
211 #ifdef CONFIG_IPV6_ROUTE_INFO
212 	.accept_ra_rt_info_min_plen = 0,
213 	.accept_ra_rt_info_max_plen = 0,
214 #endif
215 #endif
216 	.proxy_ndp		= 0,
217 	.accept_source_route	= 0,	/* we do not accept RH0 by default. */
218 	.disable_ipv6		= 0,
219 	.accept_dad		= 0,
220 	.suppress_frag_ndisc	= 1,
221 	.accept_ra_mtu		= 1,
222 	.stable_secret		= {
223 		.initialized = false,
224 	},
225 	.use_oif_addrs_only	= 0,
226 	.ignore_routes_with_linkdown = 0,
227 	.keep_addr_on_down	= 0,
228 	.seg6_enabled		= 0,
229 #ifdef CONFIG_IPV6_SEG6_HMAC
230 	.seg6_require_hmac	= 0,
231 #endif
232 	.enhanced_dad           = 1,
233 	.addr_gen_mode		= IN6_ADDR_GEN_MODE_EUI64,
234 	.disable_policy		= 0,
235 	.rpl_seg_enabled	= 0,
236 	.ioam6_enabled		= 0,
237 	.ioam6_id               = IOAM6_DEFAULT_IF_ID,
238 	.ioam6_id_wide		= IOAM6_DEFAULT_IF_ID_WIDE,
239 	.ndisc_evict_nocarrier	= 1,
240 	.ra_honor_pio_life	= 0,
241 };
242 
243 static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
244 	.forwarding		= 0,
245 	.hop_limit		= IPV6_DEFAULT_HOPLIMIT,
246 	.mtu6			= IPV6_MIN_MTU,
247 	.accept_ra		= 1,
248 	.accept_redirects	= 1,
249 	.autoconf		= 1,
250 	.force_mld_version	= 0,
251 	.mldv1_unsolicited_report_interval = 10 * HZ,
252 	.mldv2_unsolicited_report_interval = HZ,
253 	.dad_transmits		= 1,
254 	.rtr_solicits		= MAX_RTR_SOLICITATIONS,
255 	.rtr_solicit_interval	= RTR_SOLICITATION_INTERVAL,
256 	.rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
257 	.rtr_solicit_delay	= MAX_RTR_SOLICITATION_DELAY,
258 	.use_tempaddr		= 0,
259 	.temp_valid_lft		= TEMP_VALID_LIFETIME,
260 	.temp_prefered_lft	= TEMP_PREFERRED_LIFETIME,
261 	.regen_min_advance	= REGEN_MIN_ADVANCE,
262 	.regen_max_retry	= REGEN_MAX_RETRY,
263 	.max_desync_factor	= MAX_DESYNC_FACTOR,
264 	.max_addresses		= IPV6_MAX_ADDRESSES,
265 	.accept_ra_defrtr	= 1,
266 	.ra_defrtr_metric	= IP6_RT_PRIO_USER,
267 	.accept_ra_from_local	= 0,
268 	.accept_ra_min_hop_limit= 1,
269 	.accept_ra_min_lft	= 0,
270 	.accept_ra_pinfo	= 1,
271 #ifdef CONFIG_IPV6_ROUTER_PREF
272 	.accept_ra_rtr_pref	= 1,
273 	.rtr_probe_interval	= 60 * HZ,
274 #ifdef CONFIG_IPV6_ROUTE_INFO
275 	.accept_ra_rt_info_min_plen = 0,
276 	.accept_ra_rt_info_max_plen = 0,
277 #endif
278 #endif
279 	.proxy_ndp		= 0,
280 	.accept_source_route	= 0,	/* we do not accept RH0 by default. */
281 	.disable_ipv6		= 0,
282 	.accept_dad		= 1,
283 	.suppress_frag_ndisc	= 1,
284 	.accept_ra_mtu		= 1,
285 	.stable_secret		= {
286 		.initialized = false,
287 	},
288 	.use_oif_addrs_only	= 0,
289 	.ignore_routes_with_linkdown = 0,
290 	.keep_addr_on_down	= 0,
291 	.seg6_enabled		= 0,
292 #ifdef CONFIG_IPV6_SEG6_HMAC
293 	.seg6_require_hmac	= 0,
294 #endif
295 	.enhanced_dad           = 1,
296 	.addr_gen_mode		= IN6_ADDR_GEN_MODE_EUI64,
297 	.disable_policy		= 0,
298 	.rpl_seg_enabled	= 0,
299 	.ioam6_enabled		= 0,
300 	.ioam6_id               = IOAM6_DEFAULT_IF_ID,
301 	.ioam6_id_wide		= IOAM6_DEFAULT_IF_ID_WIDE,
302 	.ndisc_evict_nocarrier	= 1,
303 	.ra_honor_pio_life	= 0,
304 };
305 
306 /* Check if link is ready: is it up and is a valid qdisc available */
307 static inline bool addrconf_link_ready(const struct net_device *dev)
308 {
309 	return netif_oper_up(dev) && !qdisc_tx_is_noop(dev);
310 }
311 
312 static void addrconf_del_rs_timer(struct inet6_dev *idev)
313 {
314 	if (del_timer(&idev->rs_timer))
315 		__in6_dev_put(idev);
316 }
317 
318 static void addrconf_del_dad_work(struct inet6_ifaddr *ifp)
319 {
320 	if (cancel_delayed_work(&ifp->dad_work))
321 		__in6_ifa_put(ifp);
322 }
323 
324 static void addrconf_mod_rs_timer(struct inet6_dev *idev,
325 				  unsigned long when)
326 {
327 	if (!mod_timer(&idev->rs_timer, jiffies + when))
328 		in6_dev_hold(idev);
329 }
330 
331 static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp,
332 				   unsigned long delay)
333 {
334 	in6_ifa_hold(ifp);
335 	if (mod_delayed_work(addrconf_wq, &ifp->dad_work, delay))
336 		in6_ifa_put(ifp);
337 }
338 
339 static int snmp6_alloc_dev(struct inet6_dev *idev)
340 {
341 	int i;
342 
343 	idev->stats.ipv6 = alloc_percpu_gfp(struct ipstats_mib, GFP_KERNEL_ACCOUNT);
344 	if (!idev->stats.ipv6)
345 		goto err_ip;
346 
347 	for_each_possible_cpu(i) {
348 		struct ipstats_mib *addrconf_stats;
349 		addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i);
350 		u64_stats_init(&addrconf_stats->syncp);
351 	}
352 
353 
354 	idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
355 					GFP_KERNEL);
356 	if (!idev->stats.icmpv6dev)
357 		goto err_icmp;
358 	idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
359 					   GFP_KERNEL_ACCOUNT);
360 	if (!idev->stats.icmpv6msgdev)
361 		goto err_icmpmsg;
362 
363 	return 0;
364 
365 err_icmpmsg:
366 	kfree(idev->stats.icmpv6dev);
367 err_icmp:
368 	free_percpu(idev->stats.ipv6);
369 err_ip:
370 	return -ENOMEM;
371 }
372 
373 static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
374 {
375 	struct inet6_dev *ndev;
376 	int err = -ENOMEM;
377 
378 	ASSERT_RTNL();
379 
380 	if (dev->mtu < IPV6_MIN_MTU && dev != blackhole_netdev)
381 		return ERR_PTR(-EINVAL);
382 
383 	ndev = kzalloc(sizeof(*ndev), GFP_KERNEL_ACCOUNT);
384 	if (!ndev)
385 		return ERR_PTR(err);
386 
387 	rwlock_init(&ndev->lock);
388 	ndev->dev = dev;
389 	INIT_LIST_HEAD(&ndev->addr_list);
390 	timer_setup(&ndev->rs_timer, addrconf_rs_timer, 0);
391 	memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
392 
393 	if (ndev->cnf.stable_secret.initialized)
394 		ndev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
395 
396 	ndev->cnf.mtu6 = dev->mtu;
397 	ndev->ra_mtu = 0;
398 	ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
399 	if (!ndev->nd_parms) {
400 		kfree(ndev);
401 		return ERR_PTR(err);
402 	}
403 	if (ndev->cnf.forwarding)
404 		dev_disable_lro(dev);
405 	/* We refer to the device */
406 	netdev_hold(dev, &ndev->dev_tracker, GFP_KERNEL);
407 
408 	if (snmp6_alloc_dev(ndev) < 0) {
409 		netdev_dbg(dev, "%s: cannot allocate memory for statistics\n",
410 			   __func__);
411 		neigh_parms_release(&nd_tbl, ndev->nd_parms);
412 		netdev_put(dev, &ndev->dev_tracker);
413 		kfree(ndev);
414 		return ERR_PTR(err);
415 	}
416 
417 	if (dev != blackhole_netdev) {
418 		if (snmp6_register_dev(ndev) < 0) {
419 			netdev_dbg(dev, "%s: cannot create /proc/net/dev_snmp6/%s\n",
420 				   __func__, dev->name);
421 			goto err_release;
422 		}
423 	}
424 	/* One reference from device. */
425 	refcount_set(&ndev->refcnt, 1);
426 
427 	if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
428 		ndev->cnf.accept_dad = -1;
429 
430 #if IS_ENABLED(CONFIG_IPV6_SIT)
431 	if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
432 		pr_info("%s: Disabled Multicast RS\n", dev->name);
433 		ndev->cnf.rtr_solicits = 0;
434 	}
435 #endif
436 
437 	INIT_LIST_HEAD(&ndev->tempaddr_list);
438 	ndev->desync_factor = U32_MAX;
439 	if ((dev->flags&IFF_LOOPBACK) ||
440 	    dev->type == ARPHRD_TUNNEL ||
441 	    dev->type == ARPHRD_TUNNEL6 ||
442 	    dev->type == ARPHRD_SIT ||
443 	    dev->type == ARPHRD_NONE) {
444 		ndev->cnf.use_tempaddr = -1;
445 	}
446 
447 	ndev->token = in6addr_any;
448 
449 	if (netif_running(dev) && addrconf_link_ready(dev))
450 		ndev->if_flags |= IF_READY;
451 
452 	ipv6_mc_init_dev(ndev);
453 	ndev->tstamp = jiffies;
454 	if (dev != blackhole_netdev) {
455 		err = addrconf_sysctl_register(ndev);
456 		if (err) {
457 			ipv6_mc_destroy_dev(ndev);
458 			snmp6_unregister_dev(ndev);
459 			goto err_release;
460 		}
461 	}
462 	/* protected by rtnl_lock */
463 	rcu_assign_pointer(dev->ip6_ptr, ndev);
464 
465 	if (dev != blackhole_netdev) {
466 		/* Join interface-local all-node multicast group */
467 		ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
468 
469 		/* Join all-node multicast group */
470 		ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
471 
472 		/* Join all-router multicast group if forwarding is set */
473 		if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
474 			ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
475 	}
476 	return ndev;
477 
478 err_release:
479 	neigh_parms_release(&nd_tbl, ndev->nd_parms);
480 	ndev->dead = 1;
481 	in6_dev_finish_destroy(ndev);
482 	return ERR_PTR(err);
483 }
484 
485 static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
486 {
487 	struct inet6_dev *idev;
488 
489 	ASSERT_RTNL();
490 
491 	idev = __in6_dev_get(dev);
492 	if (!idev) {
493 		idev = ipv6_add_dev(dev);
494 		if (IS_ERR(idev))
495 			return idev;
496 	}
497 
498 	if (dev->flags&IFF_UP)
499 		ipv6_mc_up(idev);
500 	return idev;
501 }
502 
503 static int inet6_netconf_msgsize_devconf(int type)
504 {
505 	int size =  NLMSG_ALIGN(sizeof(struct netconfmsg))
506 		    + nla_total_size(4);	/* NETCONFA_IFINDEX */
507 	bool all = false;
508 
509 	if (type == NETCONFA_ALL)
510 		all = true;
511 
512 	if (all || type == NETCONFA_FORWARDING)
513 		size += nla_total_size(4);
514 #ifdef CONFIG_IPV6_MROUTE
515 	if (all || type == NETCONFA_MC_FORWARDING)
516 		size += nla_total_size(4);
517 #endif
518 	if (all || type == NETCONFA_PROXY_NEIGH)
519 		size += nla_total_size(4);
520 
521 	if (all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN)
522 		size += nla_total_size(4);
523 
524 	return size;
525 }
526 
527 static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
528 				      struct ipv6_devconf *devconf, u32 portid,
529 				      u32 seq, int event, unsigned int flags,
530 				      int type)
531 {
532 	struct nlmsghdr  *nlh;
533 	struct netconfmsg *ncm;
534 	bool all = false;
535 
536 	nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
537 			flags);
538 	if (!nlh)
539 		return -EMSGSIZE;
540 
541 	if (type == NETCONFA_ALL)
542 		all = true;
543 
544 	ncm = nlmsg_data(nlh);
545 	ncm->ncm_family = AF_INET6;
546 
547 	if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
548 		goto nla_put_failure;
549 
550 	if (!devconf)
551 		goto out;
552 
553 	if ((all || type == NETCONFA_FORWARDING) &&
554 	    nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
555 		goto nla_put_failure;
556 #ifdef CONFIG_IPV6_MROUTE
557 	if ((all || type == NETCONFA_MC_FORWARDING) &&
558 	    nla_put_s32(skb, NETCONFA_MC_FORWARDING,
559 			atomic_read(&devconf->mc_forwarding)) < 0)
560 		goto nla_put_failure;
561 #endif
562 	if ((all || type == NETCONFA_PROXY_NEIGH) &&
563 	    nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
564 		goto nla_put_failure;
565 
566 	if ((all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) &&
567 	    nla_put_s32(skb, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
568 			devconf->ignore_routes_with_linkdown) < 0)
569 		goto nla_put_failure;
570 
571 out:
572 	nlmsg_end(skb, nlh);
573 	return 0;
574 
575 nla_put_failure:
576 	nlmsg_cancel(skb, nlh);
577 	return -EMSGSIZE;
578 }
579 
580 void inet6_netconf_notify_devconf(struct net *net, int event, int type,
581 				  int ifindex, struct ipv6_devconf *devconf)
582 {
583 	struct sk_buff *skb;
584 	int err = -ENOBUFS;
585 
586 	skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_KERNEL);
587 	if (!skb)
588 		goto errout;
589 
590 	err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
591 					 event, 0, type);
592 	if (err < 0) {
593 		/* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
594 		WARN_ON(err == -EMSGSIZE);
595 		kfree_skb(skb);
596 		goto errout;
597 	}
598 	rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_KERNEL);
599 	return;
600 errout:
601 	rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
602 }
603 
604 static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
605 	[NETCONFA_IFINDEX]	= { .len = sizeof(int) },
606 	[NETCONFA_FORWARDING]	= { .len = sizeof(int) },
607 	[NETCONFA_PROXY_NEIGH]	= { .len = sizeof(int) },
608 	[NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN]	= { .len = sizeof(int) },
609 };
610 
611 static int inet6_netconf_valid_get_req(struct sk_buff *skb,
612 				       const struct nlmsghdr *nlh,
613 				       struct nlattr **tb,
614 				       struct netlink_ext_ack *extack)
615 {
616 	int i, err;
617 
618 	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(struct netconfmsg))) {
619 		NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf get request");
620 		return -EINVAL;
621 	}
622 
623 	if (!netlink_strict_get_check(skb))
624 		return nlmsg_parse_deprecated(nlh, sizeof(struct netconfmsg),
625 					      tb, NETCONFA_MAX,
626 					      devconf_ipv6_policy, extack);
627 
628 	err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct netconfmsg),
629 					    tb, NETCONFA_MAX,
630 					    devconf_ipv6_policy, extack);
631 	if (err)
632 		return err;
633 
634 	for (i = 0; i <= NETCONFA_MAX; i++) {
635 		if (!tb[i])
636 			continue;
637 
638 		switch (i) {
639 		case NETCONFA_IFINDEX:
640 			break;
641 		default:
642 			NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in netconf get request");
643 			return -EINVAL;
644 		}
645 	}
646 
647 	return 0;
648 }
649 
650 static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
651 				     struct nlmsghdr *nlh,
652 				     struct netlink_ext_ack *extack)
653 {
654 	struct net *net = sock_net(in_skb->sk);
655 	struct nlattr *tb[NETCONFA_MAX+1];
656 	struct inet6_dev *in6_dev = NULL;
657 	struct net_device *dev = NULL;
658 	struct sk_buff *skb;
659 	struct ipv6_devconf *devconf;
660 	int ifindex;
661 	int err;
662 
663 	err = inet6_netconf_valid_get_req(in_skb, nlh, tb, extack);
664 	if (err < 0)
665 		return err;
666 
667 	if (!tb[NETCONFA_IFINDEX])
668 		return -EINVAL;
669 
670 	err = -EINVAL;
671 	ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
672 	switch (ifindex) {
673 	case NETCONFA_IFINDEX_ALL:
674 		devconf = net->ipv6.devconf_all;
675 		break;
676 	case NETCONFA_IFINDEX_DEFAULT:
677 		devconf = net->ipv6.devconf_dflt;
678 		break;
679 	default:
680 		dev = dev_get_by_index(net, ifindex);
681 		if (!dev)
682 			return -EINVAL;
683 		in6_dev = in6_dev_get(dev);
684 		if (!in6_dev)
685 			goto errout;
686 		devconf = &in6_dev->cnf;
687 		break;
688 	}
689 
690 	err = -ENOBUFS;
691 	skb = nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL);
692 	if (!skb)
693 		goto errout;
694 
695 	err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
696 					 NETLINK_CB(in_skb).portid,
697 					 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
698 					 NETCONFA_ALL);
699 	if (err < 0) {
700 		/* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
701 		WARN_ON(err == -EMSGSIZE);
702 		kfree_skb(skb);
703 		goto errout;
704 	}
705 	err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
706 errout:
707 	if (in6_dev)
708 		in6_dev_put(in6_dev);
709 	dev_put(dev);
710 	return err;
711 }
712 
713 static int inet6_netconf_dump_devconf(struct sk_buff *skb,
714 				      struct netlink_callback *cb)
715 {
716 	const struct nlmsghdr *nlh = cb->nlh;
717 	struct net *net = sock_net(skb->sk);
718 	int h, s_h;
719 	int idx, s_idx;
720 	struct net_device *dev;
721 	struct inet6_dev *idev;
722 	struct hlist_head *head;
723 
724 	if (cb->strict_check) {
725 		struct netlink_ext_ack *extack = cb->extack;
726 		struct netconfmsg *ncm;
727 
728 		if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ncm))) {
729 			NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf dump request");
730 			return -EINVAL;
731 		}
732 
733 		if (nlmsg_attrlen(nlh, sizeof(*ncm))) {
734 			NL_SET_ERR_MSG_MOD(extack, "Invalid data after header in netconf dump request");
735 			return -EINVAL;
736 		}
737 	}
738 
739 	s_h = cb->args[0];
740 	s_idx = idx = cb->args[1];
741 
742 	for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
743 		idx = 0;
744 		head = &net->dev_index_head[h];
745 		rcu_read_lock();
746 		cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
747 			  net->dev_base_seq;
748 		hlist_for_each_entry_rcu(dev, head, index_hlist) {
749 			if (idx < s_idx)
750 				goto cont;
751 			idev = __in6_dev_get(dev);
752 			if (!idev)
753 				goto cont;
754 
755 			if (inet6_netconf_fill_devconf(skb, dev->ifindex,
756 						       &idev->cnf,
757 						       NETLINK_CB(cb->skb).portid,
758 						       nlh->nlmsg_seq,
759 						       RTM_NEWNETCONF,
760 						       NLM_F_MULTI,
761 						       NETCONFA_ALL) < 0) {
762 				rcu_read_unlock();
763 				goto done;
764 			}
765 			nl_dump_check_consistent(cb, nlmsg_hdr(skb));
766 cont:
767 			idx++;
768 		}
769 		rcu_read_unlock();
770 	}
771 	if (h == NETDEV_HASHENTRIES) {
772 		if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
773 					       net->ipv6.devconf_all,
774 					       NETLINK_CB(cb->skb).portid,
775 					       nlh->nlmsg_seq,
776 					       RTM_NEWNETCONF, NLM_F_MULTI,
777 					       NETCONFA_ALL) < 0)
778 			goto done;
779 		else
780 			h++;
781 	}
782 	if (h == NETDEV_HASHENTRIES + 1) {
783 		if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
784 					       net->ipv6.devconf_dflt,
785 					       NETLINK_CB(cb->skb).portid,
786 					       nlh->nlmsg_seq,
787 					       RTM_NEWNETCONF, NLM_F_MULTI,
788 					       NETCONFA_ALL) < 0)
789 			goto done;
790 		else
791 			h++;
792 	}
793 done:
794 	cb->args[0] = h;
795 	cb->args[1] = idx;
796 
797 	return skb->len;
798 }
799 
800 #ifdef CONFIG_SYSCTL
801 static void dev_forward_change(struct inet6_dev *idev)
802 {
803 	struct net_device *dev;
804 	struct inet6_ifaddr *ifa;
805 	LIST_HEAD(tmp_addr_list);
806 
807 	if (!idev)
808 		return;
809 	dev = idev->dev;
810 	if (idev->cnf.forwarding)
811 		dev_disable_lro(dev);
812 	if (dev->flags & IFF_MULTICAST) {
813 		if (idev->cnf.forwarding) {
814 			ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
815 			ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
816 			ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
817 		} else {
818 			ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
819 			ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
820 			ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
821 		}
822 	}
823 
824 	read_lock_bh(&idev->lock);
825 	list_for_each_entry(ifa, &idev->addr_list, if_list) {
826 		if (ifa->flags&IFA_F_TENTATIVE)
827 			continue;
828 		list_add_tail(&ifa->if_list_aux, &tmp_addr_list);
829 	}
830 	read_unlock_bh(&idev->lock);
831 
832 	while (!list_empty(&tmp_addr_list)) {
833 		ifa = list_first_entry(&tmp_addr_list,
834 				       struct inet6_ifaddr, if_list_aux);
835 		list_del(&ifa->if_list_aux);
836 		if (idev->cnf.forwarding)
837 			addrconf_join_anycast(ifa);
838 		else
839 			addrconf_leave_anycast(ifa);
840 	}
841 
842 	inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF,
843 				     NETCONFA_FORWARDING,
844 				     dev->ifindex, &idev->cnf);
845 }
846 
847 
848 static void addrconf_forward_change(struct net *net, __s32 newf)
849 {
850 	struct net_device *dev;
851 	struct inet6_dev *idev;
852 
853 	for_each_netdev(net, dev) {
854 		idev = __in6_dev_get(dev);
855 		if (idev) {
856 			int changed = (!idev->cnf.forwarding) ^ (!newf);
857 			idev->cnf.forwarding = newf;
858 			if (changed)
859 				dev_forward_change(idev);
860 		}
861 	}
862 }
863 
864 static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
865 {
866 	struct net *net;
867 	int old;
868 
869 	if (!rtnl_trylock())
870 		return restart_syscall();
871 
872 	net = (struct net *)table->extra2;
873 	old = *p;
874 	*p = newf;
875 
876 	if (p == &net->ipv6.devconf_dflt->forwarding) {
877 		if ((!newf) ^ (!old))
878 			inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
879 						     NETCONFA_FORWARDING,
880 						     NETCONFA_IFINDEX_DEFAULT,
881 						     net->ipv6.devconf_dflt);
882 		rtnl_unlock();
883 		return 0;
884 	}
885 
886 	if (p == &net->ipv6.devconf_all->forwarding) {
887 		int old_dflt = net->ipv6.devconf_dflt->forwarding;
888 
889 		net->ipv6.devconf_dflt->forwarding = newf;
890 		if ((!newf) ^ (!old_dflt))
891 			inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
892 						     NETCONFA_FORWARDING,
893 						     NETCONFA_IFINDEX_DEFAULT,
894 						     net->ipv6.devconf_dflt);
895 
896 		addrconf_forward_change(net, newf);
897 		if ((!newf) ^ (!old))
898 			inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
899 						     NETCONFA_FORWARDING,
900 						     NETCONFA_IFINDEX_ALL,
901 						     net->ipv6.devconf_all);
902 	} else if ((!newf) ^ (!old))
903 		dev_forward_change((struct inet6_dev *)table->extra1);
904 	rtnl_unlock();
905 
906 	if (newf)
907 		rt6_purge_dflt_routers(net);
908 	return 1;
909 }
910 
911 static void addrconf_linkdown_change(struct net *net, __s32 newf)
912 {
913 	struct net_device *dev;
914 	struct inet6_dev *idev;
915 
916 	for_each_netdev(net, dev) {
917 		idev = __in6_dev_get(dev);
918 		if (idev) {
919 			int changed = (!idev->cnf.ignore_routes_with_linkdown) ^ (!newf);
920 
921 			idev->cnf.ignore_routes_with_linkdown = newf;
922 			if (changed)
923 				inet6_netconf_notify_devconf(dev_net(dev),
924 							     RTM_NEWNETCONF,
925 							     NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
926 							     dev->ifindex,
927 							     &idev->cnf);
928 		}
929 	}
930 }
931 
932 static int addrconf_fixup_linkdown(struct ctl_table *table, int *p, int newf)
933 {
934 	struct net *net;
935 	int old;
936 
937 	if (!rtnl_trylock())
938 		return restart_syscall();
939 
940 	net = (struct net *)table->extra2;
941 	old = *p;
942 	*p = newf;
943 
944 	if (p == &net->ipv6.devconf_dflt->ignore_routes_with_linkdown) {
945 		if ((!newf) ^ (!old))
946 			inet6_netconf_notify_devconf(net,
947 						     RTM_NEWNETCONF,
948 						     NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
949 						     NETCONFA_IFINDEX_DEFAULT,
950 						     net->ipv6.devconf_dflt);
951 		rtnl_unlock();
952 		return 0;
953 	}
954 
955 	if (p == &net->ipv6.devconf_all->ignore_routes_with_linkdown) {
956 		net->ipv6.devconf_dflt->ignore_routes_with_linkdown = newf;
957 		addrconf_linkdown_change(net, newf);
958 		if ((!newf) ^ (!old))
959 			inet6_netconf_notify_devconf(net,
960 						     RTM_NEWNETCONF,
961 						     NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
962 						     NETCONFA_IFINDEX_ALL,
963 						     net->ipv6.devconf_all);
964 	}
965 	rtnl_unlock();
966 
967 	return 1;
968 }
969 
970 #endif
971 
972 /* Nobody refers to this ifaddr, destroy it */
973 void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
974 {
975 	WARN_ON(!hlist_unhashed(&ifp->addr_lst));
976 
977 #ifdef NET_REFCNT_DEBUG
978 	pr_debug("%s\n", __func__);
979 #endif
980 
981 	in6_dev_put(ifp->idev);
982 
983 	if (cancel_delayed_work(&ifp->dad_work))
984 		pr_notice("delayed DAD work was pending while freeing ifa=%p\n",
985 			  ifp);
986 
987 	if (ifp->state != INET6_IFADDR_STATE_DEAD) {
988 		pr_warn("Freeing alive inet6 address %p\n", ifp);
989 		return;
990 	}
991 
992 	kfree_rcu(ifp, rcu);
993 }
994 
995 static void
996 ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
997 {
998 	struct list_head *p;
999 	int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
1000 
1001 	/*
1002 	 * Each device address list is sorted in order of scope -
1003 	 * global before linklocal.
1004 	 */
1005 	list_for_each(p, &idev->addr_list) {
1006 		struct inet6_ifaddr *ifa
1007 			= list_entry(p, struct inet6_ifaddr, if_list);
1008 		if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
1009 			break;
1010 	}
1011 
1012 	list_add_tail_rcu(&ifp->if_list, p);
1013 }
1014 
1015 static u32 inet6_addr_hash(const struct net *net, const struct in6_addr *addr)
1016 {
1017 	u32 val = ipv6_addr_hash(addr) ^ net_hash_mix(net);
1018 
1019 	return hash_32(val, IN6_ADDR_HSIZE_SHIFT);
1020 }
1021 
1022 static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1023 			       struct net_device *dev, unsigned int hash)
1024 {
1025 	struct inet6_ifaddr *ifp;
1026 
1027 	hlist_for_each_entry(ifp, &net->ipv6.inet6_addr_lst[hash], addr_lst) {
1028 		if (ipv6_addr_equal(&ifp->addr, addr)) {
1029 			if (!dev || ifp->idev->dev == dev)
1030 				return true;
1031 		}
1032 	}
1033 	return false;
1034 }
1035 
1036 static int ipv6_add_addr_hash(struct net_device *dev, struct inet6_ifaddr *ifa)
1037 {
1038 	struct net *net = dev_net(dev);
1039 	unsigned int hash = inet6_addr_hash(net, &ifa->addr);
1040 	int err = 0;
1041 
1042 	spin_lock_bh(&net->ipv6.addrconf_hash_lock);
1043 
1044 	/* Ignore adding duplicate addresses on an interface */
1045 	if (ipv6_chk_same_addr(net, &ifa->addr, dev, hash)) {
1046 		netdev_dbg(dev, "ipv6_add_addr: already assigned\n");
1047 		err = -EEXIST;
1048 	} else {
1049 		hlist_add_head_rcu(&ifa->addr_lst, &net->ipv6.inet6_addr_lst[hash]);
1050 	}
1051 
1052 	spin_unlock_bh(&net->ipv6.addrconf_hash_lock);
1053 
1054 	return err;
1055 }
1056 
1057 /* On success it returns ifp with increased reference count */
1058 
1059 static struct inet6_ifaddr *
1060 ipv6_add_addr(struct inet6_dev *idev, struct ifa6_config *cfg,
1061 	      bool can_block, struct netlink_ext_ack *extack)
1062 {
1063 	gfp_t gfp_flags = can_block ? GFP_KERNEL : GFP_ATOMIC;
1064 	int addr_type = ipv6_addr_type(cfg->pfx);
1065 	struct net *net = dev_net(idev->dev);
1066 	struct inet6_ifaddr *ifa = NULL;
1067 	struct fib6_info *f6i = NULL;
1068 	int err = 0;
1069 
1070 	if (addr_type == IPV6_ADDR_ANY) {
1071 		NL_SET_ERR_MSG_MOD(extack, "Invalid address");
1072 		return ERR_PTR(-EADDRNOTAVAIL);
1073 	} else if (addr_type & IPV6_ADDR_MULTICAST &&
1074 		   !(cfg->ifa_flags & IFA_F_MCAUTOJOIN)) {
1075 		NL_SET_ERR_MSG_MOD(extack, "Cannot assign multicast address without \"IFA_F_MCAUTOJOIN\" flag");
1076 		return ERR_PTR(-EADDRNOTAVAIL);
1077 	} else if (!(idev->dev->flags & IFF_LOOPBACK) &&
1078 		   !netif_is_l3_master(idev->dev) &&
1079 		   addr_type & IPV6_ADDR_LOOPBACK) {
1080 		NL_SET_ERR_MSG_MOD(extack, "Cannot assign loopback address on this device");
1081 		return ERR_PTR(-EADDRNOTAVAIL);
1082 	}
1083 
1084 	if (idev->dead) {
1085 		NL_SET_ERR_MSG_MOD(extack, "device is going away");
1086 		err = -ENODEV;
1087 		goto out;
1088 	}
1089 
1090 	if (idev->cnf.disable_ipv6) {
1091 		NL_SET_ERR_MSG_MOD(extack, "IPv6 is disabled on this device");
1092 		err = -EACCES;
1093 		goto out;
1094 	}
1095 
1096 	/* validator notifier needs to be blocking;
1097 	 * do not call in atomic context
1098 	 */
1099 	if (can_block) {
1100 		struct in6_validator_info i6vi = {
1101 			.i6vi_addr = *cfg->pfx,
1102 			.i6vi_dev = idev,
1103 			.extack = extack,
1104 		};
1105 
1106 		err = inet6addr_validator_notifier_call_chain(NETDEV_UP, &i6vi);
1107 		err = notifier_to_errno(err);
1108 		if (err < 0)
1109 			goto out;
1110 	}
1111 
1112 	ifa = kzalloc(sizeof(*ifa), gfp_flags | __GFP_ACCOUNT);
1113 	if (!ifa) {
1114 		err = -ENOBUFS;
1115 		goto out;
1116 	}
1117 
1118 	f6i = addrconf_f6i_alloc(net, idev, cfg->pfx, false, gfp_flags, extack);
1119 	if (IS_ERR(f6i)) {
1120 		err = PTR_ERR(f6i);
1121 		f6i = NULL;
1122 		goto out;
1123 	}
1124 
1125 	neigh_parms_data_state_setall(idev->nd_parms);
1126 
1127 	ifa->addr = *cfg->pfx;
1128 	if (cfg->peer_pfx)
1129 		ifa->peer_addr = *cfg->peer_pfx;
1130 
1131 	spin_lock_init(&ifa->lock);
1132 	INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work);
1133 	INIT_HLIST_NODE(&ifa->addr_lst);
1134 	ifa->scope = cfg->scope;
1135 	ifa->prefix_len = cfg->plen;
1136 	ifa->rt_priority = cfg->rt_priority;
1137 	ifa->flags = cfg->ifa_flags;
1138 	ifa->ifa_proto = cfg->ifa_proto;
1139 	/* No need to add the TENTATIVE flag for addresses with NODAD */
1140 	if (!(cfg->ifa_flags & IFA_F_NODAD))
1141 		ifa->flags |= IFA_F_TENTATIVE;
1142 	ifa->valid_lft = cfg->valid_lft;
1143 	ifa->prefered_lft = cfg->preferred_lft;
1144 	ifa->cstamp = ifa->tstamp = jiffies;
1145 	ifa->tokenized = false;
1146 
1147 	ifa->rt = f6i;
1148 
1149 	ifa->idev = idev;
1150 	in6_dev_hold(idev);
1151 
1152 	/* For caller */
1153 	refcount_set(&ifa->refcnt, 1);
1154 
1155 	rcu_read_lock();
1156 
1157 	err = ipv6_add_addr_hash(idev->dev, ifa);
1158 	if (err < 0) {
1159 		rcu_read_unlock();
1160 		goto out;
1161 	}
1162 
1163 	write_lock_bh(&idev->lock);
1164 
1165 	/* Add to inet6_dev unicast addr list. */
1166 	ipv6_link_dev_addr(idev, ifa);
1167 
1168 	if (ifa->flags&IFA_F_TEMPORARY) {
1169 		list_add(&ifa->tmp_list, &idev->tempaddr_list);
1170 		in6_ifa_hold(ifa);
1171 	}
1172 
1173 	in6_ifa_hold(ifa);
1174 	write_unlock_bh(&idev->lock);
1175 
1176 	rcu_read_unlock();
1177 
1178 	inet6addr_notifier_call_chain(NETDEV_UP, ifa);
1179 out:
1180 	if (unlikely(err < 0)) {
1181 		fib6_info_release(f6i);
1182 
1183 		if (ifa) {
1184 			if (ifa->idev)
1185 				in6_dev_put(ifa->idev);
1186 			kfree(ifa);
1187 		}
1188 		ifa = ERR_PTR(err);
1189 	}
1190 
1191 	return ifa;
1192 }
1193 
1194 enum cleanup_prefix_rt_t {
1195 	CLEANUP_PREFIX_RT_NOP,    /* no cleanup action for prefix route */
1196 	CLEANUP_PREFIX_RT_DEL,    /* delete the prefix route */
1197 	CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */
1198 };
1199 
1200 /*
1201  * Check, whether the prefix for ifp would still need a prefix route
1202  * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
1203  * constants.
1204  *
1205  * 1) we don't purge prefix if address was not permanent.
1206  *    prefix is managed by its own lifetime.
1207  * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
1208  * 3) if there are no addresses, delete prefix.
1209  * 4) if there are still other permanent address(es),
1210  *    corresponding prefix is still permanent.
1211  * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
1212  *    don't purge the prefix, assume user space is managing it.
1213  * 6) otherwise, update prefix lifetime to the
1214  *    longest valid lifetime among the corresponding
1215  *    addresses on the device.
1216  *    Note: subsequent RA will update lifetime.
1217  **/
1218 static enum cleanup_prefix_rt_t
1219 check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires)
1220 {
1221 	struct inet6_ifaddr *ifa;
1222 	struct inet6_dev *idev = ifp->idev;
1223 	unsigned long lifetime;
1224 	enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL;
1225 
1226 	*expires = jiffies;
1227 
1228 	list_for_each_entry(ifa, &idev->addr_list, if_list) {
1229 		if (ifa == ifp)
1230 			continue;
1231 		if (ifa->prefix_len != ifp->prefix_len ||
1232 		    !ipv6_prefix_equal(&ifa->addr, &ifp->addr,
1233 				       ifp->prefix_len))
1234 			continue;
1235 		if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE))
1236 			return CLEANUP_PREFIX_RT_NOP;
1237 
1238 		action = CLEANUP_PREFIX_RT_EXPIRE;
1239 
1240 		spin_lock(&ifa->lock);
1241 
1242 		lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
1243 		/*
1244 		 * Note: Because this address is
1245 		 * not permanent, lifetime <
1246 		 * LONG_MAX / HZ here.
1247 		 */
1248 		if (time_before(*expires, ifa->tstamp + lifetime * HZ))
1249 			*expires = ifa->tstamp + lifetime * HZ;
1250 		spin_unlock(&ifa->lock);
1251 	}
1252 
1253 	return action;
1254 }
1255 
1256 static void
1257 cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires,
1258 		     bool del_rt, bool del_peer)
1259 {
1260 	struct fib6_table *table;
1261 	struct fib6_info *f6i;
1262 
1263 	f6i = addrconf_get_prefix_route(del_peer ? &ifp->peer_addr : &ifp->addr,
1264 					ifp->prefix_len,
1265 					ifp->idev->dev, 0, RTF_DEFAULT, true);
1266 	if (f6i) {
1267 		if (del_rt)
1268 			ip6_del_rt(dev_net(ifp->idev->dev), f6i, false);
1269 		else {
1270 			if (!(f6i->fib6_flags & RTF_EXPIRES)) {
1271 				table = f6i->fib6_table;
1272 				spin_lock_bh(&table->tb6_lock);
1273 
1274 				fib6_set_expires(f6i, expires);
1275 				fib6_add_gc_list(f6i);
1276 
1277 				spin_unlock_bh(&table->tb6_lock);
1278 			}
1279 			fib6_info_release(f6i);
1280 		}
1281 	}
1282 }
1283 
1284 
1285 /* This function wants to get referenced ifp and releases it before return */
1286 
1287 static void ipv6_del_addr(struct inet6_ifaddr *ifp)
1288 {
1289 	enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP;
1290 	struct net *net = dev_net(ifp->idev->dev);
1291 	unsigned long expires;
1292 	int state;
1293 
1294 	ASSERT_RTNL();
1295 
1296 	spin_lock_bh(&ifp->lock);
1297 	state = ifp->state;
1298 	ifp->state = INET6_IFADDR_STATE_DEAD;
1299 	spin_unlock_bh(&ifp->lock);
1300 
1301 	if (state == INET6_IFADDR_STATE_DEAD)
1302 		goto out;
1303 
1304 	spin_lock_bh(&net->ipv6.addrconf_hash_lock);
1305 	hlist_del_init_rcu(&ifp->addr_lst);
1306 	spin_unlock_bh(&net->ipv6.addrconf_hash_lock);
1307 
1308 	write_lock_bh(&ifp->idev->lock);
1309 
1310 	if (ifp->flags&IFA_F_TEMPORARY) {
1311 		list_del(&ifp->tmp_list);
1312 		if (ifp->ifpub) {
1313 			in6_ifa_put(ifp->ifpub);
1314 			ifp->ifpub = NULL;
1315 		}
1316 		__in6_ifa_put(ifp);
1317 	}
1318 
1319 	if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE))
1320 		action = check_cleanup_prefix_route(ifp, &expires);
1321 
1322 	list_del_rcu(&ifp->if_list);
1323 	__in6_ifa_put(ifp);
1324 
1325 	write_unlock_bh(&ifp->idev->lock);
1326 
1327 	addrconf_del_dad_work(ifp);
1328 
1329 	ipv6_ifa_notify(RTM_DELADDR, ifp);
1330 
1331 	inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
1332 
1333 	if (action != CLEANUP_PREFIX_RT_NOP) {
1334 		cleanup_prefix_route(ifp, expires,
1335 			action == CLEANUP_PREFIX_RT_DEL, false);
1336 	}
1337 
1338 	/* clean up prefsrc entries */
1339 	rt6_remove_prefsrc(ifp);
1340 out:
1341 	in6_ifa_put(ifp);
1342 }
1343 
1344 static unsigned long ipv6_get_regen_advance(struct inet6_dev *idev)
1345 {
1346 	return idev->cnf.regen_min_advance + idev->cnf.regen_max_retry *
1347 			idev->cnf.dad_transmits *
1348 			max(NEIGH_VAR(idev->nd_parms, RETRANS_TIME), HZ/100) / HZ;
1349 }
1350 
1351 static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, bool block)
1352 {
1353 	struct inet6_dev *idev = ifp->idev;
1354 	unsigned long tmp_tstamp, age;
1355 	unsigned long regen_advance;
1356 	unsigned long now = jiffies;
1357 	u32 if_public_preferred_lft;
1358 	s32 cnf_temp_preferred_lft;
1359 	struct inet6_ifaddr *ift;
1360 	struct ifa6_config cfg;
1361 	long max_desync_factor;
1362 	struct in6_addr addr;
1363 	int ret = 0;
1364 
1365 	write_lock_bh(&idev->lock);
1366 
1367 retry:
1368 	in6_dev_hold(idev);
1369 	if (idev->cnf.use_tempaddr <= 0) {
1370 		write_unlock_bh(&idev->lock);
1371 		pr_info("%s: use_tempaddr is disabled\n", __func__);
1372 		in6_dev_put(idev);
1373 		ret = -1;
1374 		goto out;
1375 	}
1376 	spin_lock_bh(&ifp->lock);
1377 	if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1378 		idev->cnf.use_tempaddr = -1;	/*XXX*/
1379 		spin_unlock_bh(&ifp->lock);
1380 		write_unlock_bh(&idev->lock);
1381 		pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1382 			__func__);
1383 		in6_dev_put(idev);
1384 		ret = -1;
1385 		goto out;
1386 	}
1387 	in6_ifa_hold(ifp);
1388 	memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
1389 	ipv6_gen_rnd_iid(&addr);
1390 
1391 	age = (now - ifp->tstamp) / HZ;
1392 
1393 	regen_advance = ipv6_get_regen_advance(idev);
1394 
1395 	/* recalculate max_desync_factor each time and update
1396 	 * idev->desync_factor if it's larger
1397 	 */
1398 	cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft);
1399 	max_desync_factor = min_t(long,
1400 				  idev->cnf.max_desync_factor,
1401 				  cnf_temp_preferred_lft - regen_advance);
1402 
1403 	if (unlikely(idev->desync_factor > max_desync_factor)) {
1404 		if (max_desync_factor > 0) {
1405 			get_random_bytes(&idev->desync_factor,
1406 					 sizeof(idev->desync_factor));
1407 			idev->desync_factor %= max_desync_factor;
1408 		} else {
1409 			idev->desync_factor = 0;
1410 		}
1411 	}
1412 
1413 	if_public_preferred_lft = ifp->prefered_lft;
1414 
1415 	memset(&cfg, 0, sizeof(cfg));
1416 	cfg.valid_lft = min_t(__u32, ifp->valid_lft,
1417 			      idev->cnf.temp_valid_lft + age);
1418 	cfg.preferred_lft = cnf_temp_preferred_lft + age - idev->desync_factor;
1419 	cfg.preferred_lft = min_t(__u32, if_public_preferred_lft, cfg.preferred_lft);
1420 	cfg.preferred_lft = min_t(__u32, cfg.valid_lft, cfg.preferred_lft);
1421 
1422 	cfg.plen = ifp->prefix_len;
1423 	tmp_tstamp = ifp->tstamp;
1424 	spin_unlock_bh(&ifp->lock);
1425 
1426 	write_unlock_bh(&idev->lock);
1427 
1428 	/* From RFC 4941:
1429 	 *
1430 	 *     A temporary address is created only if this calculated Preferred
1431 	 *     Lifetime is greater than REGEN_ADVANCE time units.  In
1432 	 *     particular, an implementation must not create a temporary address
1433 	 *     with a zero Preferred Lifetime.
1434 	 *
1435 	 *     ...
1436 	 *
1437 	 *     When creating a temporary address, the lifetime values MUST be
1438 	 *     derived from the corresponding prefix as follows:
1439 	 *
1440 	 *     ...
1441 	 *
1442 	 *     *  Its Preferred Lifetime is the lower of the Preferred Lifetime
1443 	 *        of the public address or TEMP_PREFERRED_LIFETIME -
1444 	 *        DESYNC_FACTOR.
1445 	 *
1446 	 * To comply with the RFC's requirements, clamp the preferred lifetime
1447 	 * to a minimum of regen_advance, unless that would exceed valid_lft or
1448 	 * ifp->prefered_lft.
1449 	 *
1450 	 * Use age calculation as in addrconf_verify to avoid unnecessary
1451 	 * temporary addresses being generated.
1452 	 */
1453 	age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
1454 	if (cfg.preferred_lft <= regen_advance + age) {
1455 		cfg.preferred_lft = regen_advance + age + 1;
1456 		if (cfg.preferred_lft > cfg.valid_lft ||
1457 		    cfg.preferred_lft > if_public_preferred_lft) {
1458 			in6_ifa_put(ifp);
1459 			in6_dev_put(idev);
1460 			ret = -1;
1461 			goto out;
1462 		}
1463 	}
1464 
1465 	cfg.ifa_flags = IFA_F_TEMPORARY;
1466 	/* set in addrconf_prefix_rcv() */
1467 	if (ifp->flags & IFA_F_OPTIMISTIC)
1468 		cfg.ifa_flags |= IFA_F_OPTIMISTIC;
1469 
1470 	cfg.pfx = &addr;
1471 	cfg.scope = ipv6_addr_scope(cfg.pfx);
1472 
1473 	ift = ipv6_add_addr(idev, &cfg, block, NULL);
1474 	if (IS_ERR(ift)) {
1475 		in6_ifa_put(ifp);
1476 		in6_dev_put(idev);
1477 		pr_info("%s: retry temporary address regeneration\n", __func__);
1478 		write_lock_bh(&idev->lock);
1479 		goto retry;
1480 	}
1481 
1482 	spin_lock_bh(&ift->lock);
1483 	ift->ifpub = ifp;
1484 	ift->cstamp = now;
1485 	ift->tstamp = tmp_tstamp;
1486 	spin_unlock_bh(&ift->lock);
1487 
1488 	addrconf_dad_start(ift);
1489 	in6_ifa_put(ift);
1490 	in6_dev_put(idev);
1491 out:
1492 	return ret;
1493 }
1494 
1495 /*
1496  *	Choose an appropriate source address (RFC3484)
1497  */
1498 enum {
1499 	IPV6_SADDR_RULE_INIT = 0,
1500 	IPV6_SADDR_RULE_LOCAL,
1501 	IPV6_SADDR_RULE_SCOPE,
1502 	IPV6_SADDR_RULE_PREFERRED,
1503 #ifdef CONFIG_IPV6_MIP6
1504 	IPV6_SADDR_RULE_HOA,
1505 #endif
1506 	IPV6_SADDR_RULE_OIF,
1507 	IPV6_SADDR_RULE_LABEL,
1508 	IPV6_SADDR_RULE_PRIVACY,
1509 	IPV6_SADDR_RULE_ORCHID,
1510 	IPV6_SADDR_RULE_PREFIX,
1511 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1512 	IPV6_SADDR_RULE_NOT_OPTIMISTIC,
1513 #endif
1514 	IPV6_SADDR_RULE_MAX
1515 };
1516 
1517 struct ipv6_saddr_score {
1518 	int			rule;
1519 	int			addr_type;
1520 	struct inet6_ifaddr	*ifa;
1521 	DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1522 	int			scopedist;
1523 	int			matchlen;
1524 };
1525 
1526 struct ipv6_saddr_dst {
1527 	const struct in6_addr *addr;
1528 	int ifindex;
1529 	int scope;
1530 	int label;
1531 	unsigned int prefs;
1532 };
1533 
1534 static inline int ipv6_saddr_preferred(int type)
1535 {
1536 	if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
1537 		return 1;
1538 	return 0;
1539 }
1540 
1541 static bool ipv6_use_optimistic_addr(struct net *net,
1542 				     struct inet6_dev *idev)
1543 {
1544 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1545 	if (!idev)
1546 		return false;
1547 	if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad)
1548 		return false;
1549 	if (!net->ipv6.devconf_all->use_optimistic && !idev->cnf.use_optimistic)
1550 		return false;
1551 
1552 	return true;
1553 #else
1554 	return false;
1555 #endif
1556 }
1557 
1558 static bool ipv6_allow_optimistic_dad(struct net *net,
1559 				      struct inet6_dev *idev)
1560 {
1561 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1562 	if (!idev)
1563 		return false;
1564 	if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad)
1565 		return false;
1566 
1567 	return true;
1568 #else
1569 	return false;
1570 #endif
1571 }
1572 
1573 static int ipv6_get_saddr_eval(struct net *net,
1574 			       struct ipv6_saddr_score *score,
1575 			       struct ipv6_saddr_dst *dst,
1576 			       int i)
1577 {
1578 	int ret;
1579 
1580 	if (i <= score->rule) {
1581 		switch (i) {
1582 		case IPV6_SADDR_RULE_SCOPE:
1583 			ret = score->scopedist;
1584 			break;
1585 		case IPV6_SADDR_RULE_PREFIX:
1586 			ret = score->matchlen;
1587 			break;
1588 		default:
1589 			ret = !!test_bit(i, score->scorebits);
1590 		}
1591 		goto out;
1592 	}
1593 
1594 	switch (i) {
1595 	case IPV6_SADDR_RULE_INIT:
1596 		/* Rule 0: remember if hiscore is not ready yet */
1597 		ret = !!score->ifa;
1598 		break;
1599 	case IPV6_SADDR_RULE_LOCAL:
1600 		/* Rule 1: Prefer same address */
1601 		ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1602 		break;
1603 	case IPV6_SADDR_RULE_SCOPE:
1604 		/* Rule 2: Prefer appropriate scope
1605 		 *
1606 		 *      ret
1607 		 *       ^
1608 		 *    -1 |  d 15
1609 		 *    ---+--+-+---> scope
1610 		 *       |
1611 		 *       |             d is scope of the destination.
1612 		 *  B-d  |  \
1613 		 *       |   \      <- smaller scope is better if
1614 		 *  B-15 |    \        if scope is enough for destination.
1615 		 *       |             ret = B - scope (-1 <= scope >= d <= 15).
1616 		 * d-C-1 | /
1617 		 *       |/         <- greater is better
1618 		 *   -C  /             if scope is not enough for destination.
1619 		 *      /|             ret = scope - C (-1 <= d < scope <= 15).
1620 		 *
1621 		 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1622 		 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1623 		 * Assume B = 0 and we get C > 29.
1624 		 */
1625 		ret = __ipv6_addr_src_scope(score->addr_type);
1626 		if (ret >= dst->scope)
1627 			ret = -ret;
1628 		else
1629 			ret -= 128;	/* 30 is enough */
1630 		score->scopedist = ret;
1631 		break;
1632 	case IPV6_SADDR_RULE_PREFERRED:
1633 	    {
1634 		/* Rule 3: Avoid deprecated and optimistic addresses */
1635 		u8 avoid = IFA_F_DEPRECATED;
1636 
1637 		if (!ipv6_use_optimistic_addr(net, score->ifa->idev))
1638 			avoid |= IFA_F_OPTIMISTIC;
1639 		ret = ipv6_saddr_preferred(score->addr_type) ||
1640 		      !(score->ifa->flags & avoid);
1641 		break;
1642 	    }
1643 #ifdef CONFIG_IPV6_MIP6
1644 	case IPV6_SADDR_RULE_HOA:
1645 	    {
1646 		/* Rule 4: Prefer home address */
1647 		int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1648 		ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
1649 		break;
1650 	    }
1651 #endif
1652 	case IPV6_SADDR_RULE_OIF:
1653 		/* Rule 5: Prefer outgoing interface */
1654 		ret = (!dst->ifindex ||
1655 		       dst->ifindex == score->ifa->idev->dev->ifindex);
1656 		break;
1657 	case IPV6_SADDR_RULE_LABEL:
1658 		/* Rule 6: Prefer matching label */
1659 		ret = ipv6_addr_label(net,
1660 				      &score->ifa->addr, score->addr_type,
1661 				      score->ifa->idev->dev->ifindex) == dst->label;
1662 		break;
1663 	case IPV6_SADDR_RULE_PRIVACY:
1664 	    {
1665 		/* Rule 7: Prefer public address
1666 		 * Note: prefer temporary address if use_tempaddr >= 2
1667 		 */
1668 		int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1669 				!!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1670 				score->ifa->idev->cnf.use_tempaddr >= 2;
1671 		ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
1672 		break;
1673 	    }
1674 	case IPV6_SADDR_RULE_ORCHID:
1675 		/* Rule 8-: Prefer ORCHID vs ORCHID or
1676 		 *	    non-ORCHID vs non-ORCHID
1677 		 */
1678 		ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1679 			ipv6_addr_orchid(dst->addr));
1680 		break;
1681 	case IPV6_SADDR_RULE_PREFIX:
1682 		/* Rule 8: Use longest matching prefix */
1683 		ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1684 		if (ret > score->ifa->prefix_len)
1685 			ret = score->ifa->prefix_len;
1686 		score->matchlen = ret;
1687 		break;
1688 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1689 	case IPV6_SADDR_RULE_NOT_OPTIMISTIC:
1690 		/* Optimistic addresses still have lower precedence than other
1691 		 * preferred addresses.
1692 		 */
1693 		ret = !(score->ifa->flags & IFA_F_OPTIMISTIC);
1694 		break;
1695 #endif
1696 	default:
1697 		ret = 0;
1698 	}
1699 
1700 	if (ret)
1701 		__set_bit(i, score->scorebits);
1702 	score->rule = i;
1703 out:
1704 	return ret;
1705 }
1706 
1707 static int __ipv6_dev_get_saddr(struct net *net,
1708 				struct ipv6_saddr_dst *dst,
1709 				struct inet6_dev *idev,
1710 				struct ipv6_saddr_score *scores,
1711 				int hiscore_idx)
1712 {
1713 	struct ipv6_saddr_score *score = &scores[1 - hiscore_idx], *hiscore = &scores[hiscore_idx];
1714 
1715 	list_for_each_entry_rcu(score->ifa, &idev->addr_list, if_list) {
1716 		int i;
1717 
1718 		/*
1719 		 * - Tentative Address (RFC2462 section 5.4)
1720 		 *  - A tentative address is not considered
1721 		 *    "assigned to an interface" in the traditional
1722 		 *    sense, unless it is also flagged as optimistic.
1723 		 * - Candidate Source Address (section 4)
1724 		 *  - In any case, anycast addresses, multicast
1725 		 *    addresses, and the unspecified address MUST
1726 		 *    NOT be included in a candidate set.
1727 		 */
1728 		if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1729 		    (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
1730 			continue;
1731 
1732 		score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1733 
1734 		if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1735 			     score->addr_type & IPV6_ADDR_MULTICAST)) {
1736 			net_dbg_ratelimited("ADDRCONF: unspecified / multicast address assigned as unicast address on %s",
1737 					    idev->dev->name);
1738 			continue;
1739 		}
1740 
1741 		score->rule = -1;
1742 		bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
1743 
1744 		for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1745 			int minihiscore, miniscore;
1746 
1747 			minihiscore = ipv6_get_saddr_eval(net, hiscore, dst, i);
1748 			miniscore = ipv6_get_saddr_eval(net, score, dst, i);
1749 
1750 			if (minihiscore > miniscore) {
1751 				if (i == IPV6_SADDR_RULE_SCOPE &&
1752 				    score->scopedist > 0) {
1753 					/*
1754 					 * special case:
1755 					 * each remaining entry
1756 					 * has too small (not enough)
1757 					 * scope, because ifa entries
1758 					 * are sorted by their scope
1759 					 * values.
1760 					 */
1761 					goto out;
1762 				}
1763 				break;
1764 			} else if (minihiscore < miniscore) {
1765 				swap(hiscore, score);
1766 				hiscore_idx = 1 - hiscore_idx;
1767 
1768 				/* restore our iterator */
1769 				score->ifa = hiscore->ifa;
1770 
1771 				break;
1772 			}
1773 		}
1774 	}
1775 out:
1776 	return hiscore_idx;
1777 }
1778 
1779 static int ipv6_get_saddr_master(struct net *net,
1780 				 const struct net_device *dst_dev,
1781 				 const struct net_device *master,
1782 				 struct ipv6_saddr_dst *dst,
1783 				 struct ipv6_saddr_score *scores,
1784 				 int hiscore_idx)
1785 {
1786 	struct inet6_dev *idev;
1787 
1788 	idev = __in6_dev_get(dst_dev);
1789 	if (idev)
1790 		hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev,
1791 						   scores, hiscore_idx);
1792 
1793 	idev = __in6_dev_get(master);
1794 	if (idev)
1795 		hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev,
1796 						   scores, hiscore_idx);
1797 
1798 	return hiscore_idx;
1799 }
1800 
1801 int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
1802 		       const struct in6_addr *daddr, unsigned int prefs,
1803 		       struct in6_addr *saddr)
1804 {
1805 	struct ipv6_saddr_score scores[2], *hiscore;
1806 	struct ipv6_saddr_dst dst;
1807 	struct inet6_dev *idev;
1808 	struct net_device *dev;
1809 	int dst_type;
1810 	bool use_oif_addr = false;
1811 	int hiscore_idx = 0;
1812 	int ret = 0;
1813 
1814 	dst_type = __ipv6_addr_type(daddr);
1815 	dst.addr = daddr;
1816 	dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1817 	dst.scope = __ipv6_addr_src_scope(dst_type);
1818 	dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
1819 	dst.prefs = prefs;
1820 
1821 	scores[hiscore_idx].rule = -1;
1822 	scores[hiscore_idx].ifa = NULL;
1823 
1824 	rcu_read_lock();
1825 
1826 	/* Candidate Source Address (section 4)
1827 	 *  - multicast and link-local destination address,
1828 	 *    the set of candidate source address MUST only
1829 	 *    include addresses assigned to interfaces
1830 	 *    belonging to the same link as the outgoing
1831 	 *    interface.
1832 	 * (- For site-local destination addresses, the
1833 	 *    set of candidate source addresses MUST only
1834 	 *    include addresses assigned to interfaces
1835 	 *    belonging to the same site as the outgoing
1836 	 *    interface.)
1837 	 *  - "It is RECOMMENDED that the candidate source addresses
1838 	 *    be the set of unicast addresses assigned to the
1839 	 *    interface that will be used to send to the destination
1840 	 *    (the 'outgoing' interface)." (RFC 6724)
1841 	 */
1842 	if (dst_dev) {
1843 		idev = __in6_dev_get(dst_dev);
1844 		if ((dst_type & IPV6_ADDR_MULTICAST) ||
1845 		    dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL ||
1846 		    (idev && idev->cnf.use_oif_addrs_only)) {
1847 			use_oif_addr = true;
1848 		}
1849 	}
1850 
1851 	if (use_oif_addr) {
1852 		if (idev)
1853 			hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx);
1854 	} else {
1855 		const struct net_device *master;
1856 		int master_idx = 0;
1857 
1858 		/* if dst_dev exists and is enslaved to an L3 device, then
1859 		 * prefer addresses from dst_dev and then the master over
1860 		 * any other enslaved devices in the L3 domain.
1861 		 */
1862 		master = l3mdev_master_dev_rcu(dst_dev);
1863 		if (master) {
1864 			master_idx = master->ifindex;
1865 
1866 			hiscore_idx = ipv6_get_saddr_master(net, dst_dev,
1867 							    master, &dst,
1868 							    scores, hiscore_idx);
1869 
1870 			if (scores[hiscore_idx].ifa)
1871 				goto out;
1872 		}
1873 
1874 		for_each_netdev_rcu(net, dev) {
1875 			/* only consider addresses on devices in the
1876 			 * same L3 domain
1877 			 */
1878 			if (l3mdev_master_ifindex_rcu(dev) != master_idx)
1879 				continue;
1880 			idev = __in6_dev_get(dev);
1881 			if (!idev)
1882 				continue;
1883 			hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx);
1884 		}
1885 	}
1886 
1887 out:
1888 	hiscore = &scores[hiscore_idx];
1889 	if (!hiscore->ifa)
1890 		ret = -EADDRNOTAVAIL;
1891 	else
1892 		*saddr = hiscore->ifa->addr;
1893 
1894 	rcu_read_unlock();
1895 	return ret;
1896 }
1897 EXPORT_SYMBOL(ipv6_dev_get_saddr);
1898 
1899 static int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1900 			      u32 banned_flags)
1901 {
1902 	struct inet6_ifaddr *ifp;
1903 	int err = -EADDRNOTAVAIL;
1904 
1905 	list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1906 		if (ifp->scope > IFA_LINK)
1907 			break;
1908 		if (ifp->scope == IFA_LINK &&
1909 		    !(ifp->flags & banned_flags)) {
1910 			*addr = ifp->addr;
1911 			err = 0;
1912 			break;
1913 		}
1914 	}
1915 	return err;
1916 }
1917 
1918 int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1919 		    u32 banned_flags)
1920 {
1921 	struct inet6_dev *idev;
1922 	int err = -EADDRNOTAVAIL;
1923 
1924 	rcu_read_lock();
1925 	idev = __in6_dev_get(dev);
1926 	if (idev) {
1927 		read_lock_bh(&idev->lock);
1928 		err = __ipv6_get_lladdr(idev, addr, banned_flags);
1929 		read_unlock_bh(&idev->lock);
1930 	}
1931 	rcu_read_unlock();
1932 	return err;
1933 }
1934 
1935 static int ipv6_count_addresses(const struct inet6_dev *idev)
1936 {
1937 	const struct inet6_ifaddr *ifp;
1938 	int cnt = 0;
1939 
1940 	rcu_read_lock();
1941 	list_for_each_entry_rcu(ifp, &idev->addr_list, if_list)
1942 		cnt++;
1943 	rcu_read_unlock();
1944 	return cnt;
1945 }
1946 
1947 int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
1948 		  const struct net_device *dev, int strict)
1949 {
1950 	return ipv6_chk_addr_and_flags(net, addr, dev, !dev,
1951 				       strict, IFA_F_TENTATIVE);
1952 }
1953 EXPORT_SYMBOL(ipv6_chk_addr);
1954 
1955 /* device argument is used to find the L3 domain of interest. If
1956  * skip_dev_check is set, then the ifp device is not checked against
1957  * the passed in dev argument. So the 2 cases for addresses checks are:
1958  *   1. does the address exist in the L3 domain that dev is part of
1959  *      (skip_dev_check = true), or
1960  *
1961  *   2. does the address exist on the specific device
1962  *      (skip_dev_check = false)
1963  */
1964 static struct net_device *
1965 __ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr,
1966 			  const struct net_device *dev, bool skip_dev_check,
1967 			  int strict, u32 banned_flags)
1968 {
1969 	unsigned int hash = inet6_addr_hash(net, addr);
1970 	struct net_device *l3mdev, *ndev;
1971 	struct inet6_ifaddr *ifp;
1972 	u32 ifp_flags;
1973 
1974 	rcu_read_lock();
1975 
1976 	l3mdev = l3mdev_master_dev_rcu(dev);
1977 	if (skip_dev_check)
1978 		dev = NULL;
1979 
1980 	hlist_for_each_entry_rcu(ifp, &net->ipv6.inet6_addr_lst[hash], addr_lst) {
1981 		ndev = ifp->idev->dev;
1982 
1983 		if (l3mdev_master_dev_rcu(ndev) != l3mdev)
1984 			continue;
1985 
1986 		/* Decouple optimistic from tentative for evaluation here.
1987 		 * Ban optimistic addresses explicitly, when required.
1988 		 */
1989 		ifp_flags = (ifp->flags&IFA_F_OPTIMISTIC)
1990 			    ? (ifp->flags&~IFA_F_TENTATIVE)
1991 			    : ifp->flags;
1992 		if (ipv6_addr_equal(&ifp->addr, addr) &&
1993 		    !(ifp_flags&banned_flags) &&
1994 		    (!dev || ndev == dev ||
1995 		     !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1996 			rcu_read_unlock();
1997 			return ndev;
1998 		}
1999 	}
2000 
2001 	rcu_read_unlock();
2002 	return NULL;
2003 }
2004 
2005 int ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr,
2006 			    const struct net_device *dev, bool skip_dev_check,
2007 			    int strict, u32 banned_flags)
2008 {
2009 	return __ipv6_chk_addr_and_flags(net, addr, dev, skip_dev_check,
2010 					 strict, banned_flags) ? 1 : 0;
2011 }
2012 EXPORT_SYMBOL(ipv6_chk_addr_and_flags);
2013 
2014 
2015 /* Compares an address/prefix_len with addresses on device @dev.
2016  * If one is found it returns true.
2017  */
2018 bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
2019 	const unsigned int prefix_len, struct net_device *dev)
2020 {
2021 	const struct inet6_ifaddr *ifa;
2022 	const struct inet6_dev *idev;
2023 	bool ret = false;
2024 
2025 	rcu_read_lock();
2026 	idev = __in6_dev_get(dev);
2027 	if (idev) {
2028 		list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) {
2029 			ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
2030 			if (ret)
2031 				break;
2032 		}
2033 	}
2034 	rcu_read_unlock();
2035 
2036 	return ret;
2037 }
2038 EXPORT_SYMBOL(ipv6_chk_custom_prefix);
2039 
2040 int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
2041 {
2042 	const struct inet6_ifaddr *ifa;
2043 	const struct inet6_dev *idev;
2044 	int	onlink;
2045 
2046 	onlink = 0;
2047 	rcu_read_lock();
2048 	idev = __in6_dev_get(dev);
2049 	if (idev) {
2050 		list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) {
2051 			onlink = ipv6_prefix_equal(addr, &ifa->addr,
2052 						   ifa->prefix_len);
2053 			if (onlink)
2054 				break;
2055 		}
2056 	}
2057 	rcu_read_unlock();
2058 	return onlink;
2059 }
2060 EXPORT_SYMBOL(ipv6_chk_prefix);
2061 
2062 /**
2063  * ipv6_dev_find - find the first device with a given source address.
2064  * @net: the net namespace
2065  * @addr: the source address
2066  * @dev: used to find the L3 domain of interest
2067  *
2068  * The caller should be protected by RCU, or RTNL.
2069  */
2070 struct net_device *ipv6_dev_find(struct net *net, const struct in6_addr *addr,
2071 				 struct net_device *dev)
2072 {
2073 	return __ipv6_chk_addr_and_flags(net, addr, dev, !dev, 1,
2074 					 IFA_F_TENTATIVE);
2075 }
2076 EXPORT_SYMBOL(ipv6_dev_find);
2077 
2078 struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
2079 				     struct net_device *dev, int strict)
2080 {
2081 	unsigned int hash = inet6_addr_hash(net, addr);
2082 	struct inet6_ifaddr *ifp, *result = NULL;
2083 
2084 	rcu_read_lock();
2085 	hlist_for_each_entry_rcu(ifp, &net->ipv6.inet6_addr_lst[hash], addr_lst) {
2086 		if (ipv6_addr_equal(&ifp->addr, addr)) {
2087 			if (!dev || ifp->idev->dev == dev ||
2088 			    !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
2089 				result = ifp;
2090 				in6_ifa_hold(ifp);
2091 				break;
2092 			}
2093 		}
2094 	}
2095 	rcu_read_unlock();
2096 
2097 	return result;
2098 }
2099 
2100 /* Gets referenced address, destroys ifaddr */
2101 
2102 static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
2103 {
2104 	if (dad_failed)
2105 		ifp->flags |= IFA_F_DADFAILED;
2106 
2107 	if (ifp->flags&IFA_F_TEMPORARY) {
2108 		struct inet6_ifaddr *ifpub;
2109 		spin_lock_bh(&ifp->lock);
2110 		ifpub = ifp->ifpub;
2111 		if (ifpub) {
2112 			in6_ifa_hold(ifpub);
2113 			spin_unlock_bh(&ifp->lock);
2114 			ipv6_create_tempaddr(ifpub, true);
2115 			in6_ifa_put(ifpub);
2116 		} else {
2117 			spin_unlock_bh(&ifp->lock);
2118 		}
2119 		ipv6_del_addr(ifp);
2120 	} else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) {
2121 		spin_lock_bh(&ifp->lock);
2122 		addrconf_del_dad_work(ifp);
2123 		ifp->flags |= IFA_F_TENTATIVE;
2124 		if (dad_failed)
2125 			ifp->flags &= ~IFA_F_OPTIMISTIC;
2126 		spin_unlock_bh(&ifp->lock);
2127 		if (dad_failed)
2128 			ipv6_ifa_notify(0, ifp);
2129 		in6_ifa_put(ifp);
2130 	} else {
2131 		ipv6_del_addr(ifp);
2132 	}
2133 }
2134 
2135 static int addrconf_dad_end(struct inet6_ifaddr *ifp)
2136 {
2137 	int err = -ENOENT;
2138 
2139 	spin_lock_bh(&ifp->lock);
2140 	if (ifp->state == INET6_IFADDR_STATE_DAD) {
2141 		ifp->state = INET6_IFADDR_STATE_POSTDAD;
2142 		err = 0;
2143 	}
2144 	spin_unlock_bh(&ifp->lock);
2145 
2146 	return err;
2147 }
2148 
2149 void addrconf_dad_failure(struct sk_buff *skb, struct inet6_ifaddr *ifp)
2150 {
2151 	struct inet6_dev *idev = ifp->idev;
2152 	struct net *net = dev_net(idev->dev);
2153 
2154 	if (addrconf_dad_end(ifp)) {
2155 		in6_ifa_put(ifp);
2156 		return;
2157 	}
2158 
2159 	net_info_ratelimited("%s: IPv6 duplicate address %pI6c used by %pM detected!\n",
2160 			     ifp->idev->dev->name, &ifp->addr, eth_hdr(skb)->h_source);
2161 
2162 	spin_lock_bh(&ifp->lock);
2163 
2164 	if (ifp->flags & IFA_F_STABLE_PRIVACY) {
2165 		struct in6_addr new_addr;
2166 		struct inet6_ifaddr *ifp2;
2167 		int retries = ifp->stable_privacy_retry + 1;
2168 		struct ifa6_config cfg = {
2169 			.pfx = &new_addr,
2170 			.plen = ifp->prefix_len,
2171 			.ifa_flags = ifp->flags,
2172 			.valid_lft = ifp->valid_lft,
2173 			.preferred_lft = ifp->prefered_lft,
2174 			.scope = ifp->scope,
2175 		};
2176 
2177 		if (retries > net->ipv6.sysctl.idgen_retries) {
2178 			net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n",
2179 					     ifp->idev->dev->name);
2180 			goto errdad;
2181 		}
2182 
2183 		new_addr = ifp->addr;
2184 		if (ipv6_generate_stable_address(&new_addr, retries,
2185 						 idev))
2186 			goto errdad;
2187 
2188 		spin_unlock_bh(&ifp->lock);
2189 
2190 		if (idev->cnf.max_addresses &&
2191 		    ipv6_count_addresses(idev) >=
2192 		    idev->cnf.max_addresses)
2193 			goto lock_errdad;
2194 
2195 		net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n",
2196 				     ifp->idev->dev->name);
2197 
2198 		ifp2 = ipv6_add_addr(idev, &cfg, false, NULL);
2199 		if (IS_ERR(ifp2))
2200 			goto lock_errdad;
2201 
2202 		spin_lock_bh(&ifp2->lock);
2203 		ifp2->stable_privacy_retry = retries;
2204 		ifp2->state = INET6_IFADDR_STATE_PREDAD;
2205 		spin_unlock_bh(&ifp2->lock);
2206 
2207 		addrconf_mod_dad_work(ifp2, net->ipv6.sysctl.idgen_delay);
2208 		in6_ifa_put(ifp2);
2209 lock_errdad:
2210 		spin_lock_bh(&ifp->lock);
2211 	}
2212 
2213 errdad:
2214 	/* transition from _POSTDAD to _ERRDAD */
2215 	ifp->state = INET6_IFADDR_STATE_ERRDAD;
2216 	spin_unlock_bh(&ifp->lock);
2217 
2218 	addrconf_mod_dad_work(ifp, 0);
2219 	in6_ifa_put(ifp);
2220 }
2221 
2222 /* Join to solicited addr multicast group.
2223  * caller must hold RTNL */
2224 void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
2225 {
2226 	struct in6_addr maddr;
2227 
2228 	if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2229 		return;
2230 
2231 	addrconf_addr_solict_mult(addr, &maddr);
2232 	ipv6_dev_mc_inc(dev, &maddr);
2233 }
2234 
2235 /* caller must hold RTNL */
2236 void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
2237 {
2238 	struct in6_addr maddr;
2239 
2240 	if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2241 		return;
2242 
2243 	addrconf_addr_solict_mult(addr, &maddr);
2244 	__ipv6_dev_mc_dec(idev, &maddr);
2245 }
2246 
2247 /* caller must hold RTNL */
2248 static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
2249 {
2250 	struct in6_addr addr;
2251 
2252 	if (ifp->prefix_len >= 127) /* RFC 6164 */
2253 		return;
2254 	ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2255 	if (ipv6_addr_any(&addr))
2256 		return;
2257 	__ipv6_dev_ac_inc(ifp->idev, &addr);
2258 }
2259 
2260 /* caller must hold RTNL */
2261 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
2262 {
2263 	struct in6_addr addr;
2264 
2265 	if (ifp->prefix_len >= 127) /* RFC 6164 */
2266 		return;
2267 	ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2268 	if (ipv6_addr_any(&addr))
2269 		return;
2270 	__ipv6_dev_ac_dec(ifp->idev, &addr);
2271 }
2272 
2273 static int addrconf_ifid_6lowpan(u8 *eui, struct net_device *dev)
2274 {
2275 	switch (dev->addr_len) {
2276 	case ETH_ALEN:
2277 		memcpy(eui, dev->dev_addr, 3);
2278 		eui[3] = 0xFF;
2279 		eui[4] = 0xFE;
2280 		memcpy(eui + 5, dev->dev_addr + 3, 3);
2281 		break;
2282 	case EUI64_ADDR_LEN:
2283 		memcpy(eui, dev->dev_addr, EUI64_ADDR_LEN);
2284 		eui[0] ^= 2;
2285 		break;
2286 	default:
2287 		return -1;
2288 	}
2289 
2290 	return 0;
2291 }
2292 
2293 static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
2294 {
2295 	const union fwnet_hwaddr *ha;
2296 
2297 	if (dev->addr_len != FWNET_ALEN)
2298 		return -1;
2299 
2300 	ha = (const union fwnet_hwaddr *)dev->dev_addr;
2301 
2302 	memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
2303 	eui[0] ^= 2;
2304 	return 0;
2305 }
2306 
2307 static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
2308 {
2309 	/* XXX: inherit EUI-64 from other interface -- yoshfuji */
2310 	if (dev->addr_len != ARCNET_ALEN)
2311 		return -1;
2312 	memset(eui, 0, 7);
2313 	eui[7] = *(u8 *)dev->dev_addr;
2314 	return 0;
2315 }
2316 
2317 static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
2318 {
2319 	if (dev->addr_len != INFINIBAND_ALEN)
2320 		return -1;
2321 	memcpy(eui, dev->dev_addr + 12, 8);
2322 	eui[0] |= 2;
2323 	return 0;
2324 }
2325 
2326 static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
2327 {
2328 	if (addr == 0)
2329 		return -1;
2330 	eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
2331 		  ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
2332 		  ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
2333 		  ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
2334 		  ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
2335 		  ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
2336 	eui[1] = 0;
2337 	eui[2] = 0x5E;
2338 	eui[3] = 0xFE;
2339 	memcpy(eui + 4, &addr, 4);
2340 	return 0;
2341 }
2342 
2343 static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
2344 {
2345 	if (dev->priv_flags & IFF_ISATAP)
2346 		return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2347 	return -1;
2348 }
2349 
2350 static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
2351 {
2352 	return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2353 }
2354 
2355 static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
2356 {
2357 	memcpy(eui, dev->perm_addr, 3);
2358 	memcpy(eui + 5, dev->perm_addr + 3, 3);
2359 	eui[3] = 0xFF;
2360 	eui[4] = 0xFE;
2361 	eui[0] ^= 2;
2362 	return 0;
2363 }
2364 
2365 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
2366 {
2367 	switch (dev->type) {
2368 	case ARPHRD_ETHER:
2369 	case ARPHRD_FDDI:
2370 		return addrconf_ifid_eui48(eui, dev);
2371 	case ARPHRD_ARCNET:
2372 		return addrconf_ifid_arcnet(eui, dev);
2373 	case ARPHRD_INFINIBAND:
2374 		return addrconf_ifid_infiniband(eui, dev);
2375 	case ARPHRD_SIT:
2376 		return addrconf_ifid_sit(eui, dev);
2377 	case ARPHRD_IPGRE:
2378 	case ARPHRD_TUNNEL:
2379 		return addrconf_ifid_gre(eui, dev);
2380 	case ARPHRD_6LOWPAN:
2381 		return addrconf_ifid_6lowpan(eui, dev);
2382 	case ARPHRD_IEEE1394:
2383 		return addrconf_ifid_ieee1394(eui, dev);
2384 	case ARPHRD_TUNNEL6:
2385 	case ARPHRD_IP6GRE:
2386 	case ARPHRD_RAWIP:
2387 		return addrconf_ifid_ip6tnl(eui, dev);
2388 	}
2389 	return -1;
2390 }
2391 
2392 static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
2393 {
2394 	int err = -1;
2395 	struct inet6_ifaddr *ifp;
2396 
2397 	read_lock_bh(&idev->lock);
2398 	list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
2399 		if (ifp->scope > IFA_LINK)
2400 			break;
2401 		if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
2402 			memcpy(eui, ifp->addr.s6_addr+8, 8);
2403 			err = 0;
2404 			break;
2405 		}
2406 	}
2407 	read_unlock_bh(&idev->lock);
2408 	return err;
2409 }
2410 
2411 /* Generation of a randomized Interface Identifier
2412  * draft-ietf-6man-rfc4941bis, Section 3.3.1
2413  */
2414 
2415 static void ipv6_gen_rnd_iid(struct in6_addr *addr)
2416 {
2417 regen:
2418 	get_random_bytes(&addr->s6_addr[8], 8);
2419 
2420 	/* <draft-ietf-6man-rfc4941bis-08.txt>, Section 3.3.1:
2421 	 * check if generated address is not inappropriate:
2422 	 *
2423 	 * - Reserved IPv6 Interface Identifiers
2424 	 * - XXX: already assigned to an address on the device
2425 	 */
2426 
2427 	/* Subnet-router anycast: 0000:0000:0000:0000 */
2428 	if (!(addr->s6_addr32[2] | addr->s6_addr32[3]))
2429 		goto regen;
2430 
2431 	/* IANA Ethernet block: 0200:5EFF:FE00:0000-0200:5EFF:FE00:5212
2432 	 * Proxy Mobile IPv6:   0200:5EFF:FE00:5213
2433 	 * IANA Ethernet block: 0200:5EFF:FE00:5214-0200:5EFF:FEFF:FFFF
2434 	 */
2435 	if (ntohl(addr->s6_addr32[2]) == 0x02005eff &&
2436 	    (ntohl(addr->s6_addr32[3]) & 0Xff000000) == 0xfe000000)
2437 		goto regen;
2438 
2439 	/* Reserved subnet anycast addresses */
2440 	if (ntohl(addr->s6_addr32[2]) == 0xfdffffff &&
2441 	    ntohl(addr->s6_addr32[3]) >= 0Xffffff80)
2442 		goto regen;
2443 }
2444 
2445 /*
2446  *	Add prefix route.
2447  */
2448 
2449 static void
2450 addrconf_prefix_route(struct in6_addr *pfx, int plen, u32 metric,
2451 		      struct net_device *dev, unsigned long expires,
2452 		      u32 flags, gfp_t gfp_flags)
2453 {
2454 	struct fib6_config cfg = {
2455 		.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX,
2456 		.fc_metric = metric ? : IP6_RT_PRIO_ADDRCONF,
2457 		.fc_ifindex = dev->ifindex,
2458 		.fc_expires = expires,
2459 		.fc_dst_len = plen,
2460 		.fc_flags = RTF_UP | flags,
2461 		.fc_nlinfo.nl_net = dev_net(dev),
2462 		.fc_protocol = RTPROT_KERNEL,
2463 		.fc_type = RTN_UNICAST,
2464 	};
2465 
2466 	cfg.fc_dst = *pfx;
2467 
2468 	/* Prevent useless cloning on PtP SIT.
2469 	   This thing is done here expecting that the whole
2470 	   class of non-broadcast devices need not cloning.
2471 	 */
2472 #if IS_ENABLED(CONFIG_IPV6_SIT)
2473 	if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
2474 		cfg.fc_flags |= RTF_NONEXTHOP;
2475 #endif
2476 
2477 	ip6_route_add(&cfg, gfp_flags, NULL);
2478 }
2479 
2480 
2481 static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
2482 						  int plen,
2483 						  const struct net_device *dev,
2484 						  u32 flags, u32 noflags,
2485 						  bool no_gw)
2486 {
2487 	struct fib6_node *fn;
2488 	struct fib6_info *rt = NULL;
2489 	struct fib6_table *table;
2490 	u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX;
2491 
2492 	table = fib6_get_table(dev_net(dev), tb_id);
2493 	if (!table)
2494 		return NULL;
2495 
2496 	rcu_read_lock();
2497 	fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0, true);
2498 	if (!fn)
2499 		goto out;
2500 
2501 	for_each_fib6_node_rt_rcu(fn) {
2502 		/* prefix routes only use builtin fib6_nh */
2503 		if (rt->nh)
2504 			continue;
2505 
2506 		if (rt->fib6_nh->fib_nh_dev->ifindex != dev->ifindex)
2507 			continue;
2508 		if (no_gw && rt->fib6_nh->fib_nh_gw_family)
2509 			continue;
2510 		if ((rt->fib6_flags & flags) != flags)
2511 			continue;
2512 		if ((rt->fib6_flags & noflags) != 0)
2513 			continue;
2514 		if (!fib6_info_hold_safe(rt))
2515 			continue;
2516 		break;
2517 	}
2518 out:
2519 	rcu_read_unlock();
2520 	return rt;
2521 }
2522 
2523 
2524 /* Create "default" multicast route to the interface */
2525 
2526 static void addrconf_add_mroute(struct net_device *dev)
2527 {
2528 	struct fib6_config cfg = {
2529 		.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_LOCAL,
2530 		.fc_metric = IP6_RT_PRIO_ADDRCONF,
2531 		.fc_ifindex = dev->ifindex,
2532 		.fc_dst_len = 8,
2533 		.fc_flags = RTF_UP,
2534 		.fc_type = RTN_MULTICAST,
2535 		.fc_nlinfo.nl_net = dev_net(dev),
2536 		.fc_protocol = RTPROT_KERNEL,
2537 	};
2538 
2539 	ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2540 
2541 	ip6_route_add(&cfg, GFP_KERNEL, NULL);
2542 }
2543 
2544 static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2545 {
2546 	struct inet6_dev *idev;
2547 
2548 	ASSERT_RTNL();
2549 
2550 	idev = ipv6_find_idev(dev);
2551 	if (IS_ERR(idev))
2552 		return idev;
2553 
2554 	if (idev->cnf.disable_ipv6)
2555 		return ERR_PTR(-EACCES);
2556 
2557 	/* Add default multicast route */
2558 	if (!(dev->flags & IFF_LOOPBACK) && !netif_is_l3_master(dev))
2559 		addrconf_add_mroute(dev);
2560 
2561 	return idev;
2562 }
2563 
2564 static void manage_tempaddrs(struct inet6_dev *idev,
2565 			     struct inet6_ifaddr *ifp,
2566 			     __u32 valid_lft, __u32 prefered_lft,
2567 			     bool create, unsigned long now)
2568 {
2569 	u32 flags;
2570 	struct inet6_ifaddr *ift;
2571 
2572 	read_lock_bh(&idev->lock);
2573 	/* update all temporary addresses in the list */
2574 	list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2575 		int age, max_valid, max_prefered;
2576 
2577 		if (ifp != ift->ifpub)
2578 			continue;
2579 
2580 		/* RFC 4941 section 3.3:
2581 		 * If a received option will extend the lifetime of a public
2582 		 * address, the lifetimes of temporary addresses should
2583 		 * be extended, subject to the overall constraint that no
2584 		 * temporary addresses should ever remain "valid" or "preferred"
2585 		 * for a time longer than (TEMP_VALID_LIFETIME) or
2586 		 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2587 		 */
2588 		age = (now - ift->cstamp) / HZ;
2589 		max_valid = idev->cnf.temp_valid_lft - age;
2590 		if (max_valid < 0)
2591 			max_valid = 0;
2592 
2593 		max_prefered = idev->cnf.temp_prefered_lft -
2594 			       idev->desync_factor - age;
2595 		if (max_prefered < 0)
2596 			max_prefered = 0;
2597 
2598 		if (valid_lft > max_valid)
2599 			valid_lft = max_valid;
2600 
2601 		if (prefered_lft > max_prefered)
2602 			prefered_lft = max_prefered;
2603 
2604 		spin_lock(&ift->lock);
2605 		flags = ift->flags;
2606 		ift->valid_lft = valid_lft;
2607 		ift->prefered_lft = prefered_lft;
2608 		ift->tstamp = now;
2609 		if (prefered_lft > 0)
2610 			ift->flags &= ~IFA_F_DEPRECATED;
2611 
2612 		spin_unlock(&ift->lock);
2613 		if (!(flags&IFA_F_TENTATIVE))
2614 			ipv6_ifa_notify(0, ift);
2615 	}
2616 
2617 	/* Also create a temporary address if it's enabled but no temporary
2618 	 * address currently exists.
2619 	 * However, we get called with valid_lft == 0, prefered_lft == 0, create == false
2620 	 * as part of cleanup (ie. deleting the mngtmpaddr).
2621 	 * We don't want that to result in creating a new temporary ip address.
2622 	 */
2623 	if (list_empty(&idev->tempaddr_list) && (valid_lft || prefered_lft))
2624 		create = true;
2625 
2626 	if (create && idev->cnf.use_tempaddr > 0) {
2627 		/* When a new public address is created as described
2628 		 * in [ADDRCONF], also create a new temporary address.
2629 		 */
2630 		read_unlock_bh(&idev->lock);
2631 		ipv6_create_tempaddr(ifp, false);
2632 	} else {
2633 		read_unlock_bh(&idev->lock);
2634 	}
2635 }
2636 
2637 static bool is_addr_mode_generate_stable(struct inet6_dev *idev)
2638 {
2639 	return idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY ||
2640 	       idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_RANDOM;
2641 }
2642 
2643 int addrconf_prefix_rcv_add_addr(struct net *net, struct net_device *dev,
2644 				 const struct prefix_info *pinfo,
2645 				 struct inet6_dev *in6_dev,
2646 				 const struct in6_addr *addr, int addr_type,
2647 				 u32 addr_flags, bool sllao, bool tokenized,
2648 				 __u32 valid_lft, u32 prefered_lft)
2649 {
2650 	struct inet6_ifaddr *ifp = ipv6_get_ifaddr(net, addr, dev, 1);
2651 	int create = 0, update_lft = 0;
2652 
2653 	if (!ifp && valid_lft) {
2654 		int max_addresses = in6_dev->cnf.max_addresses;
2655 		struct ifa6_config cfg = {
2656 			.pfx = addr,
2657 			.plen = pinfo->prefix_len,
2658 			.ifa_flags = addr_flags,
2659 			.valid_lft = valid_lft,
2660 			.preferred_lft = prefered_lft,
2661 			.scope = addr_type & IPV6_ADDR_SCOPE_MASK,
2662 			.ifa_proto = IFAPROT_KERNEL_RA
2663 		};
2664 
2665 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2666 		if ((net->ipv6.devconf_all->optimistic_dad ||
2667 		     in6_dev->cnf.optimistic_dad) &&
2668 		    !net->ipv6.devconf_all->forwarding && sllao)
2669 			cfg.ifa_flags |= IFA_F_OPTIMISTIC;
2670 #endif
2671 
2672 		/* Do not allow to create too much of autoconfigured
2673 		 * addresses; this would be too easy way to crash kernel.
2674 		 */
2675 		if (!max_addresses ||
2676 		    ipv6_count_addresses(in6_dev) < max_addresses)
2677 			ifp = ipv6_add_addr(in6_dev, &cfg, false, NULL);
2678 
2679 		if (IS_ERR_OR_NULL(ifp))
2680 			return -1;
2681 
2682 		create = 1;
2683 		spin_lock_bh(&ifp->lock);
2684 		ifp->flags |= IFA_F_MANAGETEMPADDR;
2685 		ifp->cstamp = jiffies;
2686 		ifp->tokenized = tokenized;
2687 		spin_unlock_bh(&ifp->lock);
2688 		addrconf_dad_start(ifp);
2689 	}
2690 
2691 	if (ifp) {
2692 		u32 flags;
2693 		unsigned long now;
2694 		u32 stored_lft;
2695 
2696 		/* update lifetime (RFC2462 5.5.3 e) */
2697 		spin_lock_bh(&ifp->lock);
2698 		now = jiffies;
2699 		if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2700 			stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2701 		else
2702 			stored_lft = 0;
2703 
2704 		/* RFC4862 Section 5.5.3e:
2705 		 * "Note that the preferred lifetime of the
2706 		 *  corresponding address is always reset to
2707 		 *  the Preferred Lifetime in the received
2708 		 *  Prefix Information option, regardless of
2709 		 *  whether the valid lifetime is also reset or
2710 		 *  ignored."
2711 		 *
2712 		 * So we should always update prefered_lft here.
2713 		 */
2714 		update_lft = !create && stored_lft;
2715 
2716 		if (update_lft && !in6_dev->cnf.ra_honor_pio_life) {
2717 			const u32 minimum_lft = min_t(u32,
2718 				stored_lft, MIN_VALID_LIFETIME);
2719 			valid_lft = max(valid_lft, minimum_lft);
2720 		}
2721 
2722 		if (update_lft) {
2723 			ifp->valid_lft = valid_lft;
2724 			ifp->prefered_lft = prefered_lft;
2725 			ifp->tstamp = now;
2726 			flags = ifp->flags;
2727 			ifp->flags &= ~IFA_F_DEPRECATED;
2728 			spin_unlock_bh(&ifp->lock);
2729 
2730 			if (!(flags&IFA_F_TENTATIVE))
2731 				ipv6_ifa_notify(0, ifp);
2732 		} else
2733 			spin_unlock_bh(&ifp->lock);
2734 
2735 		manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2736 				 create, now);
2737 
2738 		in6_ifa_put(ifp);
2739 		addrconf_verify(net);
2740 	}
2741 
2742 	return 0;
2743 }
2744 EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr);
2745 
2746 void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
2747 {
2748 	struct prefix_info *pinfo;
2749 	struct fib6_table *table;
2750 	__u32 valid_lft;
2751 	__u32 prefered_lft;
2752 	int addr_type, err;
2753 	u32 addr_flags = 0;
2754 	struct inet6_dev *in6_dev;
2755 	struct net *net = dev_net(dev);
2756 
2757 	pinfo = (struct prefix_info *) opt;
2758 
2759 	if (len < sizeof(struct prefix_info)) {
2760 		netdev_dbg(dev, "addrconf: prefix option too short\n");
2761 		return;
2762 	}
2763 
2764 	/*
2765 	 *	Validation checks ([ADDRCONF], page 19)
2766 	 */
2767 
2768 	addr_type = ipv6_addr_type(&pinfo->prefix);
2769 
2770 	if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2771 		return;
2772 
2773 	valid_lft = ntohl(pinfo->valid);
2774 	prefered_lft = ntohl(pinfo->prefered);
2775 
2776 	if (prefered_lft > valid_lft) {
2777 		net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
2778 		return;
2779 	}
2780 
2781 	in6_dev = in6_dev_get(dev);
2782 
2783 	if (!in6_dev) {
2784 		net_dbg_ratelimited("addrconf: device %s not configured\n",
2785 				    dev->name);
2786 		return;
2787 	}
2788 
2789 	if (valid_lft != 0 && valid_lft < in6_dev->cnf.accept_ra_min_lft)
2790 		goto put;
2791 
2792 	/*
2793 	 *	Two things going on here:
2794 	 *	1) Add routes for on-link prefixes
2795 	 *	2) Configure prefixes with the auto flag set
2796 	 */
2797 
2798 	if (pinfo->onlink) {
2799 		struct fib6_info *rt;
2800 		unsigned long rt_expires;
2801 
2802 		/* Avoid arithmetic overflow. Really, we could
2803 		 * save rt_expires in seconds, likely valid_lft,
2804 		 * but it would require division in fib gc, that it
2805 		 * not good.
2806 		 */
2807 		if (HZ > USER_HZ)
2808 			rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2809 		else
2810 			rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
2811 
2812 		if (addrconf_finite_timeout(rt_expires))
2813 			rt_expires *= HZ;
2814 
2815 		rt = addrconf_get_prefix_route(&pinfo->prefix,
2816 					       pinfo->prefix_len,
2817 					       dev,
2818 					       RTF_ADDRCONF | RTF_PREFIX_RT,
2819 					       RTF_DEFAULT, true);
2820 
2821 		if (rt) {
2822 			/* Autoconf prefix route */
2823 			if (valid_lft == 0) {
2824 				ip6_del_rt(net, rt, false);
2825 				rt = NULL;
2826 			} else {
2827 				table = rt->fib6_table;
2828 				spin_lock_bh(&table->tb6_lock);
2829 
2830 				if (addrconf_finite_timeout(rt_expires)) {
2831 					/* not infinity */
2832 					fib6_set_expires(rt, jiffies + rt_expires);
2833 					fib6_add_gc_list(rt);
2834 				} else {
2835 					fib6_clean_expires(rt);
2836 					fib6_remove_gc_list(rt);
2837 				}
2838 
2839 				spin_unlock_bh(&table->tb6_lock);
2840 			}
2841 		} else if (valid_lft) {
2842 			clock_t expires = 0;
2843 			int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2844 			if (addrconf_finite_timeout(rt_expires)) {
2845 				/* not infinity */
2846 				flags |= RTF_EXPIRES;
2847 				expires = jiffies_to_clock_t(rt_expires);
2848 			}
2849 			addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
2850 					      0, dev, expires, flags,
2851 					      GFP_ATOMIC);
2852 		}
2853 		fib6_info_release(rt);
2854 	}
2855 
2856 	/* Try to figure out our local address for this prefix */
2857 
2858 	if (pinfo->autoconf && in6_dev->cnf.autoconf) {
2859 		struct in6_addr addr;
2860 		bool tokenized = false, dev_addr_generated = false;
2861 
2862 		if (pinfo->prefix_len == 64) {
2863 			memcpy(&addr, &pinfo->prefix, 8);
2864 
2865 			if (!ipv6_addr_any(&in6_dev->token)) {
2866 				read_lock_bh(&in6_dev->lock);
2867 				memcpy(addr.s6_addr + 8,
2868 				       in6_dev->token.s6_addr + 8, 8);
2869 				read_unlock_bh(&in6_dev->lock);
2870 				tokenized = true;
2871 			} else if (is_addr_mode_generate_stable(in6_dev) &&
2872 				   !ipv6_generate_stable_address(&addr, 0,
2873 								 in6_dev)) {
2874 				addr_flags |= IFA_F_STABLE_PRIVACY;
2875 				goto ok;
2876 			} else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2877 				   ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
2878 				goto put;
2879 			} else {
2880 				dev_addr_generated = true;
2881 			}
2882 			goto ok;
2883 		}
2884 		net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2885 				    pinfo->prefix_len);
2886 		goto put;
2887 
2888 ok:
2889 		err = addrconf_prefix_rcv_add_addr(net, dev, pinfo, in6_dev,
2890 						   &addr, addr_type,
2891 						   addr_flags, sllao,
2892 						   tokenized, valid_lft,
2893 						   prefered_lft);
2894 		if (err)
2895 			goto put;
2896 
2897 		/* Ignore error case here because previous prefix add addr was
2898 		 * successful which will be notified.
2899 		 */
2900 		ndisc_ops_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, &addr,
2901 					      addr_type, addr_flags, sllao,
2902 					      tokenized, valid_lft,
2903 					      prefered_lft,
2904 					      dev_addr_generated);
2905 	}
2906 	inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2907 put:
2908 	in6_dev_put(in6_dev);
2909 }
2910 
2911 static int addrconf_set_sit_dstaddr(struct net *net, struct net_device *dev,
2912 		struct in6_ifreq *ireq)
2913 {
2914 	struct ip_tunnel_parm p = { };
2915 	int err;
2916 
2917 	if (!(ipv6_addr_type(&ireq->ifr6_addr) & IPV6_ADDR_COMPATv4))
2918 		return -EADDRNOTAVAIL;
2919 
2920 	p.iph.daddr = ireq->ifr6_addr.s6_addr32[3];
2921 	p.iph.version = 4;
2922 	p.iph.ihl = 5;
2923 	p.iph.protocol = IPPROTO_IPV6;
2924 	p.iph.ttl = 64;
2925 
2926 	if (!dev->netdev_ops->ndo_tunnel_ctl)
2927 		return -EOPNOTSUPP;
2928 	err = dev->netdev_ops->ndo_tunnel_ctl(dev, &p, SIOCADDTUNNEL);
2929 	if (err)
2930 		return err;
2931 
2932 	dev = __dev_get_by_name(net, p.name);
2933 	if (!dev)
2934 		return -ENOBUFS;
2935 	return dev_open(dev, NULL);
2936 }
2937 
2938 /*
2939  *	Set destination address.
2940  *	Special case for SIT interfaces where we create a new "virtual"
2941  *	device.
2942  */
2943 int addrconf_set_dstaddr(struct net *net, void __user *arg)
2944 {
2945 	struct net_device *dev;
2946 	struct in6_ifreq ireq;
2947 	int err = -ENODEV;
2948 
2949 	if (!IS_ENABLED(CONFIG_IPV6_SIT))
2950 		return -ENODEV;
2951 	if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2952 		return -EFAULT;
2953 
2954 	rtnl_lock();
2955 	dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
2956 	if (dev && dev->type == ARPHRD_SIT)
2957 		err = addrconf_set_sit_dstaddr(net, dev, &ireq);
2958 	rtnl_unlock();
2959 	return err;
2960 }
2961 
2962 static int ipv6_mc_config(struct sock *sk, bool join,
2963 			  const struct in6_addr *addr, int ifindex)
2964 {
2965 	int ret;
2966 
2967 	ASSERT_RTNL();
2968 
2969 	lock_sock(sk);
2970 	if (join)
2971 		ret = ipv6_sock_mc_join(sk, ifindex, addr);
2972 	else
2973 		ret = ipv6_sock_mc_drop(sk, ifindex, addr);
2974 	release_sock(sk);
2975 
2976 	return ret;
2977 }
2978 
2979 /*
2980  *	Manual configuration of address on an interface
2981  */
2982 static int inet6_addr_add(struct net *net, int ifindex,
2983 			  struct ifa6_config *cfg,
2984 			  struct netlink_ext_ack *extack)
2985 {
2986 	struct inet6_ifaddr *ifp;
2987 	struct inet6_dev *idev;
2988 	struct net_device *dev;
2989 	unsigned long timeout;
2990 	clock_t expires;
2991 	u32 flags;
2992 
2993 	ASSERT_RTNL();
2994 
2995 	if (cfg->plen > 128) {
2996 		NL_SET_ERR_MSG_MOD(extack, "Invalid prefix length");
2997 		return -EINVAL;
2998 	}
2999 
3000 	/* check the lifetime */
3001 	if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft) {
3002 		NL_SET_ERR_MSG_MOD(extack, "address lifetime invalid");
3003 		return -EINVAL;
3004 	}
3005 
3006 	if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && cfg->plen != 64) {
3007 		NL_SET_ERR_MSG_MOD(extack, "address with \"mngtmpaddr\" flag must have a prefix length of 64");
3008 		return -EINVAL;
3009 	}
3010 
3011 	dev = __dev_get_by_index(net, ifindex);
3012 	if (!dev)
3013 		return -ENODEV;
3014 
3015 	idev = addrconf_add_dev(dev);
3016 	if (IS_ERR(idev)) {
3017 		NL_SET_ERR_MSG_MOD(extack, "IPv6 is disabled on this device");
3018 		return PTR_ERR(idev);
3019 	}
3020 
3021 	if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
3022 		int ret = ipv6_mc_config(net->ipv6.mc_autojoin_sk,
3023 					 true, cfg->pfx, ifindex);
3024 
3025 		if (ret < 0) {
3026 			NL_SET_ERR_MSG_MOD(extack, "Multicast auto join failed");
3027 			return ret;
3028 		}
3029 	}
3030 
3031 	cfg->scope = ipv6_addr_scope(cfg->pfx);
3032 
3033 	timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ);
3034 	if (addrconf_finite_timeout(timeout)) {
3035 		expires = jiffies_to_clock_t(timeout * HZ);
3036 		cfg->valid_lft = timeout;
3037 		flags = RTF_EXPIRES;
3038 	} else {
3039 		expires = 0;
3040 		flags = 0;
3041 		cfg->ifa_flags |= IFA_F_PERMANENT;
3042 	}
3043 
3044 	timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ);
3045 	if (addrconf_finite_timeout(timeout)) {
3046 		if (timeout == 0)
3047 			cfg->ifa_flags |= IFA_F_DEPRECATED;
3048 		cfg->preferred_lft = timeout;
3049 	}
3050 
3051 	ifp = ipv6_add_addr(idev, cfg, true, extack);
3052 	if (!IS_ERR(ifp)) {
3053 		if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) {
3054 			addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
3055 					      ifp->rt_priority, dev, expires,
3056 					      flags, GFP_KERNEL);
3057 		}
3058 
3059 		/* Send a netlink notification if DAD is enabled and
3060 		 * optimistic flag is not set
3061 		 */
3062 		if (!(ifp->flags & (IFA_F_OPTIMISTIC | IFA_F_NODAD)))
3063 			ipv6_ifa_notify(0, ifp);
3064 		/*
3065 		 * Note that section 3.1 of RFC 4429 indicates
3066 		 * that the Optimistic flag should not be set for
3067 		 * manually configured addresses
3068 		 */
3069 		addrconf_dad_start(ifp);
3070 		if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR)
3071 			manage_tempaddrs(idev, ifp, cfg->valid_lft,
3072 					 cfg->preferred_lft, true, jiffies);
3073 		in6_ifa_put(ifp);
3074 		addrconf_verify_rtnl(net);
3075 		return 0;
3076 	} else if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
3077 		ipv6_mc_config(net->ipv6.mc_autojoin_sk, false,
3078 			       cfg->pfx, ifindex);
3079 	}
3080 
3081 	return PTR_ERR(ifp);
3082 }
3083 
3084 static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags,
3085 			  const struct in6_addr *pfx, unsigned int plen,
3086 			  struct netlink_ext_ack *extack)
3087 {
3088 	struct inet6_ifaddr *ifp;
3089 	struct inet6_dev *idev;
3090 	struct net_device *dev;
3091 
3092 	if (plen > 128) {
3093 		NL_SET_ERR_MSG_MOD(extack, "Invalid prefix length");
3094 		return -EINVAL;
3095 	}
3096 
3097 	dev = __dev_get_by_index(net, ifindex);
3098 	if (!dev) {
3099 		NL_SET_ERR_MSG_MOD(extack, "Unable to find the interface");
3100 		return -ENODEV;
3101 	}
3102 
3103 	idev = __in6_dev_get(dev);
3104 	if (!idev) {
3105 		NL_SET_ERR_MSG_MOD(extack, "IPv6 is disabled on this device");
3106 		return -ENXIO;
3107 	}
3108 
3109 	read_lock_bh(&idev->lock);
3110 	list_for_each_entry(ifp, &idev->addr_list, if_list) {
3111 		if (ifp->prefix_len == plen &&
3112 		    ipv6_addr_equal(pfx, &ifp->addr)) {
3113 			in6_ifa_hold(ifp);
3114 			read_unlock_bh(&idev->lock);
3115 
3116 			if (!(ifp->flags & IFA_F_TEMPORARY) &&
3117 			    (ifa_flags & IFA_F_MANAGETEMPADDR))
3118 				manage_tempaddrs(idev, ifp, 0, 0, false,
3119 						 jiffies);
3120 			ipv6_del_addr(ifp);
3121 			addrconf_verify_rtnl(net);
3122 			if (ipv6_addr_is_multicast(pfx)) {
3123 				ipv6_mc_config(net->ipv6.mc_autojoin_sk,
3124 					       false, pfx, dev->ifindex);
3125 			}
3126 			return 0;
3127 		}
3128 	}
3129 	read_unlock_bh(&idev->lock);
3130 
3131 	NL_SET_ERR_MSG_MOD(extack, "address not found");
3132 	return -EADDRNOTAVAIL;
3133 }
3134 
3135 
3136 int addrconf_add_ifaddr(struct net *net, void __user *arg)
3137 {
3138 	struct ifa6_config cfg = {
3139 		.ifa_flags = IFA_F_PERMANENT,
3140 		.preferred_lft = INFINITY_LIFE_TIME,
3141 		.valid_lft = INFINITY_LIFE_TIME,
3142 	};
3143 	struct in6_ifreq ireq;
3144 	int err;
3145 
3146 	if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3147 		return -EPERM;
3148 
3149 	if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
3150 		return -EFAULT;
3151 
3152 	cfg.pfx = &ireq.ifr6_addr;
3153 	cfg.plen = ireq.ifr6_prefixlen;
3154 
3155 	rtnl_lock();
3156 	err = inet6_addr_add(net, ireq.ifr6_ifindex, &cfg, NULL);
3157 	rtnl_unlock();
3158 	return err;
3159 }
3160 
3161 int addrconf_del_ifaddr(struct net *net, void __user *arg)
3162 {
3163 	struct in6_ifreq ireq;
3164 	int err;
3165 
3166 	if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3167 		return -EPERM;
3168 
3169 	if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
3170 		return -EFAULT;
3171 
3172 	rtnl_lock();
3173 	err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr,
3174 			     ireq.ifr6_prefixlen, NULL);
3175 	rtnl_unlock();
3176 	return err;
3177 }
3178 
3179 static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
3180 		     int plen, int scope, u8 proto)
3181 {
3182 	struct inet6_ifaddr *ifp;
3183 	struct ifa6_config cfg = {
3184 		.pfx = addr,
3185 		.plen = plen,
3186 		.ifa_flags = IFA_F_PERMANENT,
3187 		.valid_lft = INFINITY_LIFE_TIME,
3188 		.preferred_lft = INFINITY_LIFE_TIME,
3189 		.scope = scope,
3190 		.ifa_proto = proto
3191 	};
3192 
3193 	ifp = ipv6_add_addr(idev, &cfg, true, NULL);
3194 	if (!IS_ERR(ifp)) {
3195 		spin_lock_bh(&ifp->lock);
3196 		ifp->flags &= ~IFA_F_TENTATIVE;
3197 		spin_unlock_bh(&ifp->lock);
3198 		rt_genid_bump_ipv6(dev_net(idev->dev));
3199 		ipv6_ifa_notify(RTM_NEWADDR, ifp);
3200 		in6_ifa_put(ifp);
3201 	}
3202 }
3203 
3204 #if IS_ENABLED(CONFIG_IPV6_SIT) || IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE)
3205 static void add_v4_addrs(struct inet6_dev *idev)
3206 {
3207 	struct in6_addr addr;
3208 	struct net_device *dev;
3209 	struct net *net = dev_net(idev->dev);
3210 	int scope, plen, offset = 0;
3211 	u32 pflags = 0;
3212 
3213 	ASSERT_RTNL();
3214 
3215 	memset(&addr, 0, sizeof(struct in6_addr));
3216 	/* in case of IP6GRE the dev_addr is an IPv6 and therefore we use only the last 4 bytes */
3217 	if (idev->dev->addr_len == sizeof(struct in6_addr))
3218 		offset = sizeof(struct in6_addr) - 4;
3219 	memcpy(&addr.s6_addr32[3], idev->dev->dev_addr + offset, 4);
3220 
3221 	if (!(idev->dev->flags & IFF_POINTOPOINT) && idev->dev->type == ARPHRD_SIT) {
3222 		scope = IPV6_ADDR_COMPATv4;
3223 		plen = 96;
3224 		pflags |= RTF_NONEXTHOP;
3225 	} else {
3226 		if (idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_NONE)
3227 			return;
3228 
3229 		addr.s6_addr32[0] = htonl(0xfe800000);
3230 		scope = IFA_LINK;
3231 		plen = 64;
3232 	}
3233 
3234 	if (addr.s6_addr32[3]) {
3235 		add_addr(idev, &addr, plen, scope, IFAPROT_UNSPEC);
3236 		addrconf_prefix_route(&addr, plen, 0, idev->dev, 0, pflags,
3237 				      GFP_KERNEL);
3238 		return;
3239 	}
3240 
3241 	for_each_netdev(net, dev) {
3242 		struct in_device *in_dev = __in_dev_get_rtnl(dev);
3243 		if (in_dev && (dev->flags & IFF_UP)) {
3244 			struct in_ifaddr *ifa;
3245 			int flag = scope;
3246 
3247 			in_dev_for_each_ifa_rtnl(ifa, in_dev) {
3248 				addr.s6_addr32[3] = ifa->ifa_local;
3249 
3250 				if (ifa->ifa_scope == RT_SCOPE_LINK)
3251 					continue;
3252 				if (ifa->ifa_scope >= RT_SCOPE_HOST) {
3253 					if (idev->dev->flags&IFF_POINTOPOINT)
3254 						continue;
3255 					flag |= IFA_HOST;
3256 				}
3257 
3258 				add_addr(idev, &addr, plen, flag,
3259 					 IFAPROT_UNSPEC);
3260 				addrconf_prefix_route(&addr, plen, 0, idev->dev,
3261 						      0, pflags, GFP_KERNEL);
3262 			}
3263 		}
3264 	}
3265 }
3266 #endif
3267 
3268 static void init_loopback(struct net_device *dev)
3269 {
3270 	struct inet6_dev  *idev;
3271 
3272 	/* ::1 */
3273 
3274 	ASSERT_RTNL();
3275 
3276 	idev = ipv6_find_idev(dev);
3277 	if (IS_ERR(idev)) {
3278 		pr_debug("%s: add_dev failed\n", __func__);
3279 		return;
3280 	}
3281 
3282 	add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFAPROT_KERNEL_LO);
3283 }
3284 
3285 void addrconf_add_linklocal(struct inet6_dev *idev,
3286 			    const struct in6_addr *addr, u32 flags)
3287 {
3288 	struct ifa6_config cfg = {
3289 		.pfx = addr,
3290 		.plen = 64,
3291 		.ifa_flags = flags | IFA_F_PERMANENT,
3292 		.valid_lft = INFINITY_LIFE_TIME,
3293 		.preferred_lft = INFINITY_LIFE_TIME,
3294 		.scope = IFA_LINK,
3295 		.ifa_proto = IFAPROT_KERNEL_LL
3296 	};
3297 	struct inet6_ifaddr *ifp;
3298 
3299 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3300 	if ((dev_net(idev->dev)->ipv6.devconf_all->optimistic_dad ||
3301 	     idev->cnf.optimistic_dad) &&
3302 	    !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
3303 		cfg.ifa_flags |= IFA_F_OPTIMISTIC;
3304 #endif
3305 
3306 	ifp = ipv6_add_addr(idev, &cfg, true, NULL);
3307 	if (!IS_ERR(ifp)) {
3308 		addrconf_prefix_route(&ifp->addr, ifp->prefix_len, 0, idev->dev,
3309 				      0, 0, GFP_ATOMIC);
3310 		addrconf_dad_start(ifp);
3311 		in6_ifa_put(ifp);
3312 	}
3313 }
3314 EXPORT_SYMBOL_GPL(addrconf_add_linklocal);
3315 
3316 static bool ipv6_reserved_interfaceid(struct in6_addr address)
3317 {
3318 	if ((address.s6_addr32[2] | address.s6_addr32[3]) == 0)
3319 		return true;
3320 
3321 	if (address.s6_addr32[2] == htonl(0x02005eff) &&
3322 	    ((address.s6_addr32[3] & htonl(0xfe000000)) == htonl(0xfe000000)))
3323 		return true;
3324 
3325 	if (address.s6_addr32[2] == htonl(0xfdffffff) &&
3326 	    ((address.s6_addr32[3] & htonl(0xffffff80)) == htonl(0xffffff80)))
3327 		return true;
3328 
3329 	return false;
3330 }
3331 
3332 static int ipv6_generate_stable_address(struct in6_addr *address,
3333 					u8 dad_count,
3334 					const struct inet6_dev *idev)
3335 {
3336 	static DEFINE_SPINLOCK(lock);
3337 	static __u32 digest[SHA1_DIGEST_WORDS];
3338 	static __u32 workspace[SHA1_WORKSPACE_WORDS];
3339 
3340 	static union {
3341 		char __data[SHA1_BLOCK_SIZE];
3342 		struct {
3343 			struct in6_addr secret;
3344 			__be32 prefix[2];
3345 			unsigned char hwaddr[MAX_ADDR_LEN];
3346 			u8 dad_count;
3347 		} __packed;
3348 	} data;
3349 
3350 	struct in6_addr secret;
3351 	struct in6_addr temp;
3352 	struct net *net = dev_net(idev->dev);
3353 
3354 	BUILD_BUG_ON(sizeof(data.__data) != sizeof(data));
3355 
3356 	if (idev->cnf.stable_secret.initialized)
3357 		secret = idev->cnf.stable_secret.secret;
3358 	else if (net->ipv6.devconf_dflt->stable_secret.initialized)
3359 		secret = net->ipv6.devconf_dflt->stable_secret.secret;
3360 	else
3361 		return -1;
3362 
3363 retry:
3364 	spin_lock_bh(&lock);
3365 
3366 	sha1_init(digest);
3367 	memset(&data, 0, sizeof(data));
3368 	memset(workspace, 0, sizeof(workspace));
3369 	memcpy(data.hwaddr, idev->dev->perm_addr, idev->dev->addr_len);
3370 	data.prefix[0] = address->s6_addr32[0];
3371 	data.prefix[1] = address->s6_addr32[1];
3372 	data.secret = secret;
3373 	data.dad_count = dad_count;
3374 
3375 	sha1_transform(digest, data.__data, workspace);
3376 
3377 	temp = *address;
3378 	temp.s6_addr32[2] = (__force __be32)digest[0];
3379 	temp.s6_addr32[3] = (__force __be32)digest[1];
3380 
3381 	spin_unlock_bh(&lock);
3382 
3383 	if (ipv6_reserved_interfaceid(temp)) {
3384 		dad_count++;
3385 		if (dad_count > dev_net(idev->dev)->ipv6.sysctl.idgen_retries)
3386 			return -1;
3387 		goto retry;
3388 	}
3389 
3390 	*address = temp;
3391 	return 0;
3392 }
3393 
3394 static void ipv6_gen_mode_random_init(struct inet6_dev *idev)
3395 {
3396 	struct ipv6_stable_secret *s = &idev->cnf.stable_secret;
3397 
3398 	if (s->initialized)
3399 		return;
3400 	s = &idev->cnf.stable_secret;
3401 	get_random_bytes(&s->secret, sizeof(s->secret));
3402 	s->initialized = true;
3403 }
3404 
3405 static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route)
3406 {
3407 	struct in6_addr addr;
3408 
3409 	/* no link local addresses on L3 master devices */
3410 	if (netif_is_l3_master(idev->dev))
3411 		return;
3412 
3413 	/* no link local addresses on devices flagged as slaves */
3414 	if (idev->dev->priv_flags & IFF_NO_ADDRCONF)
3415 		return;
3416 
3417 	ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
3418 
3419 	switch (idev->cnf.addr_gen_mode) {
3420 	case IN6_ADDR_GEN_MODE_RANDOM:
3421 		ipv6_gen_mode_random_init(idev);
3422 		fallthrough;
3423 	case IN6_ADDR_GEN_MODE_STABLE_PRIVACY:
3424 		if (!ipv6_generate_stable_address(&addr, 0, idev))
3425 			addrconf_add_linklocal(idev, &addr,
3426 					       IFA_F_STABLE_PRIVACY);
3427 		else if (prefix_route)
3428 			addrconf_prefix_route(&addr, 64, 0, idev->dev,
3429 					      0, 0, GFP_KERNEL);
3430 		break;
3431 	case IN6_ADDR_GEN_MODE_EUI64:
3432 		/* addrconf_add_linklocal also adds a prefix_route and we
3433 		 * only need to care about prefix routes if ipv6_generate_eui64
3434 		 * couldn't generate one.
3435 		 */
3436 		if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0)
3437 			addrconf_add_linklocal(idev, &addr, 0);
3438 		else if (prefix_route)
3439 			addrconf_prefix_route(&addr, 64, 0, idev->dev,
3440 					      0, 0, GFP_KERNEL);
3441 		break;
3442 	case IN6_ADDR_GEN_MODE_NONE:
3443 	default:
3444 		/* will not add any link local address */
3445 		break;
3446 	}
3447 }
3448 
3449 static void addrconf_dev_config(struct net_device *dev)
3450 {
3451 	struct inet6_dev *idev;
3452 
3453 	ASSERT_RTNL();
3454 
3455 	if ((dev->type != ARPHRD_ETHER) &&
3456 	    (dev->type != ARPHRD_FDDI) &&
3457 	    (dev->type != ARPHRD_ARCNET) &&
3458 	    (dev->type != ARPHRD_INFINIBAND) &&
3459 	    (dev->type != ARPHRD_IEEE1394) &&
3460 	    (dev->type != ARPHRD_TUNNEL6) &&
3461 	    (dev->type != ARPHRD_6LOWPAN) &&
3462 	    (dev->type != ARPHRD_TUNNEL) &&
3463 	    (dev->type != ARPHRD_NONE) &&
3464 	    (dev->type != ARPHRD_RAWIP)) {
3465 		/* Alas, we support only Ethernet autoconfiguration. */
3466 		idev = __in6_dev_get(dev);
3467 		if (!IS_ERR_OR_NULL(idev) && dev->flags & IFF_UP &&
3468 		    dev->flags & IFF_MULTICAST)
3469 			ipv6_mc_up(idev);
3470 		return;
3471 	}
3472 
3473 	idev = addrconf_add_dev(dev);
3474 	if (IS_ERR(idev))
3475 		return;
3476 
3477 	/* this device type has no EUI support */
3478 	if (dev->type == ARPHRD_NONE &&
3479 	    idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64)
3480 		idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_RANDOM;
3481 
3482 	addrconf_addr_gen(idev, false);
3483 }
3484 
3485 #if IS_ENABLED(CONFIG_IPV6_SIT)
3486 static void addrconf_sit_config(struct net_device *dev)
3487 {
3488 	struct inet6_dev *idev;
3489 
3490 	ASSERT_RTNL();
3491 
3492 	/*
3493 	 * Configure the tunnel with one of our IPv4
3494 	 * addresses... we should configure all of
3495 	 * our v4 addrs in the tunnel
3496 	 */
3497 
3498 	idev = ipv6_find_idev(dev);
3499 	if (IS_ERR(idev)) {
3500 		pr_debug("%s: add_dev failed\n", __func__);
3501 		return;
3502 	}
3503 
3504 	if (dev->priv_flags & IFF_ISATAP) {
3505 		addrconf_addr_gen(idev, false);
3506 		return;
3507 	}
3508 
3509 	add_v4_addrs(idev);
3510 
3511 	if (dev->flags&IFF_POINTOPOINT)
3512 		addrconf_add_mroute(dev);
3513 }
3514 #endif
3515 
3516 #if IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE)
3517 static void addrconf_gre_config(struct net_device *dev)
3518 {
3519 	struct inet6_dev *idev;
3520 
3521 	ASSERT_RTNL();
3522 
3523 	idev = ipv6_find_idev(dev);
3524 	if (IS_ERR(idev)) {
3525 		pr_debug("%s: add_dev failed\n", __func__);
3526 		return;
3527 	}
3528 
3529 	if (dev->type == ARPHRD_ETHER) {
3530 		addrconf_addr_gen(idev, true);
3531 		return;
3532 	}
3533 
3534 	add_v4_addrs(idev);
3535 
3536 	if (dev->flags & IFF_POINTOPOINT)
3537 		addrconf_add_mroute(dev);
3538 }
3539 #endif
3540 
3541 static void addrconf_init_auto_addrs(struct net_device *dev)
3542 {
3543 	switch (dev->type) {
3544 #if IS_ENABLED(CONFIG_IPV6_SIT)
3545 	case ARPHRD_SIT:
3546 		addrconf_sit_config(dev);
3547 		break;
3548 #endif
3549 #if IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE)
3550 	case ARPHRD_IP6GRE:
3551 	case ARPHRD_IPGRE:
3552 		addrconf_gre_config(dev);
3553 		break;
3554 #endif
3555 	case ARPHRD_LOOPBACK:
3556 		init_loopback(dev);
3557 		break;
3558 
3559 	default:
3560 		addrconf_dev_config(dev);
3561 		break;
3562 	}
3563 }
3564 
3565 static int fixup_permanent_addr(struct net *net,
3566 				struct inet6_dev *idev,
3567 				struct inet6_ifaddr *ifp)
3568 {
3569 	/* !fib6_node means the host route was removed from the
3570 	 * FIB, for example, if 'lo' device is taken down. In that
3571 	 * case regenerate the host route.
3572 	 */
3573 	if (!ifp->rt || !ifp->rt->fib6_node) {
3574 		struct fib6_info *f6i, *prev;
3575 
3576 		f6i = addrconf_f6i_alloc(net, idev, &ifp->addr, false,
3577 					 GFP_ATOMIC, NULL);
3578 		if (IS_ERR(f6i))
3579 			return PTR_ERR(f6i);
3580 
3581 		/* ifp->rt can be accessed outside of rtnl */
3582 		spin_lock(&ifp->lock);
3583 		prev = ifp->rt;
3584 		ifp->rt = f6i;
3585 		spin_unlock(&ifp->lock);
3586 
3587 		fib6_info_release(prev);
3588 	}
3589 
3590 	if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) {
3591 		addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
3592 				      ifp->rt_priority, idev->dev, 0, 0,
3593 				      GFP_ATOMIC);
3594 	}
3595 
3596 	if (ifp->state == INET6_IFADDR_STATE_PREDAD)
3597 		addrconf_dad_start(ifp);
3598 
3599 	return 0;
3600 }
3601 
3602 static void addrconf_permanent_addr(struct net *net, struct net_device *dev)
3603 {
3604 	struct inet6_ifaddr *ifp, *tmp;
3605 	struct inet6_dev *idev;
3606 
3607 	idev = __in6_dev_get(dev);
3608 	if (!idev)
3609 		return;
3610 
3611 	write_lock_bh(&idev->lock);
3612 
3613 	list_for_each_entry_safe(ifp, tmp, &idev->addr_list, if_list) {
3614 		if ((ifp->flags & IFA_F_PERMANENT) &&
3615 		    fixup_permanent_addr(net, idev, ifp) < 0) {
3616 			write_unlock_bh(&idev->lock);
3617 			in6_ifa_hold(ifp);
3618 			ipv6_del_addr(ifp);
3619 			write_lock_bh(&idev->lock);
3620 
3621 			net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n",
3622 					     idev->dev->name, &ifp->addr);
3623 		}
3624 	}
3625 
3626 	write_unlock_bh(&idev->lock);
3627 }
3628 
3629 static int addrconf_notify(struct notifier_block *this, unsigned long event,
3630 			   void *ptr)
3631 {
3632 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3633 	struct netdev_notifier_change_info *change_info;
3634 	struct netdev_notifier_changeupper_info *info;
3635 	struct inet6_dev *idev = __in6_dev_get(dev);
3636 	struct net *net = dev_net(dev);
3637 	int run_pending = 0;
3638 	int err;
3639 
3640 	switch (event) {
3641 	case NETDEV_REGISTER:
3642 		if (!idev && dev->mtu >= IPV6_MIN_MTU) {
3643 			idev = ipv6_add_dev(dev);
3644 			if (IS_ERR(idev))
3645 				return notifier_from_errno(PTR_ERR(idev));
3646 		}
3647 		break;
3648 
3649 	case NETDEV_CHANGEMTU:
3650 		/* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */
3651 		if (dev->mtu < IPV6_MIN_MTU) {
3652 			addrconf_ifdown(dev, dev != net->loopback_dev);
3653 			break;
3654 		}
3655 
3656 		if (idev) {
3657 			rt6_mtu_change(dev, dev->mtu);
3658 			idev->cnf.mtu6 = dev->mtu;
3659 			break;
3660 		}
3661 
3662 		/* allocate new idev */
3663 		idev = ipv6_add_dev(dev);
3664 		if (IS_ERR(idev))
3665 			break;
3666 
3667 		/* device is still not ready */
3668 		if (!(idev->if_flags & IF_READY))
3669 			break;
3670 
3671 		run_pending = 1;
3672 		fallthrough;
3673 	case NETDEV_UP:
3674 	case NETDEV_CHANGE:
3675 		if (idev && idev->cnf.disable_ipv6)
3676 			break;
3677 
3678 		if (dev->priv_flags & IFF_NO_ADDRCONF) {
3679 			if (event == NETDEV_UP && !IS_ERR_OR_NULL(idev) &&
3680 			    dev->flags & IFF_UP && dev->flags & IFF_MULTICAST)
3681 				ipv6_mc_up(idev);
3682 			break;
3683 		}
3684 
3685 		if (event == NETDEV_UP) {
3686 			/* restore routes for permanent addresses */
3687 			addrconf_permanent_addr(net, dev);
3688 
3689 			if (!addrconf_link_ready(dev)) {
3690 				/* device is not ready yet. */
3691 				pr_debug("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
3692 					 dev->name);
3693 				break;
3694 			}
3695 
3696 			if (!idev && dev->mtu >= IPV6_MIN_MTU)
3697 				idev = ipv6_add_dev(dev);
3698 
3699 			if (!IS_ERR_OR_NULL(idev)) {
3700 				idev->if_flags |= IF_READY;
3701 				run_pending = 1;
3702 			}
3703 		} else if (event == NETDEV_CHANGE) {
3704 			if (!addrconf_link_ready(dev)) {
3705 				/* device is still not ready. */
3706 				rt6_sync_down_dev(dev, event);
3707 				break;
3708 			}
3709 
3710 			if (!IS_ERR_OR_NULL(idev)) {
3711 				if (idev->if_flags & IF_READY) {
3712 					/* device is already configured -
3713 					 * but resend MLD reports, we might
3714 					 * have roamed and need to update
3715 					 * multicast snooping switches
3716 					 */
3717 					ipv6_mc_up(idev);
3718 					change_info = ptr;
3719 					if (change_info->flags_changed & IFF_NOARP)
3720 						addrconf_dad_run(idev, true);
3721 					rt6_sync_up(dev, RTNH_F_LINKDOWN);
3722 					break;
3723 				}
3724 				idev->if_flags |= IF_READY;
3725 			}
3726 
3727 			pr_debug("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
3728 				 dev->name);
3729 
3730 			run_pending = 1;
3731 		}
3732 
3733 		addrconf_init_auto_addrs(dev);
3734 
3735 		if (!IS_ERR_OR_NULL(idev)) {
3736 			if (run_pending)
3737 				addrconf_dad_run(idev, false);
3738 
3739 			/* Device has an address by now */
3740 			rt6_sync_up(dev, RTNH_F_DEAD);
3741 
3742 			/*
3743 			 * If the MTU changed during the interface down,
3744 			 * when the interface up, the changed MTU must be
3745 			 * reflected in the idev as well as routers.
3746 			 */
3747 			if (idev->cnf.mtu6 != dev->mtu &&
3748 			    dev->mtu >= IPV6_MIN_MTU) {
3749 				rt6_mtu_change(dev, dev->mtu);
3750 				idev->cnf.mtu6 = dev->mtu;
3751 			}
3752 			idev->tstamp = jiffies;
3753 			inet6_ifinfo_notify(RTM_NEWLINK, idev);
3754 
3755 			/*
3756 			 * If the changed mtu during down is lower than
3757 			 * IPV6_MIN_MTU stop IPv6 on this interface.
3758 			 */
3759 			if (dev->mtu < IPV6_MIN_MTU)
3760 				addrconf_ifdown(dev, dev != net->loopback_dev);
3761 		}
3762 		break;
3763 
3764 	case NETDEV_DOWN:
3765 	case NETDEV_UNREGISTER:
3766 		/*
3767 		 *	Remove all addresses from this interface.
3768 		 */
3769 		addrconf_ifdown(dev, event != NETDEV_DOWN);
3770 		break;
3771 
3772 	case NETDEV_CHANGENAME:
3773 		if (idev) {
3774 			snmp6_unregister_dev(idev);
3775 			addrconf_sysctl_unregister(idev);
3776 			err = addrconf_sysctl_register(idev);
3777 			if (err)
3778 				return notifier_from_errno(err);
3779 			err = snmp6_register_dev(idev);
3780 			if (err) {
3781 				addrconf_sysctl_unregister(idev);
3782 				return notifier_from_errno(err);
3783 			}
3784 		}
3785 		break;
3786 
3787 	case NETDEV_PRE_TYPE_CHANGE:
3788 	case NETDEV_POST_TYPE_CHANGE:
3789 		if (idev)
3790 			addrconf_type_change(dev, event);
3791 		break;
3792 
3793 	case NETDEV_CHANGEUPPER:
3794 		info = ptr;
3795 
3796 		/* flush all routes if dev is linked to or unlinked from
3797 		 * an L3 master device (e.g., VRF)
3798 		 */
3799 		if (info->upper_dev && netif_is_l3_master(info->upper_dev))
3800 			addrconf_ifdown(dev, false);
3801 	}
3802 
3803 	return NOTIFY_OK;
3804 }
3805 
3806 /*
3807  *	addrconf module should be notified of a device going up
3808  */
3809 static struct notifier_block ipv6_dev_notf = {
3810 	.notifier_call = addrconf_notify,
3811 	.priority = ADDRCONF_NOTIFY_PRIORITY,
3812 };
3813 
3814 static void addrconf_type_change(struct net_device *dev, unsigned long event)
3815 {
3816 	struct inet6_dev *idev;
3817 	ASSERT_RTNL();
3818 
3819 	idev = __in6_dev_get(dev);
3820 
3821 	if (event == NETDEV_POST_TYPE_CHANGE)
3822 		ipv6_mc_remap(idev);
3823 	else if (event == NETDEV_PRE_TYPE_CHANGE)
3824 		ipv6_mc_unmap(idev);
3825 }
3826 
3827 static bool addr_is_local(const struct in6_addr *addr)
3828 {
3829 	return ipv6_addr_type(addr) &
3830 		(IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
3831 }
3832 
3833 static int addrconf_ifdown(struct net_device *dev, bool unregister)
3834 {
3835 	unsigned long event = unregister ? NETDEV_UNREGISTER : NETDEV_DOWN;
3836 	struct net *net = dev_net(dev);
3837 	struct inet6_dev *idev;
3838 	struct inet6_ifaddr *ifa;
3839 	LIST_HEAD(tmp_addr_list);
3840 	bool keep_addr = false;
3841 	bool was_ready;
3842 	int state, i;
3843 
3844 	ASSERT_RTNL();
3845 
3846 	rt6_disable_ip(dev, event);
3847 
3848 	idev = __in6_dev_get(dev);
3849 	if (!idev)
3850 		return -ENODEV;
3851 
3852 	/*
3853 	 * Step 1: remove reference to ipv6 device from parent device.
3854 	 *	   Do not dev_put!
3855 	 */
3856 	if (unregister) {
3857 		idev->dead = 1;
3858 
3859 		/* protected by rtnl_lock */
3860 		RCU_INIT_POINTER(dev->ip6_ptr, NULL);
3861 
3862 		/* Step 1.5: remove snmp6 entry */
3863 		snmp6_unregister_dev(idev);
3864 
3865 	}
3866 
3867 	/* combine the user config with event to determine if permanent
3868 	 * addresses are to be removed from address hash table
3869 	 */
3870 	if (!unregister && !idev->cnf.disable_ipv6) {
3871 		/* aggregate the system setting and interface setting */
3872 		int _keep_addr = net->ipv6.devconf_all->keep_addr_on_down;
3873 
3874 		if (!_keep_addr)
3875 			_keep_addr = idev->cnf.keep_addr_on_down;
3876 
3877 		keep_addr = (_keep_addr > 0);
3878 	}
3879 
3880 	/* Step 2: clear hash table */
3881 	for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3882 		struct hlist_head *h = &net->ipv6.inet6_addr_lst[i];
3883 
3884 		spin_lock_bh(&net->ipv6.addrconf_hash_lock);
3885 restart:
3886 		hlist_for_each_entry_rcu(ifa, h, addr_lst) {
3887 			if (ifa->idev == idev) {
3888 				addrconf_del_dad_work(ifa);
3889 				/* combined flag + permanent flag decide if
3890 				 * address is retained on a down event
3891 				 */
3892 				if (!keep_addr ||
3893 				    !(ifa->flags & IFA_F_PERMANENT) ||
3894 				    addr_is_local(&ifa->addr)) {
3895 					hlist_del_init_rcu(&ifa->addr_lst);
3896 					goto restart;
3897 				}
3898 			}
3899 		}
3900 		spin_unlock_bh(&net->ipv6.addrconf_hash_lock);
3901 	}
3902 
3903 	write_lock_bh(&idev->lock);
3904 
3905 	addrconf_del_rs_timer(idev);
3906 
3907 	/* Step 2: clear flags for stateless addrconf, repeated down
3908 	 *         detection
3909 	 */
3910 	was_ready = idev->if_flags & IF_READY;
3911 	if (!unregister)
3912 		idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
3913 
3914 	/* Step 3: clear tempaddr list */
3915 	while (!list_empty(&idev->tempaddr_list)) {
3916 		ifa = list_first_entry(&idev->tempaddr_list,
3917 				       struct inet6_ifaddr, tmp_list);
3918 		list_del(&ifa->tmp_list);
3919 		write_unlock_bh(&idev->lock);
3920 		spin_lock_bh(&ifa->lock);
3921 
3922 		if (ifa->ifpub) {
3923 			in6_ifa_put(ifa->ifpub);
3924 			ifa->ifpub = NULL;
3925 		}
3926 		spin_unlock_bh(&ifa->lock);
3927 		in6_ifa_put(ifa);
3928 		write_lock_bh(&idev->lock);
3929 	}
3930 
3931 	list_for_each_entry(ifa, &idev->addr_list, if_list)
3932 		list_add_tail(&ifa->if_list_aux, &tmp_addr_list);
3933 	write_unlock_bh(&idev->lock);
3934 
3935 	while (!list_empty(&tmp_addr_list)) {
3936 		struct fib6_info *rt = NULL;
3937 		bool keep;
3938 
3939 		ifa = list_first_entry(&tmp_addr_list,
3940 				       struct inet6_ifaddr, if_list_aux);
3941 		list_del(&ifa->if_list_aux);
3942 
3943 		addrconf_del_dad_work(ifa);
3944 
3945 		keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) &&
3946 			!addr_is_local(&ifa->addr);
3947 
3948 		spin_lock_bh(&ifa->lock);
3949 
3950 		if (keep) {
3951 			/* set state to skip the notifier below */
3952 			state = INET6_IFADDR_STATE_DEAD;
3953 			ifa->state = INET6_IFADDR_STATE_PREDAD;
3954 			if (!(ifa->flags & IFA_F_NODAD))
3955 				ifa->flags |= IFA_F_TENTATIVE;
3956 
3957 			rt = ifa->rt;
3958 			ifa->rt = NULL;
3959 		} else {
3960 			state = ifa->state;
3961 			ifa->state = INET6_IFADDR_STATE_DEAD;
3962 		}
3963 
3964 		spin_unlock_bh(&ifa->lock);
3965 
3966 		if (rt)
3967 			ip6_del_rt(net, rt, false);
3968 
3969 		if (state != INET6_IFADDR_STATE_DEAD) {
3970 			__ipv6_ifa_notify(RTM_DELADDR, ifa);
3971 			inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
3972 		} else {
3973 			if (idev->cnf.forwarding)
3974 				addrconf_leave_anycast(ifa);
3975 			addrconf_leave_solict(ifa->idev, &ifa->addr);
3976 		}
3977 
3978 		if (!keep) {
3979 			write_lock_bh(&idev->lock);
3980 			list_del_rcu(&ifa->if_list);
3981 			write_unlock_bh(&idev->lock);
3982 			in6_ifa_put(ifa);
3983 		}
3984 	}
3985 
3986 	/* Step 5: Discard anycast and multicast list */
3987 	if (unregister) {
3988 		ipv6_ac_destroy_dev(idev);
3989 		ipv6_mc_destroy_dev(idev);
3990 	} else if (was_ready) {
3991 		ipv6_mc_down(idev);
3992 	}
3993 
3994 	idev->tstamp = jiffies;
3995 	idev->ra_mtu = 0;
3996 
3997 	/* Last: Shot the device (if unregistered) */
3998 	if (unregister) {
3999 		addrconf_sysctl_unregister(idev);
4000 		neigh_parms_release(&nd_tbl, idev->nd_parms);
4001 		neigh_ifdown(&nd_tbl, dev);
4002 		in6_dev_put(idev);
4003 	}
4004 	return 0;
4005 }
4006 
4007 static void addrconf_rs_timer(struct timer_list *t)
4008 {
4009 	struct inet6_dev *idev = from_timer(idev, t, rs_timer);
4010 	struct net_device *dev = idev->dev;
4011 	struct in6_addr lladdr;
4012 
4013 	write_lock(&idev->lock);
4014 	if (idev->dead || !(idev->if_flags & IF_READY))
4015 		goto out;
4016 
4017 	if (!ipv6_accept_ra(idev))
4018 		goto out;
4019 
4020 	/* Announcement received after solicitation was sent */
4021 	if (idev->if_flags & IF_RA_RCVD)
4022 		goto out;
4023 
4024 	if (idev->rs_probes++ < idev->cnf.rtr_solicits || idev->cnf.rtr_solicits < 0) {
4025 		write_unlock(&idev->lock);
4026 		if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
4027 			ndisc_send_rs(dev, &lladdr,
4028 				      &in6addr_linklocal_allrouters);
4029 		else
4030 			goto put;
4031 
4032 		write_lock(&idev->lock);
4033 		idev->rs_interval = rfc3315_s14_backoff_update(
4034 			idev->rs_interval, idev->cnf.rtr_solicit_max_interval);
4035 		/* The wait after the last probe can be shorter */
4036 		addrconf_mod_rs_timer(idev, (idev->rs_probes ==
4037 					     idev->cnf.rtr_solicits) ?
4038 				      idev->cnf.rtr_solicit_delay :
4039 				      idev->rs_interval);
4040 	} else {
4041 		/*
4042 		 * Note: we do not support deprecated "all on-link"
4043 		 * assumption any longer.
4044 		 */
4045 		pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
4046 	}
4047 
4048 out:
4049 	write_unlock(&idev->lock);
4050 put:
4051 	in6_dev_put(idev);
4052 }
4053 
4054 /*
4055  *	Duplicate Address Detection
4056  */
4057 static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
4058 {
4059 	unsigned long rand_num;
4060 	struct inet6_dev *idev = ifp->idev;
4061 	u64 nonce;
4062 
4063 	if (ifp->flags & IFA_F_OPTIMISTIC)
4064 		rand_num = 0;
4065 	else
4066 		rand_num = get_random_u32_below(idev->cnf.rtr_solicit_delay ? : 1);
4067 
4068 	nonce = 0;
4069 	if (idev->cnf.enhanced_dad ||
4070 	    dev_net(idev->dev)->ipv6.devconf_all->enhanced_dad) {
4071 		do
4072 			get_random_bytes(&nonce, 6);
4073 		while (nonce == 0);
4074 	}
4075 	ifp->dad_nonce = nonce;
4076 	ifp->dad_probes = idev->cnf.dad_transmits;
4077 	addrconf_mod_dad_work(ifp, rand_num);
4078 }
4079 
4080 static void addrconf_dad_begin(struct inet6_ifaddr *ifp)
4081 {
4082 	struct inet6_dev *idev = ifp->idev;
4083 	struct net_device *dev = idev->dev;
4084 	bool bump_id, notify = false;
4085 	struct net *net;
4086 
4087 	addrconf_join_solict(dev, &ifp->addr);
4088 
4089 	read_lock_bh(&idev->lock);
4090 	spin_lock(&ifp->lock);
4091 	if (ifp->state == INET6_IFADDR_STATE_DEAD)
4092 		goto out;
4093 
4094 	net = dev_net(dev);
4095 	if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
4096 	    (net->ipv6.devconf_all->accept_dad < 1 &&
4097 	     idev->cnf.accept_dad < 1) ||
4098 	    !(ifp->flags&IFA_F_TENTATIVE) ||
4099 	    ifp->flags & IFA_F_NODAD) {
4100 		bool send_na = false;
4101 
4102 		if (ifp->flags & IFA_F_TENTATIVE &&
4103 		    !(ifp->flags & IFA_F_OPTIMISTIC))
4104 			send_na = true;
4105 		bump_id = ifp->flags & IFA_F_TENTATIVE;
4106 		ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
4107 		spin_unlock(&ifp->lock);
4108 		read_unlock_bh(&idev->lock);
4109 
4110 		addrconf_dad_completed(ifp, bump_id, send_na);
4111 		return;
4112 	}
4113 
4114 	if (!(idev->if_flags & IF_READY)) {
4115 		spin_unlock(&ifp->lock);
4116 		read_unlock_bh(&idev->lock);
4117 		/*
4118 		 * If the device is not ready:
4119 		 * - keep it tentative if it is a permanent address.
4120 		 * - otherwise, kill it.
4121 		 */
4122 		in6_ifa_hold(ifp);
4123 		addrconf_dad_stop(ifp, 0);
4124 		return;
4125 	}
4126 
4127 	/*
4128 	 * Optimistic nodes can start receiving
4129 	 * Frames right away
4130 	 */
4131 	if (ifp->flags & IFA_F_OPTIMISTIC) {
4132 		ip6_ins_rt(net, ifp->rt);
4133 		if (ipv6_use_optimistic_addr(net, idev)) {
4134 			/* Because optimistic nodes can use this address,
4135 			 * notify listeners. If DAD fails, RTM_DELADDR is sent.
4136 			 */
4137 			notify = true;
4138 		}
4139 	}
4140 
4141 	addrconf_dad_kick(ifp);
4142 out:
4143 	spin_unlock(&ifp->lock);
4144 	read_unlock_bh(&idev->lock);
4145 	if (notify)
4146 		ipv6_ifa_notify(RTM_NEWADDR, ifp);
4147 }
4148 
4149 static void addrconf_dad_start(struct inet6_ifaddr *ifp)
4150 {
4151 	bool begin_dad = false;
4152 
4153 	spin_lock_bh(&ifp->lock);
4154 	if (ifp->state != INET6_IFADDR_STATE_DEAD) {
4155 		ifp->state = INET6_IFADDR_STATE_PREDAD;
4156 		begin_dad = true;
4157 	}
4158 	spin_unlock_bh(&ifp->lock);
4159 
4160 	if (begin_dad)
4161 		addrconf_mod_dad_work(ifp, 0);
4162 }
4163 
4164 static void addrconf_dad_work(struct work_struct *w)
4165 {
4166 	struct inet6_ifaddr *ifp = container_of(to_delayed_work(w),
4167 						struct inet6_ifaddr,
4168 						dad_work);
4169 	struct inet6_dev *idev = ifp->idev;
4170 	bool bump_id, disable_ipv6 = false;
4171 	struct in6_addr mcaddr;
4172 
4173 	enum {
4174 		DAD_PROCESS,
4175 		DAD_BEGIN,
4176 		DAD_ABORT,
4177 	} action = DAD_PROCESS;
4178 
4179 	rtnl_lock();
4180 
4181 	spin_lock_bh(&ifp->lock);
4182 	if (ifp->state == INET6_IFADDR_STATE_PREDAD) {
4183 		action = DAD_BEGIN;
4184 		ifp->state = INET6_IFADDR_STATE_DAD;
4185 	} else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) {
4186 		action = DAD_ABORT;
4187 		ifp->state = INET6_IFADDR_STATE_POSTDAD;
4188 
4189 		if ((dev_net(idev->dev)->ipv6.devconf_all->accept_dad > 1 ||
4190 		     idev->cnf.accept_dad > 1) &&
4191 		    !idev->cnf.disable_ipv6 &&
4192 		    !(ifp->flags & IFA_F_STABLE_PRIVACY)) {
4193 			struct in6_addr addr;
4194 
4195 			addr.s6_addr32[0] = htonl(0xfe800000);
4196 			addr.s6_addr32[1] = 0;
4197 
4198 			if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
4199 			    ipv6_addr_equal(&ifp->addr, &addr)) {
4200 				/* DAD failed for link-local based on MAC */
4201 				idev->cnf.disable_ipv6 = 1;
4202 
4203 				pr_info("%s: IPv6 being disabled!\n",
4204 					ifp->idev->dev->name);
4205 				disable_ipv6 = true;
4206 			}
4207 		}
4208 	}
4209 	spin_unlock_bh(&ifp->lock);
4210 
4211 	if (action == DAD_BEGIN) {
4212 		addrconf_dad_begin(ifp);
4213 		goto out;
4214 	} else if (action == DAD_ABORT) {
4215 		in6_ifa_hold(ifp);
4216 		addrconf_dad_stop(ifp, 1);
4217 		if (disable_ipv6)
4218 			addrconf_ifdown(idev->dev, false);
4219 		goto out;
4220 	}
4221 
4222 	if (!ifp->dad_probes && addrconf_dad_end(ifp))
4223 		goto out;
4224 
4225 	write_lock_bh(&idev->lock);
4226 	if (idev->dead || !(idev->if_flags & IF_READY)) {
4227 		write_unlock_bh(&idev->lock);
4228 		goto out;
4229 	}
4230 
4231 	spin_lock(&ifp->lock);
4232 	if (ifp->state == INET6_IFADDR_STATE_DEAD) {
4233 		spin_unlock(&ifp->lock);
4234 		write_unlock_bh(&idev->lock);
4235 		goto out;
4236 	}
4237 
4238 	if (ifp->dad_probes == 0) {
4239 		bool send_na = false;
4240 
4241 		/*
4242 		 * DAD was successful
4243 		 */
4244 
4245 		if (ifp->flags & IFA_F_TENTATIVE &&
4246 		    !(ifp->flags & IFA_F_OPTIMISTIC))
4247 			send_na = true;
4248 		bump_id = ifp->flags & IFA_F_TENTATIVE;
4249 		ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
4250 		spin_unlock(&ifp->lock);
4251 		write_unlock_bh(&idev->lock);
4252 
4253 		addrconf_dad_completed(ifp, bump_id, send_na);
4254 
4255 		goto out;
4256 	}
4257 
4258 	ifp->dad_probes--;
4259 	addrconf_mod_dad_work(ifp,
4260 			      max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME),
4261 				  HZ/100));
4262 	spin_unlock(&ifp->lock);
4263 	write_unlock_bh(&idev->lock);
4264 
4265 	/* send a neighbour solicitation for our addr */
4266 	addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
4267 	ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any,
4268 		      ifp->dad_nonce);
4269 out:
4270 	in6_ifa_put(ifp);
4271 	rtnl_unlock();
4272 }
4273 
4274 /* ifp->idev must be at least read locked */
4275 static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
4276 {
4277 	struct inet6_ifaddr *ifpiter;
4278 	struct inet6_dev *idev = ifp->idev;
4279 
4280 	list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
4281 		if (ifpiter->scope > IFA_LINK)
4282 			break;
4283 		if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
4284 		    (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
4285 				       IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
4286 		    IFA_F_PERMANENT)
4287 			return false;
4288 	}
4289 	return true;
4290 }
4291 
4292 static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id,
4293 				   bool send_na)
4294 {
4295 	struct net_device *dev = ifp->idev->dev;
4296 	struct in6_addr lladdr;
4297 	bool send_rs, send_mld;
4298 
4299 	addrconf_del_dad_work(ifp);
4300 
4301 	/*
4302 	 *	Configure the address for reception. Now it is valid.
4303 	 */
4304 
4305 	ipv6_ifa_notify(RTM_NEWADDR, ifp);
4306 
4307 	/* If added prefix is link local and we are prepared to process
4308 	   router advertisements, start sending router solicitations.
4309 	 */
4310 
4311 	read_lock_bh(&ifp->idev->lock);
4312 	send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
4313 	send_rs = send_mld &&
4314 		  ipv6_accept_ra(ifp->idev) &&
4315 		  ifp->idev->cnf.rtr_solicits != 0 &&
4316 		  (dev->flags & IFF_LOOPBACK) == 0 &&
4317 		  (dev->type != ARPHRD_TUNNEL) &&
4318 		  !netif_is_team_port(dev);
4319 	read_unlock_bh(&ifp->idev->lock);
4320 
4321 	/* While dad is in progress mld report's source address is in6_addrany.
4322 	 * Resend with proper ll now.
4323 	 */
4324 	if (send_mld)
4325 		ipv6_mc_dad_complete(ifp->idev);
4326 
4327 	/* send unsolicited NA if enabled */
4328 	if (send_na &&
4329 	    (ifp->idev->cnf.ndisc_notify ||
4330 	     dev_net(dev)->ipv6.devconf_all->ndisc_notify)) {
4331 		ndisc_send_na(dev, &in6addr_linklocal_allnodes, &ifp->addr,
4332 			      /*router=*/ !!ifp->idev->cnf.forwarding,
4333 			      /*solicited=*/ false, /*override=*/ true,
4334 			      /*inc_opt=*/ true);
4335 	}
4336 
4337 	if (send_rs) {
4338 		/*
4339 		 *	If a host as already performed a random delay
4340 		 *	[...] as part of DAD [...] there is no need
4341 		 *	to delay again before sending the first RS
4342 		 */
4343 		if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
4344 			return;
4345 		ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
4346 
4347 		write_lock_bh(&ifp->idev->lock);
4348 		spin_lock(&ifp->lock);
4349 		ifp->idev->rs_interval = rfc3315_s14_backoff_init(
4350 			ifp->idev->cnf.rtr_solicit_interval);
4351 		ifp->idev->rs_probes = 1;
4352 		ifp->idev->if_flags |= IF_RS_SENT;
4353 		addrconf_mod_rs_timer(ifp->idev, ifp->idev->rs_interval);
4354 		spin_unlock(&ifp->lock);
4355 		write_unlock_bh(&ifp->idev->lock);
4356 	}
4357 
4358 	if (bump_id)
4359 		rt_genid_bump_ipv6(dev_net(dev));
4360 
4361 	/* Make sure that a new temporary address will be created
4362 	 * before this temporary address becomes deprecated.
4363 	 */
4364 	if (ifp->flags & IFA_F_TEMPORARY)
4365 		addrconf_verify_rtnl(dev_net(dev));
4366 }
4367 
4368 static void addrconf_dad_run(struct inet6_dev *idev, bool restart)
4369 {
4370 	struct inet6_ifaddr *ifp;
4371 
4372 	read_lock_bh(&idev->lock);
4373 	list_for_each_entry(ifp, &idev->addr_list, if_list) {
4374 		spin_lock(&ifp->lock);
4375 		if ((ifp->flags & IFA_F_TENTATIVE &&
4376 		     ifp->state == INET6_IFADDR_STATE_DAD) || restart) {
4377 			if (restart)
4378 				ifp->state = INET6_IFADDR_STATE_PREDAD;
4379 			addrconf_dad_kick(ifp);
4380 		}
4381 		spin_unlock(&ifp->lock);
4382 	}
4383 	read_unlock_bh(&idev->lock);
4384 }
4385 
4386 #ifdef CONFIG_PROC_FS
4387 struct if6_iter_state {
4388 	struct seq_net_private p;
4389 	int bucket;
4390 	int offset;
4391 };
4392 
4393 static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
4394 {
4395 	struct if6_iter_state *state = seq->private;
4396 	struct net *net = seq_file_net(seq);
4397 	struct inet6_ifaddr *ifa = NULL;
4398 	int p = 0;
4399 
4400 	/* initial bucket if pos is 0 */
4401 	if (pos == 0) {
4402 		state->bucket = 0;
4403 		state->offset = 0;
4404 	}
4405 
4406 	for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
4407 		hlist_for_each_entry_rcu(ifa, &net->ipv6.inet6_addr_lst[state->bucket],
4408 					 addr_lst) {
4409 			/* sync with offset */
4410 			if (p < state->offset) {
4411 				p++;
4412 				continue;
4413 			}
4414 			return ifa;
4415 		}
4416 
4417 		/* prepare for next bucket */
4418 		state->offset = 0;
4419 		p = 0;
4420 	}
4421 	return NULL;
4422 }
4423 
4424 static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
4425 					 struct inet6_ifaddr *ifa)
4426 {
4427 	struct if6_iter_state *state = seq->private;
4428 	struct net *net = seq_file_net(seq);
4429 
4430 	hlist_for_each_entry_continue_rcu(ifa, addr_lst) {
4431 		state->offset++;
4432 		return ifa;
4433 	}
4434 
4435 	state->offset = 0;
4436 	while (++state->bucket < IN6_ADDR_HSIZE) {
4437 		hlist_for_each_entry_rcu(ifa,
4438 				     &net->ipv6.inet6_addr_lst[state->bucket], addr_lst) {
4439 			return ifa;
4440 		}
4441 	}
4442 
4443 	return NULL;
4444 }
4445 
4446 static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
4447 	__acquires(rcu)
4448 {
4449 	rcu_read_lock();
4450 	return if6_get_first(seq, *pos);
4451 }
4452 
4453 static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4454 {
4455 	struct inet6_ifaddr *ifa;
4456 
4457 	ifa = if6_get_next(seq, v);
4458 	++*pos;
4459 	return ifa;
4460 }
4461 
4462 static void if6_seq_stop(struct seq_file *seq, void *v)
4463 	__releases(rcu)
4464 {
4465 	rcu_read_unlock();
4466 }
4467 
4468 static int if6_seq_show(struct seq_file *seq, void *v)
4469 {
4470 	struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
4471 	seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
4472 		   &ifp->addr,
4473 		   ifp->idev->dev->ifindex,
4474 		   ifp->prefix_len,
4475 		   ifp->scope,
4476 		   (u8) ifp->flags,
4477 		   ifp->idev->dev->name);
4478 	return 0;
4479 }
4480 
4481 static const struct seq_operations if6_seq_ops = {
4482 	.start	= if6_seq_start,
4483 	.next	= if6_seq_next,
4484 	.show	= if6_seq_show,
4485 	.stop	= if6_seq_stop,
4486 };
4487 
4488 static int __net_init if6_proc_net_init(struct net *net)
4489 {
4490 	if (!proc_create_net("if_inet6", 0444, net->proc_net, &if6_seq_ops,
4491 			sizeof(struct if6_iter_state)))
4492 		return -ENOMEM;
4493 	return 0;
4494 }
4495 
4496 static void __net_exit if6_proc_net_exit(struct net *net)
4497 {
4498 	remove_proc_entry("if_inet6", net->proc_net);
4499 }
4500 
4501 static struct pernet_operations if6_proc_net_ops = {
4502 	.init = if6_proc_net_init,
4503 	.exit = if6_proc_net_exit,
4504 };
4505 
4506 int __init if6_proc_init(void)
4507 {
4508 	return register_pernet_subsys(&if6_proc_net_ops);
4509 }
4510 
4511 void if6_proc_exit(void)
4512 {
4513 	unregister_pernet_subsys(&if6_proc_net_ops);
4514 }
4515 #endif	/* CONFIG_PROC_FS */
4516 
4517 #if IS_ENABLED(CONFIG_IPV6_MIP6)
4518 /* Check if address is a home address configured on any interface. */
4519 int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
4520 {
4521 	unsigned int hash = inet6_addr_hash(net, addr);
4522 	struct inet6_ifaddr *ifp = NULL;
4523 	int ret = 0;
4524 
4525 	rcu_read_lock();
4526 	hlist_for_each_entry_rcu(ifp, &net->ipv6.inet6_addr_lst[hash], addr_lst) {
4527 		if (ipv6_addr_equal(&ifp->addr, addr) &&
4528 		    (ifp->flags & IFA_F_HOMEADDRESS)) {
4529 			ret = 1;
4530 			break;
4531 		}
4532 	}
4533 	rcu_read_unlock();
4534 	return ret;
4535 }
4536 #endif
4537 
4538 /* RFC6554 has some algorithm to avoid loops in segment routing by
4539  * checking if the segments contains any of a local interface address.
4540  *
4541  * Quote:
4542  *
4543  * To detect loops in the SRH, a router MUST determine if the SRH
4544  * includes multiple addresses assigned to any interface on that router.
4545  * If such addresses appear more than once and are separated by at least
4546  * one address not assigned to that router.
4547  */
4548 int ipv6_chk_rpl_srh_loop(struct net *net, const struct in6_addr *segs,
4549 			  unsigned char nsegs)
4550 {
4551 	const struct in6_addr *addr;
4552 	int i, ret = 0, found = 0;
4553 	struct inet6_ifaddr *ifp;
4554 	bool separated = false;
4555 	unsigned int hash;
4556 	bool hash_found;
4557 
4558 	rcu_read_lock();
4559 	for (i = 0; i < nsegs; i++) {
4560 		addr = &segs[i];
4561 		hash = inet6_addr_hash(net, addr);
4562 
4563 		hash_found = false;
4564 		hlist_for_each_entry_rcu(ifp, &net->ipv6.inet6_addr_lst[hash], addr_lst) {
4565 
4566 			if (ipv6_addr_equal(&ifp->addr, addr)) {
4567 				hash_found = true;
4568 				break;
4569 			}
4570 		}
4571 
4572 		if (hash_found) {
4573 			if (found > 1 && separated) {
4574 				ret = 1;
4575 				break;
4576 			}
4577 
4578 			separated = false;
4579 			found++;
4580 		} else {
4581 			separated = true;
4582 		}
4583 	}
4584 	rcu_read_unlock();
4585 
4586 	return ret;
4587 }
4588 
4589 /*
4590  *	Periodic address status verification
4591  */
4592 
4593 static void addrconf_verify_rtnl(struct net *net)
4594 {
4595 	unsigned long now, next, next_sec, next_sched;
4596 	struct inet6_ifaddr *ifp;
4597 	int i;
4598 
4599 	ASSERT_RTNL();
4600 
4601 	rcu_read_lock_bh();
4602 	now = jiffies;
4603 	next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
4604 
4605 	cancel_delayed_work(&net->ipv6.addr_chk_work);
4606 
4607 	for (i = 0; i < IN6_ADDR_HSIZE; i++) {
4608 restart:
4609 		hlist_for_each_entry_rcu_bh(ifp, &net->ipv6.inet6_addr_lst[i], addr_lst) {
4610 			unsigned long age;
4611 
4612 			/* When setting preferred_lft to a value not zero or
4613 			 * infinity, while valid_lft is infinity
4614 			 * IFA_F_PERMANENT has a non-infinity life time.
4615 			 */
4616 			if ((ifp->flags & IFA_F_PERMANENT) &&
4617 			    (ifp->prefered_lft == INFINITY_LIFE_TIME))
4618 				continue;
4619 
4620 			spin_lock(&ifp->lock);
4621 			/* We try to batch several events at once. */
4622 			age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
4623 
4624 			if ((ifp->flags&IFA_F_TEMPORARY) &&
4625 			    !(ifp->flags&IFA_F_TENTATIVE) &&
4626 			    ifp->prefered_lft != INFINITY_LIFE_TIME &&
4627 			    !ifp->regen_count && ifp->ifpub) {
4628 				/* This is a non-regenerated temporary addr. */
4629 
4630 				unsigned long regen_advance = ipv6_get_regen_advance(ifp->idev);
4631 
4632 				if (age + regen_advance >= ifp->prefered_lft) {
4633 					struct inet6_ifaddr *ifpub = ifp->ifpub;
4634 					if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4635 						next = ifp->tstamp + ifp->prefered_lft * HZ;
4636 
4637 					ifp->regen_count++;
4638 					in6_ifa_hold(ifp);
4639 					in6_ifa_hold(ifpub);
4640 					spin_unlock(&ifp->lock);
4641 
4642 					spin_lock(&ifpub->lock);
4643 					ifpub->regen_count = 0;
4644 					spin_unlock(&ifpub->lock);
4645 					rcu_read_unlock_bh();
4646 					ipv6_create_tempaddr(ifpub, true);
4647 					in6_ifa_put(ifpub);
4648 					in6_ifa_put(ifp);
4649 					rcu_read_lock_bh();
4650 					goto restart;
4651 				} else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
4652 					next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
4653 			}
4654 
4655 			if (ifp->valid_lft != INFINITY_LIFE_TIME &&
4656 			    age >= ifp->valid_lft) {
4657 				spin_unlock(&ifp->lock);
4658 				in6_ifa_hold(ifp);
4659 				rcu_read_unlock_bh();
4660 				ipv6_del_addr(ifp);
4661 				rcu_read_lock_bh();
4662 				goto restart;
4663 			} else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
4664 				spin_unlock(&ifp->lock);
4665 				continue;
4666 			} else if (age >= ifp->prefered_lft) {
4667 				/* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
4668 				int deprecate = 0;
4669 
4670 				if (!(ifp->flags&IFA_F_DEPRECATED)) {
4671 					deprecate = 1;
4672 					ifp->flags |= IFA_F_DEPRECATED;
4673 				}
4674 
4675 				if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
4676 				    (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
4677 					next = ifp->tstamp + ifp->valid_lft * HZ;
4678 
4679 				spin_unlock(&ifp->lock);
4680 
4681 				if (deprecate) {
4682 					in6_ifa_hold(ifp);
4683 
4684 					ipv6_ifa_notify(0, ifp);
4685 					in6_ifa_put(ifp);
4686 					goto restart;
4687 				}
4688 			} else {
4689 				/* ifp->prefered_lft <= ifp->valid_lft */
4690 				if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4691 					next = ifp->tstamp + ifp->prefered_lft * HZ;
4692 				spin_unlock(&ifp->lock);
4693 			}
4694 		}
4695 	}
4696 
4697 	next_sec = round_jiffies_up(next);
4698 	next_sched = next;
4699 
4700 	/* If rounded timeout is accurate enough, accept it. */
4701 	if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
4702 		next_sched = next_sec;
4703 
4704 	/* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
4705 	if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
4706 		next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
4707 
4708 	pr_debug("now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
4709 		 now, next, next_sec, next_sched);
4710 	mod_delayed_work(addrconf_wq, &net->ipv6.addr_chk_work, next_sched - now);
4711 	rcu_read_unlock_bh();
4712 }
4713 
4714 static void addrconf_verify_work(struct work_struct *w)
4715 {
4716 	struct net *net = container_of(to_delayed_work(w), struct net,
4717 				       ipv6.addr_chk_work);
4718 
4719 	rtnl_lock();
4720 	addrconf_verify_rtnl(net);
4721 	rtnl_unlock();
4722 }
4723 
4724 static void addrconf_verify(struct net *net)
4725 {
4726 	mod_delayed_work(addrconf_wq, &net->ipv6.addr_chk_work, 0);
4727 }
4728 
4729 static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
4730 				     struct in6_addr **peer_pfx)
4731 {
4732 	struct in6_addr *pfx = NULL;
4733 
4734 	*peer_pfx = NULL;
4735 
4736 	if (addr)
4737 		pfx = nla_data(addr);
4738 
4739 	if (local) {
4740 		if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
4741 			*peer_pfx = pfx;
4742 		pfx = nla_data(local);
4743 	}
4744 
4745 	return pfx;
4746 }
4747 
4748 static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
4749 	[IFA_ADDRESS]		= { .len = sizeof(struct in6_addr) },
4750 	[IFA_LOCAL]		= { .len = sizeof(struct in6_addr) },
4751 	[IFA_CACHEINFO]		= { .len = sizeof(struct ifa_cacheinfo) },
4752 	[IFA_FLAGS]		= { .len = sizeof(u32) },
4753 	[IFA_RT_PRIORITY]	= { .len = sizeof(u32) },
4754 	[IFA_TARGET_NETNSID]	= { .type = NLA_S32 },
4755 	[IFA_PROTO]		= { .type = NLA_U8 },
4756 };
4757 
4758 static int
4759 inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh,
4760 		  struct netlink_ext_ack *extack)
4761 {
4762 	struct net *net = sock_net(skb->sk);
4763 	struct ifaddrmsg *ifm;
4764 	struct nlattr *tb[IFA_MAX+1];
4765 	struct in6_addr *pfx, *peer_pfx;
4766 	u32 ifa_flags;
4767 	int err;
4768 
4769 	err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
4770 				     ifa_ipv6_policy, extack);
4771 	if (err < 0)
4772 		return err;
4773 
4774 	ifm = nlmsg_data(nlh);
4775 	pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
4776 	if (!pfx)
4777 		return -EINVAL;
4778 
4779 	ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
4780 
4781 	/* We ignore other flags so far. */
4782 	ifa_flags &= IFA_F_MANAGETEMPADDR;
4783 
4784 	return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx,
4785 			      ifm->ifa_prefixlen, extack);
4786 }
4787 
4788 static int modify_prefix_route(struct inet6_ifaddr *ifp,
4789 			       unsigned long expires, u32 flags,
4790 			       bool modify_peer)
4791 {
4792 	struct fib6_table *table;
4793 	struct fib6_info *f6i;
4794 	u32 prio;
4795 
4796 	f6i = addrconf_get_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
4797 					ifp->prefix_len,
4798 					ifp->idev->dev, 0, RTF_DEFAULT, true);
4799 	if (!f6i)
4800 		return -ENOENT;
4801 
4802 	prio = ifp->rt_priority ? : IP6_RT_PRIO_ADDRCONF;
4803 	if (f6i->fib6_metric != prio) {
4804 		/* delete old one */
4805 		ip6_del_rt(dev_net(ifp->idev->dev), f6i, false);
4806 
4807 		/* add new one */
4808 		addrconf_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
4809 				      ifp->prefix_len,
4810 				      ifp->rt_priority, ifp->idev->dev,
4811 				      expires, flags, GFP_KERNEL);
4812 	} else {
4813 		table = f6i->fib6_table;
4814 		spin_lock_bh(&table->tb6_lock);
4815 
4816 		if (!(flags & RTF_EXPIRES)) {
4817 			fib6_clean_expires(f6i);
4818 			fib6_remove_gc_list(f6i);
4819 		} else {
4820 			fib6_set_expires(f6i, expires);
4821 			fib6_add_gc_list(f6i);
4822 		}
4823 
4824 		spin_unlock_bh(&table->tb6_lock);
4825 
4826 		fib6_info_release(f6i);
4827 	}
4828 
4829 	return 0;
4830 }
4831 
4832 static int inet6_addr_modify(struct net *net, struct inet6_ifaddr *ifp,
4833 			     struct ifa6_config *cfg)
4834 {
4835 	u32 flags;
4836 	clock_t expires;
4837 	unsigned long timeout;
4838 	bool was_managetempaddr;
4839 	bool had_prefixroute;
4840 	bool new_peer = false;
4841 
4842 	ASSERT_RTNL();
4843 
4844 	if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft)
4845 		return -EINVAL;
4846 
4847 	if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR &&
4848 	    (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
4849 		return -EINVAL;
4850 
4851 	if (!(ifp->flags & IFA_F_TENTATIVE) || ifp->flags & IFA_F_DADFAILED)
4852 		cfg->ifa_flags &= ~IFA_F_OPTIMISTIC;
4853 
4854 	timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ);
4855 	if (addrconf_finite_timeout(timeout)) {
4856 		expires = jiffies_to_clock_t(timeout * HZ);
4857 		cfg->valid_lft = timeout;
4858 		flags = RTF_EXPIRES;
4859 	} else {
4860 		expires = 0;
4861 		flags = 0;
4862 		cfg->ifa_flags |= IFA_F_PERMANENT;
4863 	}
4864 
4865 	timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ);
4866 	if (addrconf_finite_timeout(timeout)) {
4867 		if (timeout == 0)
4868 			cfg->ifa_flags |= IFA_F_DEPRECATED;
4869 		cfg->preferred_lft = timeout;
4870 	}
4871 
4872 	if (cfg->peer_pfx &&
4873 	    memcmp(&ifp->peer_addr, cfg->peer_pfx, sizeof(struct in6_addr))) {
4874 		if (!ipv6_addr_any(&ifp->peer_addr))
4875 			cleanup_prefix_route(ifp, expires, true, true);
4876 		new_peer = true;
4877 	}
4878 
4879 	spin_lock_bh(&ifp->lock);
4880 	was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
4881 	had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
4882 			  !(ifp->flags & IFA_F_NOPREFIXROUTE);
4883 	ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
4884 			IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
4885 			IFA_F_NOPREFIXROUTE);
4886 	ifp->flags |= cfg->ifa_flags;
4887 	ifp->tstamp = jiffies;
4888 	ifp->valid_lft = cfg->valid_lft;
4889 	ifp->prefered_lft = cfg->preferred_lft;
4890 	ifp->ifa_proto = cfg->ifa_proto;
4891 
4892 	if (cfg->rt_priority && cfg->rt_priority != ifp->rt_priority)
4893 		ifp->rt_priority = cfg->rt_priority;
4894 
4895 	if (new_peer)
4896 		ifp->peer_addr = *cfg->peer_pfx;
4897 
4898 	spin_unlock_bh(&ifp->lock);
4899 	if (!(ifp->flags&IFA_F_TENTATIVE))
4900 		ipv6_ifa_notify(0, ifp);
4901 
4902 	if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) {
4903 		int rc = -ENOENT;
4904 
4905 		if (had_prefixroute)
4906 			rc = modify_prefix_route(ifp, expires, flags, false);
4907 
4908 		/* prefix route could have been deleted; if so restore it */
4909 		if (rc == -ENOENT) {
4910 			addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
4911 					      ifp->rt_priority, ifp->idev->dev,
4912 					      expires, flags, GFP_KERNEL);
4913 		}
4914 
4915 		if (had_prefixroute && !ipv6_addr_any(&ifp->peer_addr))
4916 			rc = modify_prefix_route(ifp, expires, flags, true);
4917 
4918 		if (rc == -ENOENT && !ipv6_addr_any(&ifp->peer_addr)) {
4919 			addrconf_prefix_route(&ifp->peer_addr, ifp->prefix_len,
4920 					      ifp->rt_priority, ifp->idev->dev,
4921 					      expires, flags, GFP_KERNEL);
4922 		}
4923 	} else if (had_prefixroute) {
4924 		enum cleanup_prefix_rt_t action;
4925 		unsigned long rt_expires;
4926 
4927 		write_lock_bh(&ifp->idev->lock);
4928 		action = check_cleanup_prefix_route(ifp, &rt_expires);
4929 		write_unlock_bh(&ifp->idev->lock);
4930 
4931 		if (action != CLEANUP_PREFIX_RT_NOP) {
4932 			cleanup_prefix_route(ifp, rt_expires,
4933 				action == CLEANUP_PREFIX_RT_DEL, false);
4934 		}
4935 	}
4936 
4937 	if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
4938 		if (was_managetempaddr &&
4939 		    !(ifp->flags & IFA_F_MANAGETEMPADDR)) {
4940 			cfg->valid_lft = 0;
4941 			cfg->preferred_lft = 0;
4942 		}
4943 		manage_tempaddrs(ifp->idev, ifp, cfg->valid_lft,
4944 				 cfg->preferred_lft, !was_managetempaddr,
4945 				 jiffies);
4946 	}
4947 
4948 	addrconf_verify_rtnl(net);
4949 
4950 	return 0;
4951 }
4952 
4953 static int
4954 inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh,
4955 		  struct netlink_ext_ack *extack)
4956 {
4957 	struct net *net = sock_net(skb->sk);
4958 	struct ifaddrmsg *ifm;
4959 	struct nlattr *tb[IFA_MAX+1];
4960 	struct in6_addr *peer_pfx;
4961 	struct inet6_ifaddr *ifa;
4962 	struct net_device *dev;
4963 	struct inet6_dev *idev;
4964 	struct ifa6_config cfg;
4965 	int err;
4966 
4967 	err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
4968 				     ifa_ipv6_policy, extack);
4969 	if (err < 0)
4970 		return err;
4971 
4972 	memset(&cfg, 0, sizeof(cfg));
4973 
4974 	ifm = nlmsg_data(nlh);
4975 	cfg.pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
4976 	if (!cfg.pfx)
4977 		return -EINVAL;
4978 
4979 	cfg.peer_pfx = peer_pfx;
4980 	cfg.plen = ifm->ifa_prefixlen;
4981 	if (tb[IFA_RT_PRIORITY])
4982 		cfg.rt_priority = nla_get_u32(tb[IFA_RT_PRIORITY]);
4983 
4984 	if (tb[IFA_PROTO])
4985 		cfg.ifa_proto = nla_get_u8(tb[IFA_PROTO]);
4986 
4987 	cfg.valid_lft = INFINITY_LIFE_TIME;
4988 	cfg.preferred_lft = INFINITY_LIFE_TIME;
4989 
4990 	if (tb[IFA_CACHEINFO]) {
4991 		struct ifa_cacheinfo *ci;
4992 
4993 		ci = nla_data(tb[IFA_CACHEINFO]);
4994 		cfg.valid_lft = ci->ifa_valid;
4995 		cfg.preferred_lft = ci->ifa_prefered;
4996 	}
4997 
4998 	dev =  __dev_get_by_index(net, ifm->ifa_index);
4999 	if (!dev) {
5000 		NL_SET_ERR_MSG_MOD(extack, "Unable to find the interface");
5001 		return -ENODEV;
5002 	}
5003 
5004 	if (tb[IFA_FLAGS])
5005 		cfg.ifa_flags = nla_get_u32(tb[IFA_FLAGS]);
5006 	else
5007 		cfg.ifa_flags = ifm->ifa_flags;
5008 
5009 	/* We ignore other flags so far. */
5010 	cfg.ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS |
5011 			 IFA_F_MANAGETEMPADDR | IFA_F_NOPREFIXROUTE |
5012 			 IFA_F_MCAUTOJOIN | IFA_F_OPTIMISTIC;
5013 
5014 	idev = ipv6_find_idev(dev);
5015 	if (IS_ERR(idev))
5016 		return PTR_ERR(idev);
5017 
5018 	if (!ipv6_allow_optimistic_dad(net, idev))
5019 		cfg.ifa_flags &= ~IFA_F_OPTIMISTIC;
5020 
5021 	if (cfg.ifa_flags & IFA_F_NODAD &&
5022 	    cfg.ifa_flags & IFA_F_OPTIMISTIC) {
5023 		NL_SET_ERR_MSG(extack, "IFA_F_NODAD and IFA_F_OPTIMISTIC are mutually exclusive");
5024 		return -EINVAL;
5025 	}
5026 
5027 	ifa = ipv6_get_ifaddr(net, cfg.pfx, dev, 1);
5028 	if (!ifa) {
5029 		/*
5030 		 * It would be best to check for !NLM_F_CREATE here but
5031 		 * userspace already relies on not having to provide this.
5032 		 */
5033 		return inet6_addr_add(net, ifm->ifa_index, &cfg, extack);
5034 	}
5035 
5036 	if (nlh->nlmsg_flags & NLM_F_EXCL ||
5037 	    !(nlh->nlmsg_flags & NLM_F_REPLACE)) {
5038 		NL_SET_ERR_MSG_MOD(extack, "address already assigned");
5039 		err = -EEXIST;
5040 	} else {
5041 		err = inet6_addr_modify(net, ifa, &cfg);
5042 	}
5043 
5044 	in6_ifa_put(ifa);
5045 
5046 	return err;
5047 }
5048 
5049 static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
5050 			  u8 scope, int ifindex)
5051 {
5052 	struct ifaddrmsg *ifm;
5053 
5054 	ifm = nlmsg_data(nlh);
5055 	ifm->ifa_family = AF_INET6;
5056 	ifm->ifa_prefixlen = prefixlen;
5057 	ifm->ifa_flags = flags;
5058 	ifm->ifa_scope = scope;
5059 	ifm->ifa_index = ifindex;
5060 }
5061 
5062 static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
5063 			 unsigned long tstamp, u32 preferred, u32 valid)
5064 {
5065 	struct ifa_cacheinfo ci;
5066 
5067 	ci.cstamp = cstamp_delta(cstamp);
5068 	ci.tstamp = cstamp_delta(tstamp);
5069 	ci.ifa_prefered = preferred;
5070 	ci.ifa_valid = valid;
5071 
5072 	return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
5073 }
5074 
5075 static inline int rt_scope(int ifa_scope)
5076 {
5077 	if (ifa_scope & IFA_HOST)
5078 		return RT_SCOPE_HOST;
5079 	else if (ifa_scope & IFA_LINK)
5080 		return RT_SCOPE_LINK;
5081 	else if (ifa_scope & IFA_SITE)
5082 		return RT_SCOPE_SITE;
5083 	else
5084 		return RT_SCOPE_UNIVERSE;
5085 }
5086 
5087 static inline int inet6_ifaddr_msgsize(void)
5088 {
5089 	return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
5090 	       + nla_total_size(16) /* IFA_LOCAL */
5091 	       + nla_total_size(16) /* IFA_ADDRESS */
5092 	       + nla_total_size(sizeof(struct ifa_cacheinfo))
5093 	       + nla_total_size(4)  /* IFA_FLAGS */
5094 	       + nla_total_size(1)  /* IFA_PROTO */
5095 	       + nla_total_size(4)  /* IFA_RT_PRIORITY */;
5096 }
5097 
5098 enum addr_type_t {
5099 	UNICAST_ADDR,
5100 	MULTICAST_ADDR,
5101 	ANYCAST_ADDR,
5102 };
5103 
5104 struct inet6_fill_args {
5105 	u32 portid;
5106 	u32 seq;
5107 	int event;
5108 	unsigned int flags;
5109 	int netnsid;
5110 	int ifindex;
5111 	enum addr_type_t type;
5112 };
5113 
5114 static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
5115 			     struct inet6_fill_args *args)
5116 {
5117 	struct nlmsghdr  *nlh;
5118 	u32 preferred, valid;
5119 
5120 	nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5121 			sizeof(struct ifaddrmsg), args->flags);
5122 	if (!nlh)
5123 		return -EMSGSIZE;
5124 
5125 	put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
5126 		      ifa->idev->dev->ifindex);
5127 
5128 	if (args->netnsid >= 0 &&
5129 	    nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid))
5130 		goto error;
5131 
5132 	spin_lock_bh(&ifa->lock);
5133 	if (!((ifa->flags&IFA_F_PERMANENT) &&
5134 	      (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
5135 		preferred = ifa->prefered_lft;
5136 		valid = ifa->valid_lft;
5137 		if (preferred != INFINITY_LIFE_TIME) {
5138 			long tval = (jiffies - ifa->tstamp)/HZ;
5139 			if (preferred > tval)
5140 				preferred -= tval;
5141 			else
5142 				preferred = 0;
5143 			if (valid != INFINITY_LIFE_TIME) {
5144 				if (valid > tval)
5145 					valid -= tval;
5146 				else
5147 					valid = 0;
5148 			}
5149 		}
5150 	} else {
5151 		preferred = INFINITY_LIFE_TIME;
5152 		valid = INFINITY_LIFE_TIME;
5153 	}
5154 	spin_unlock_bh(&ifa->lock);
5155 
5156 	if (!ipv6_addr_any(&ifa->peer_addr)) {
5157 		if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 ||
5158 		    nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->peer_addr) < 0)
5159 			goto error;
5160 	} else
5161 		if (nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->addr) < 0)
5162 			goto error;
5163 
5164 	if (ifa->rt_priority &&
5165 	    nla_put_u32(skb, IFA_RT_PRIORITY, ifa->rt_priority))
5166 		goto error;
5167 
5168 	if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
5169 		goto error;
5170 
5171 	if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
5172 		goto error;
5173 
5174 	if (ifa->ifa_proto &&
5175 	    nla_put_u8(skb, IFA_PROTO, ifa->ifa_proto))
5176 		goto error;
5177 
5178 	nlmsg_end(skb, nlh);
5179 	return 0;
5180 
5181 error:
5182 	nlmsg_cancel(skb, nlh);
5183 	return -EMSGSIZE;
5184 }
5185 
5186 static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
5187 			       struct inet6_fill_args *args)
5188 {
5189 	struct nlmsghdr  *nlh;
5190 	u8 scope = RT_SCOPE_UNIVERSE;
5191 	int ifindex = ifmca->idev->dev->ifindex;
5192 
5193 	if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
5194 		scope = RT_SCOPE_SITE;
5195 
5196 	nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5197 			sizeof(struct ifaddrmsg), args->flags);
5198 	if (!nlh)
5199 		return -EMSGSIZE;
5200 
5201 	if (args->netnsid >= 0 &&
5202 	    nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) {
5203 		nlmsg_cancel(skb, nlh);
5204 		return -EMSGSIZE;
5205 	}
5206 
5207 	put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
5208 	if (nla_put_in6_addr(skb, IFA_MULTICAST, &ifmca->mca_addr) < 0 ||
5209 	    put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
5210 			  INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
5211 		nlmsg_cancel(skb, nlh);
5212 		return -EMSGSIZE;
5213 	}
5214 
5215 	nlmsg_end(skb, nlh);
5216 	return 0;
5217 }
5218 
5219 static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
5220 			       struct inet6_fill_args *args)
5221 {
5222 	struct net_device *dev = fib6_info_nh_dev(ifaca->aca_rt);
5223 	int ifindex = dev ? dev->ifindex : 1;
5224 	struct nlmsghdr  *nlh;
5225 	u8 scope = RT_SCOPE_UNIVERSE;
5226 
5227 	if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
5228 		scope = RT_SCOPE_SITE;
5229 
5230 	nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5231 			sizeof(struct ifaddrmsg), args->flags);
5232 	if (!nlh)
5233 		return -EMSGSIZE;
5234 
5235 	if (args->netnsid >= 0 &&
5236 	    nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) {
5237 		nlmsg_cancel(skb, nlh);
5238 		return -EMSGSIZE;
5239 	}
5240 
5241 	put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
5242 	if (nla_put_in6_addr(skb, IFA_ANYCAST, &ifaca->aca_addr) < 0 ||
5243 	    put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
5244 			  INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
5245 		nlmsg_cancel(skb, nlh);
5246 		return -EMSGSIZE;
5247 	}
5248 
5249 	nlmsg_end(skb, nlh);
5250 	return 0;
5251 }
5252 
5253 /* called with rcu_read_lock() */
5254 static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
5255 			  struct netlink_callback *cb, int s_ip_idx,
5256 			  struct inet6_fill_args *fillargs)
5257 {
5258 	struct ifmcaddr6 *ifmca;
5259 	struct ifacaddr6 *ifaca;
5260 	int ip_idx = 0;
5261 	int err = 1;
5262 
5263 	read_lock_bh(&idev->lock);
5264 	switch (fillargs->type) {
5265 	case UNICAST_ADDR: {
5266 		struct inet6_ifaddr *ifa;
5267 		fillargs->event = RTM_NEWADDR;
5268 
5269 		/* unicast address incl. temp addr */
5270 		list_for_each_entry(ifa, &idev->addr_list, if_list) {
5271 			if (ip_idx < s_ip_idx)
5272 				goto next;
5273 			err = inet6_fill_ifaddr(skb, ifa, fillargs);
5274 			if (err < 0)
5275 				break;
5276 			nl_dump_check_consistent(cb, nlmsg_hdr(skb));
5277 next:
5278 			ip_idx++;
5279 		}
5280 		break;
5281 	}
5282 	case MULTICAST_ADDR:
5283 		read_unlock_bh(&idev->lock);
5284 		fillargs->event = RTM_GETMULTICAST;
5285 
5286 		/* multicast address */
5287 		for (ifmca = rtnl_dereference(idev->mc_list);
5288 		     ifmca;
5289 		     ifmca = rtnl_dereference(ifmca->next), ip_idx++) {
5290 			if (ip_idx < s_ip_idx)
5291 				continue;
5292 			err = inet6_fill_ifmcaddr(skb, ifmca, fillargs);
5293 			if (err < 0)
5294 				break;
5295 		}
5296 		read_lock_bh(&idev->lock);
5297 		break;
5298 	case ANYCAST_ADDR:
5299 		fillargs->event = RTM_GETANYCAST;
5300 		/* anycast address */
5301 		for (ifaca = idev->ac_list; ifaca;
5302 		     ifaca = ifaca->aca_next, ip_idx++) {
5303 			if (ip_idx < s_ip_idx)
5304 				continue;
5305 			err = inet6_fill_ifacaddr(skb, ifaca, fillargs);
5306 			if (err < 0)
5307 				break;
5308 		}
5309 		break;
5310 	default:
5311 		break;
5312 	}
5313 	read_unlock_bh(&idev->lock);
5314 	cb->args[2] = ip_idx;
5315 	return err;
5316 }
5317 
5318 static int inet6_valid_dump_ifaddr_req(const struct nlmsghdr *nlh,
5319 				       struct inet6_fill_args *fillargs,
5320 				       struct net **tgt_net, struct sock *sk,
5321 				       struct netlink_callback *cb)
5322 {
5323 	struct netlink_ext_ack *extack = cb->extack;
5324 	struct nlattr *tb[IFA_MAX+1];
5325 	struct ifaddrmsg *ifm;
5326 	int err, i;
5327 
5328 	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5329 		NL_SET_ERR_MSG_MOD(extack, "Invalid header for address dump request");
5330 		return -EINVAL;
5331 	}
5332 
5333 	ifm = nlmsg_data(nlh);
5334 	if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) {
5335 		NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for address dump request");
5336 		return -EINVAL;
5337 	}
5338 
5339 	fillargs->ifindex = ifm->ifa_index;
5340 	if (fillargs->ifindex) {
5341 		cb->answer_flags |= NLM_F_DUMP_FILTERED;
5342 		fillargs->flags |= NLM_F_DUMP_FILTERED;
5343 	}
5344 
5345 	err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX,
5346 					    ifa_ipv6_policy, extack);
5347 	if (err < 0)
5348 		return err;
5349 
5350 	for (i = 0; i <= IFA_MAX; ++i) {
5351 		if (!tb[i])
5352 			continue;
5353 
5354 		if (i == IFA_TARGET_NETNSID) {
5355 			struct net *net;
5356 
5357 			fillargs->netnsid = nla_get_s32(tb[i]);
5358 			net = rtnl_get_net_ns_capable(sk, fillargs->netnsid);
5359 			if (IS_ERR(net)) {
5360 				fillargs->netnsid = -1;
5361 				NL_SET_ERR_MSG_MOD(extack, "Invalid target network namespace id");
5362 				return PTR_ERR(net);
5363 			}
5364 			*tgt_net = net;
5365 		} else {
5366 			NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in dump request");
5367 			return -EINVAL;
5368 		}
5369 	}
5370 
5371 	return 0;
5372 }
5373 
5374 static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
5375 			   enum addr_type_t type)
5376 {
5377 	const struct nlmsghdr *nlh = cb->nlh;
5378 	struct inet6_fill_args fillargs = {
5379 		.portid = NETLINK_CB(cb->skb).portid,
5380 		.seq = cb->nlh->nlmsg_seq,
5381 		.flags = NLM_F_MULTI,
5382 		.netnsid = -1,
5383 		.type = type,
5384 	};
5385 	struct net *tgt_net = sock_net(skb->sk);
5386 	int idx, s_idx, s_ip_idx;
5387 	int h, s_h;
5388 	struct net_device *dev;
5389 	struct inet6_dev *idev;
5390 	struct hlist_head *head;
5391 	int err = 0;
5392 
5393 	s_h = cb->args[0];
5394 	s_idx = idx = cb->args[1];
5395 	s_ip_idx = cb->args[2];
5396 
5397 	if (cb->strict_check) {
5398 		err = inet6_valid_dump_ifaddr_req(nlh, &fillargs, &tgt_net,
5399 						  skb->sk, cb);
5400 		if (err < 0)
5401 			goto put_tgt_net;
5402 
5403 		err = 0;
5404 		if (fillargs.ifindex) {
5405 			dev = __dev_get_by_index(tgt_net, fillargs.ifindex);
5406 			if (!dev) {
5407 				err = -ENODEV;
5408 				goto put_tgt_net;
5409 			}
5410 			idev = __in6_dev_get(dev);
5411 			if (idev) {
5412 				err = in6_dump_addrs(idev, skb, cb, s_ip_idx,
5413 						     &fillargs);
5414 				if (err > 0)
5415 					err = 0;
5416 			}
5417 			goto put_tgt_net;
5418 		}
5419 	}
5420 
5421 	rcu_read_lock();
5422 	cb->seq = atomic_read(&tgt_net->ipv6.dev_addr_genid) ^ tgt_net->dev_base_seq;
5423 	for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
5424 		idx = 0;
5425 		head = &tgt_net->dev_index_head[h];
5426 		hlist_for_each_entry_rcu(dev, head, index_hlist) {
5427 			if (idx < s_idx)
5428 				goto cont;
5429 			if (h > s_h || idx > s_idx)
5430 				s_ip_idx = 0;
5431 			idev = __in6_dev_get(dev);
5432 			if (!idev)
5433 				goto cont;
5434 
5435 			if (in6_dump_addrs(idev, skb, cb, s_ip_idx,
5436 					   &fillargs) < 0)
5437 				goto done;
5438 cont:
5439 			idx++;
5440 		}
5441 	}
5442 done:
5443 	rcu_read_unlock();
5444 	cb->args[0] = h;
5445 	cb->args[1] = idx;
5446 put_tgt_net:
5447 	if (fillargs.netnsid >= 0)
5448 		put_net(tgt_net);
5449 
5450 	return skb->len ? : err;
5451 }
5452 
5453 static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
5454 {
5455 	enum addr_type_t type = UNICAST_ADDR;
5456 
5457 	return inet6_dump_addr(skb, cb, type);
5458 }
5459 
5460 static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
5461 {
5462 	enum addr_type_t type = MULTICAST_ADDR;
5463 
5464 	return inet6_dump_addr(skb, cb, type);
5465 }
5466 
5467 
5468 static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
5469 {
5470 	enum addr_type_t type = ANYCAST_ADDR;
5471 
5472 	return inet6_dump_addr(skb, cb, type);
5473 }
5474 
5475 static int inet6_rtm_valid_getaddr_req(struct sk_buff *skb,
5476 				       const struct nlmsghdr *nlh,
5477 				       struct nlattr **tb,
5478 				       struct netlink_ext_ack *extack)
5479 {
5480 	struct ifaddrmsg *ifm;
5481 	int i, err;
5482 
5483 	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5484 		NL_SET_ERR_MSG_MOD(extack, "Invalid header for get address request");
5485 		return -EINVAL;
5486 	}
5487 
5488 	if (!netlink_strict_get_check(skb))
5489 		return nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
5490 					      ifa_ipv6_policy, extack);
5491 
5492 	ifm = nlmsg_data(nlh);
5493 	if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) {
5494 		NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get address request");
5495 		return -EINVAL;
5496 	}
5497 
5498 	err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX,
5499 					    ifa_ipv6_policy, extack);
5500 	if (err)
5501 		return err;
5502 
5503 	for (i = 0; i <= IFA_MAX; i++) {
5504 		if (!tb[i])
5505 			continue;
5506 
5507 		switch (i) {
5508 		case IFA_TARGET_NETNSID:
5509 		case IFA_ADDRESS:
5510 		case IFA_LOCAL:
5511 			break;
5512 		default:
5513 			NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get address request");
5514 			return -EINVAL;
5515 		}
5516 	}
5517 
5518 	return 0;
5519 }
5520 
5521 static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
5522 			     struct netlink_ext_ack *extack)
5523 {
5524 	struct net *tgt_net = sock_net(in_skb->sk);
5525 	struct inet6_fill_args fillargs = {
5526 		.portid = NETLINK_CB(in_skb).portid,
5527 		.seq = nlh->nlmsg_seq,
5528 		.event = RTM_NEWADDR,
5529 		.flags = 0,
5530 		.netnsid = -1,
5531 	};
5532 	struct ifaddrmsg *ifm;
5533 	struct nlattr *tb[IFA_MAX+1];
5534 	struct in6_addr *addr = NULL, *peer;
5535 	struct net_device *dev = NULL;
5536 	struct inet6_ifaddr *ifa;
5537 	struct sk_buff *skb;
5538 	int err;
5539 
5540 	err = inet6_rtm_valid_getaddr_req(in_skb, nlh, tb, extack);
5541 	if (err < 0)
5542 		return err;
5543 
5544 	if (tb[IFA_TARGET_NETNSID]) {
5545 		fillargs.netnsid = nla_get_s32(tb[IFA_TARGET_NETNSID]);
5546 
5547 		tgt_net = rtnl_get_net_ns_capable(NETLINK_CB(in_skb).sk,
5548 						  fillargs.netnsid);
5549 		if (IS_ERR(tgt_net))
5550 			return PTR_ERR(tgt_net);
5551 	}
5552 
5553 	addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
5554 	if (!addr)
5555 		return -EINVAL;
5556 
5557 	ifm = nlmsg_data(nlh);
5558 	if (ifm->ifa_index)
5559 		dev = dev_get_by_index(tgt_net, ifm->ifa_index);
5560 
5561 	ifa = ipv6_get_ifaddr(tgt_net, addr, dev, 1);
5562 	if (!ifa) {
5563 		err = -EADDRNOTAVAIL;
5564 		goto errout;
5565 	}
5566 
5567 	skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
5568 	if (!skb) {
5569 		err = -ENOBUFS;
5570 		goto errout_ifa;
5571 	}
5572 
5573 	err = inet6_fill_ifaddr(skb, ifa, &fillargs);
5574 	if (err < 0) {
5575 		/* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5576 		WARN_ON(err == -EMSGSIZE);
5577 		kfree_skb(skb);
5578 		goto errout_ifa;
5579 	}
5580 	err = rtnl_unicast(skb, tgt_net, NETLINK_CB(in_skb).portid);
5581 errout_ifa:
5582 	in6_ifa_put(ifa);
5583 errout:
5584 	dev_put(dev);
5585 	if (fillargs.netnsid >= 0)
5586 		put_net(tgt_net);
5587 
5588 	return err;
5589 }
5590 
5591 static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
5592 {
5593 	struct sk_buff *skb;
5594 	struct net *net = dev_net(ifa->idev->dev);
5595 	struct inet6_fill_args fillargs = {
5596 		.portid = 0,
5597 		.seq = 0,
5598 		.event = event,
5599 		.flags = 0,
5600 		.netnsid = -1,
5601 	};
5602 	int err = -ENOBUFS;
5603 
5604 	skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
5605 	if (!skb)
5606 		goto errout;
5607 
5608 	err = inet6_fill_ifaddr(skb, ifa, &fillargs);
5609 	if (err < 0) {
5610 		/* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5611 		WARN_ON(err == -EMSGSIZE);
5612 		kfree_skb(skb);
5613 		goto errout;
5614 	}
5615 	rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
5616 	return;
5617 errout:
5618 	if (err < 0)
5619 		rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
5620 }
5621 
5622 static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
5623 				__s32 *array, int bytes)
5624 {
5625 	BUG_ON(bytes < (DEVCONF_MAX * 4));
5626 
5627 	memset(array, 0, bytes);
5628 	array[DEVCONF_FORWARDING] = cnf->forwarding;
5629 	array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
5630 	array[DEVCONF_MTU6] = cnf->mtu6;
5631 	array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
5632 	array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
5633 	array[DEVCONF_AUTOCONF] = cnf->autoconf;
5634 	array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
5635 	array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
5636 	array[DEVCONF_RTR_SOLICIT_INTERVAL] =
5637 		jiffies_to_msecs(cnf->rtr_solicit_interval);
5638 	array[DEVCONF_RTR_SOLICIT_MAX_INTERVAL] =
5639 		jiffies_to_msecs(cnf->rtr_solicit_max_interval);
5640 	array[DEVCONF_RTR_SOLICIT_DELAY] =
5641 		jiffies_to_msecs(cnf->rtr_solicit_delay);
5642 	array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
5643 	array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
5644 		jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
5645 	array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
5646 		jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
5647 	array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
5648 	array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
5649 	array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
5650 	array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
5651 	array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
5652 	array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
5653 	array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
5654 	array[DEVCONF_RA_DEFRTR_METRIC] = cnf->ra_defrtr_metric;
5655 	array[DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT] = cnf->accept_ra_min_hop_limit;
5656 	array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
5657 #ifdef CONFIG_IPV6_ROUTER_PREF
5658 	array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
5659 	array[DEVCONF_RTR_PROBE_INTERVAL] =
5660 		jiffies_to_msecs(cnf->rtr_probe_interval);
5661 #ifdef CONFIG_IPV6_ROUTE_INFO
5662 	array[DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN] = cnf->accept_ra_rt_info_min_plen;
5663 	array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
5664 #endif
5665 #endif
5666 	array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
5667 	array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
5668 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5669 	array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
5670 	array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic;
5671 #endif
5672 #ifdef CONFIG_IPV6_MROUTE
5673 	array[DEVCONF_MC_FORWARDING] = atomic_read(&cnf->mc_forwarding);
5674 #endif
5675 	array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
5676 	array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
5677 	array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
5678 	array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
5679 	array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
5680 	array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local;
5681 	array[DEVCONF_ACCEPT_RA_MTU] = cnf->accept_ra_mtu;
5682 	array[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN] = cnf->ignore_routes_with_linkdown;
5683 	/* we omit DEVCONF_STABLE_SECRET for now */
5684 	array[DEVCONF_USE_OIF_ADDRS_ONLY] = cnf->use_oif_addrs_only;
5685 	array[DEVCONF_DROP_UNICAST_IN_L2_MULTICAST] = cnf->drop_unicast_in_l2_multicast;
5686 	array[DEVCONF_DROP_UNSOLICITED_NA] = cnf->drop_unsolicited_na;
5687 	array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down;
5688 	array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled;
5689 #ifdef CONFIG_IPV6_SEG6_HMAC
5690 	array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac;
5691 #endif
5692 	array[DEVCONF_ENHANCED_DAD] = cnf->enhanced_dad;
5693 	array[DEVCONF_ADDR_GEN_MODE] = cnf->addr_gen_mode;
5694 	array[DEVCONF_DISABLE_POLICY] = cnf->disable_policy;
5695 	array[DEVCONF_NDISC_TCLASS] = cnf->ndisc_tclass;
5696 	array[DEVCONF_RPL_SEG_ENABLED] = cnf->rpl_seg_enabled;
5697 	array[DEVCONF_IOAM6_ENABLED] = cnf->ioam6_enabled;
5698 	array[DEVCONF_IOAM6_ID] = cnf->ioam6_id;
5699 	array[DEVCONF_IOAM6_ID_WIDE] = cnf->ioam6_id_wide;
5700 	array[DEVCONF_NDISC_EVICT_NOCARRIER] = cnf->ndisc_evict_nocarrier;
5701 	array[DEVCONF_ACCEPT_UNTRACKED_NA] = cnf->accept_untracked_na;
5702 	array[DEVCONF_ACCEPT_RA_MIN_LFT] = cnf->accept_ra_min_lft;
5703 }
5704 
5705 static inline size_t inet6_ifla6_size(void)
5706 {
5707 	return nla_total_size(4) /* IFLA_INET6_FLAGS */
5708 	     + nla_total_size(sizeof(struct ifla_cacheinfo))
5709 	     + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
5710 	     + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
5711 	     + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
5712 	     + nla_total_size(sizeof(struct in6_addr)) /* IFLA_INET6_TOKEN */
5713 	     + nla_total_size(1) /* IFLA_INET6_ADDR_GEN_MODE */
5714 	     + nla_total_size(4) /* IFLA_INET6_RA_MTU */
5715 	     + 0;
5716 }
5717 
5718 static inline size_t inet6_if_nlmsg_size(void)
5719 {
5720 	return NLMSG_ALIGN(sizeof(struct ifinfomsg))
5721 	       + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
5722 	       + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
5723 	       + nla_total_size(4) /* IFLA_MTU */
5724 	       + nla_total_size(4) /* IFLA_LINK */
5725 	       + nla_total_size(1) /* IFLA_OPERSTATE */
5726 	       + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
5727 }
5728 
5729 static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
5730 					int bytes)
5731 {
5732 	int i;
5733 	int pad = bytes - sizeof(u64) * ICMP6_MIB_MAX;
5734 	BUG_ON(pad < 0);
5735 
5736 	/* Use put_unaligned() because stats may not be aligned for u64. */
5737 	put_unaligned(ICMP6_MIB_MAX, &stats[0]);
5738 	for (i = 1; i < ICMP6_MIB_MAX; i++)
5739 		put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
5740 
5741 	memset(&stats[ICMP6_MIB_MAX], 0, pad);
5742 }
5743 
5744 static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib,
5745 					int bytes, size_t syncpoff)
5746 {
5747 	int i, c;
5748 	u64 buff[IPSTATS_MIB_MAX];
5749 	int pad = bytes - sizeof(u64) * IPSTATS_MIB_MAX;
5750 
5751 	BUG_ON(pad < 0);
5752 
5753 	memset(buff, 0, sizeof(buff));
5754 	buff[0] = IPSTATS_MIB_MAX;
5755 
5756 	for_each_possible_cpu(c) {
5757 		for (i = 1; i < IPSTATS_MIB_MAX; i++)
5758 			buff[i] += snmp_get_cpu_field64(mib, c, i, syncpoff);
5759 	}
5760 
5761 	memcpy(stats, buff, IPSTATS_MIB_MAX * sizeof(u64));
5762 	memset(&stats[IPSTATS_MIB_MAX], 0, pad);
5763 }
5764 
5765 static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
5766 			     int bytes)
5767 {
5768 	switch (attrtype) {
5769 	case IFLA_INET6_STATS:
5770 		__snmp6_fill_stats64(stats, idev->stats.ipv6, bytes,
5771 				     offsetof(struct ipstats_mib, syncp));
5772 		break;
5773 	case IFLA_INET6_ICMP6STATS:
5774 		__snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, bytes);
5775 		break;
5776 	}
5777 }
5778 
5779 static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev,
5780 				  u32 ext_filter_mask)
5781 {
5782 	struct nlattr *nla;
5783 	struct ifla_cacheinfo ci;
5784 
5785 	if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
5786 		goto nla_put_failure;
5787 	ci.max_reasm_len = IPV6_MAXPLEN;
5788 	ci.tstamp = cstamp_delta(idev->tstamp);
5789 	ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
5790 	ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
5791 	if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
5792 		goto nla_put_failure;
5793 	nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
5794 	if (!nla)
5795 		goto nla_put_failure;
5796 	ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
5797 
5798 	/* XXX - MC not implemented */
5799 
5800 	if (ext_filter_mask & RTEXT_FILTER_SKIP_STATS)
5801 		return 0;
5802 
5803 	nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
5804 	if (!nla)
5805 		goto nla_put_failure;
5806 	snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
5807 
5808 	nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
5809 	if (!nla)
5810 		goto nla_put_failure;
5811 	snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
5812 
5813 	nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
5814 	if (!nla)
5815 		goto nla_put_failure;
5816 	read_lock_bh(&idev->lock);
5817 	memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
5818 	read_unlock_bh(&idev->lock);
5819 
5820 	if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->cnf.addr_gen_mode))
5821 		goto nla_put_failure;
5822 
5823 	if (idev->ra_mtu &&
5824 	    nla_put_u32(skb, IFLA_INET6_RA_MTU, idev->ra_mtu))
5825 		goto nla_put_failure;
5826 
5827 	return 0;
5828 
5829 nla_put_failure:
5830 	return -EMSGSIZE;
5831 }
5832 
5833 static size_t inet6_get_link_af_size(const struct net_device *dev,
5834 				     u32 ext_filter_mask)
5835 {
5836 	if (!__in6_dev_get(dev))
5837 		return 0;
5838 
5839 	return inet6_ifla6_size();
5840 }
5841 
5842 static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev,
5843 			      u32 ext_filter_mask)
5844 {
5845 	struct inet6_dev *idev = __in6_dev_get(dev);
5846 
5847 	if (!idev)
5848 		return -ENODATA;
5849 
5850 	if (inet6_fill_ifla6_attrs(skb, idev, ext_filter_mask) < 0)
5851 		return -EMSGSIZE;
5852 
5853 	return 0;
5854 }
5855 
5856 static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token,
5857 			     struct netlink_ext_ack *extack)
5858 {
5859 	struct inet6_ifaddr *ifp;
5860 	struct net_device *dev = idev->dev;
5861 	bool clear_token, update_rs = false;
5862 	struct in6_addr ll_addr;
5863 
5864 	ASSERT_RTNL();
5865 
5866 	if (!token)
5867 		return -EINVAL;
5868 
5869 	if (dev->flags & IFF_LOOPBACK) {
5870 		NL_SET_ERR_MSG_MOD(extack, "Device is loopback");
5871 		return -EINVAL;
5872 	}
5873 
5874 	if (dev->flags & IFF_NOARP) {
5875 		NL_SET_ERR_MSG_MOD(extack,
5876 				   "Device does not do neighbour discovery");
5877 		return -EINVAL;
5878 	}
5879 
5880 	if (!ipv6_accept_ra(idev)) {
5881 		NL_SET_ERR_MSG_MOD(extack,
5882 				   "Router advertisement is disabled on device");
5883 		return -EINVAL;
5884 	}
5885 
5886 	if (idev->cnf.rtr_solicits == 0) {
5887 		NL_SET_ERR_MSG(extack,
5888 			       "Router solicitation is disabled on device");
5889 		return -EINVAL;
5890 	}
5891 
5892 	write_lock_bh(&idev->lock);
5893 
5894 	BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
5895 	memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
5896 
5897 	write_unlock_bh(&idev->lock);
5898 
5899 	clear_token = ipv6_addr_any(token);
5900 	if (clear_token)
5901 		goto update_lft;
5902 
5903 	if (!idev->dead && (idev->if_flags & IF_READY) &&
5904 	    !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
5905 			     IFA_F_OPTIMISTIC)) {
5906 		/* If we're not ready, then normal ifup will take care
5907 		 * of this. Otherwise, we need to request our rs here.
5908 		 */
5909 		ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
5910 		update_rs = true;
5911 	}
5912 
5913 update_lft:
5914 	write_lock_bh(&idev->lock);
5915 
5916 	if (update_rs) {
5917 		idev->if_flags |= IF_RS_SENT;
5918 		idev->rs_interval = rfc3315_s14_backoff_init(
5919 			idev->cnf.rtr_solicit_interval);
5920 		idev->rs_probes = 1;
5921 		addrconf_mod_rs_timer(idev, idev->rs_interval);
5922 	}
5923 
5924 	/* Well, that's kinda nasty ... */
5925 	list_for_each_entry(ifp, &idev->addr_list, if_list) {
5926 		spin_lock(&ifp->lock);
5927 		if (ifp->tokenized) {
5928 			ifp->valid_lft = 0;
5929 			ifp->prefered_lft = 0;
5930 		}
5931 		spin_unlock(&ifp->lock);
5932 	}
5933 
5934 	write_unlock_bh(&idev->lock);
5935 	inet6_ifinfo_notify(RTM_NEWLINK, idev);
5936 	addrconf_verify_rtnl(dev_net(dev));
5937 	return 0;
5938 }
5939 
5940 static const struct nla_policy inet6_af_policy[IFLA_INET6_MAX + 1] = {
5941 	[IFLA_INET6_ADDR_GEN_MODE]	= { .type = NLA_U8 },
5942 	[IFLA_INET6_TOKEN]		= { .len = sizeof(struct in6_addr) },
5943 	[IFLA_INET6_RA_MTU]		= { .type = NLA_REJECT,
5944 					    .reject_message =
5945 						"IFLA_INET6_RA_MTU can not be set" },
5946 };
5947 
5948 static int check_addr_gen_mode(int mode)
5949 {
5950 	if (mode != IN6_ADDR_GEN_MODE_EUI64 &&
5951 	    mode != IN6_ADDR_GEN_MODE_NONE &&
5952 	    mode != IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5953 	    mode != IN6_ADDR_GEN_MODE_RANDOM)
5954 		return -EINVAL;
5955 	return 1;
5956 }
5957 
5958 static int check_stable_privacy(struct inet6_dev *idev, struct net *net,
5959 				int mode)
5960 {
5961 	if (mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5962 	    !idev->cnf.stable_secret.initialized &&
5963 	    !net->ipv6.devconf_dflt->stable_secret.initialized)
5964 		return -EINVAL;
5965 	return 1;
5966 }
5967 
5968 static int inet6_validate_link_af(const struct net_device *dev,
5969 				  const struct nlattr *nla,
5970 				  struct netlink_ext_ack *extack)
5971 {
5972 	struct nlattr *tb[IFLA_INET6_MAX + 1];
5973 	struct inet6_dev *idev = NULL;
5974 	int err;
5975 
5976 	if (dev) {
5977 		idev = __in6_dev_get(dev);
5978 		if (!idev)
5979 			return -EAFNOSUPPORT;
5980 	}
5981 
5982 	err = nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla,
5983 					  inet6_af_policy, extack);
5984 	if (err)
5985 		return err;
5986 
5987 	if (!tb[IFLA_INET6_TOKEN] && !tb[IFLA_INET6_ADDR_GEN_MODE])
5988 		return -EINVAL;
5989 
5990 	if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
5991 		u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
5992 
5993 		if (check_addr_gen_mode(mode) < 0)
5994 			return -EINVAL;
5995 		if (dev && check_stable_privacy(idev, dev_net(dev), mode) < 0)
5996 			return -EINVAL;
5997 	}
5998 
5999 	return 0;
6000 }
6001 
6002 static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla,
6003 			     struct netlink_ext_ack *extack)
6004 {
6005 	struct inet6_dev *idev = __in6_dev_get(dev);
6006 	struct nlattr *tb[IFLA_INET6_MAX + 1];
6007 	int err;
6008 
6009 	if (!idev)
6010 		return -EAFNOSUPPORT;
6011 
6012 	if (nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0)
6013 		return -EINVAL;
6014 
6015 	if (tb[IFLA_INET6_TOKEN]) {
6016 		err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]),
6017 					extack);
6018 		if (err)
6019 			return err;
6020 	}
6021 
6022 	if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
6023 		u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
6024 
6025 		idev->cnf.addr_gen_mode = mode;
6026 	}
6027 
6028 	return 0;
6029 }
6030 
6031 static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
6032 			     u32 portid, u32 seq, int event, unsigned int flags)
6033 {
6034 	struct net_device *dev = idev->dev;
6035 	struct ifinfomsg *hdr;
6036 	struct nlmsghdr *nlh;
6037 	void *protoinfo;
6038 
6039 	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
6040 	if (!nlh)
6041 		return -EMSGSIZE;
6042 
6043 	hdr = nlmsg_data(nlh);
6044 	hdr->ifi_family = AF_INET6;
6045 	hdr->__ifi_pad = 0;
6046 	hdr->ifi_type = dev->type;
6047 	hdr->ifi_index = dev->ifindex;
6048 	hdr->ifi_flags = dev_get_flags(dev);
6049 	hdr->ifi_change = 0;
6050 
6051 	if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
6052 	    (dev->addr_len &&
6053 	     nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
6054 	    nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
6055 	    (dev->ifindex != dev_get_iflink(dev) &&
6056 	     nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) ||
6057 	    nla_put_u8(skb, IFLA_OPERSTATE,
6058 		       netif_running(dev) ? READ_ONCE(dev->operstate) : IF_OPER_DOWN))
6059 		goto nla_put_failure;
6060 	protoinfo = nla_nest_start_noflag(skb, IFLA_PROTINFO);
6061 	if (!protoinfo)
6062 		goto nla_put_failure;
6063 
6064 	if (inet6_fill_ifla6_attrs(skb, idev, 0) < 0)
6065 		goto nla_put_failure;
6066 
6067 	nla_nest_end(skb, protoinfo);
6068 	nlmsg_end(skb, nlh);
6069 	return 0;
6070 
6071 nla_put_failure:
6072 	nlmsg_cancel(skb, nlh);
6073 	return -EMSGSIZE;
6074 }
6075 
6076 static int inet6_valid_dump_ifinfo(const struct nlmsghdr *nlh,
6077 				   struct netlink_ext_ack *extack)
6078 {
6079 	struct ifinfomsg *ifm;
6080 
6081 	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
6082 		NL_SET_ERR_MSG_MOD(extack, "Invalid header for link dump request");
6083 		return -EINVAL;
6084 	}
6085 
6086 	if (nlmsg_attrlen(nlh, sizeof(*ifm))) {
6087 		NL_SET_ERR_MSG_MOD(extack, "Invalid data after header");
6088 		return -EINVAL;
6089 	}
6090 
6091 	ifm = nlmsg_data(nlh);
6092 	if (ifm->__ifi_pad || ifm->ifi_type || ifm->ifi_flags ||
6093 	    ifm->ifi_change || ifm->ifi_index) {
6094 		NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for dump request");
6095 		return -EINVAL;
6096 	}
6097 
6098 	return 0;
6099 }
6100 
6101 static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
6102 {
6103 	struct net *net = sock_net(skb->sk);
6104 	int h, s_h;
6105 	int idx = 0, s_idx;
6106 	struct net_device *dev;
6107 	struct inet6_dev *idev;
6108 	struct hlist_head *head;
6109 
6110 	/* only requests using strict checking can pass data to
6111 	 * influence the dump
6112 	 */
6113 	if (cb->strict_check) {
6114 		int err = inet6_valid_dump_ifinfo(cb->nlh, cb->extack);
6115 
6116 		if (err < 0)
6117 			return err;
6118 	}
6119 
6120 	s_h = cb->args[0];
6121 	s_idx = cb->args[1];
6122 
6123 	rcu_read_lock();
6124 	for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
6125 		idx = 0;
6126 		head = &net->dev_index_head[h];
6127 		hlist_for_each_entry_rcu(dev, head, index_hlist) {
6128 			if (idx < s_idx)
6129 				goto cont;
6130 			idev = __in6_dev_get(dev);
6131 			if (!idev)
6132 				goto cont;
6133 			if (inet6_fill_ifinfo(skb, idev,
6134 					      NETLINK_CB(cb->skb).portid,
6135 					      cb->nlh->nlmsg_seq,
6136 					      RTM_NEWLINK, NLM_F_MULTI) < 0)
6137 				goto out;
6138 cont:
6139 			idx++;
6140 		}
6141 	}
6142 out:
6143 	rcu_read_unlock();
6144 	cb->args[1] = idx;
6145 	cb->args[0] = h;
6146 
6147 	return skb->len;
6148 }
6149 
6150 void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
6151 {
6152 	struct sk_buff *skb;
6153 	struct net *net = dev_net(idev->dev);
6154 	int err = -ENOBUFS;
6155 
6156 	skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
6157 	if (!skb)
6158 		goto errout;
6159 
6160 	err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
6161 	if (err < 0) {
6162 		/* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
6163 		WARN_ON(err == -EMSGSIZE);
6164 		kfree_skb(skb);
6165 		goto errout;
6166 	}
6167 	rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
6168 	return;
6169 errout:
6170 	if (err < 0)
6171 		rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
6172 }
6173 
6174 static inline size_t inet6_prefix_nlmsg_size(void)
6175 {
6176 	return NLMSG_ALIGN(sizeof(struct prefixmsg))
6177 	       + nla_total_size(sizeof(struct in6_addr))
6178 	       + nla_total_size(sizeof(struct prefix_cacheinfo));
6179 }
6180 
6181 static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
6182 			     struct prefix_info *pinfo, u32 portid, u32 seq,
6183 			     int event, unsigned int flags)
6184 {
6185 	struct prefixmsg *pmsg;
6186 	struct nlmsghdr *nlh;
6187 	struct prefix_cacheinfo	ci;
6188 
6189 	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
6190 	if (!nlh)
6191 		return -EMSGSIZE;
6192 
6193 	pmsg = nlmsg_data(nlh);
6194 	pmsg->prefix_family = AF_INET6;
6195 	pmsg->prefix_pad1 = 0;
6196 	pmsg->prefix_pad2 = 0;
6197 	pmsg->prefix_ifindex = idev->dev->ifindex;
6198 	pmsg->prefix_len = pinfo->prefix_len;
6199 	pmsg->prefix_type = pinfo->type;
6200 	pmsg->prefix_pad3 = 0;
6201 	pmsg->prefix_flags = pinfo->flags;
6202 
6203 	if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
6204 		goto nla_put_failure;
6205 	ci.preferred_time = ntohl(pinfo->prefered);
6206 	ci.valid_time = ntohl(pinfo->valid);
6207 	if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
6208 		goto nla_put_failure;
6209 	nlmsg_end(skb, nlh);
6210 	return 0;
6211 
6212 nla_put_failure:
6213 	nlmsg_cancel(skb, nlh);
6214 	return -EMSGSIZE;
6215 }
6216 
6217 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
6218 			 struct prefix_info *pinfo)
6219 {
6220 	struct sk_buff *skb;
6221 	struct net *net = dev_net(idev->dev);
6222 	int err = -ENOBUFS;
6223 
6224 	skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
6225 	if (!skb)
6226 		goto errout;
6227 
6228 	err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
6229 	if (err < 0) {
6230 		/* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
6231 		WARN_ON(err == -EMSGSIZE);
6232 		kfree_skb(skb);
6233 		goto errout;
6234 	}
6235 	rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
6236 	return;
6237 errout:
6238 	if (err < 0)
6239 		rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
6240 }
6241 
6242 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
6243 {
6244 	struct net *net = dev_net(ifp->idev->dev);
6245 
6246 	if (event)
6247 		ASSERT_RTNL();
6248 
6249 	inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
6250 
6251 	switch (event) {
6252 	case RTM_NEWADDR:
6253 		/*
6254 		 * If the address was optimistic we inserted the route at the
6255 		 * start of our DAD process, so we don't need to do it again.
6256 		 * If the device was taken down in the middle of the DAD
6257 		 * cycle there is a race where we could get here without a
6258 		 * host route, so nothing to insert. That will be fixed when
6259 		 * the device is brought up.
6260 		 */
6261 		if (ifp->rt && !rcu_access_pointer(ifp->rt->fib6_node)) {
6262 			ip6_ins_rt(net, ifp->rt);
6263 		} else if (!ifp->rt && (ifp->idev->dev->flags & IFF_UP)) {
6264 			pr_warn("BUG: Address %pI6c on device %s is missing its host route.\n",
6265 				&ifp->addr, ifp->idev->dev->name);
6266 		}
6267 
6268 		if (ifp->idev->cnf.forwarding)
6269 			addrconf_join_anycast(ifp);
6270 		if (!ipv6_addr_any(&ifp->peer_addr))
6271 			addrconf_prefix_route(&ifp->peer_addr, 128,
6272 					      ifp->rt_priority, ifp->idev->dev,
6273 					      0, 0, GFP_ATOMIC);
6274 		break;
6275 	case RTM_DELADDR:
6276 		if (ifp->idev->cnf.forwarding)
6277 			addrconf_leave_anycast(ifp);
6278 		addrconf_leave_solict(ifp->idev, &ifp->addr);
6279 		if (!ipv6_addr_any(&ifp->peer_addr)) {
6280 			struct fib6_info *rt;
6281 
6282 			rt = addrconf_get_prefix_route(&ifp->peer_addr, 128,
6283 						       ifp->idev->dev, 0, 0,
6284 						       false);
6285 			if (rt)
6286 				ip6_del_rt(net, rt, false);
6287 		}
6288 		if (ifp->rt) {
6289 			ip6_del_rt(net, ifp->rt, false);
6290 			ifp->rt = NULL;
6291 		}
6292 		rt_genid_bump_ipv6(net);
6293 		break;
6294 	}
6295 	atomic_inc(&net->ipv6.dev_addr_genid);
6296 }
6297 
6298 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
6299 {
6300 	if (likely(ifp->idev->dead == 0))
6301 		__ipv6_ifa_notify(event, ifp);
6302 }
6303 
6304 #ifdef CONFIG_SYSCTL
6305 
6306 static int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
6307 		void *buffer, size_t *lenp, loff_t *ppos)
6308 {
6309 	int *valp = ctl->data;
6310 	int val = *valp;
6311 	loff_t pos = *ppos;
6312 	struct ctl_table lctl;
6313 	int ret;
6314 
6315 	/*
6316 	 * ctl->data points to idev->cnf.forwarding, we should
6317 	 * not modify it until we get the rtnl lock.
6318 	 */
6319 	lctl = *ctl;
6320 	lctl.data = &val;
6321 
6322 	ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6323 
6324 	if (write)
6325 		ret = addrconf_fixup_forwarding(ctl, valp, val);
6326 	if (ret)
6327 		*ppos = pos;
6328 	return ret;
6329 }
6330 
6331 static int addrconf_sysctl_mtu(struct ctl_table *ctl, int write,
6332 		void *buffer, size_t *lenp, loff_t *ppos)
6333 {
6334 	struct inet6_dev *idev = ctl->extra1;
6335 	int min_mtu = IPV6_MIN_MTU;
6336 	struct ctl_table lctl;
6337 
6338 	lctl = *ctl;
6339 	lctl.extra1 = &min_mtu;
6340 	lctl.extra2 = idev ? &idev->dev->mtu : NULL;
6341 
6342 	return proc_dointvec_minmax(&lctl, write, buffer, lenp, ppos);
6343 }
6344 
6345 static void dev_disable_change(struct inet6_dev *idev)
6346 {
6347 	struct netdev_notifier_info info;
6348 
6349 	if (!idev || !idev->dev)
6350 		return;
6351 
6352 	netdev_notifier_info_init(&info, idev->dev);
6353 	if (idev->cnf.disable_ipv6)
6354 		addrconf_notify(NULL, NETDEV_DOWN, &info);
6355 	else
6356 		addrconf_notify(NULL, NETDEV_UP, &info);
6357 }
6358 
6359 static void addrconf_disable_change(struct net *net, __s32 newf)
6360 {
6361 	struct net_device *dev;
6362 	struct inet6_dev *idev;
6363 
6364 	for_each_netdev(net, dev) {
6365 		idev = __in6_dev_get(dev);
6366 		if (idev) {
6367 			int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
6368 			idev->cnf.disable_ipv6 = newf;
6369 			if (changed)
6370 				dev_disable_change(idev);
6371 		}
6372 	}
6373 }
6374 
6375 static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
6376 {
6377 	struct net *net;
6378 	int old;
6379 
6380 	if (!rtnl_trylock())
6381 		return restart_syscall();
6382 
6383 	net = (struct net *)table->extra2;
6384 	old = *p;
6385 	*p = newf;
6386 
6387 	if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
6388 		rtnl_unlock();
6389 		return 0;
6390 	}
6391 
6392 	if (p == &net->ipv6.devconf_all->disable_ipv6) {
6393 		net->ipv6.devconf_dflt->disable_ipv6 = newf;
6394 		addrconf_disable_change(net, newf);
6395 	} else if ((!newf) ^ (!old))
6396 		dev_disable_change((struct inet6_dev *)table->extra1);
6397 
6398 	rtnl_unlock();
6399 	return 0;
6400 }
6401 
6402 static int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
6403 		void *buffer, size_t *lenp, loff_t *ppos)
6404 {
6405 	int *valp = ctl->data;
6406 	int val = *valp;
6407 	loff_t pos = *ppos;
6408 	struct ctl_table lctl;
6409 	int ret;
6410 
6411 	/*
6412 	 * ctl->data points to idev->cnf.disable_ipv6, we should
6413 	 * not modify it until we get the rtnl lock.
6414 	 */
6415 	lctl = *ctl;
6416 	lctl.data = &val;
6417 
6418 	ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6419 
6420 	if (write)
6421 		ret = addrconf_disable_ipv6(ctl, valp, val);
6422 	if (ret)
6423 		*ppos = pos;
6424 	return ret;
6425 }
6426 
6427 static int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
6428 		void *buffer, size_t *lenp, loff_t *ppos)
6429 {
6430 	int *valp = ctl->data;
6431 	int ret;
6432 	int old, new;
6433 
6434 	old = *valp;
6435 	ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
6436 	new = *valp;
6437 
6438 	if (write && old != new) {
6439 		struct net *net = ctl->extra2;
6440 
6441 		if (!rtnl_trylock())
6442 			return restart_syscall();
6443 
6444 		if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
6445 			inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6446 						     NETCONFA_PROXY_NEIGH,
6447 						     NETCONFA_IFINDEX_DEFAULT,
6448 						     net->ipv6.devconf_dflt);
6449 		else if (valp == &net->ipv6.devconf_all->proxy_ndp)
6450 			inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6451 						     NETCONFA_PROXY_NEIGH,
6452 						     NETCONFA_IFINDEX_ALL,
6453 						     net->ipv6.devconf_all);
6454 		else {
6455 			struct inet6_dev *idev = ctl->extra1;
6456 
6457 			inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6458 						     NETCONFA_PROXY_NEIGH,
6459 						     idev->dev->ifindex,
6460 						     &idev->cnf);
6461 		}
6462 		rtnl_unlock();
6463 	}
6464 
6465 	return ret;
6466 }
6467 
6468 static int addrconf_sysctl_addr_gen_mode(struct ctl_table *ctl, int write,
6469 					 void *buffer, size_t *lenp,
6470 					 loff_t *ppos)
6471 {
6472 	int ret = 0;
6473 	u32 new_val;
6474 	struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
6475 	struct net *net = (struct net *)ctl->extra2;
6476 	struct ctl_table tmp = {
6477 		.data = &new_val,
6478 		.maxlen = sizeof(new_val),
6479 		.mode = ctl->mode,
6480 	};
6481 
6482 	if (!rtnl_trylock())
6483 		return restart_syscall();
6484 
6485 	new_val = *((u32 *)ctl->data);
6486 
6487 	ret = proc_douintvec(&tmp, write, buffer, lenp, ppos);
6488 	if (ret != 0)
6489 		goto out;
6490 
6491 	if (write) {
6492 		if (check_addr_gen_mode(new_val) < 0) {
6493 			ret = -EINVAL;
6494 			goto out;
6495 		}
6496 
6497 		if (idev) {
6498 			if (check_stable_privacy(idev, net, new_val) < 0) {
6499 				ret = -EINVAL;
6500 				goto out;
6501 			}
6502 
6503 			if (idev->cnf.addr_gen_mode != new_val) {
6504 				idev->cnf.addr_gen_mode = new_val;
6505 				addrconf_init_auto_addrs(idev->dev);
6506 			}
6507 		} else if (&net->ipv6.devconf_all->addr_gen_mode == ctl->data) {
6508 			struct net_device *dev;
6509 
6510 			net->ipv6.devconf_dflt->addr_gen_mode = new_val;
6511 			for_each_netdev(net, dev) {
6512 				idev = __in6_dev_get(dev);
6513 				if (idev &&
6514 				    idev->cnf.addr_gen_mode != new_val) {
6515 					idev->cnf.addr_gen_mode = new_val;
6516 					addrconf_init_auto_addrs(idev->dev);
6517 				}
6518 			}
6519 		}
6520 
6521 		*((u32 *)ctl->data) = new_val;
6522 	}
6523 
6524 out:
6525 	rtnl_unlock();
6526 
6527 	return ret;
6528 }
6529 
6530 static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write,
6531 					 void *buffer, size_t *lenp,
6532 					 loff_t *ppos)
6533 {
6534 	int err;
6535 	struct in6_addr addr;
6536 	char str[IPV6_MAX_STRLEN];
6537 	struct ctl_table lctl = *ctl;
6538 	struct net *net = ctl->extra2;
6539 	struct ipv6_stable_secret *secret = ctl->data;
6540 
6541 	if (&net->ipv6.devconf_all->stable_secret == ctl->data)
6542 		return -EIO;
6543 
6544 	lctl.maxlen = IPV6_MAX_STRLEN;
6545 	lctl.data = str;
6546 
6547 	if (!rtnl_trylock())
6548 		return restart_syscall();
6549 
6550 	if (!write && !secret->initialized) {
6551 		err = -EIO;
6552 		goto out;
6553 	}
6554 
6555 	err = snprintf(str, sizeof(str), "%pI6", &secret->secret);
6556 	if (err >= sizeof(str)) {
6557 		err = -EIO;
6558 		goto out;
6559 	}
6560 
6561 	err = proc_dostring(&lctl, write, buffer, lenp, ppos);
6562 	if (err || !write)
6563 		goto out;
6564 
6565 	if (in6_pton(str, -1, addr.in6_u.u6_addr8, -1, NULL) != 1) {
6566 		err = -EIO;
6567 		goto out;
6568 	}
6569 
6570 	secret->initialized = true;
6571 	secret->secret = addr;
6572 
6573 	if (&net->ipv6.devconf_dflt->stable_secret == ctl->data) {
6574 		struct net_device *dev;
6575 
6576 		for_each_netdev(net, dev) {
6577 			struct inet6_dev *idev = __in6_dev_get(dev);
6578 
6579 			if (idev) {
6580 				idev->cnf.addr_gen_mode =
6581 					IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
6582 			}
6583 		}
6584 	} else {
6585 		struct inet6_dev *idev = ctl->extra1;
6586 
6587 		idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
6588 	}
6589 
6590 out:
6591 	rtnl_unlock();
6592 
6593 	return err;
6594 }
6595 
6596 static
6597 int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl,
6598 						int write, void *buffer,
6599 						size_t *lenp,
6600 						loff_t *ppos)
6601 {
6602 	int *valp = ctl->data;
6603 	int val = *valp;
6604 	loff_t pos = *ppos;
6605 	struct ctl_table lctl;
6606 	int ret;
6607 
6608 	/* ctl->data points to idev->cnf.ignore_routes_when_linkdown
6609 	 * we should not modify it until we get the rtnl lock.
6610 	 */
6611 	lctl = *ctl;
6612 	lctl.data = &val;
6613 
6614 	ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6615 
6616 	if (write)
6617 		ret = addrconf_fixup_linkdown(ctl, valp, val);
6618 	if (ret)
6619 		*ppos = pos;
6620 	return ret;
6621 }
6622 
6623 static
6624 void addrconf_set_nopolicy(struct rt6_info *rt, int action)
6625 {
6626 	if (rt) {
6627 		if (action)
6628 			rt->dst.flags |= DST_NOPOLICY;
6629 		else
6630 			rt->dst.flags &= ~DST_NOPOLICY;
6631 	}
6632 }
6633 
6634 static
6635 void addrconf_disable_policy_idev(struct inet6_dev *idev, int val)
6636 {
6637 	struct inet6_ifaddr *ifa;
6638 
6639 	read_lock_bh(&idev->lock);
6640 	list_for_each_entry(ifa, &idev->addr_list, if_list) {
6641 		spin_lock(&ifa->lock);
6642 		if (ifa->rt) {
6643 			/* host routes only use builtin fib6_nh */
6644 			struct fib6_nh *nh = ifa->rt->fib6_nh;
6645 			int cpu;
6646 
6647 			rcu_read_lock();
6648 			ifa->rt->dst_nopolicy = val ? true : false;
6649 			if (nh->rt6i_pcpu) {
6650 				for_each_possible_cpu(cpu) {
6651 					struct rt6_info **rtp;
6652 
6653 					rtp = per_cpu_ptr(nh->rt6i_pcpu, cpu);
6654 					addrconf_set_nopolicy(*rtp, val);
6655 				}
6656 			}
6657 			rcu_read_unlock();
6658 		}
6659 		spin_unlock(&ifa->lock);
6660 	}
6661 	read_unlock_bh(&idev->lock);
6662 }
6663 
6664 static
6665 int addrconf_disable_policy(struct ctl_table *ctl, int *valp, int val)
6666 {
6667 	struct inet6_dev *idev;
6668 	struct net *net;
6669 
6670 	if (!rtnl_trylock())
6671 		return restart_syscall();
6672 
6673 	*valp = val;
6674 
6675 	net = (struct net *)ctl->extra2;
6676 	if (valp == &net->ipv6.devconf_dflt->disable_policy) {
6677 		rtnl_unlock();
6678 		return 0;
6679 	}
6680 
6681 	if (valp == &net->ipv6.devconf_all->disable_policy)  {
6682 		struct net_device *dev;
6683 
6684 		for_each_netdev(net, dev) {
6685 			idev = __in6_dev_get(dev);
6686 			if (idev)
6687 				addrconf_disable_policy_idev(idev, val);
6688 		}
6689 	} else {
6690 		idev = (struct inet6_dev *)ctl->extra1;
6691 		addrconf_disable_policy_idev(idev, val);
6692 	}
6693 
6694 	rtnl_unlock();
6695 	return 0;
6696 }
6697 
6698 static int addrconf_sysctl_disable_policy(struct ctl_table *ctl, int write,
6699 				   void *buffer, size_t *lenp, loff_t *ppos)
6700 {
6701 	int *valp = ctl->data;
6702 	int val = *valp;
6703 	loff_t pos = *ppos;
6704 	struct ctl_table lctl;
6705 	int ret;
6706 
6707 	lctl = *ctl;
6708 	lctl.data = &val;
6709 	ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6710 
6711 	if (write && (*valp != val))
6712 		ret = addrconf_disable_policy(ctl, valp, val);
6713 
6714 	if (ret)
6715 		*ppos = pos;
6716 
6717 	return ret;
6718 }
6719 
6720 static int minus_one = -1;
6721 static const int two_five_five = 255;
6722 static u32 ioam6_if_id_max = U16_MAX;
6723 
6724 static const struct ctl_table addrconf_sysctl[] = {
6725 	{
6726 		.procname	= "forwarding",
6727 		.data		= &ipv6_devconf.forwarding,
6728 		.maxlen		= sizeof(int),
6729 		.mode		= 0644,
6730 		.proc_handler	= addrconf_sysctl_forward,
6731 	},
6732 	{
6733 		.procname	= "hop_limit",
6734 		.data		= &ipv6_devconf.hop_limit,
6735 		.maxlen		= sizeof(int),
6736 		.mode		= 0644,
6737 		.proc_handler	= proc_dointvec_minmax,
6738 		.extra1		= (void *)SYSCTL_ONE,
6739 		.extra2		= (void *)&two_five_five,
6740 	},
6741 	{
6742 		.procname	= "mtu",
6743 		.data		= &ipv6_devconf.mtu6,
6744 		.maxlen		= sizeof(int),
6745 		.mode		= 0644,
6746 		.proc_handler	= addrconf_sysctl_mtu,
6747 	},
6748 	{
6749 		.procname	= "accept_ra",
6750 		.data		= &ipv6_devconf.accept_ra,
6751 		.maxlen		= sizeof(int),
6752 		.mode		= 0644,
6753 		.proc_handler	= proc_dointvec,
6754 	},
6755 	{
6756 		.procname	= "accept_redirects",
6757 		.data		= &ipv6_devconf.accept_redirects,
6758 		.maxlen		= sizeof(int),
6759 		.mode		= 0644,
6760 		.proc_handler	= proc_dointvec,
6761 	},
6762 	{
6763 		.procname	= "autoconf",
6764 		.data		= &ipv6_devconf.autoconf,
6765 		.maxlen		= sizeof(int),
6766 		.mode		= 0644,
6767 		.proc_handler	= proc_dointvec,
6768 	},
6769 	{
6770 		.procname	= "dad_transmits",
6771 		.data		= &ipv6_devconf.dad_transmits,
6772 		.maxlen		= sizeof(int),
6773 		.mode		= 0644,
6774 		.proc_handler	= proc_dointvec,
6775 	},
6776 	{
6777 		.procname	= "router_solicitations",
6778 		.data		= &ipv6_devconf.rtr_solicits,
6779 		.maxlen		= sizeof(int),
6780 		.mode		= 0644,
6781 		.proc_handler	= proc_dointvec_minmax,
6782 		.extra1		= &minus_one,
6783 	},
6784 	{
6785 		.procname	= "router_solicitation_interval",
6786 		.data		= &ipv6_devconf.rtr_solicit_interval,
6787 		.maxlen		= sizeof(int),
6788 		.mode		= 0644,
6789 		.proc_handler	= proc_dointvec_jiffies,
6790 	},
6791 	{
6792 		.procname	= "router_solicitation_max_interval",
6793 		.data		= &ipv6_devconf.rtr_solicit_max_interval,
6794 		.maxlen		= sizeof(int),
6795 		.mode		= 0644,
6796 		.proc_handler	= proc_dointvec_jiffies,
6797 	},
6798 	{
6799 		.procname	= "router_solicitation_delay",
6800 		.data		= &ipv6_devconf.rtr_solicit_delay,
6801 		.maxlen		= sizeof(int),
6802 		.mode		= 0644,
6803 		.proc_handler	= proc_dointvec_jiffies,
6804 	},
6805 	{
6806 		.procname	= "force_mld_version",
6807 		.data		= &ipv6_devconf.force_mld_version,
6808 		.maxlen		= sizeof(int),
6809 		.mode		= 0644,
6810 		.proc_handler	= proc_dointvec,
6811 	},
6812 	{
6813 		.procname	= "mldv1_unsolicited_report_interval",
6814 		.data		=
6815 			&ipv6_devconf.mldv1_unsolicited_report_interval,
6816 		.maxlen		= sizeof(int),
6817 		.mode		= 0644,
6818 		.proc_handler	= proc_dointvec_ms_jiffies,
6819 	},
6820 	{
6821 		.procname	= "mldv2_unsolicited_report_interval",
6822 		.data		=
6823 			&ipv6_devconf.mldv2_unsolicited_report_interval,
6824 		.maxlen		= sizeof(int),
6825 		.mode		= 0644,
6826 		.proc_handler	= proc_dointvec_ms_jiffies,
6827 	},
6828 	{
6829 		.procname	= "use_tempaddr",
6830 		.data		= &ipv6_devconf.use_tempaddr,
6831 		.maxlen		= sizeof(int),
6832 		.mode		= 0644,
6833 		.proc_handler	= proc_dointvec,
6834 	},
6835 	{
6836 		.procname	= "temp_valid_lft",
6837 		.data		= &ipv6_devconf.temp_valid_lft,
6838 		.maxlen		= sizeof(int),
6839 		.mode		= 0644,
6840 		.proc_handler	= proc_dointvec,
6841 	},
6842 	{
6843 		.procname	= "temp_prefered_lft",
6844 		.data		= &ipv6_devconf.temp_prefered_lft,
6845 		.maxlen		= sizeof(int),
6846 		.mode		= 0644,
6847 		.proc_handler	= proc_dointvec,
6848 	},
6849 	{
6850 		.procname       = "regen_min_advance",
6851 		.data           = &ipv6_devconf.regen_min_advance,
6852 		.maxlen         = sizeof(int),
6853 		.mode           = 0644,
6854 		.proc_handler   = proc_dointvec,
6855 	},
6856 	{
6857 		.procname	= "regen_max_retry",
6858 		.data		= &ipv6_devconf.regen_max_retry,
6859 		.maxlen		= sizeof(int),
6860 		.mode		= 0644,
6861 		.proc_handler	= proc_dointvec,
6862 	},
6863 	{
6864 		.procname	= "max_desync_factor",
6865 		.data		= &ipv6_devconf.max_desync_factor,
6866 		.maxlen		= sizeof(int),
6867 		.mode		= 0644,
6868 		.proc_handler	= proc_dointvec,
6869 	},
6870 	{
6871 		.procname	= "max_addresses",
6872 		.data		= &ipv6_devconf.max_addresses,
6873 		.maxlen		= sizeof(int),
6874 		.mode		= 0644,
6875 		.proc_handler	= proc_dointvec,
6876 	},
6877 	{
6878 		.procname	= "accept_ra_defrtr",
6879 		.data		= &ipv6_devconf.accept_ra_defrtr,
6880 		.maxlen		= sizeof(int),
6881 		.mode		= 0644,
6882 		.proc_handler	= proc_dointvec,
6883 	},
6884 	{
6885 		.procname	= "ra_defrtr_metric",
6886 		.data		= &ipv6_devconf.ra_defrtr_metric,
6887 		.maxlen		= sizeof(u32),
6888 		.mode		= 0644,
6889 		.proc_handler	= proc_douintvec_minmax,
6890 		.extra1		= (void *)SYSCTL_ONE,
6891 	},
6892 	{
6893 		.procname	= "accept_ra_min_hop_limit",
6894 		.data		= &ipv6_devconf.accept_ra_min_hop_limit,
6895 		.maxlen		= sizeof(int),
6896 		.mode		= 0644,
6897 		.proc_handler	= proc_dointvec,
6898 	},
6899 	{
6900 		.procname	= "accept_ra_min_lft",
6901 		.data		= &ipv6_devconf.accept_ra_min_lft,
6902 		.maxlen		= sizeof(int),
6903 		.mode		= 0644,
6904 		.proc_handler	= proc_dointvec,
6905 	},
6906 	{
6907 		.procname	= "accept_ra_pinfo",
6908 		.data		= &ipv6_devconf.accept_ra_pinfo,
6909 		.maxlen		= sizeof(int),
6910 		.mode		= 0644,
6911 		.proc_handler	= proc_dointvec,
6912 	},
6913 	{
6914 		.procname	= "ra_honor_pio_life",
6915 		.data		= &ipv6_devconf.ra_honor_pio_life,
6916 		.maxlen		= sizeof(u8),
6917 		.mode		= 0644,
6918 		.proc_handler	= proc_dou8vec_minmax,
6919 		.extra1		= SYSCTL_ZERO,
6920 		.extra2		= SYSCTL_ONE,
6921 	},
6922 #ifdef CONFIG_IPV6_ROUTER_PREF
6923 	{
6924 		.procname	= "accept_ra_rtr_pref",
6925 		.data		= &ipv6_devconf.accept_ra_rtr_pref,
6926 		.maxlen		= sizeof(int),
6927 		.mode		= 0644,
6928 		.proc_handler	= proc_dointvec,
6929 	},
6930 	{
6931 		.procname	= "router_probe_interval",
6932 		.data		= &ipv6_devconf.rtr_probe_interval,
6933 		.maxlen		= sizeof(int),
6934 		.mode		= 0644,
6935 		.proc_handler	= proc_dointvec_jiffies,
6936 	},
6937 #ifdef CONFIG_IPV6_ROUTE_INFO
6938 	{
6939 		.procname	= "accept_ra_rt_info_min_plen",
6940 		.data		= &ipv6_devconf.accept_ra_rt_info_min_plen,
6941 		.maxlen		= sizeof(int),
6942 		.mode		= 0644,
6943 		.proc_handler	= proc_dointvec,
6944 	},
6945 	{
6946 		.procname	= "accept_ra_rt_info_max_plen",
6947 		.data		= &ipv6_devconf.accept_ra_rt_info_max_plen,
6948 		.maxlen		= sizeof(int),
6949 		.mode		= 0644,
6950 		.proc_handler	= proc_dointvec,
6951 	},
6952 #endif
6953 #endif
6954 	{
6955 		.procname	= "proxy_ndp",
6956 		.data		= &ipv6_devconf.proxy_ndp,
6957 		.maxlen		= sizeof(int),
6958 		.mode		= 0644,
6959 		.proc_handler	= addrconf_sysctl_proxy_ndp,
6960 	},
6961 	{
6962 		.procname	= "accept_source_route",
6963 		.data		= &ipv6_devconf.accept_source_route,
6964 		.maxlen		= sizeof(int),
6965 		.mode		= 0644,
6966 		.proc_handler	= proc_dointvec,
6967 	},
6968 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
6969 	{
6970 		.procname	= "optimistic_dad",
6971 		.data		= &ipv6_devconf.optimistic_dad,
6972 		.maxlen		= sizeof(int),
6973 		.mode		= 0644,
6974 		.proc_handler   = proc_dointvec,
6975 	},
6976 	{
6977 		.procname	= "use_optimistic",
6978 		.data		= &ipv6_devconf.use_optimistic,
6979 		.maxlen		= sizeof(int),
6980 		.mode		= 0644,
6981 		.proc_handler	= proc_dointvec,
6982 	},
6983 #endif
6984 #ifdef CONFIG_IPV6_MROUTE
6985 	{
6986 		.procname	= "mc_forwarding",
6987 		.data		= &ipv6_devconf.mc_forwarding,
6988 		.maxlen		= sizeof(int),
6989 		.mode		= 0444,
6990 		.proc_handler	= proc_dointvec,
6991 	},
6992 #endif
6993 	{
6994 		.procname	= "disable_ipv6",
6995 		.data		= &ipv6_devconf.disable_ipv6,
6996 		.maxlen		= sizeof(int),
6997 		.mode		= 0644,
6998 		.proc_handler	= addrconf_sysctl_disable,
6999 	},
7000 	{
7001 		.procname	= "accept_dad",
7002 		.data		= &ipv6_devconf.accept_dad,
7003 		.maxlen		= sizeof(int),
7004 		.mode		= 0644,
7005 		.proc_handler	= proc_dointvec,
7006 	},
7007 	{
7008 		.procname	= "force_tllao",
7009 		.data		= &ipv6_devconf.force_tllao,
7010 		.maxlen		= sizeof(int),
7011 		.mode		= 0644,
7012 		.proc_handler	= proc_dointvec
7013 	},
7014 	{
7015 		.procname	= "ndisc_notify",
7016 		.data		= &ipv6_devconf.ndisc_notify,
7017 		.maxlen		= sizeof(int),
7018 		.mode		= 0644,
7019 		.proc_handler	= proc_dointvec
7020 	},
7021 	{
7022 		.procname	= "suppress_frag_ndisc",
7023 		.data		= &ipv6_devconf.suppress_frag_ndisc,
7024 		.maxlen		= sizeof(int),
7025 		.mode		= 0644,
7026 		.proc_handler	= proc_dointvec
7027 	},
7028 	{
7029 		.procname	= "accept_ra_from_local",
7030 		.data		= &ipv6_devconf.accept_ra_from_local,
7031 		.maxlen		= sizeof(int),
7032 		.mode		= 0644,
7033 		.proc_handler	= proc_dointvec,
7034 	},
7035 	{
7036 		.procname	= "accept_ra_mtu",
7037 		.data		= &ipv6_devconf.accept_ra_mtu,
7038 		.maxlen		= sizeof(int),
7039 		.mode		= 0644,
7040 		.proc_handler	= proc_dointvec,
7041 	},
7042 	{
7043 		.procname	= "stable_secret",
7044 		.data		= &ipv6_devconf.stable_secret,
7045 		.maxlen		= IPV6_MAX_STRLEN,
7046 		.mode		= 0600,
7047 		.proc_handler	= addrconf_sysctl_stable_secret,
7048 	},
7049 	{
7050 		.procname	= "use_oif_addrs_only",
7051 		.data		= &ipv6_devconf.use_oif_addrs_only,
7052 		.maxlen		= sizeof(int),
7053 		.mode		= 0644,
7054 		.proc_handler	= proc_dointvec,
7055 	},
7056 	{
7057 		.procname	= "ignore_routes_with_linkdown",
7058 		.data		= &ipv6_devconf.ignore_routes_with_linkdown,
7059 		.maxlen		= sizeof(int),
7060 		.mode		= 0644,
7061 		.proc_handler	= addrconf_sysctl_ignore_routes_with_linkdown,
7062 	},
7063 	{
7064 		.procname	= "drop_unicast_in_l2_multicast",
7065 		.data		= &ipv6_devconf.drop_unicast_in_l2_multicast,
7066 		.maxlen		= sizeof(int),
7067 		.mode		= 0644,
7068 		.proc_handler	= proc_dointvec,
7069 	},
7070 	{
7071 		.procname	= "drop_unsolicited_na",
7072 		.data		= &ipv6_devconf.drop_unsolicited_na,
7073 		.maxlen		= sizeof(int),
7074 		.mode		= 0644,
7075 		.proc_handler	= proc_dointvec,
7076 	},
7077 	{
7078 		.procname	= "keep_addr_on_down",
7079 		.data		= &ipv6_devconf.keep_addr_on_down,
7080 		.maxlen		= sizeof(int),
7081 		.mode		= 0644,
7082 		.proc_handler	= proc_dointvec,
7083 
7084 	},
7085 	{
7086 		.procname	= "seg6_enabled",
7087 		.data		= &ipv6_devconf.seg6_enabled,
7088 		.maxlen		= sizeof(int),
7089 		.mode		= 0644,
7090 		.proc_handler	= proc_dointvec,
7091 	},
7092 #ifdef CONFIG_IPV6_SEG6_HMAC
7093 	{
7094 		.procname	= "seg6_require_hmac",
7095 		.data		= &ipv6_devconf.seg6_require_hmac,
7096 		.maxlen		= sizeof(int),
7097 		.mode		= 0644,
7098 		.proc_handler	= proc_dointvec,
7099 	},
7100 #endif
7101 	{
7102 		.procname       = "enhanced_dad",
7103 		.data           = &ipv6_devconf.enhanced_dad,
7104 		.maxlen         = sizeof(int),
7105 		.mode           = 0644,
7106 		.proc_handler   = proc_dointvec,
7107 	},
7108 	{
7109 		.procname	= "addr_gen_mode",
7110 		.data		= &ipv6_devconf.addr_gen_mode,
7111 		.maxlen		= sizeof(int),
7112 		.mode		= 0644,
7113 		.proc_handler	= addrconf_sysctl_addr_gen_mode,
7114 	},
7115 	{
7116 		.procname       = "disable_policy",
7117 		.data           = &ipv6_devconf.disable_policy,
7118 		.maxlen         = sizeof(int),
7119 		.mode           = 0644,
7120 		.proc_handler   = addrconf_sysctl_disable_policy,
7121 	},
7122 	{
7123 		.procname	= "ndisc_tclass",
7124 		.data		= &ipv6_devconf.ndisc_tclass,
7125 		.maxlen		= sizeof(int),
7126 		.mode		= 0644,
7127 		.proc_handler	= proc_dointvec_minmax,
7128 		.extra1		= (void *)SYSCTL_ZERO,
7129 		.extra2		= (void *)&two_five_five,
7130 	},
7131 	{
7132 		.procname	= "rpl_seg_enabled",
7133 		.data		= &ipv6_devconf.rpl_seg_enabled,
7134 		.maxlen		= sizeof(int),
7135 		.mode		= 0644,
7136 		.proc_handler	= proc_dointvec,
7137 	},
7138 	{
7139 		.procname	= "ioam6_enabled",
7140 		.data		= &ipv6_devconf.ioam6_enabled,
7141 		.maxlen		= sizeof(u8),
7142 		.mode		= 0644,
7143 		.proc_handler	= proc_dou8vec_minmax,
7144 		.extra1		= (void *)SYSCTL_ZERO,
7145 		.extra2		= (void *)SYSCTL_ONE,
7146 	},
7147 	{
7148 		.procname	= "ioam6_id",
7149 		.data		= &ipv6_devconf.ioam6_id,
7150 		.maxlen		= sizeof(u32),
7151 		.mode		= 0644,
7152 		.proc_handler	= proc_douintvec_minmax,
7153 		.extra1		= (void *)SYSCTL_ZERO,
7154 		.extra2		= (void *)&ioam6_if_id_max,
7155 	},
7156 	{
7157 		.procname	= "ioam6_id_wide",
7158 		.data		= &ipv6_devconf.ioam6_id_wide,
7159 		.maxlen		= sizeof(u32),
7160 		.mode		= 0644,
7161 		.proc_handler	= proc_douintvec,
7162 	},
7163 	{
7164 		.procname	= "ndisc_evict_nocarrier",
7165 		.data		= &ipv6_devconf.ndisc_evict_nocarrier,
7166 		.maxlen		= sizeof(u8),
7167 		.mode		= 0644,
7168 		.proc_handler	= proc_dou8vec_minmax,
7169 		.extra1		= (void *)SYSCTL_ZERO,
7170 		.extra2		= (void *)SYSCTL_ONE,
7171 	},
7172 	{
7173 		.procname	= "accept_untracked_na",
7174 		.data		= &ipv6_devconf.accept_untracked_na,
7175 		.maxlen		= sizeof(int),
7176 		.mode		= 0644,
7177 		.proc_handler	= proc_dointvec_minmax,
7178 		.extra1		= SYSCTL_ZERO,
7179 		.extra2		= SYSCTL_TWO,
7180 	},
7181 	{
7182 		/* sentinel */
7183 	}
7184 };
7185 
7186 static int __addrconf_sysctl_register(struct net *net, char *dev_name,
7187 		struct inet6_dev *idev, struct ipv6_devconf *p)
7188 {
7189 	int i, ifindex;
7190 	struct ctl_table *table;
7191 	char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
7192 
7193 	table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL_ACCOUNT);
7194 	if (!table)
7195 		goto out;
7196 
7197 	for (i = 0; table[i].data; i++) {
7198 		table[i].data += (char *)p - (char *)&ipv6_devconf;
7199 		/* If one of these is already set, then it is not safe to
7200 		 * overwrite either of them: this makes proc_dointvec_minmax
7201 		 * usable.
7202 		 */
7203 		if (!table[i].extra1 && !table[i].extra2) {
7204 			table[i].extra1 = idev; /* embedded; no ref */
7205 			table[i].extra2 = net;
7206 		}
7207 	}
7208 
7209 	snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
7210 
7211 	p->sysctl_header = register_net_sysctl_sz(net, path, table,
7212 						  ARRAY_SIZE(addrconf_sysctl));
7213 	if (!p->sysctl_header)
7214 		goto free;
7215 
7216 	if (!strcmp(dev_name, "all"))
7217 		ifindex = NETCONFA_IFINDEX_ALL;
7218 	else if (!strcmp(dev_name, "default"))
7219 		ifindex = NETCONFA_IFINDEX_DEFAULT;
7220 	else
7221 		ifindex = idev->dev->ifindex;
7222 	inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL,
7223 				     ifindex, p);
7224 	return 0;
7225 
7226 free:
7227 	kfree(table);
7228 out:
7229 	return -ENOBUFS;
7230 }
7231 
7232 static void __addrconf_sysctl_unregister(struct net *net,
7233 					 struct ipv6_devconf *p, int ifindex)
7234 {
7235 	struct ctl_table *table;
7236 
7237 	if (!p->sysctl_header)
7238 		return;
7239 
7240 	table = p->sysctl_header->ctl_table_arg;
7241 	unregister_net_sysctl_table(p->sysctl_header);
7242 	p->sysctl_header = NULL;
7243 	kfree(table);
7244 
7245 	inet6_netconf_notify_devconf(net, RTM_DELNETCONF, 0, ifindex, NULL);
7246 }
7247 
7248 static int addrconf_sysctl_register(struct inet6_dev *idev)
7249 {
7250 	int err;
7251 
7252 	if (!sysctl_dev_name_is_allowed(idev->dev->name))
7253 		return -EINVAL;
7254 
7255 	err = neigh_sysctl_register(idev->dev, idev->nd_parms,
7256 				    &ndisc_ifinfo_sysctl_change);
7257 	if (err)
7258 		return err;
7259 	err = __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
7260 					 idev, &idev->cnf);
7261 	if (err)
7262 		neigh_sysctl_unregister(idev->nd_parms);
7263 
7264 	return err;
7265 }
7266 
7267 static void addrconf_sysctl_unregister(struct inet6_dev *idev)
7268 {
7269 	__addrconf_sysctl_unregister(dev_net(idev->dev), &idev->cnf,
7270 				     idev->dev->ifindex);
7271 	neigh_sysctl_unregister(idev->nd_parms);
7272 }
7273 
7274 
7275 #endif
7276 
7277 static int __net_init addrconf_init_net(struct net *net)
7278 {
7279 	int err = -ENOMEM;
7280 	struct ipv6_devconf *all, *dflt;
7281 
7282 	spin_lock_init(&net->ipv6.addrconf_hash_lock);
7283 	INIT_DEFERRABLE_WORK(&net->ipv6.addr_chk_work, addrconf_verify_work);
7284 	net->ipv6.inet6_addr_lst = kcalloc(IN6_ADDR_HSIZE,
7285 					   sizeof(struct hlist_head),
7286 					   GFP_KERNEL);
7287 	if (!net->ipv6.inet6_addr_lst)
7288 		goto err_alloc_addr;
7289 
7290 	all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
7291 	if (!all)
7292 		goto err_alloc_all;
7293 
7294 	dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
7295 	if (!dflt)
7296 		goto err_alloc_dflt;
7297 
7298 	if (!net_eq(net, &init_net)) {
7299 		switch (net_inherit_devconf()) {
7300 		case 1:  /* copy from init_net */
7301 			memcpy(all, init_net.ipv6.devconf_all,
7302 			       sizeof(ipv6_devconf));
7303 			memcpy(dflt, init_net.ipv6.devconf_dflt,
7304 			       sizeof(ipv6_devconf_dflt));
7305 			break;
7306 		case 3: /* copy from the current netns */
7307 			memcpy(all, current->nsproxy->net_ns->ipv6.devconf_all,
7308 			       sizeof(ipv6_devconf));
7309 			memcpy(dflt,
7310 			       current->nsproxy->net_ns->ipv6.devconf_dflt,
7311 			       sizeof(ipv6_devconf_dflt));
7312 			break;
7313 		case 0:
7314 		case 2:
7315 			/* use compiled values */
7316 			break;
7317 		}
7318 	}
7319 
7320 	/* these will be inherited by all namespaces */
7321 	dflt->autoconf = ipv6_defaults.autoconf;
7322 	dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
7323 
7324 	dflt->stable_secret.initialized = false;
7325 	all->stable_secret.initialized = false;
7326 
7327 	net->ipv6.devconf_all = all;
7328 	net->ipv6.devconf_dflt = dflt;
7329 
7330 #ifdef CONFIG_SYSCTL
7331 	err = __addrconf_sysctl_register(net, "all", NULL, all);
7332 	if (err < 0)
7333 		goto err_reg_all;
7334 
7335 	err = __addrconf_sysctl_register(net, "default", NULL, dflt);
7336 	if (err < 0)
7337 		goto err_reg_dflt;
7338 #endif
7339 	return 0;
7340 
7341 #ifdef CONFIG_SYSCTL
7342 err_reg_dflt:
7343 	__addrconf_sysctl_unregister(net, all, NETCONFA_IFINDEX_ALL);
7344 err_reg_all:
7345 	kfree(dflt);
7346 	net->ipv6.devconf_dflt = NULL;
7347 #endif
7348 err_alloc_dflt:
7349 	kfree(all);
7350 	net->ipv6.devconf_all = NULL;
7351 err_alloc_all:
7352 	kfree(net->ipv6.inet6_addr_lst);
7353 err_alloc_addr:
7354 	return err;
7355 }
7356 
7357 static void __net_exit addrconf_exit_net(struct net *net)
7358 {
7359 	int i;
7360 
7361 #ifdef CONFIG_SYSCTL
7362 	__addrconf_sysctl_unregister(net, net->ipv6.devconf_dflt,
7363 				     NETCONFA_IFINDEX_DEFAULT);
7364 	__addrconf_sysctl_unregister(net, net->ipv6.devconf_all,
7365 				     NETCONFA_IFINDEX_ALL);
7366 #endif
7367 	kfree(net->ipv6.devconf_dflt);
7368 	net->ipv6.devconf_dflt = NULL;
7369 	kfree(net->ipv6.devconf_all);
7370 	net->ipv6.devconf_all = NULL;
7371 
7372 	cancel_delayed_work_sync(&net->ipv6.addr_chk_work);
7373 	/*
7374 	 *	Check hash table, then free it.
7375 	 */
7376 	for (i = 0; i < IN6_ADDR_HSIZE; i++)
7377 		WARN_ON_ONCE(!hlist_empty(&net->ipv6.inet6_addr_lst[i]));
7378 
7379 	kfree(net->ipv6.inet6_addr_lst);
7380 	net->ipv6.inet6_addr_lst = NULL;
7381 }
7382 
7383 static struct pernet_operations addrconf_ops = {
7384 	.init = addrconf_init_net,
7385 	.exit = addrconf_exit_net,
7386 };
7387 
7388 static struct rtnl_af_ops inet6_ops __read_mostly = {
7389 	.family		  = AF_INET6,
7390 	.fill_link_af	  = inet6_fill_link_af,
7391 	.get_link_af_size = inet6_get_link_af_size,
7392 	.validate_link_af = inet6_validate_link_af,
7393 	.set_link_af	  = inet6_set_link_af,
7394 };
7395 
7396 /*
7397  *	Init / cleanup code
7398  */
7399 
7400 int __init addrconf_init(void)
7401 {
7402 	struct inet6_dev *idev;
7403 	int err;
7404 
7405 	err = ipv6_addr_label_init();
7406 	if (err < 0) {
7407 		pr_crit("%s: cannot initialize default policy table: %d\n",
7408 			__func__, err);
7409 		goto out;
7410 	}
7411 
7412 	err = register_pernet_subsys(&addrconf_ops);
7413 	if (err < 0)
7414 		goto out_addrlabel;
7415 
7416 	/* All works using addrconf_wq need to lock rtnl. */
7417 	addrconf_wq = create_singlethread_workqueue("ipv6_addrconf");
7418 	if (!addrconf_wq) {
7419 		err = -ENOMEM;
7420 		goto out_nowq;
7421 	}
7422 
7423 	rtnl_lock();
7424 	idev = ipv6_add_dev(blackhole_netdev);
7425 	rtnl_unlock();
7426 	if (IS_ERR(idev)) {
7427 		err = PTR_ERR(idev);
7428 		goto errlo;
7429 	}
7430 
7431 	ip6_route_init_special_entries();
7432 
7433 	register_netdevice_notifier(&ipv6_dev_notf);
7434 
7435 	addrconf_verify(&init_net);
7436 
7437 	rtnl_af_register(&inet6_ops);
7438 
7439 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETLINK,
7440 				   NULL, inet6_dump_ifinfo, 0);
7441 	if (err < 0)
7442 		goto errout;
7443 
7444 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWADDR,
7445 				   inet6_rtm_newaddr, NULL, 0);
7446 	if (err < 0)
7447 		goto errout;
7448 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELADDR,
7449 				   inet6_rtm_deladdr, NULL, 0);
7450 	if (err < 0)
7451 		goto errout;
7452 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETADDR,
7453 				   inet6_rtm_getaddr, inet6_dump_ifaddr,
7454 				   RTNL_FLAG_DOIT_UNLOCKED);
7455 	if (err < 0)
7456 		goto errout;
7457 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETMULTICAST,
7458 				   NULL, inet6_dump_ifmcaddr, 0);
7459 	if (err < 0)
7460 		goto errout;
7461 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETANYCAST,
7462 				   NULL, inet6_dump_ifacaddr, 0);
7463 	if (err < 0)
7464 		goto errout;
7465 	err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETNETCONF,
7466 				   inet6_netconf_get_devconf,
7467 				   inet6_netconf_dump_devconf,
7468 				   RTNL_FLAG_DOIT_UNLOCKED);
7469 	if (err < 0)
7470 		goto errout;
7471 	err = ipv6_addr_label_rtnl_register();
7472 	if (err < 0)
7473 		goto errout;
7474 
7475 	return 0;
7476 errout:
7477 	rtnl_unregister_all(PF_INET6);
7478 	rtnl_af_unregister(&inet6_ops);
7479 	unregister_netdevice_notifier(&ipv6_dev_notf);
7480 errlo:
7481 	destroy_workqueue(addrconf_wq);
7482 out_nowq:
7483 	unregister_pernet_subsys(&addrconf_ops);
7484 out_addrlabel:
7485 	ipv6_addr_label_cleanup();
7486 out:
7487 	return err;
7488 }
7489 
7490 void addrconf_cleanup(void)
7491 {
7492 	struct net_device *dev;
7493 
7494 	unregister_netdevice_notifier(&ipv6_dev_notf);
7495 	unregister_pernet_subsys(&addrconf_ops);
7496 	ipv6_addr_label_cleanup();
7497 
7498 	rtnl_af_unregister(&inet6_ops);
7499 
7500 	rtnl_lock();
7501 
7502 	/* clean dev list */
7503 	for_each_netdev(&init_net, dev) {
7504 		if (__in6_dev_get(dev) == NULL)
7505 			continue;
7506 		addrconf_ifdown(dev, true);
7507 	}
7508 	addrconf_ifdown(init_net.loopback_dev, true);
7509 
7510 	rtnl_unlock();
7511 
7512 	destroy_workqueue(addrconf_wq);
7513 }
7514