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