165cee964e75073c73dfe3180f13cd74b388ff07
[firefly-linux-kernel-4.4.55.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/socket.h>
47 #include <linux/sockios.h>
48 #include <linux/net.h>
49 #include <linux/in6.h>
50 #include <linux/netdevice.h>
51 #include <linux/if_addr.h>
52 #include <linux/if_arp.h>
53 #include <linux/if_arcnet.h>
54 #include <linux/if_infiniband.h>
55 #include <linux/route.h>
56 #include <linux/inetdevice.h>
57 #include <linux/init.h>
58 #include <linux/slab.h>
59 #ifdef CONFIG_SYSCTL
60 #include <linux/sysctl.h>
61 #endif
62 #include <linux/capability.h>
63 #include <linux/delay.h>
64 #include <linux/notifier.h>
65 #include <linux/string.h>
66 #include <linux/hash.h>
67
68 #include <net/net_namespace.h>
69 #include <net/sock.h>
70 #include <net/snmp.h>
71
72 #include <net/af_ieee802154.h>
73 #include <net/firewire.h>
74 #include <net/ipv6.h>
75 #include <net/protocol.h>
76 #include <net/ndisc.h>
77 #include <net/ip6_route.h>
78 #include <net/addrconf.h>
79 #include <net/tcp.h>
80 #include <net/ip.h>
81 #include <net/netlink.h>
82 #include <net/pkt_sched.h>
83 #include <linux/if_tunnel.h>
84 #include <linux/rtnetlink.h>
85 #include <linux/netconf.h>
86
87 #ifdef CONFIG_IPV6_PRIVACY
88 #include <linux/random.h>
89 #endif
90
91 #include <linux/uaccess.h>
92 #include <asm/unaligned.h>
93
94 #include <linux/proc_fs.h>
95 #include <linux/seq_file.h>
96 #include <linux/export.h>
97
98 /* Set to 3 to get tracing... */
99 #define ACONF_DEBUG 2
100
101 #if ACONF_DEBUG >= 3
102 #define ADBG(x) printk x
103 #else
104 #define ADBG(x)
105 #endif
106
107 #define INFINITY_LIFE_TIME      0xFFFFFFFF
108
109 static inline u32 cstamp_delta(unsigned long cstamp)
110 {
111         return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
112 }
113
114 #ifdef CONFIG_SYSCTL
115 static void addrconf_sysctl_register(struct inet6_dev *idev);
116 static void addrconf_sysctl_unregister(struct inet6_dev *idev);
117 #else
118 static inline void addrconf_sysctl_register(struct inet6_dev *idev)
119 {
120 }
121
122 static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
123 {
124 }
125 #endif
126
127 #ifdef CONFIG_IPV6_PRIVACY
128 static void __ipv6_regen_rndid(struct inet6_dev *idev);
129 static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
130 static void ipv6_regen_rndid(unsigned long data);
131 #endif
132
133 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
134 static int ipv6_count_addresses(struct inet6_dev *idev);
135
136 /*
137  *      Configured unicast address hash table
138  */
139 static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
140 static DEFINE_SPINLOCK(addrconf_hash_lock);
141
142 static void addrconf_verify(unsigned long);
143
144 static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
145 static DEFINE_SPINLOCK(addrconf_verify_lock);
146
147 static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
148 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
149
150 static void addrconf_type_change(struct net_device *dev,
151                                  unsigned long event);
152 static int addrconf_ifdown(struct net_device *dev, int how);
153
154 static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
155                                                   int plen,
156                                                   const struct net_device *dev,
157                                                   u32 flags, u32 noflags);
158
159 static void addrconf_dad_start(struct inet6_ifaddr *ifp);
160 static void addrconf_dad_timer(unsigned long data);
161 static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
162 static void addrconf_dad_run(struct inet6_dev *idev);
163 static void addrconf_rs_timer(unsigned long data);
164 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
165 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
166
167 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
168                                 struct prefix_info *pinfo);
169 static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
170                                struct net_device *dev);
171
172 static struct ipv6_devconf ipv6_devconf __read_mostly = {
173         .forwarding             = 0,
174         .hop_limit              = IPV6_DEFAULT_HOPLIMIT,
175         .mtu6                   = IPV6_MIN_MTU,
176         .accept_ra              = 1,
177         .accept_redirects       = 1,
178         .autoconf               = 1,
179         .force_mld_version      = 0,
180         .dad_transmits          = 1,
181         .rtr_solicits           = MAX_RTR_SOLICITATIONS,
182         .rtr_solicit_interval   = RTR_SOLICITATION_INTERVAL,
183         .rtr_solicit_delay      = MAX_RTR_SOLICITATION_DELAY,
184 #ifdef CONFIG_IPV6_PRIVACY
185         .use_tempaddr           = 0,
186         .temp_valid_lft         = TEMP_VALID_LIFETIME,
187         .temp_prefered_lft      = TEMP_PREFERRED_LIFETIME,
188         .regen_max_retry        = REGEN_MAX_RETRY,
189         .max_desync_factor      = MAX_DESYNC_FACTOR,
190 #endif
191         .max_addresses          = IPV6_MAX_ADDRESSES,
192         .accept_ra_defrtr       = 1,
193         .accept_ra_pinfo        = 1,
194 #ifdef CONFIG_IPV6_ROUTER_PREF
195         .accept_ra_rtr_pref     = 1,
196         .rtr_probe_interval     = 60 * HZ,
197 #ifdef CONFIG_IPV6_ROUTE_INFO
198         .accept_ra_rt_info_max_plen = 0,
199 #endif
200 #endif
201         .accept_ra_rt_table     = 0,
202         .proxy_ndp              = 0,
203         .accept_source_route    = 0,    /* we do not accept RH0 by default. */
204         .disable_ipv6           = 0,
205         .accept_dad             = 1,
206 };
207
208 static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
209         .forwarding             = 0,
210         .hop_limit              = IPV6_DEFAULT_HOPLIMIT,
211         .mtu6                   = IPV6_MIN_MTU,
212         .accept_ra              = 1,
213         .accept_redirects       = 1,
214         .autoconf               = 1,
215         .dad_transmits          = 1,
216         .rtr_solicits           = MAX_RTR_SOLICITATIONS,
217         .rtr_solicit_interval   = RTR_SOLICITATION_INTERVAL,
218         .rtr_solicit_delay      = MAX_RTR_SOLICITATION_DELAY,
219 #ifdef CONFIG_IPV6_PRIVACY
220         .use_tempaddr           = 0,
221         .temp_valid_lft         = TEMP_VALID_LIFETIME,
222         .temp_prefered_lft      = TEMP_PREFERRED_LIFETIME,
223         .regen_max_retry        = REGEN_MAX_RETRY,
224         .max_desync_factor      = MAX_DESYNC_FACTOR,
225 #endif
226         .max_addresses          = IPV6_MAX_ADDRESSES,
227         .accept_ra_defrtr       = 1,
228         .accept_ra_pinfo        = 1,
229 #ifdef CONFIG_IPV6_ROUTER_PREF
230         .accept_ra_rtr_pref     = 1,
231         .rtr_probe_interval     = 60 * HZ,
232 #ifdef CONFIG_IPV6_ROUTE_INFO
233         .accept_ra_rt_info_max_plen = 0,
234 #endif
235 #endif
236         .accept_ra_rt_table     = 0,
237         .proxy_ndp              = 0,
238         .accept_source_route    = 0,    /* we do not accept RH0 by default. */
239         .disable_ipv6           = 0,
240         .accept_dad             = 1,
241 };
242
243 /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
244 const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
245 const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
246 const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
247 const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
248 const struct in6_addr in6addr_interfacelocal_allnodes = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT;
249 const struct in6_addr in6addr_interfacelocal_allrouters = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT;
250 const struct in6_addr in6addr_sitelocal_allrouters = IN6ADDR_SITELOCAL_ALLROUTERS_INIT;
251
252 /* Check if a valid qdisc is available */
253 static inline bool addrconf_qdisc_ok(const struct net_device *dev)
254 {
255         return !qdisc_tx_is_noop(dev);
256 }
257
258 static void addrconf_del_timer(struct inet6_ifaddr *ifp)
259 {
260         if (del_timer(&ifp->timer))
261                 __in6_ifa_put(ifp);
262 }
263
264 enum addrconf_timer_t {
265         AC_NONE,
266         AC_DAD,
267         AC_RS,
268 };
269
270 static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
271                                enum addrconf_timer_t what,
272                                unsigned long when)
273 {
274         if (!del_timer(&ifp->timer))
275                 in6_ifa_hold(ifp);
276
277         switch (what) {
278         case AC_DAD:
279                 ifp->timer.function = addrconf_dad_timer;
280                 break;
281         case AC_RS:
282                 ifp->timer.function = addrconf_rs_timer;
283                 break;
284         default:
285                 break;
286         }
287         ifp->timer.expires = jiffies + when;
288         add_timer(&ifp->timer);
289 }
290
291 static int snmp6_alloc_dev(struct inet6_dev *idev)
292 {
293         if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
294                           sizeof(struct ipstats_mib),
295                           __alignof__(struct ipstats_mib)) < 0)
296                 goto err_ip;
297         idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
298                                         GFP_KERNEL);
299         if (!idev->stats.icmpv6dev)
300                 goto err_icmp;
301         idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
302                                            GFP_KERNEL);
303         if (!idev->stats.icmpv6msgdev)
304                 goto err_icmpmsg;
305
306         return 0;
307
308 err_icmpmsg:
309         kfree(idev->stats.icmpv6dev);
310 err_icmp:
311         snmp_mib_free((void __percpu **)idev->stats.ipv6);
312 err_ip:
313         return -ENOMEM;
314 }
315
316 static void snmp6_free_dev(struct inet6_dev *idev)
317 {
318         kfree(idev->stats.icmpv6msgdev);
319         kfree(idev->stats.icmpv6dev);
320         snmp_mib_free((void __percpu **)idev->stats.ipv6);
321 }
322
323 /* Nobody refers to this device, we may destroy it. */
324
325 void in6_dev_finish_destroy(struct inet6_dev *idev)
326 {
327         struct net_device *dev = idev->dev;
328
329         WARN_ON(!list_empty(&idev->addr_list));
330         WARN_ON(idev->mc_list != NULL);
331
332 #ifdef NET_REFCNT_DEBUG
333         pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
334 #endif
335         dev_put(dev);
336         if (!idev->dead) {
337                 pr_warn("Freeing alive inet6 device %p\n", idev);
338                 return;
339         }
340         snmp6_free_dev(idev);
341         kfree_rcu(idev, rcu);
342 }
343 EXPORT_SYMBOL(in6_dev_finish_destroy);
344
345 static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
346 {
347         struct inet6_dev *ndev;
348
349         ASSERT_RTNL();
350
351         if (dev->mtu < IPV6_MIN_MTU)
352                 return NULL;
353
354         ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
355
356         if (ndev == NULL)
357                 return NULL;
358
359         rwlock_init(&ndev->lock);
360         ndev->dev = dev;
361         INIT_LIST_HEAD(&ndev->addr_list);
362
363         memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
364         ndev->cnf.mtu6 = dev->mtu;
365         ndev->cnf.sysctl = NULL;
366         ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
367         if (ndev->nd_parms == NULL) {
368                 kfree(ndev);
369                 return NULL;
370         }
371         if (ndev->cnf.forwarding)
372                 dev_disable_lro(dev);
373         /* We refer to the device */
374         dev_hold(dev);
375
376         if (snmp6_alloc_dev(ndev) < 0) {
377                 ADBG((KERN_WARNING
378                         "%s: cannot allocate memory for statistics; dev=%s.\n",
379                         __func__, dev->name));
380                 neigh_parms_release(&nd_tbl, ndev->nd_parms);
381                 dev_put(dev);
382                 kfree(ndev);
383                 return NULL;
384         }
385
386         if (snmp6_register_dev(ndev) < 0) {
387                 ADBG((KERN_WARNING
388                         "%s: cannot create /proc/net/dev_snmp6/%s\n",
389                         __func__, dev->name));
390                 neigh_parms_release(&nd_tbl, ndev->nd_parms);
391                 ndev->dead = 1;
392                 in6_dev_finish_destroy(ndev);
393                 return NULL;
394         }
395
396         /* One reference from device.  We must do this before
397          * we invoke __ipv6_regen_rndid().
398          */
399         in6_dev_hold(ndev);
400
401         if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
402                 ndev->cnf.accept_dad = -1;
403
404 #if IS_ENABLED(CONFIG_IPV6_SIT)
405         if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
406                 pr_info("%s: Disabled Multicast RS\n", dev->name);
407                 ndev->cnf.rtr_solicits = 0;
408         }
409 #endif
410
411 #ifdef CONFIG_IPV6_PRIVACY
412         INIT_LIST_HEAD(&ndev->tempaddr_list);
413         setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
414         if ((dev->flags&IFF_LOOPBACK) ||
415             dev->type == ARPHRD_TUNNEL ||
416             dev->type == ARPHRD_TUNNEL6 ||
417             dev->type == ARPHRD_SIT ||
418             dev->type == ARPHRD_NONE) {
419                 ndev->cnf.use_tempaddr = -1;
420         } else {
421                 in6_dev_hold(ndev);
422                 ipv6_regen_rndid((unsigned long) ndev);
423         }
424 #endif
425         ndev->token = in6addr_any;
426
427         if (netif_running(dev) && addrconf_qdisc_ok(dev))
428                 ndev->if_flags |= IF_READY;
429
430         ipv6_mc_init_dev(ndev);
431         ndev->tstamp = jiffies;
432         addrconf_sysctl_register(ndev);
433         /* protected by rtnl_lock */
434         rcu_assign_pointer(dev->ip6_ptr, ndev);
435
436         /* Join interface-local all-node multicast group */
437         ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
438
439         /* Join all-node multicast group */
440         ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
441
442         /* Join all-router multicast group if forwarding is set */
443         if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
444                 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
445
446         return ndev;
447 }
448
449 static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
450 {
451         struct inet6_dev *idev;
452
453         ASSERT_RTNL();
454
455         idev = __in6_dev_get(dev);
456         if (!idev) {
457                 idev = ipv6_add_dev(dev);
458                 if (!idev)
459                         return NULL;
460         }
461
462         if (dev->flags&IFF_UP)
463                 ipv6_mc_up(idev);
464         return idev;
465 }
466
467 static int inet6_netconf_msgsize_devconf(int type)
468 {
469         int size =  NLMSG_ALIGN(sizeof(struct netconfmsg))
470                     + nla_total_size(4);        /* NETCONFA_IFINDEX */
471
472         /* type -1 is used for ALL */
473         if (type == -1 || type == NETCONFA_FORWARDING)
474                 size += nla_total_size(4);
475 #ifdef CONFIG_IPV6_MROUTE
476         if (type == -1 || type == NETCONFA_MC_FORWARDING)
477                 size += nla_total_size(4);
478 #endif
479
480         return size;
481 }
482
483 static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
484                                       struct ipv6_devconf *devconf, u32 portid,
485                                       u32 seq, int event, unsigned int flags,
486                                       int type)
487 {
488         struct nlmsghdr  *nlh;
489         struct netconfmsg *ncm;
490
491         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
492                         flags);
493         if (nlh == NULL)
494                 return -EMSGSIZE;
495
496         ncm = nlmsg_data(nlh);
497         ncm->ncm_family = AF_INET6;
498
499         if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
500                 goto nla_put_failure;
501
502         /* type -1 is used for ALL */
503         if ((type == -1 || type == NETCONFA_FORWARDING) &&
504             nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
505                 goto nla_put_failure;
506 #ifdef CONFIG_IPV6_MROUTE
507         if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
508             nla_put_s32(skb, NETCONFA_MC_FORWARDING,
509                         devconf->mc_forwarding) < 0)
510                 goto nla_put_failure;
511 #endif
512         return nlmsg_end(skb, nlh);
513
514 nla_put_failure:
515         nlmsg_cancel(skb, nlh);
516         return -EMSGSIZE;
517 }
518
519 void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
520                                   struct ipv6_devconf *devconf)
521 {
522         struct sk_buff *skb;
523         int err = -ENOBUFS;
524
525         skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
526         if (skb == NULL)
527                 goto errout;
528
529         err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
530                                          RTM_NEWNETCONF, 0, type);
531         if (err < 0) {
532                 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
533                 WARN_ON(err == -EMSGSIZE);
534                 kfree_skb(skb);
535                 goto errout;
536         }
537         rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
538         return;
539 errout:
540         rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
541 }
542
543 static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
544         [NETCONFA_IFINDEX]      = { .len = sizeof(int) },
545         [NETCONFA_FORWARDING]   = { .len = sizeof(int) },
546 };
547
548 static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
549                                      struct nlmsghdr *nlh)
550 {
551         struct net *net = sock_net(in_skb->sk);
552         struct nlattr *tb[NETCONFA_MAX+1];
553         struct netconfmsg *ncm;
554         struct sk_buff *skb;
555         struct ipv6_devconf *devconf;
556         struct inet6_dev *in6_dev;
557         struct net_device *dev;
558         int ifindex;
559         int err;
560
561         err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
562                           devconf_ipv6_policy);
563         if (err < 0)
564                 goto errout;
565
566         err = EINVAL;
567         if (!tb[NETCONFA_IFINDEX])
568                 goto errout;
569
570         ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
571         switch (ifindex) {
572         case NETCONFA_IFINDEX_ALL:
573                 devconf = net->ipv6.devconf_all;
574                 break;
575         case NETCONFA_IFINDEX_DEFAULT:
576                 devconf = net->ipv6.devconf_dflt;
577                 break;
578         default:
579                 dev = __dev_get_by_index(net, ifindex);
580                 if (dev == NULL)
581                         goto errout;
582                 in6_dev = __in6_dev_get(dev);
583                 if (in6_dev == NULL)
584                         goto errout;
585                 devconf = &in6_dev->cnf;
586                 break;
587         }
588
589         err = -ENOBUFS;
590         skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
591         if (skb == NULL)
592                 goto errout;
593
594         err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
595                                          NETLINK_CB(in_skb).portid,
596                                          nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
597                                          -1);
598         if (err < 0) {
599                 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
600                 WARN_ON(err == -EMSGSIZE);
601                 kfree_skb(skb);
602                 goto errout;
603         }
604         err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
605 errout:
606         return err;
607 }
608
609 static int inet6_netconf_dump_devconf(struct sk_buff *skb,
610                                       struct netlink_callback *cb)
611 {
612         struct net *net = sock_net(skb->sk);
613         int h, s_h;
614         int idx, s_idx;
615         struct net_device *dev;
616         struct inet6_dev *idev;
617         struct hlist_head *head;
618
619         s_h = cb->args[0];
620         s_idx = idx = cb->args[1];
621
622         for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
623                 idx = 0;
624                 head = &net->dev_index_head[h];
625                 rcu_read_lock();
626                 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
627                           net->dev_base_seq;
628                 hlist_for_each_entry_rcu(dev, head, index_hlist) {
629                         if (idx < s_idx)
630                                 goto cont;
631                         idev = __in6_dev_get(dev);
632                         if (!idev)
633                                 goto cont;
634
635                         if (inet6_netconf_fill_devconf(skb, dev->ifindex,
636                                                        &idev->cnf,
637                                                        NETLINK_CB(cb->skb).portid,
638                                                        cb->nlh->nlmsg_seq,
639                                                        RTM_NEWNETCONF,
640                                                        NLM_F_MULTI,
641                                                        -1) <= 0) {
642                                 rcu_read_unlock();
643                                 goto done;
644                         }
645                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
646 cont:
647                         idx++;
648                 }
649                 rcu_read_unlock();
650         }
651         if (h == NETDEV_HASHENTRIES) {
652                 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
653                                                net->ipv6.devconf_all,
654                                                NETLINK_CB(cb->skb).portid,
655                                                cb->nlh->nlmsg_seq,
656                                                RTM_NEWNETCONF, NLM_F_MULTI,
657                                                -1) <= 0)
658                         goto done;
659                 else
660                         h++;
661         }
662         if (h == NETDEV_HASHENTRIES + 1) {
663                 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
664                                                net->ipv6.devconf_dflt,
665                                                NETLINK_CB(cb->skb).portid,
666                                                cb->nlh->nlmsg_seq,
667                                                RTM_NEWNETCONF, NLM_F_MULTI,
668                                                -1) <= 0)
669                         goto done;
670                 else
671                         h++;
672         }
673 done:
674         cb->args[0] = h;
675         cb->args[1] = idx;
676
677         return skb->len;
678 }
679
680 #ifdef CONFIG_SYSCTL
681 static void dev_forward_change(struct inet6_dev *idev)
682 {
683         struct net_device *dev;
684         struct inet6_ifaddr *ifa;
685
686         if (!idev)
687                 return;
688         dev = idev->dev;
689         if (idev->cnf.forwarding)
690                 dev_disable_lro(dev);
691         if (dev->flags & IFF_MULTICAST) {
692                 if (idev->cnf.forwarding) {
693                         ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
694                         ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
695                         ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
696                 } else {
697                         ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
698                         ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
699                         ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
700                 }
701         }
702
703         list_for_each_entry(ifa, &idev->addr_list, if_list) {
704                 if (ifa->flags&IFA_F_TENTATIVE)
705                         continue;
706                 if (idev->cnf.forwarding)
707                         addrconf_join_anycast(ifa);
708                 else
709                         addrconf_leave_anycast(ifa);
710         }
711         inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
712                                      dev->ifindex, &idev->cnf);
713 }
714
715
716 static void addrconf_forward_change(struct net *net, __s32 newf)
717 {
718         struct net_device *dev;
719         struct inet6_dev *idev;
720
721         for_each_netdev(net, dev) {
722                 idev = __in6_dev_get(dev);
723                 if (idev) {
724                         int changed = (!idev->cnf.forwarding) ^ (!newf);
725                         idev->cnf.forwarding = newf;
726                         if (changed)
727                                 dev_forward_change(idev);
728                 }
729         }
730 }
731
732 static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
733 {
734         struct net *net;
735         int old;
736
737         if (!rtnl_trylock())
738                 return restart_syscall();
739
740         net = (struct net *)table->extra2;
741         old = *p;
742         *p = newf;
743
744         if (p == &net->ipv6.devconf_dflt->forwarding) {
745                 if ((!newf) ^ (!old))
746                         inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
747                                                      NETCONFA_IFINDEX_DEFAULT,
748                                                      net->ipv6.devconf_dflt);
749                 rtnl_unlock();
750                 return 0;
751         }
752
753         if (p == &net->ipv6.devconf_all->forwarding) {
754                 net->ipv6.devconf_dflt->forwarding = newf;
755                 addrconf_forward_change(net, newf);
756                 if ((!newf) ^ (!old))
757                         inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
758                                                      NETCONFA_IFINDEX_ALL,
759                                                      net->ipv6.devconf_all);
760         } else if ((!newf) ^ (!old))
761                 dev_forward_change((struct inet6_dev *)table->extra1);
762         rtnl_unlock();
763
764         if (newf)
765                 rt6_purge_dflt_routers(net);
766         return 1;
767 }
768 #endif
769
770 /* Nobody refers to this ifaddr, destroy it */
771 void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
772 {
773         WARN_ON(!hlist_unhashed(&ifp->addr_lst));
774
775 #ifdef NET_REFCNT_DEBUG
776         pr_debug("%s\n", __func__);
777 #endif
778
779         in6_dev_put(ifp->idev);
780
781         if (del_timer(&ifp->timer))
782                 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
783
784         if (ifp->state != INET6_IFADDR_STATE_DEAD) {
785                 pr_warn("Freeing alive inet6 address %p\n", ifp);
786                 return;
787         }
788         ip6_rt_put(ifp->rt);
789
790         kfree_rcu(ifp, rcu);
791 }
792
793 static void
794 ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
795 {
796         struct list_head *p;
797         int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
798
799         /*
800          * Each device address list is sorted in order of scope -
801          * global before linklocal.
802          */
803         list_for_each(p, &idev->addr_list) {
804                 struct inet6_ifaddr *ifa
805                         = list_entry(p, struct inet6_ifaddr, if_list);
806                 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
807                         break;
808         }
809
810         list_add_tail(&ifp->if_list, p);
811 }
812
813 static u32 inet6_addr_hash(const struct in6_addr *addr)
814 {
815         return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
816 }
817
818 /* On success it returns ifp with increased reference count */
819
820 static struct inet6_ifaddr *
821 ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
822               int scope, u32 flags)
823 {
824         struct inet6_ifaddr *ifa = NULL;
825         struct rt6_info *rt;
826         unsigned int hash;
827         int err = 0;
828         int addr_type = ipv6_addr_type(addr);
829
830         if (addr_type == IPV6_ADDR_ANY ||
831             addr_type & IPV6_ADDR_MULTICAST ||
832             (!(idev->dev->flags & IFF_LOOPBACK) &&
833              addr_type & IPV6_ADDR_LOOPBACK))
834                 return ERR_PTR(-EADDRNOTAVAIL);
835
836         rcu_read_lock_bh();
837         if (idev->dead) {
838                 err = -ENODEV;                  /*XXX*/
839                 goto out2;
840         }
841
842         if (idev->cnf.disable_ipv6) {
843                 err = -EACCES;
844                 goto out2;
845         }
846
847         spin_lock(&addrconf_hash_lock);
848
849         /* Ignore adding duplicate addresses on an interface */
850         if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
851                 ADBG(("ipv6_add_addr: already assigned\n"));
852                 err = -EEXIST;
853                 goto out;
854         }
855
856         ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
857
858         if (ifa == NULL) {
859                 ADBG(("ipv6_add_addr: malloc failed\n"));
860                 err = -ENOBUFS;
861                 goto out;
862         }
863
864         rt = addrconf_dst_alloc(idev, addr, false);
865         if (IS_ERR(rt)) {
866                 err = PTR_ERR(rt);
867                 goto out;
868         }
869
870         ifa->addr = *addr;
871
872         spin_lock_init(&ifa->lock);
873         spin_lock_init(&ifa->state_lock);
874         init_timer(&ifa->timer);
875         INIT_HLIST_NODE(&ifa->addr_lst);
876         ifa->timer.data = (unsigned long) ifa;
877         ifa->scope = scope;
878         ifa->prefix_len = pfxlen;
879         ifa->flags = flags | IFA_F_TENTATIVE;
880         ifa->cstamp = ifa->tstamp = jiffies;
881         ifa->tokenized = false;
882
883         ifa->rt = rt;
884
885         ifa->idev = idev;
886         in6_dev_hold(idev);
887         /* For caller */
888         in6_ifa_hold(ifa);
889
890         /* Add to big hash table */
891         hash = inet6_addr_hash(addr);
892
893         hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
894         spin_unlock(&addrconf_hash_lock);
895
896         write_lock(&idev->lock);
897         /* Add to inet6_dev unicast addr list. */
898         ipv6_link_dev_addr(idev, ifa);
899
900 #ifdef CONFIG_IPV6_PRIVACY
901         if (ifa->flags&IFA_F_TEMPORARY) {
902                 list_add(&ifa->tmp_list, &idev->tempaddr_list);
903                 in6_ifa_hold(ifa);
904         }
905 #endif
906
907         in6_ifa_hold(ifa);
908         write_unlock(&idev->lock);
909 out2:
910         rcu_read_unlock_bh();
911
912         if (likely(err == 0))
913                 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
914         else {
915                 kfree(ifa);
916                 ifa = ERR_PTR(err);
917         }
918
919         return ifa;
920 out:
921         spin_unlock(&addrconf_hash_lock);
922         goto out2;
923 }
924
925 /* This function wants to get referenced ifp and releases it before return */
926
927 static void ipv6_del_addr(struct inet6_ifaddr *ifp)
928 {
929         struct inet6_ifaddr *ifa, *ifn;
930         struct inet6_dev *idev = ifp->idev;
931         int state;
932         int deleted = 0, onlink = 0;
933         unsigned long expires = jiffies;
934
935         spin_lock_bh(&ifp->state_lock);
936         state = ifp->state;
937         ifp->state = INET6_IFADDR_STATE_DEAD;
938         spin_unlock_bh(&ifp->state_lock);
939
940         if (state == INET6_IFADDR_STATE_DEAD)
941                 goto out;
942
943         spin_lock_bh(&addrconf_hash_lock);
944         hlist_del_init_rcu(&ifp->addr_lst);
945         spin_unlock_bh(&addrconf_hash_lock);
946
947         write_lock_bh(&idev->lock);
948 #ifdef CONFIG_IPV6_PRIVACY
949         if (ifp->flags&IFA_F_TEMPORARY) {
950                 list_del(&ifp->tmp_list);
951                 if (ifp->ifpub) {
952                         in6_ifa_put(ifp->ifpub);
953                         ifp->ifpub = NULL;
954                 }
955                 __in6_ifa_put(ifp);
956         }
957 #endif
958
959         list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
960                 if (ifa == ifp) {
961                         list_del_init(&ifp->if_list);
962                         __in6_ifa_put(ifp);
963
964                         if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
965                                 break;
966                         deleted = 1;
967                         continue;
968                 } else if (ifp->flags & IFA_F_PERMANENT) {
969                         if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
970                                               ifp->prefix_len)) {
971                                 if (ifa->flags & IFA_F_PERMANENT) {
972                                         onlink = 1;
973                                         if (deleted)
974                                                 break;
975                                 } else {
976                                         unsigned long lifetime;
977
978                                         if (!onlink)
979                                                 onlink = -1;
980
981                                         spin_lock(&ifa->lock);
982
983                                         lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
984                                         /*
985                                          * Note: Because this address is
986                                          * not permanent, lifetime <
987                                          * LONG_MAX / HZ here.
988                                          */
989                                         if (time_before(expires,
990                                                         ifa->tstamp + lifetime * HZ))
991                                                 expires = ifa->tstamp + lifetime * HZ;
992                                         spin_unlock(&ifa->lock);
993                                 }
994                         }
995                 }
996         }
997         write_unlock_bh(&idev->lock);
998
999         addrconf_del_timer(ifp);
1000
1001         ipv6_ifa_notify(RTM_DELADDR, ifp);
1002
1003         inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
1004
1005         /*
1006          * Purge or update corresponding prefix
1007          *
1008          * 1) we don't purge prefix here if address was not permanent.
1009          *    prefix is managed by its own lifetime.
1010          * 2) if there're no addresses, delete prefix.
1011          * 3) if there're still other permanent address(es),
1012          *    corresponding prefix is still permanent.
1013          * 4) otherwise, update prefix lifetime to the
1014          *    longest valid lifetime among the corresponding
1015          *    addresses on the device.
1016          *    Note: subsequent RA will update lifetime.
1017          *
1018          * --yoshfuji
1019          */
1020         if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1021                 struct in6_addr prefix;
1022                 struct rt6_info *rt;
1023
1024                 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
1025
1026                 rt = addrconf_get_prefix_route(&prefix,
1027                                                ifp->prefix_len,
1028                                                ifp->idev->dev,
1029                                                0, RTF_GATEWAY | RTF_DEFAULT);
1030
1031                 if (rt) {
1032                         if (onlink == 0) {
1033                                 ip6_del_rt(rt);
1034                                 rt = NULL;
1035                         } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
1036                                 rt6_set_expires(rt, expires);
1037                         }
1038                 }
1039                 ip6_rt_put(rt);
1040         }
1041
1042         /* clean up prefsrc entries */
1043         rt6_remove_prefsrc(ifp);
1044 out:
1045         in6_ifa_put(ifp);
1046 }
1047
1048 #ifdef CONFIG_IPV6_PRIVACY
1049 static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1050 {
1051         struct inet6_dev *idev = ifp->idev;
1052         struct in6_addr addr, *tmpaddr;
1053         unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
1054         unsigned long regen_advance;
1055         int tmp_plen;
1056         int ret = 0;
1057         int max_addresses;
1058         u32 addr_flags;
1059         unsigned long now = jiffies;
1060
1061         write_lock(&idev->lock);
1062         if (ift) {
1063                 spin_lock_bh(&ift->lock);
1064                 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1065                 spin_unlock_bh(&ift->lock);
1066                 tmpaddr = &addr;
1067         } else {
1068                 tmpaddr = NULL;
1069         }
1070 retry:
1071         in6_dev_hold(idev);
1072         if (idev->cnf.use_tempaddr <= 0) {
1073                 write_unlock(&idev->lock);
1074                 pr_info("%s: use_tempaddr is disabled\n", __func__);
1075                 in6_dev_put(idev);
1076                 ret = -1;
1077                 goto out;
1078         }
1079         spin_lock_bh(&ifp->lock);
1080         if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1081                 idev->cnf.use_tempaddr = -1;    /*XXX*/
1082                 spin_unlock_bh(&ifp->lock);
1083                 write_unlock(&idev->lock);
1084                 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1085                         __func__);
1086                 in6_dev_put(idev);
1087                 ret = -1;
1088                 goto out;
1089         }
1090         in6_ifa_hold(ifp);
1091         memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
1092         __ipv6_try_regen_rndid(idev, tmpaddr);
1093         memcpy(&addr.s6_addr[8], idev->rndid, 8);
1094         age = (now - ifp->tstamp) / HZ;
1095         tmp_valid_lft = min_t(__u32,
1096                               ifp->valid_lft,
1097                               idev->cnf.temp_valid_lft + age);
1098         tmp_prefered_lft = min_t(__u32,
1099                                  ifp->prefered_lft,
1100                                  idev->cnf.temp_prefered_lft + age -
1101                                  idev->cnf.max_desync_factor);
1102         tmp_plen = ifp->prefix_len;
1103         max_addresses = idev->cnf.max_addresses;
1104         tmp_tstamp = ifp->tstamp;
1105         spin_unlock_bh(&ifp->lock);
1106
1107         regen_advance = idev->cnf.regen_max_retry *
1108                         idev->cnf.dad_transmits *
1109                         idev->nd_parms->retrans_time / HZ;
1110         write_unlock(&idev->lock);
1111
1112         /* A temporary address is created only if this calculated Preferred
1113          * Lifetime is greater than REGEN_ADVANCE time units.  In particular,
1114          * an implementation must not create a temporary address with a zero
1115          * Preferred Lifetime.
1116          */
1117         if (tmp_prefered_lft <= regen_advance) {
1118                 in6_ifa_put(ifp);
1119                 in6_dev_put(idev);
1120                 ret = -1;
1121                 goto out;
1122         }
1123
1124         addr_flags = IFA_F_TEMPORARY;
1125         /* set in addrconf_prefix_rcv() */
1126         if (ifp->flags & IFA_F_OPTIMISTIC)
1127                 addr_flags |= IFA_F_OPTIMISTIC;
1128
1129         ift = !max_addresses ||
1130               ipv6_count_addresses(idev) < max_addresses ?
1131                 ipv6_add_addr(idev, &addr, tmp_plen,
1132                               ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
1133                               addr_flags) : NULL;
1134         if (IS_ERR_OR_NULL(ift)) {
1135                 in6_ifa_put(ifp);
1136                 in6_dev_put(idev);
1137                 pr_info("%s: retry temporary address regeneration\n", __func__);
1138                 tmpaddr = &addr;
1139                 write_lock(&idev->lock);
1140                 goto retry;
1141         }
1142
1143         spin_lock_bh(&ift->lock);
1144         ift->ifpub = ifp;
1145         ift->valid_lft = tmp_valid_lft;
1146         ift->prefered_lft = tmp_prefered_lft;
1147         ift->cstamp = now;
1148         ift->tstamp = tmp_tstamp;
1149         spin_unlock_bh(&ift->lock);
1150
1151         addrconf_dad_start(ift);
1152         in6_ifa_put(ift);
1153         in6_dev_put(idev);
1154 out:
1155         return ret;
1156 }
1157 #endif
1158
1159 /*
1160  *      Choose an appropriate source address (RFC3484)
1161  */
1162 enum {
1163         IPV6_SADDR_RULE_INIT = 0,
1164         IPV6_SADDR_RULE_LOCAL,
1165         IPV6_SADDR_RULE_SCOPE,
1166         IPV6_SADDR_RULE_PREFERRED,
1167 #ifdef CONFIG_IPV6_MIP6
1168         IPV6_SADDR_RULE_HOA,
1169 #endif
1170         IPV6_SADDR_RULE_OIF,
1171         IPV6_SADDR_RULE_LABEL,
1172 #ifdef CONFIG_IPV6_PRIVACY
1173         IPV6_SADDR_RULE_PRIVACY,
1174 #endif
1175         IPV6_SADDR_RULE_ORCHID,
1176         IPV6_SADDR_RULE_PREFIX,
1177 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1178         IPV6_SADDR_RULE_NOT_OPTIMISTIC,
1179 #endif
1180         IPV6_SADDR_RULE_MAX
1181 };
1182
1183 struct ipv6_saddr_score {
1184         int                     rule;
1185         int                     addr_type;
1186         struct inet6_ifaddr     *ifa;
1187         DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1188         int                     scopedist;
1189         int                     matchlen;
1190 };
1191
1192 struct ipv6_saddr_dst {
1193         const struct in6_addr *addr;
1194         int ifindex;
1195         int scope;
1196         int label;
1197         unsigned int prefs;
1198 };
1199
1200 static inline int ipv6_saddr_preferred(int type)
1201 {
1202         if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
1203                 return 1;
1204         return 0;
1205 }
1206
1207 static inline bool ipv6_use_optimistic_addr(struct inet6_dev *idev)
1208 {
1209 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1210         return idev && idev->cnf.optimistic_dad && idev->cnf.use_optimistic;
1211 #else
1212         return false;
1213 #endif
1214 }
1215
1216 static int ipv6_get_saddr_eval(struct net *net,
1217                                struct ipv6_saddr_score *score,
1218                                struct ipv6_saddr_dst *dst,
1219                                int i)
1220 {
1221         int ret;
1222
1223         if (i <= score->rule) {
1224                 switch (i) {
1225                 case IPV6_SADDR_RULE_SCOPE:
1226                         ret = score->scopedist;
1227                         break;
1228                 case IPV6_SADDR_RULE_PREFIX:
1229                         ret = score->matchlen;
1230                         break;
1231                 default:
1232                         ret = !!test_bit(i, score->scorebits);
1233                 }
1234                 goto out;
1235         }
1236
1237         switch (i) {
1238         case IPV6_SADDR_RULE_INIT:
1239                 /* Rule 0: remember if hiscore is not ready yet */
1240                 ret = !!score->ifa;
1241                 break;
1242         case IPV6_SADDR_RULE_LOCAL:
1243                 /* Rule 1: Prefer same address */
1244                 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1245                 break;
1246         case IPV6_SADDR_RULE_SCOPE:
1247                 /* Rule 2: Prefer appropriate scope
1248                  *
1249                  *      ret
1250                  *       ^
1251                  *    -1 |  d 15
1252                  *    ---+--+-+---> scope
1253                  *       |
1254                  *       |             d is scope of the destination.
1255                  *  B-d  |  \
1256                  *       |   \      <- smaller scope is better if
1257                  *  B-15 |    \        if scope is enough for destinaion.
1258                  *       |             ret = B - scope (-1 <= scope >= d <= 15).
1259                  * d-C-1 | /
1260                  *       |/         <- greater is better
1261                  *   -C  /             if scope is not enough for destination.
1262                  *      /|             ret = scope - C (-1 <= d < scope <= 15).
1263                  *
1264                  * d - C - 1 < B -15 (for all -1 <= d <= 15).
1265                  * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1266                  * Assume B = 0 and we get C > 29.
1267                  */
1268                 ret = __ipv6_addr_src_scope(score->addr_type);
1269                 if (ret >= dst->scope)
1270                         ret = -ret;
1271                 else
1272                         ret -= 128;     /* 30 is enough */
1273                 score->scopedist = ret;
1274                 break;
1275         case IPV6_SADDR_RULE_PREFERRED:
1276             {
1277                 /* Rule 3: Avoid deprecated and optimistic addresses */
1278                 u8 avoid = IFA_F_DEPRECATED;
1279
1280                 if (!ipv6_use_optimistic_addr(score->ifa->idev))
1281                         avoid |= IFA_F_OPTIMISTIC;
1282                 ret = ipv6_saddr_preferred(score->addr_type) ||
1283                       !(score->ifa->flags & avoid);
1284                 break;
1285             }
1286 #ifdef CONFIG_IPV6_MIP6
1287         case IPV6_SADDR_RULE_HOA:
1288             {
1289                 /* Rule 4: Prefer home address */
1290                 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1291                 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
1292                 break;
1293             }
1294 #endif
1295         case IPV6_SADDR_RULE_OIF:
1296                 /* Rule 5: Prefer outgoing interface */
1297                 ret = (!dst->ifindex ||
1298                        dst->ifindex == score->ifa->idev->dev->ifindex);
1299                 break;
1300         case IPV6_SADDR_RULE_LABEL:
1301                 /* Rule 6: Prefer matching label */
1302                 ret = ipv6_addr_label(net,
1303                                       &score->ifa->addr, score->addr_type,
1304                                       score->ifa->idev->dev->ifindex) == dst->label;
1305                 break;
1306 #ifdef CONFIG_IPV6_PRIVACY
1307         case IPV6_SADDR_RULE_PRIVACY:
1308             {
1309                 /* Rule 7: Prefer public address
1310                  * Note: prefer temporary address if use_tempaddr >= 2
1311                  */
1312                 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1313                                 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1314                                 score->ifa->idev->cnf.use_tempaddr >= 2;
1315                 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
1316                 break;
1317             }
1318 #endif
1319         case IPV6_SADDR_RULE_ORCHID:
1320                 /* Rule 8-: Prefer ORCHID vs ORCHID or
1321                  *          non-ORCHID vs non-ORCHID
1322                  */
1323                 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1324                         ipv6_addr_orchid(dst->addr));
1325                 break;
1326         case IPV6_SADDR_RULE_PREFIX:
1327                 /* Rule 8: Use longest matching prefix */
1328                 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1329                 if (ret > score->ifa->prefix_len)
1330                         ret = score->ifa->prefix_len;
1331                 score->matchlen = ret;
1332                 break;
1333 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1334         case IPV6_SADDR_RULE_NOT_OPTIMISTIC:
1335                 /* Optimistic addresses still have lower precedence than other
1336                  * preferred addresses.
1337                  */
1338                 ret = !(score->ifa->flags & IFA_F_OPTIMISTIC);
1339                 break;
1340 #endif
1341         default:
1342                 ret = 0;
1343         }
1344
1345         if (ret)
1346                 __set_bit(i, score->scorebits);
1347         score->rule = i;
1348 out:
1349         return ret;
1350 }
1351
1352 int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
1353                        const struct in6_addr *daddr, unsigned int prefs,
1354                        struct in6_addr *saddr)
1355 {
1356         struct ipv6_saddr_score scores[2],
1357                                 *score = &scores[0], *hiscore = &scores[1];
1358         struct ipv6_saddr_dst dst;
1359         struct net_device *dev;
1360         int dst_type;
1361
1362         dst_type = __ipv6_addr_type(daddr);
1363         dst.addr = daddr;
1364         dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1365         dst.scope = __ipv6_addr_src_scope(dst_type);
1366         dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
1367         dst.prefs = prefs;
1368
1369         hiscore->rule = -1;
1370         hiscore->ifa = NULL;
1371
1372         rcu_read_lock();
1373
1374         for_each_netdev_rcu(net, dev) {
1375                 struct inet6_dev *idev;
1376
1377                 /* Candidate Source Address (section 4)
1378                  *  - multicast and link-local destination address,
1379                  *    the set of candidate source address MUST only
1380                  *    include addresses assigned to interfaces
1381                  *    belonging to the same link as the outgoing
1382                  *    interface.
1383                  * (- For site-local destination addresses, the
1384                  *    set of candidate source addresses MUST only
1385                  *    include addresses assigned to interfaces
1386                  *    belonging to the same site as the outgoing
1387                  *    interface.)
1388                  */
1389                 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1390                      dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1391                     dst.ifindex && dev->ifindex != dst.ifindex)
1392                         continue;
1393
1394                 idev = __in6_dev_get(dev);
1395                 if (!idev)
1396                         continue;
1397
1398                 read_lock_bh(&idev->lock);
1399                 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
1400                         int i;
1401
1402                         /*
1403                          * - Tentative Address (RFC2462 section 5.4)
1404                          *  - A tentative address is not considered
1405                          *    "assigned to an interface" in the traditional
1406                          *    sense, unless it is also flagged as optimistic.
1407                          * - Candidate Source Address (section 4)
1408                          *  - In any case, anycast addresses, multicast
1409                          *    addresses, and the unspecified address MUST
1410                          *    NOT be included in a candidate set.
1411                          */
1412                         if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1413                             (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
1414                                 continue;
1415
1416                         score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1417
1418                         if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1419                                      score->addr_type & IPV6_ADDR_MULTICAST)) {
1420                                 LIMIT_NETDEBUG(KERN_DEBUG
1421                                                "ADDRCONF: unspecified / multicast address "
1422                                                "assigned as unicast address on %s",
1423                                                dev->name);
1424                                 continue;
1425                         }
1426
1427                         score->rule = -1;
1428                         bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
1429
1430                         for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1431                                 int minihiscore, miniscore;
1432
1433                                 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1434                                 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
1435
1436                                 if (minihiscore > miniscore) {
1437                                         if (i == IPV6_SADDR_RULE_SCOPE &&
1438                                             score->scopedist > 0) {
1439                                                 /*
1440                                                  * special case:
1441                                                  * each remaining entry
1442                                                  * has too small (not enough)
1443                                                  * scope, because ifa entries
1444                                                  * are sorted by their scope
1445                                                  * values.
1446                                                  */
1447                                                 goto try_nextdev;
1448                                         }
1449                                         break;
1450                                 } else if (minihiscore < miniscore) {
1451                                         if (hiscore->ifa)
1452                                                 in6_ifa_put(hiscore->ifa);
1453
1454                                         in6_ifa_hold(score->ifa);
1455
1456                                         swap(hiscore, score);
1457
1458                                         /* restore our iterator */
1459                                         score->ifa = hiscore->ifa;
1460
1461                                         break;
1462                                 }
1463                         }
1464                 }
1465 try_nextdev:
1466                 read_unlock_bh(&idev->lock);
1467         }
1468         rcu_read_unlock();
1469
1470         if (!hiscore->ifa)
1471                 return -EADDRNOTAVAIL;
1472
1473         *saddr = hiscore->ifa->addr;
1474         in6_ifa_put(hiscore->ifa);
1475         return 0;
1476 }
1477 EXPORT_SYMBOL(ipv6_dev_get_saddr);
1478
1479 int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1480                     unsigned char banned_flags)
1481 {
1482         struct inet6_dev *idev;
1483         int err = -EADDRNOTAVAIL;
1484
1485         rcu_read_lock();
1486         idev = __in6_dev_get(dev);
1487         if (idev) {
1488                 struct inet6_ifaddr *ifp;
1489
1490                 read_lock_bh(&idev->lock);
1491                 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1492                         if (ifp->scope == IFA_LINK &&
1493                             !(ifp->flags & banned_flags)) {
1494                                 *addr = ifp->addr;
1495                                 err = 0;
1496                                 break;
1497                         }
1498                 }
1499                 read_unlock_bh(&idev->lock);
1500         }
1501         rcu_read_unlock();
1502         return err;
1503 }
1504
1505 static int ipv6_count_addresses(struct inet6_dev *idev)
1506 {
1507         int cnt = 0;
1508         struct inet6_ifaddr *ifp;
1509
1510         read_lock_bh(&idev->lock);
1511         list_for_each_entry(ifp, &idev->addr_list, if_list)
1512                 cnt++;
1513         read_unlock_bh(&idev->lock);
1514         return cnt;
1515 }
1516
1517 int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
1518                   const struct net_device *dev, int strict)
1519 {
1520         struct inet6_ifaddr *ifp;
1521         unsigned int hash = inet6_addr_hash(addr);
1522
1523         rcu_read_lock_bh();
1524         hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
1525                 if (!net_eq(dev_net(ifp->idev->dev), net))
1526                         continue;
1527                 if (ipv6_addr_equal(&ifp->addr, addr) &&
1528                     (!(ifp->flags&IFA_F_TENTATIVE) ||
1529                      (ipv6_use_optimistic_addr(ifp->idev) &&
1530                       ifp->flags&IFA_F_OPTIMISTIC)) &&
1531                     (dev == NULL || ifp->idev->dev == dev ||
1532                      !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1533                         rcu_read_unlock_bh();
1534                         return 1;
1535                 }
1536         }
1537
1538         rcu_read_unlock_bh();
1539         return 0;
1540 }
1541 EXPORT_SYMBOL(ipv6_chk_addr);
1542
1543 static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1544                                struct net_device *dev)
1545 {
1546         unsigned int hash = inet6_addr_hash(addr);
1547         struct inet6_ifaddr *ifp;
1548
1549         hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
1550                 if (!net_eq(dev_net(ifp->idev->dev), net))
1551                         continue;
1552                 if (ipv6_addr_equal(&ifp->addr, addr)) {
1553                         if (dev == NULL || ifp->idev->dev == dev)
1554                                 return true;
1555                 }
1556         }
1557         return false;
1558 }
1559
1560 int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
1561 {
1562         struct inet6_dev *idev;
1563         struct inet6_ifaddr *ifa;
1564         int     onlink;
1565
1566         onlink = 0;
1567         rcu_read_lock();
1568         idev = __in6_dev_get(dev);
1569         if (idev) {
1570                 read_lock_bh(&idev->lock);
1571                 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1572                         onlink = ipv6_prefix_equal(addr, &ifa->addr,
1573                                                    ifa->prefix_len);
1574                         if (onlink)
1575                                 break;
1576                 }
1577                 read_unlock_bh(&idev->lock);
1578         }
1579         rcu_read_unlock();
1580         return onlink;
1581 }
1582 EXPORT_SYMBOL(ipv6_chk_prefix);
1583
1584 struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
1585                                      struct net_device *dev, int strict)
1586 {
1587         struct inet6_ifaddr *ifp, *result = NULL;
1588         unsigned int hash = inet6_addr_hash(addr);
1589
1590         rcu_read_lock_bh();
1591         hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
1592                 if (!net_eq(dev_net(ifp->idev->dev), net))
1593                         continue;
1594                 if (ipv6_addr_equal(&ifp->addr, addr)) {
1595                         if (dev == NULL || ifp->idev->dev == dev ||
1596                             !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
1597                                 result = ifp;
1598                                 in6_ifa_hold(ifp);
1599                                 break;
1600                         }
1601                 }
1602         }
1603         rcu_read_unlock_bh();
1604
1605         return result;
1606 }
1607
1608 /* Gets referenced address, destroys ifaddr */
1609
1610 static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
1611 {
1612         if (ifp->flags&IFA_F_PERMANENT) {
1613                 spin_lock_bh(&ifp->lock);
1614                 addrconf_del_timer(ifp);
1615                 ifp->flags |= IFA_F_TENTATIVE;
1616                 if (dad_failed)
1617                         ifp->flags |= IFA_F_DADFAILED;
1618                 spin_unlock_bh(&ifp->lock);
1619                 if (dad_failed)
1620                         ipv6_ifa_notify(0, ifp);
1621                 in6_ifa_put(ifp);
1622 #ifdef CONFIG_IPV6_PRIVACY
1623         } else if (ifp->flags&IFA_F_TEMPORARY) {
1624                 struct inet6_ifaddr *ifpub;
1625                 spin_lock_bh(&ifp->lock);
1626                 ifpub = ifp->ifpub;
1627                 if (ifpub) {
1628                         in6_ifa_hold(ifpub);
1629                         spin_unlock_bh(&ifp->lock);
1630                         ipv6_create_tempaddr(ifpub, ifp);
1631                         in6_ifa_put(ifpub);
1632                 } else {
1633                         spin_unlock_bh(&ifp->lock);
1634                 }
1635                 ipv6_del_addr(ifp);
1636 #endif
1637         } else
1638                 ipv6_del_addr(ifp);
1639 }
1640
1641 static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1642 {
1643         int err = -ENOENT;
1644
1645         spin_lock(&ifp->state_lock);
1646         if (ifp->state == INET6_IFADDR_STATE_DAD) {
1647                 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1648                 err = 0;
1649         }
1650         spin_unlock(&ifp->state_lock);
1651
1652         return err;
1653 }
1654
1655 void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1656 {
1657         struct inet6_dev *idev = ifp->idev;
1658
1659         if (addrconf_dad_end(ifp)) {
1660                 in6_ifa_put(ifp);
1661                 return;
1662         }
1663
1664         net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1665                              ifp->idev->dev->name, &ifp->addr);
1666
1667         if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1668                 struct in6_addr addr;
1669
1670                 addr.s6_addr32[0] = htonl(0xfe800000);
1671                 addr.s6_addr32[1] = 0;
1672
1673                 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1674                     ipv6_addr_equal(&ifp->addr, &addr)) {
1675                         /* DAD failed for link-local based on MAC address */
1676                         idev->cnf.disable_ipv6 = 1;
1677
1678                         pr_info("%s: IPv6 being disabled!\n",
1679                                 ifp->idev->dev->name);
1680                 }
1681         }
1682
1683         addrconf_dad_stop(ifp, 1);
1684 }
1685
1686 /* Join to solicited addr multicast group. */
1687
1688 void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
1689 {
1690         struct in6_addr maddr;
1691
1692         if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1693                 return;
1694
1695         addrconf_addr_solict_mult(addr, &maddr);
1696         ipv6_dev_mc_inc(dev, &maddr);
1697 }
1698
1699 void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
1700 {
1701         struct in6_addr maddr;
1702
1703         if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1704                 return;
1705
1706         addrconf_addr_solict_mult(addr, &maddr);
1707         __ipv6_dev_mc_dec(idev, &maddr);
1708 }
1709
1710 static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
1711 {
1712         struct in6_addr addr;
1713         if (ifp->prefix_len == 127) /* RFC 6164 */
1714                 return;
1715         ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1716         if (ipv6_addr_any(&addr))
1717                 return;
1718         ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1719 }
1720
1721 static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
1722 {
1723         struct in6_addr addr;
1724         if (ifp->prefix_len == 127) /* RFC 6164 */
1725                 return;
1726         ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1727         if (ipv6_addr_any(&addr))
1728                 return;
1729         __ipv6_dev_ac_dec(ifp->idev, &addr);
1730 }
1731
1732 static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1733 {
1734         if (dev->addr_len != ETH_ALEN)
1735                 return -1;
1736         memcpy(eui, dev->dev_addr, 3);
1737         memcpy(eui + 5, dev->dev_addr + 3, 3);
1738
1739         /*
1740          * The zSeries OSA network cards can be shared among various
1741          * OS instances, but the OSA cards have only one MAC address.
1742          * This leads to duplicate address conflicts in conjunction
1743          * with IPv6 if more than one instance uses the same card.
1744          *
1745          * The driver for these cards can deliver a unique 16-bit
1746          * identifier for each instance sharing the same card.  It is
1747          * placed instead of 0xFFFE in the interface identifier.  The
1748          * "u" bit of the interface identifier is not inverted in this
1749          * case.  Hence the resulting interface identifier has local
1750          * scope according to RFC2373.
1751          */
1752         if (dev->dev_id) {
1753                 eui[3] = (dev->dev_id >> 8) & 0xFF;
1754                 eui[4] = dev->dev_id & 0xFF;
1755         } else {
1756                 eui[3] = 0xFF;
1757                 eui[4] = 0xFE;
1758                 eui[0] ^= 2;
1759         }
1760         return 0;
1761 }
1762
1763 static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1764 {
1765         if (dev->addr_len != IEEE802154_ADDR_LEN)
1766                 return -1;
1767         memcpy(eui, dev->dev_addr, 8);
1768         eui[0] ^= 2;
1769         return 0;
1770 }
1771
1772 static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1773 {
1774         union fwnet_hwaddr *ha;
1775
1776         if (dev->addr_len != FWNET_ALEN)
1777                 return -1;
1778
1779         ha = (union fwnet_hwaddr *)dev->dev_addr;
1780
1781         memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1782         eui[0] ^= 2;
1783         return 0;
1784 }
1785
1786 static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1787 {
1788         /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1789         if (dev->addr_len != ARCNET_ALEN)
1790                 return -1;
1791         memset(eui, 0, 7);
1792         eui[7] = *(u8 *)dev->dev_addr;
1793         return 0;
1794 }
1795
1796 static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1797 {
1798         if (dev->addr_len != INFINIBAND_ALEN)
1799                 return -1;
1800         memcpy(eui, dev->dev_addr + 12, 8);
1801         eui[0] |= 2;
1802         return 0;
1803 }
1804
1805 static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
1806 {
1807         if (addr == 0)
1808                 return -1;
1809         eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1810                   ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1811                   ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1812                   ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1813                   ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1814                   ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1815         eui[1] = 0;
1816         eui[2] = 0x5E;
1817         eui[3] = 0xFE;
1818         memcpy(eui + 4, &addr, 4);
1819         return 0;
1820 }
1821
1822 static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1823 {
1824         if (dev->priv_flags & IFF_ISATAP)
1825                 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1826         return -1;
1827 }
1828
1829 static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1830 {
1831         return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1832 }
1833
1834 static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1835 {
1836         switch (dev->type) {
1837         case ARPHRD_ETHER:
1838         case ARPHRD_FDDI:
1839                 return addrconf_ifid_eui48(eui, dev);
1840         case ARPHRD_ARCNET:
1841                 return addrconf_ifid_arcnet(eui, dev);
1842         case ARPHRD_INFINIBAND:
1843                 return addrconf_ifid_infiniband(eui, dev);
1844         case ARPHRD_SIT:
1845                 return addrconf_ifid_sit(eui, dev);
1846         case ARPHRD_IPGRE:
1847                 return addrconf_ifid_gre(eui, dev);
1848         case ARPHRD_IEEE802154:
1849                 return addrconf_ifid_eui64(eui, dev);
1850         case ARPHRD_IEEE1394:
1851                 return addrconf_ifid_ieee1394(eui, dev);
1852         }
1853         return -1;
1854 }
1855
1856 static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1857 {
1858         int err = -1;
1859         struct inet6_ifaddr *ifp;
1860
1861         read_lock_bh(&idev->lock);
1862         list_for_each_entry(ifp, &idev->addr_list, if_list) {
1863                 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1864                         memcpy(eui, ifp->addr.s6_addr+8, 8);
1865                         err = 0;
1866                         break;
1867                 }
1868         }
1869         read_unlock_bh(&idev->lock);
1870         return err;
1871 }
1872
1873 #ifdef CONFIG_IPV6_PRIVACY
1874 /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
1875 static void __ipv6_regen_rndid(struct inet6_dev *idev)
1876 {
1877 regen:
1878         get_random_bytes(idev->rndid, sizeof(idev->rndid));
1879         idev->rndid[0] &= ~0x02;
1880
1881         /*
1882          * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1883          * check if generated address is not inappropriate
1884          *
1885          *  - Reserved subnet anycast (RFC 2526)
1886          *      11111101 11....11 1xxxxxxx
1887          *  - ISATAP (RFC4214) 6.1
1888          *      00-00-5E-FE-xx-xx-xx-xx
1889          *  - value 0
1890          *  - XXX: already assigned to an address on the device
1891          */
1892         if (idev->rndid[0] == 0xfd &&
1893             (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1894             (idev->rndid[7]&0x80))
1895                 goto regen;
1896         if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1897                 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1898                         goto regen;
1899                 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1900                         goto regen;
1901         }
1902 }
1903
1904 static void ipv6_regen_rndid(unsigned long data)
1905 {
1906         struct inet6_dev *idev = (struct inet6_dev *) data;
1907         unsigned long expires;
1908
1909         rcu_read_lock_bh();
1910         write_lock_bh(&idev->lock);
1911
1912         if (idev->dead)
1913                 goto out;
1914
1915         __ipv6_regen_rndid(idev);
1916
1917         expires = jiffies +
1918                 idev->cnf.temp_prefered_lft * HZ -
1919                 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1920                 idev->cnf.max_desync_factor * HZ;
1921         if (time_before(expires, jiffies)) {
1922                 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1923                         __func__, idev->dev->name);
1924                 goto out;
1925         }
1926
1927         if (!mod_timer(&idev->regen_timer, expires))
1928                 in6_dev_hold(idev);
1929
1930 out:
1931         write_unlock_bh(&idev->lock);
1932         rcu_read_unlock_bh();
1933         in6_dev_put(idev);
1934 }
1935
1936 static void  __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
1937 {
1938         if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
1939                 __ipv6_regen_rndid(idev);
1940 }
1941 #endif
1942
1943 u32 addrconf_rt_table(const struct net_device *dev, u32 default_table) {
1944         /* Determines into what table to put autoconf PIO/RIO/default routes
1945          * learned on this device.
1946          *
1947          * - If 0, use the same table for every device. This puts routes into
1948          *   one of RT_TABLE_{PREFIX,INFO,DFLT} depending on the type of route
1949          *   (but note that these three are currently all equal to
1950          *   RT6_TABLE_MAIN).
1951          * - If > 0, use the specified table.
1952          * - If < 0, put routes into table dev->ifindex + (-rt_table).
1953          */
1954         struct inet6_dev *idev = in6_dev_get(dev);
1955         u32 table;
1956         int sysctl = idev->cnf.accept_ra_rt_table;
1957         if (sysctl == 0) {
1958                 table = default_table;
1959         } else if (sysctl > 0) {
1960                 table = (u32) sysctl;
1961         } else {
1962                 table = (unsigned) dev->ifindex + (-sysctl);
1963         }
1964         in6_dev_put(idev);
1965         return table;
1966 }
1967
1968 /*
1969  *      Add prefix route.
1970  */
1971
1972 static void
1973 addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
1974                       unsigned long expires, u32 flags)
1975 {
1976         struct fib6_config cfg = {
1977                 .fc_table = addrconf_rt_table(dev, RT6_TABLE_PREFIX),
1978                 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1979                 .fc_ifindex = dev->ifindex,
1980                 .fc_expires = expires,
1981                 .fc_dst_len = plen,
1982                 .fc_flags = RTF_UP | flags,
1983                 .fc_nlinfo.nl_net = dev_net(dev),
1984                 .fc_protocol = RTPROT_KERNEL,
1985         };
1986
1987         cfg.fc_dst = *pfx;
1988
1989         /* Prevent useless cloning on PtP SIT.
1990            This thing is done here expecting that the whole
1991            class of non-broadcast devices need not cloning.
1992          */
1993 #if IS_ENABLED(CONFIG_IPV6_SIT)
1994         if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1995                 cfg.fc_flags |= RTF_NONEXTHOP;
1996 #endif
1997
1998         ip6_route_add(&cfg);
1999 }
2000
2001
2002 static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
2003                                                   int plen,
2004                                                   const struct net_device *dev,
2005                                                   u32 flags, u32 noflags)
2006 {
2007         struct fib6_node *fn;
2008         struct rt6_info *rt = NULL;
2009         struct fib6_table *table;
2010
2011         table = fib6_get_table(dev_net(dev),
2012                                addrconf_rt_table(dev, RT6_TABLE_PREFIX));
2013         if (table == NULL)
2014                 return NULL;
2015
2016         read_lock_bh(&table->tb6_lock);
2017         fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
2018         if (!fn)
2019                 goto out;
2020         for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
2021                 if (rt->dst.dev->ifindex != dev->ifindex)
2022                         continue;
2023                 if ((rt->rt6i_flags & flags) != flags)
2024                         continue;
2025                 if ((rt->rt6i_flags & noflags) != 0)
2026                         continue;
2027                 dst_hold(&rt->dst);
2028                 break;
2029         }
2030 out:
2031         read_unlock_bh(&table->tb6_lock);
2032         return rt;
2033 }
2034
2035
2036 /* Create "default" multicast route to the interface */
2037
2038 static void addrconf_add_mroute(struct net_device *dev)
2039 {
2040         struct fib6_config cfg = {
2041                 .fc_table = RT6_TABLE_LOCAL,
2042                 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2043                 .fc_ifindex = dev->ifindex,
2044                 .fc_dst_len = 8,
2045                 .fc_flags = RTF_UP,
2046                 .fc_nlinfo.nl_net = dev_net(dev),
2047         };
2048
2049         ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2050
2051         ip6_route_add(&cfg);
2052 }
2053
2054 #if IS_ENABLED(CONFIG_IPV6_SIT)
2055 static void sit_route_add(struct net_device *dev)
2056 {
2057         struct fib6_config cfg = {
2058                 .fc_table = RT6_TABLE_MAIN,
2059                 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2060                 .fc_ifindex = dev->ifindex,
2061                 .fc_dst_len = 96,
2062                 .fc_flags = RTF_UP | RTF_NONEXTHOP,
2063                 .fc_nlinfo.nl_net = dev_net(dev),
2064         };
2065
2066         /* prefix length - 96 bits "::d.d.d.d" */
2067         ip6_route_add(&cfg);
2068 }
2069 #endif
2070
2071 static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2072 {
2073         struct inet6_dev *idev;
2074
2075         ASSERT_RTNL();
2076
2077         idev = ipv6_find_idev(dev);
2078         if (!idev)
2079                 return ERR_PTR(-ENOBUFS);
2080
2081         if (idev->cnf.disable_ipv6)
2082                 return ERR_PTR(-EACCES);
2083
2084         /* Add default multicast route */
2085         if (!(dev->flags & IFF_LOOPBACK))
2086                 addrconf_add_mroute(dev);
2087
2088         return idev;
2089 }
2090
2091 void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
2092 {
2093         struct prefix_info *pinfo;
2094         __u32 valid_lft;
2095         __u32 prefered_lft;
2096         int addr_type;
2097         struct inet6_dev *in6_dev;
2098         struct net *net = dev_net(dev);
2099
2100         pinfo = (struct prefix_info *) opt;
2101
2102         if (len < sizeof(struct prefix_info)) {
2103                 ADBG(("addrconf: prefix option too short\n"));
2104                 return;
2105         }
2106
2107         /*
2108          *      Validation checks ([ADDRCONF], page 19)
2109          */
2110
2111         addr_type = ipv6_addr_type(&pinfo->prefix);
2112
2113         if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2114                 return;
2115
2116         valid_lft = ntohl(pinfo->valid);
2117         prefered_lft = ntohl(pinfo->prefered);
2118
2119         if (prefered_lft > valid_lft) {
2120                 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
2121                 return;
2122         }
2123
2124         in6_dev = in6_dev_get(dev);
2125
2126         if (in6_dev == NULL) {
2127                 net_dbg_ratelimited("addrconf: device %s not configured\n",
2128                                     dev->name);
2129                 return;
2130         }
2131
2132         /*
2133          *      Two things going on here:
2134          *      1) Add routes for on-link prefixes
2135          *      2) Configure prefixes with the auto flag set
2136          */
2137
2138         if (pinfo->onlink) {
2139                 struct rt6_info *rt;
2140                 unsigned long rt_expires;
2141
2142                 /* Avoid arithmetic overflow. Really, we could
2143                  * save rt_expires in seconds, likely valid_lft,
2144                  * but it would require division in fib gc, that it
2145                  * not good.
2146                  */
2147                 if (HZ > USER_HZ)
2148                         rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2149                 else
2150                         rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
2151
2152                 if (addrconf_finite_timeout(rt_expires))
2153                         rt_expires *= HZ;
2154
2155                 rt = addrconf_get_prefix_route(&pinfo->prefix,
2156                                                pinfo->prefix_len,
2157                                                dev,
2158                                                RTF_ADDRCONF | RTF_PREFIX_RT,
2159                                                RTF_GATEWAY | RTF_DEFAULT);
2160
2161                 if (rt) {
2162                         /* Autoconf prefix route */
2163                         if (valid_lft == 0) {
2164                                 ip6_del_rt(rt);
2165                                 rt = NULL;
2166                         } else if (addrconf_finite_timeout(rt_expires)) {
2167                                 /* not infinity */
2168                                 rt6_set_expires(rt, jiffies + rt_expires);
2169                         } else {
2170                                 rt6_clean_expires(rt);
2171                         }
2172                 } else if (valid_lft) {
2173                         clock_t expires = 0;
2174                         int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2175                         if (addrconf_finite_timeout(rt_expires)) {
2176                                 /* not infinity */
2177                                 flags |= RTF_EXPIRES;
2178                                 expires = jiffies_to_clock_t(rt_expires);
2179                         }
2180                         addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
2181                                               dev, expires, flags);
2182                 }
2183                 ip6_rt_put(rt);
2184         }
2185
2186         /* Try to figure out our local address for this prefix */
2187
2188         if (pinfo->autoconf && in6_dev->cnf.autoconf) {
2189                 struct inet6_ifaddr *ifp;
2190                 struct in6_addr addr;
2191                 int create = 0, update_lft = 0;
2192                 bool tokenized = false;
2193
2194                 if (pinfo->prefix_len == 64) {
2195                         memcpy(&addr, &pinfo->prefix, 8);
2196
2197                         if (!ipv6_addr_any(&in6_dev->token)) {
2198                                 read_lock_bh(&in6_dev->lock);
2199                                 memcpy(addr.s6_addr + 8,
2200                                        in6_dev->token.s6_addr + 8, 8);
2201                                 read_unlock_bh(&in6_dev->lock);
2202                                 tokenized = true;
2203                         } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2204                                    ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
2205                                 in6_dev_put(in6_dev);
2206                                 return;
2207                         }
2208                         goto ok;
2209                 }
2210                 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2211                                     pinfo->prefix_len);
2212                 in6_dev_put(in6_dev);
2213                 return;
2214
2215 ok:
2216
2217                 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
2218
2219                 if (ifp == NULL && valid_lft) {
2220                         int max_addresses = in6_dev->cnf.max_addresses;
2221                         u32 addr_flags = 0;
2222
2223 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2224                         if (in6_dev->cnf.optimistic_dad &&
2225                             !net->ipv6.devconf_all->forwarding && sllao)
2226                                 addr_flags = IFA_F_OPTIMISTIC;
2227 #endif
2228
2229                         /* Do not allow to create too much of autoconfigured
2230                          * addresses; this would be too easy way to crash kernel.
2231                          */
2232                         if (!max_addresses ||
2233                             ipv6_count_addresses(in6_dev) < max_addresses)
2234                                 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
2235                                                     addr_type&IPV6_ADDR_SCOPE_MASK,
2236                                                     addr_flags);
2237
2238                         if (IS_ERR_OR_NULL(ifp)) {
2239                                 in6_dev_put(in6_dev);
2240                                 return;
2241                         }
2242
2243                         update_lft = create = 1;
2244                         ifp->cstamp = jiffies;
2245                         ifp->tokenized = tokenized;
2246                         addrconf_dad_start(ifp);
2247                 }
2248
2249                 if (ifp) {
2250                         int flags;
2251                         unsigned long now;
2252 #ifdef CONFIG_IPV6_PRIVACY
2253                         struct inet6_ifaddr *ift;
2254 #endif
2255                         u32 stored_lft;
2256
2257                         /* update lifetime (RFC2462 5.5.3 e) */
2258                         spin_lock(&ifp->lock);
2259                         now = jiffies;
2260                         if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2261                                 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2262                         else
2263                                 stored_lft = 0;
2264                         if (!update_lft && stored_lft) {
2265                                 if (valid_lft > MIN_VALID_LIFETIME ||
2266                                     valid_lft > stored_lft)
2267                                         update_lft = 1;
2268                                 else if (stored_lft <= MIN_VALID_LIFETIME) {
2269                                         /* valid_lft <= stored_lft is always true */
2270                                         /*
2271                                          * RFC 4862 Section 5.5.3e:
2272                                          * "Note that the preferred lifetime of
2273                                          *  the corresponding address is always
2274                                          *  reset to the Preferred Lifetime in
2275                                          *  the received Prefix Information
2276                                          *  option, regardless of whether the
2277                                          *  valid lifetime is also reset or
2278                                          *  ignored."
2279                                          *
2280                                          *  So if the preferred lifetime in
2281                                          *  this advertisement is different
2282                                          *  than what we have stored, but the
2283                                          *  valid lifetime is invalid, just
2284                                          *  reset prefered_lft.
2285                                          *
2286                                          *  We must set the valid lifetime
2287                                          *  to the stored lifetime since we'll
2288                                          *  be updating the timestamp below,
2289                                          *  else we'll set it back to the
2290                                          *  minimum.
2291                                          */
2292                                         if (prefered_lft != ifp->prefered_lft) {
2293                                                 valid_lft = stored_lft;
2294                                                 update_lft = 1;
2295                                         }
2296                                 } else {
2297                                         valid_lft = MIN_VALID_LIFETIME;
2298                                         if (valid_lft < prefered_lft)
2299                                                 prefered_lft = valid_lft;
2300                                         update_lft = 1;
2301                                 }
2302                         }
2303
2304                         if (update_lft) {
2305                                 ifp->valid_lft = valid_lft;
2306                                 ifp->prefered_lft = prefered_lft;
2307                                 ifp->tstamp = now;
2308                                 flags = ifp->flags;
2309                                 ifp->flags &= ~IFA_F_DEPRECATED;
2310                                 spin_unlock(&ifp->lock);
2311
2312                                 if (!(flags&IFA_F_TENTATIVE))
2313                                         ipv6_ifa_notify(0, ifp);
2314                         } else
2315                                 spin_unlock(&ifp->lock);
2316
2317 #ifdef CONFIG_IPV6_PRIVACY
2318                         read_lock_bh(&in6_dev->lock);
2319                         /* update all temporary addresses in the list */
2320                         list_for_each_entry(ift, &in6_dev->tempaddr_list,
2321                                             tmp_list) {
2322                                 int age, max_valid, max_prefered;
2323
2324                                 if (ifp != ift->ifpub)
2325                                         continue;
2326
2327                                 /*
2328                                  * RFC 4941 section 3.3:
2329                                  * If a received option will extend the lifetime
2330                                  * of a public address, the lifetimes of
2331                                  * temporary addresses should be extended,
2332                                  * subject to the overall constraint that no
2333                                  * temporary addresses should ever remain
2334                                  * "valid" or "preferred" for a time longer than
2335                                  * (TEMP_VALID_LIFETIME) or
2336                                  * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2337                                  * respectively.
2338                                  */
2339                                 age = (now - ift->cstamp) / HZ;
2340                                 max_valid = in6_dev->cnf.temp_valid_lft - age;
2341                                 if (max_valid < 0)
2342                                         max_valid = 0;
2343
2344                                 max_prefered = in6_dev->cnf.temp_prefered_lft -
2345                                                in6_dev->cnf.max_desync_factor -
2346                                                age;
2347                                 if (max_prefered < 0)
2348                                         max_prefered = 0;
2349
2350                                 if (valid_lft > max_valid)
2351                                         valid_lft = max_valid;
2352
2353                                 if (prefered_lft > max_prefered)
2354                                         prefered_lft = max_prefered;
2355
2356                                 spin_lock(&ift->lock);
2357                                 flags = ift->flags;
2358                                 ift->valid_lft = valid_lft;
2359                                 ift->prefered_lft = prefered_lft;
2360                                 ift->tstamp = now;
2361                                 if (prefered_lft > 0)
2362                                         ift->flags &= ~IFA_F_DEPRECATED;
2363
2364                                 spin_unlock(&ift->lock);
2365                                 if (!(flags&IFA_F_TENTATIVE))
2366                                         ipv6_ifa_notify(0, ift);
2367                         }
2368
2369                         if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
2370                                 /*
2371                                  * When a new public address is created as
2372                                  * described in [ADDRCONF], also create a new
2373                                  * temporary address. Also create a temporary
2374                                  * address if it's enabled but no temporary
2375                                  * address currently exists.
2376                                  */
2377                                 read_unlock_bh(&in6_dev->lock);
2378                                 ipv6_create_tempaddr(ifp, NULL);
2379                         } else {
2380                                 read_unlock_bh(&in6_dev->lock);
2381                         }
2382 #endif
2383                         in6_ifa_put(ifp);
2384                         addrconf_verify(0);
2385                 }
2386         }
2387         inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2388         in6_dev_put(in6_dev);
2389 }
2390
2391 /*
2392  *      Set destination address.
2393  *      Special case for SIT interfaces where we create a new "virtual"
2394  *      device.
2395  */
2396 int addrconf_set_dstaddr(struct net *net, void __user *arg)
2397 {
2398         struct in6_ifreq ireq;
2399         struct net_device *dev;
2400         int err = -EINVAL;
2401
2402         rtnl_lock();
2403
2404         err = -EFAULT;
2405         if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2406                 goto err_exit;
2407
2408         dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
2409
2410         err = -ENODEV;
2411         if (dev == NULL)
2412                 goto err_exit;
2413
2414 #if IS_ENABLED(CONFIG_IPV6_SIT)
2415         if (dev->type == ARPHRD_SIT) {
2416                 const struct net_device_ops *ops = dev->netdev_ops;
2417                 struct ifreq ifr;
2418                 struct ip_tunnel_parm p;
2419
2420                 err = -EADDRNOTAVAIL;
2421                 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2422                         goto err_exit;
2423
2424                 memset(&p, 0, sizeof(p));
2425                 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2426                 p.iph.saddr = 0;
2427                 p.iph.version = 4;
2428                 p.iph.ihl = 5;
2429                 p.iph.protocol = IPPROTO_IPV6;
2430                 p.iph.ttl = 64;
2431                 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
2432
2433                 if (ops->ndo_do_ioctl) {
2434                         mm_segment_t oldfs = get_fs();
2435
2436                         set_fs(KERNEL_DS);
2437                         err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2438                         set_fs(oldfs);
2439                 } else
2440                         err = -EOPNOTSUPP;
2441
2442                 if (err == 0) {
2443                         err = -ENOBUFS;
2444                         dev = __dev_get_by_name(net, p.name);
2445                         if (!dev)
2446                                 goto err_exit;
2447                         err = dev_open(dev);
2448                 }
2449         }
2450 #endif
2451
2452 err_exit:
2453         rtnl_unlock();
2454         return err;
2455 }
2456
2457 /*
2458  *      Manual configuration of address on an interface
2459  */
2460 static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
2461                           unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
2462                           __u32 valid_lft)
2463 {
2464         struct inet6_ifaddr *ifp;
2465         struct inet6_dev *idev;
2466         struct net_device *dev;
2467         int scope;
2468         u32 flags;
2469         clock_t expires;
2470         unsigned long timeout;
2471
2472         ASSERT_RTNL();
2473
2474         if (plen > 128)
2475                 return -EINVAL;
2476
2477         /* check the lifetime */
2478         if (!valid_lft || prefered_lft > valid_lft)
2479                 return -EINVAL;
2480
2481         dev = __dev_get_by_index(net, ifindex);
2482         if (!dev)
2483                 return -ENODEV;
2484
2485         idev = addrconf_add_dev(dev);
2486         if (IS_ERR(idev))
2487                 return PTR_ERR(idev);
2488
2489         scope = ipv6_addr_scope(pfx);
2490
2491         timeout = addrconf_timeout_fixup(valid_lft, HZ);
2492         if (addrconf_finite_timeout(timeout)) {
2493                 expires = jiffies_to_clock_t(timeout * HZ);
2494                 valid_lft = timeout;
2495                 flags = RTF_EXPIRES;
2496         } else {
2497                 expires = 0;
2498                 flags = 0;
2499                 ifa_flags |= IFA_F_PERMANENT;
2500         }
2501
2502         timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2503         if (addrconf_finite_timeout(timeout)) {
2504                 if (timeout == 0)
2505                         ifa_flags |= IFA_F_DEPRECATED;
2506                 prefered_lft = timeout;
2507         }
2508
2509         ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2510
2511         if (!IS_ERR(ifp)) {
2512                 spin_lock_bh(&ifp->lock);
2513                 ifp->valid_lft = valid_lft;
2514                 ifp->prefered_lft = prefered_lft;
2515                 ifp->tstamp = jiffies;
2516                 spin_unlock_bh(&ifp->lock);
2517
2518                 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2519                                       expires, flags);
2520                 /*
2521                  * Note that section 3.1 of RFC 4429 indicates
2522                  * that the Optimistic flag should not be set for
2523                  * manually configured addresses
2524                  */
2525                 addrconf_dad_start(ifp);
2526                 in6_ifa_put(ifp);
2527                 addrconf_verify(0);
2528                 return 0;
2529         }
2530
2531         return PTR_ERR(ifp);
2532 }
2533
2534 static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
2535                           unsigned int plen)
2536 {
2537         struct inet6_ifaddr *ifp;
2538         struct inet6_dev *idev;
2539         struct net_device *dev;
2540
2541         if (plen > 128)
2542                 return -EINVAL;
2543
2544         dev = __dev_get_by_index(net, ifindex);
2545         if (!dev)
2546                 return -ENODEV;
2547
2548         if ((idev = __in6_dev_get(dev)) == NULL)
2549                 return -ENXIO;
2550
2551         read_lock_bh(&idev->lock);
2552         list_for_each_entry(ifp, &idev->addr_list, if_list) {
2553                 if (ifp->prefix_len == plen &&
2554                     ipv6_addr_equal(pfx, &ifp->addr)) {
2555                         in6_ifa_hold(ifp);
2556                         read_unlock_bh(&idev->lock);
2557
2558                         ipv6_del_addr(ifp);
2559
2560                         /* If the last address is deleted administratively,
2561                            disable IPv6 on this interface.
2562                          */
2563                         if (list_empty(&idev->addr_list))
2564                                 addrconf_ifdown(idev->dev, 1);
2565                         return 0;
2566                 }
2567         }
2568         read_unlock_bh(&idev->lock);
2569         return -EADDRNOTAVAIL;
2570 }
2571
2572
2573 int addrconf_add_ifaddr(struct net *net, void __user *arg)
2574 {
2575         struct in6_ifreq ireq;
2576         int err;
2577
2578         if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2579                 return -EPERM;
2580
2581         if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2582                 return -EFAULT;
2583
2584         rtnl_lock();
2585         err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2586                              ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2587                              INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
2588         rtnl_unlock();
2589         return err;
2590 }
2591
2592 int addrconf_del_ifaddr(struct net *net, void __user *arg)
2593 {
2594         struct in6_ifreq ireq;
2595         int err;
2596
2597         if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2598                 return -EPERM;
2599
2600         if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2601                 return -EFAULT;
2602
2603         rtnl_lock();
2604         err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2605                              ireq.ifr6_prefixlen);
2606         rtnl_unlock();
2607         return err;
2608 }
2609
2610 static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2611                      int plen, int scope)
2612 {
2613         struct inet6_ifaddr *ifp;
2614
2615         ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
2616         if (!IS_ERR(ifp)) {
2617                 spin_lock_bh(&ifp->lock);
2618                 ifp->flags &= ~IFA_F_TENTATIVE;
2619                 spin_unlock_bh(&ifp->lock);
2620                 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2621                 in6_ifa_put(ifp);
2622         }
2623 }
2624
2625 #if IS_ENABLED(CONFIG_IPV6_SIT)
2626 static void sit_add_v4_addrs(struct inet6_dev *idev)
2627 {
2628         struct in6_addr addr;
2629         struct net_device *dev;
2630         struct net *net = dev_net(idev->dev);
2631         int scope;
2632
2633         ASSERT_RTNL();
2634
2635         memset(&addr, 0, sizeof(struct in6_addr));
2636         memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2637
2638         if (idev->dev->flags&IFF_POINTOPOINT) {
2639                 addr.s6_addr32[0] = htonl(0xfe800000);
2640                 scope = IFA_LINK;
2641         } else {
2642                 scope = IPV6_ADDR_COMPATv4;
2643         }
2644
2645         if (addr.s6_addr32[3]) {
2646                 add_addr(idev, &addr, 128, scope);
2647                 return;
2648         }
2649
2650         for_each_netdev(net, dev) {
2651                 struct in_device *in_dev = __in_dev_get_rtnl(dev);
2652                 if (in_dev && (dev->flags & IFF_UP)) {
2653                         struct in_ifaddr *ifa;
2654
2655                         int flag = scope;
2656
2657                         for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2658                                 int plen;
2659
2660                                 addr.s6_addr32[3] = ifa->ifa_local;
2661
2662                                 if (ifa->ifa_scope == RT_SCOPE_LINK)
2663                                         continue;
2664                                 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2665                                         if (idev->dev->flags&IFF_POINTOPOINT)
2666                                                 continue;
2667                                         flag |= IFA_HOST;
2668                                 }
2669                                 if (idev->dev->flags&IFF_POINTOPOINT)
2670                                         plen = 64;
2671                                 else
2672                                         plen = 96;
2673
2674                                 add_addr(idev, &addr, plen, flag);
2675                         }
2676                 }
2677         }
2678 }
2679 #endif
2680
2681 static void init_loopback(struct net_device *dev)
2682 {
2683         struct inet6_dev  *idev;
2684         struct net_device *sp_dev;
2685         struct inet6_ifaddr *sp_ifa;
2686         struct rt6_info *sp_rt;
2687
2688         /* ::1 */
2689
2690         ASSERT_RTNL();
2691
2692         if ((idev = ipv6_find_idev(dev)) == NULL) {
2693                 pr_debug("%s: add_dev failed\n", __func__);
2694                 return;
2695         }
2696
2697         add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
2698
2699         /* Add routes to other interface's IPv6 addresses */
2700         for_each_netdev(dev_net(dev), sp_dev) {
2701                 if (!strcmp(sp_dev->name, dev->name))
2702                         continue;
2703
2704                 idev = __in6_dev_get(sp_dev);
2705                 if (!idev)
2706                         continue;
2707
2708                 read_lock_bh(&idev->lock);
2709                 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2710
2711                         if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2712                                 continue;
2713
2714                         if (sp_ifa->rt)
2715                                 continue;
2716
2717                         sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2718
2719                         /* Failure cases are ignored */
2720                         if (!IS_ERR(sp_rt)) {
2721                                 sp_ifa->rt = sp_rt;
2722                                 ip6_ins_rt(sp_rt);
2723                         }
2724                 }
2725                 read_unlock_bh(&idev->lock);
2726         }
2727 }
2728
2729 static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
2730 {
2731         struct inet6_ifaddr *ifp;
2732         u32 addr_flags = IFA_F_PERMANENT;
2733
2734 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2735         if (idev->cnf.optimistic_dad &&
2736             !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
2737                 addr_flags |= IFA_F_OPTIMISTIC;
2738 #endif
2739
2740
2741         ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
2742         if (!IS_ERR(ifp)) {
2743                 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
2744                 addrconf_dad_start(ifp);
2745                 in6_ifa_put(ifp);
2746         }
2747 }
2748
2749 static void addrconf_dev_config(struct net_device *dev)
2750 {
2751         struct in6_addr addr;
2752         struct inet6_dev *idev;
2753
2754         ASSERT_RTNL();
2755
2756         if ((dev->type != ARPHRD_ETHER) &&
2757             (dev->type != ARPHRD_FDDI) &&
2758             (dev->type != ARPHRD_ARCNET) &&
2759             (dev->type != ARPHRD_INFINIBAND) &&
2760             (dev->type != ARPHRD_IEEE802154) &&
2761             (dev->type != ARPHRD_IEEE1394)) {
2762                 /* Alas, we support only Ethernet autoconfiguration. */
2763                 return;
2764         }
2765
2766         idev = addrconf_add_dev(dev);
2767         if (IS_ERR(idev))
2768                 return;
2769
2770         memset(&addr, 0, sizeof(struct in6_addr));
2771         addr.s6_addr32[0] = htonl(0xFE800000);
2772
2773         if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2774                 addrconf_add_linklocal(idev, &addr);
2775 }
2776
2777 #if IS_ENABLED(CONFIG_IPV6_SIT)
2778 static void addrconf_sit_config(struct net_device *dev)
2779 {
2780         struct inet6_dev *idev;
2781
2782         ASSERT_RTNL();
2783
2784         /*
2785          * Configure the tunnel with one of our IPv4
2786          * addresses... we should configure all of
2787          * our v4 addrs in the tunnel
2788          */
2789
2790         if ((idev = ipv6_find_idev(dev)) == NULL) {
2791                 pr_debug("%s: add_dev failed\n", __func__);
2792                 return;
2793         }
2794
2795         if (dev->priv_flags & IFF_ISATAP) {
2796                 struct in6_addr addr;
2797
2798                 ipv6_addr_set(&addr,  htonl(0xFE800000), 0, 0, 0);
2799                 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2800                 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2801                         addrconf_add_linklocal(idev, &addr);
2802                 return;
2803         }
2804
2805         sit_add_v4_addrs(idev);
2806
2807         if (dev->flags&IFF_POINTOPOINT)
2808                 addrconf_add_mroute(dev);
2809         else
2810                 sit_route_add(dev);
2811 }
2812 #endif
2813
2814 #if IS_ENABLED(CONFIG_NET_IPGRE)
2815 static void addrconf_gre_config(struct net_device *dev)
2816 {
2817         struct inet6_dev *idev;
2818         struct in6_addr addr;
2819
2820         pr_info("%s(%s)\n", __func__, dev->name);
2821
2822         ASSERT_RTNL();
2823
2824         if ((idev = ipv6_find_idev(dev)) == NULL) {
2825                 pr_debug("%s: add_dev failed\n", __func__);
2826                 return;
2827         }
2828
2829         ipv6_addr_set(&addr,  htonl(0xFE800000), 0, 0, 0);
2830         addrconf_prefix_route(&addr, 64, dev, 0, 0);
2831
2832         if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2833                 addrconf_add_linklocal(idev, &addr);
2834 }
2835 #endif
2836
2837 static inline int
2838 ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2839 {
2840         struct in6_addr lladdr;
2841
2842         if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
2843                 addrconf_add_linklocal(idev, &lladdr);
2844                 return 0;
2845         }
2846         return -1;
2847 }
2848
2849 static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2850 {
2851         struct net_device *link_dev;
2852         struct net *net = dev_net(idev->dev);
2853
2854         /* first try to inherit the link-local address from the link device */
2855         if (idev->dev->iflink &&
2856             (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
2857                 if (!ipv6_inherit_linklocal(idev, link_dev))
2858                         return;
2859         }
2860         /* then try to inherit it from any device */
2861         for_each_netdev(net, link_dev) {
2862                 if (!ipv6_inherit_linklocal(idev, link_dev))
2863                         return;
2864         }
2865         pr_debug("init ip6-ip6: add_linklocal failed\n");
2866 }
2867
2868 /*
2869  * Autoconfigure tunnel with a link-local address so routing protocols,
2870  * DHCPv6, MLD etc. can be run over the virtual link
2871  */
2872
2873 static void addrconf_ip6_tnl_config(struct net_device *dev)
2874 {
2875         struct inet6_dev *idev;
2876
2877         ASSERT_RTNL();
2878
2879         idev = addrconf_add_dev(dev);
2880         if (IS_ERR(idev)) {
2881                 pr_debug("init ip6-ip6: add_dev failed\n");
2882                 return;
2883         }
2884         ip6_tnl_add_linklocal(idev);
2885 }
2886
2887 static int addrconf_notify(struct notifier_block *this, unsigned long event,
2888                            void *data)
2889 {
2890         struct net_device *dev = (struct net_device *) data;
2891         struct inet6_dev *idev = __in6_dev_get(dev);
2892         int run_pending = 0;
2893         int err;
2894
2895         switch (event) {
2896         case NETDEV_REGISTER:
2897                 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2898                         idev = ipv6_add_dev(dev);
2899                         if (!idev)
2900                                 return notifier_from_errno(-ENOMEM);
2901                 }
2902                 break;
2903
2904         case NETDEV_UP:
2905         case NETDEV_CHANGE:
2906                 if (dev->flags & IFF_SLAVE)
2907                         break;
2908
2909                 if (event == NETDEV_UP) {
2910                         if (!addrconf_qdisc_ok(dev)) {
2911                                 /* device is not ready yet. */
2912                                 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
2913                                         dev->name);
2914                                 break;
2915                         }
2916
2917                         if (!idev && dev->mtu >= IPV6_MIN_MTU)
2918                                 idev = ipv6_add_dev(dev);
2919
2920                         if (idev) {
2921                                 idev->if_flags |= IF_READY;
2922                                 run_pending = 1;
2923                         }
2924                 } else {
2925                         if (!addrconf_qdisc_ok(dev)) {
2926                                 /* device is still not ready. */
2927                                 break;
2928                         }
2929
2930                         if (idev) {
2931                                 if (idev->if_flags & IF_READY)
2932                                         /* device is already configured. */
2933                                         break;
2934                                 idev->if_flags |= IF_READY;
2935                         }
2936
2937                         pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2938                                 dev->name);
2939
2940                         run_pending = 1;
2941                 }
2942
2943                 switch (dev->type) {
2944 #if IS_ENABLED(CONFIG_IPV6_SIT)
2945                 case ARPHRD_SIT:
2946                         addrconf_sit_config(dev);
2947                         break;
2948 #endif
2949 #if IS_ENABLED(CONFIG_NET_IPGRE)
2950                 case ARPHRD_IPGRE:
2951                         addrconf_gre_config(dev);
2952                         break;
2953 #endif
2954                 case ARPHRD_TUNNEL6:
2955                         addrconf_ip6_tnl_config(dev);
2956                         break;
2957                 case ARPHRD_LOOPBACK:
2958                         init_loopback(dev);
2959                         break;
2960
2961                 default:
2962                         addrconf_dev_config(dev);
2963                         break;
2964                 }
2965
2966                 if (idev) {
2967                         if (run_pending)
2968                                 addrconf_dad_run(idev);
2969
2970                         /*
2971                          * If the MTU changed during the interface down,
2972                          * when the interface up, the changed MTU must be
2973                          * reflected in the idev as well as routers.
2974                          */
2975                         if (idev->cnf.mtu6 != dev->mtu &&
2976                             dev->mtu >= IPV6_MIN_MTU) {
2977                                 rt6_mtu_change(dev, dev->mtu);
2978                                 idev->cnf.mtu6 = dev->mtu;
2979                         }
2980                         idev->tstamp = jiffies;
2981                         inet6_ifinfo_notify(RTM_NEWLINK, idev);
2982
2983                         /*
2984                          * If the changed mtu during down is lower than
2985                          * IPV6_MIN_MTU stop IPv6 on this interface.
2986                          */
2987                         if (dev->mtu < IPV6_MIN_MTU)
2988                                 addrconf_ifdown(dev, 1);
2989                 }
2990                 break;
2991
2992         case NETDEV_CHANGEMTU:
2993                 if (idev && dev->mtu >= IPV6_MIN_MTU) {
2994                         rt6_mtu_change(dev, dev->mtu);
2995                         idev->cnf.mtu6 = dev->mtu;
2996                         break;
2997                 }
2998
2999                 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
3000                         idev = ipv6_add_dev(dev);
3001                         if (idev)
3002                                 break;
3003                 }
3004
3005                 /*
3006                  * MTU falled under IPV6_MIN_MTU.
3007                  * Stop IPv6 on this interface.
3008                  */
3009
3010         case NETDEV_DOWN:
3011         case NETDEV_UNREGISTER:
3012                 /*
3013                  *      Remove all addresses from this interface.
3014                  */
3015                 addrconf_ifdown(dev, event != NETDEV_DOWN);
3016                 break;
3017
3018         case NETDEV_CHANGENAME:
3019                 if (idev) {
3020                         snmp6_unregister_dev(idev);
3021                         addrconf_sysctl_unregister(idev);
3022                         addrconf_sysctl_register(idev);
3023                         err = snmp6_register_dev(idev);
3024                         if (err)
3025                                 return notifier_from_errno(err);
3026                 }
3027                 break;
3028
3029         case NETDEV_PRE_TYPE_CHANGE:
3030         case NETDEV_POST_TYPE_CHANGE:
3031                 addrconf_type_change(dev, event);
3032                 break;
3033         }
3034
3035         return NOTIFY_OK;
3036 }
3037
3038 /*
3039  *      addrconf module should be notified of a device going up
3040  */
3041 static struct notifier_block ipv6_dev_notf = {
3042         .notifier_call = addrconf_notify,
3043 };
3044
3045 static void addrconf_type_change(struct net_device *dev, unsigned long event)
3046 {
3047         struct inet6_dev *idev;
3048         ASSERT_RTNL();
3049
3050         idev = __in6_dev_get(dev);
3051
3052         if (event == NETDEV_POST_TYPE_CHANGE)
3053                 ipv6_mc_remap(idev);
3054         else if (event == NETDEV_PRE_TYPE_CHANGE)
3055                 ipv6_mc_unmap(idev);
3056 }
3057
3058 static int addrconf_ifdown(struct net_device *dev, int how)
3059 {
3060         struct net *net = dev_net(dev);
3061         struct inet6_dev *idev;
3062         struct inet6_ifaddr *ifa;
3063         int state, i;
3064
3065         ASSERT_RTNL();
3066
3067         rt6_ifdown(net, dev);
3068         neigh_ifdown(&nd_tbl, dev);
3069
3070         idev = __in6_dev_get(dev);
3071         if (idev == NULL)
3072                 return -ENODEV;
3073
3074         /*
3075          * Step 1: remove reference to ipv6 device from parent device.
3076          *         Do not dev_put!
3077          */
3078         if (how) {
3079                 idev->dead = 1;
3080
3081                 /* protected by rtnl_lock */
3082                 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
3083
3084                 /* Step 1.5: remove snmp6 entry */
3085                 snmp6_unregister_dev(idev);
3086
3087         }
3088
3089         /* Step 2: clear hash table */
3090         for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3091                 struct hlist_head *h = &inet6_addr_lst[i];
3092
3093                 spin_lock_bh(&addrconf_hash_lock);
3094         restart:
3095                 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
3096                         if (ifa->idev == idev) {
3097                                 hlist_del_init_rcu(&ifa->addr_lst);
3098                                 addrconf_del_timer(ifa);
3099                                 goto restart;
3100                         }
3101                 }
3102                 spin_unlock_bh(&addrconf_hash_lock);
3103         }
3104
3105         write_lock_bh(&idev->lock);
3106
3107         /* Step 2: clear flags for stateless addrconf */
3108         if (!how)
3109                 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
3110
3111 #ifdef CONFIG_IPV6_PRIVACY
3112         if (how && del_timer(&idev->regen_timer))
3113                 in6_dev_put(idev);
3114
3115         /* Step 3: clear tempaddr list */
3116         while (!list_empty(&idev->tempaddr_list)) {
3117                 ifa = list_first_entry(&idev->tempaddr_list,
3118                                        struct inet6_ifaddr, tmp_list);
3119                 list_del(&ifa->tmp_list);
3120                 write_unlock_bh(&idev->lock);
3121                 spin_lock_bh(&ifa->lock);
3122
3123                 if (ifa->ifpub) {
3124                         in6_ifa_put(ifa->ifpub);
3125                         ifa->ifpub = NULL;
3126                 }
3127                 spin_unlock_bh(&ifa->lock);
3128                 in6_ifa_put(ifa);
3129                 write_lock_bh(&idev->lock);
3130         }
3131 #endif
3132
3133         while (!list_empty(&idev->addr_list)) {
3134                 ifa = list_first_entry(&idev->addr_list,
3135                                        struct inet6_ifaddr, if_list);
3136                 addrconf_del_timer(ifa);
3137
3138                 list_del(&ifa->if_list);
3139
3140                 write_unlock_bh(&idev->lock);
3141
3142                 spin_lock_bh(&ifa->state_lock);
3143                 state = ifa->state;
3144                 ifa->state = INET6_IFADDR_STATE_DEAD;
3145                 spin_unlock_bh(&ifa->state_lock);
3146
3147                 if (state != INET6_IFADDR_STATE_DEAD) {
3148                         __ipv6_ifa_notify(RTM_DELADDR, ifa);
3149                         inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
3150                 }
3151                 in6_ifa_put(ifa);
3152
3153                 write_lock_bh(&idev->lock);
3154         }
3155
3156         write_unlock_bh(&idev->lock);
3157
3158         /* Step 5: Discard multicast list */
3159         if (how)
3160                 ipv6_mc_destroy_dev(idev);
3161         else
3162                 ipv6_mc_down(idev);
3163
3164         idev->tstamp = jiffies;
3165
3166         /* Last: Shot the device (if unregistered) */
3167         if (how) {
3168                 addrconf_sysctl_unregister(idev);
3169                 neigh_parms_release(&nd_tbl, idev->nd_parms);
3170                 neigh_ifdown(&nd_tbl, dev);
3171                 in6_dev_put(idev);
3172         }
3173         return 0;
3174 }
3175
3176 static void addrconf_rs_timer(unsigned long data)
3177 {
3178         struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3179         struct inet6_dev *idev = ifp->idev;
3180
3181         read_lock(&idev->lock);
3182         if (idev->dead || !(idev->if_flags & IF_READY))
3183                 goto out;
3184
3185         if (!ipv6_accept_ra(idev))
3186                 goto out;
3187
3188         /* Announcement received after solicitation was sent */
3189         if (idev->if_flags & IF_RA_RCVD)
3190                 goto out;
3191
3192         spin_lock(&ifp->lock);
3193         if (ifp->probes++ < idev->cnf.rtr_solicits) {
3194                 /* The wait after the last probe can be shorter */
3195                 addrconf_mod_timer(ifp, AC_RS,
3196                                    (ifp->probes == idev->cnf.rtr_solicits) ?
3197                                    idev->cnf.rtr_solicit_delay :
3198                                    idev->cnf.rtr_solicit_interval);
3199                 spin_unlock(&ifp->lock);
3200
3201                 ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
3202         } else {
3203                 spin_unlock(&ifp->lock);
3204                 /*
3205                  * Note: we do not support deprecated "all on-link"
3206                  * assumption any longer.
3207                  */
3208                 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
3209         }
3210
3211 out:
3212         read_unlock(&idev->lock);
3213         in6_ifa_put(ifp);
3214 }
3215
3216 /*
3217  *      Duplicate Address Detection
3218  */
3219 static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3220 {
3221         unsigned long rand_num;
3222         struct inet6_dev *idev = ifp->idev;
3223
3224         if (ifp->flags & IFA_F_OPTIMISTIC)
3225                 rand_num = 0;
3226         else
3227                 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3228
3229         ifp->probes = idev->cnf.dad_transmits;
3230         addrconf_mod_timer(ifp, AC_DAD, rand_num);
3231 }
3232
3233 static void addrconf_dad_start(struct inet6_ifaddr *ifp)
3234 {
3235         struct inet6_dev *idev = ifp->idev;
3236         struct net_device *dev = idev->dev;
3237
3238         addrconf_join_solict(dev, &ifp->addr);
3239
3240         net_srandom(ifp->addr.s6_addr32[3]);
3241
3242         read_lock_bh(&idev->lock);
3243         spin_lock(&ifp->lock);
3244         if (ifp->state == INET6_IFADDR_STATE_DEAD)
3245                 goto out;
3246
3247         if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
3248             idev->cnf.accept_dad < 1 ||
3249             !(ifp->flags&IFA_F_TENTATIVE) ||
3250             ifp->flags & IFA_F_NODAD) {
3251                 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
3252                 spin_unlock(&ifp->lock);
3253                 read_unlock_bh(&idev->lock);
3254
3255                 addrconf_dad_completed(ifp);
3256                 return;
3257         }
3258
3259         if (!(idev->if_flags & IF_READY)) {
3260                 spin_unlock(&ifp->lock);
3261                 read_unlock_bh(&idev->lock);
3262                 /*
3263                  * If the device is not ready:
3264                  * - keep it tentative if it is a permanent address.
3265                  * - otherwise, kill it.
3266                  */
3267                 in6_ifa_hold(ifp);
3268                 addrconf_dad_stop(ifp, 0);
3269                 return;
3270         }
3271
3272         /*
3273          * Optimistic nodes can start receiving
3274          * Frames right away
3275          */
3276         if (ifp->flags & IFA_F_OPTIMISTIC) {
3277                 ip6_ins_rt(ifp->rt);
3278                 if (ipv6_use_optimistic_addr(idev)) {
3279                         /* Because optimistic nodes can use this address,
3280                          * notify listeners. If DAD fails, RTM_DELADDR is sent.
3281                          */
3282                         ipv6_ifa_notify(RTM_NEWADDR, ifp);
3283                 }
3284         }
3285
3286         addrconf_dad_kick(ifp);
3287 out:
3288         spin_unlock(&ifp->lock);
3289         read_unlock_bh(&idev->lock);
3290 }
3291
3292 static void addrconf_dad_timer(unsigned long data)
3293 {
3294         struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3295         struct inet6_dev *idev = ifp->idev;
3296         struct in6_addr mcaddr;
3297
3298         if (!ifp->probes && addrconf_dad_end(ifp))
3299                 goto out;
3300
3301         read_lock(&idev->lock);
3302         if (idev->dead || !(idev->if_flags & IF_READY)) {
3303                 read_unlock(&idev->lock);
3304                 goto out;
3305         }
3306
3307         spin_lock(&ifp->lock);
3308         if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3309                 spin_unlock(&ifp->lock);
3310                 read_unlock(&idev->lock);
3311                 goto out;
3312         }
3313
3314         if (ifp->probes == 0) {
3315                 /*
3316                  * DAD was successful
3317                  */
3318
3319                 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
3320                 spin_unlock(&ifp->lock);
3321                 read_unlock(&idev->lock);
3322
3323                 addrconf_dad_completed(ifp);
3324
3325                 goto out;
3326         }
3327
3328         ifp->probes--;
3329         addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
3330         spin_unlock(&ifp->lock);
3331         read_unlock(&idev->lock);
3332
3333         /* send a neighbour solicitation for our addr */
3334         addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
3335         ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
3336 out:
3337         in6_ifa_put(ifp);
3338 }
3339
3340 static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3341 {
3342         struct net_device *dev = ifp->idev->dev;
3343
3344         /*
3345          *      Configure the address for reception. Now it is valid.
3346          */
3347
3348         ipv6_ifa_notify(RTM_NEWADDR, ifp);
3349
3350         /* If added prefix is link local and we are prepared to process
3351            router advertisements, start sending router solicitations.
3352          */
3353
3354         if (ipv6_accept_ra(ifp->idev) &&
3355             ifp->idev->cnf.rtr_solicits > 0 &&
3356             (dev->flags&IFF_LOOPBACK) == 0 &&
3357             (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
3358                 /*
3359                  *      If a host as already performed a random delay
3360                  *      [...] as part of DAD [...] there is no need
3361                  *      to delay again before sending the first RS
3362                  */
3363                 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
3364
3365                 spin_lock_bh(&ifp->lock);
3366                 ifp->probes = 1;
3367                 ifp->idev->if_flags |= IF_RS_SENT;
3368                 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
3369                 spin_unlock_bh(&ifp->lock);
3370         }
3371 }
3372
3373 static void addrconf_dad_run(struct inet6_dev *idev)
3374 {
3375         struct inet6_ifaddr *ifp;
3376
3377         read_lock_bh(&idev->lock);
3378         list_for_each_entry(ifp, &idev->addr_list, if_list) {
3379                 spin_lock(&ifp->lock);
3380                 if (ifp->flags & IFA_F_TENTATIVE &&
3381                     ifp->state == INET6_IFADDR_STATE_DAD)
3382                         addrconf_dad_kick(ifp);
3383                 spin_unlock(&ifp->lock);
3384         }
3385         read_unlock_bh(&idev->lock);
3386 }
3387
3388 #ifdef CONFIG_PROC_FS
3389 struct if6_iter_state {
3390         struct seq_net_private p;
3391         int bucket;
3392         int offset;
3393 };
3394
3395 static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
3396 {
3397         struct inet6_ifaddr *ifa = NULL;
3398         struct if6_iter_state *state = seq->private;
3399         struct net *net = seq_file_net(seq);
3400         int p = 0;
3401
3402         /* initial bucket if pos is 0 */
3403         if (pos == 0) {
3404                 state->bucket = 0;
3405                 state->offset = 0;
3406         }
3407
3408         for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
3409                 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
3410                                          addr_lst) {
3411                         if (!net_eq(dev_net(ifa->idev->dev), net))
3412                                 continue;
3413                         /* sync with offset */
3414                         if (p < state->offset) {
3415                                 p++;
3416                                 continue;
3417                         }
3418                         state->offset++;
3419                         return ifa;
3420                 }
3421
3422                 /* prepare for next bucket */
3423                 state->offset = 0;
3424                 p = 0;
3425         }
3426         return NULL;
3427 }
3428
3429 static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3430                                          struct inet6_ifaddr *ifa)
3431 {
3432         struct if6_iter_state *state = seq->private;
3433         struct net *net = seq_file_net(seq);
3434
3435         hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
3436                 if (!net_eq(dev_net(ifa->idev->dev), net))
3437                         continue;
3438                 state->offset++;
3439                 return ifa;
3440         }
3441
3442         while (++state->bucket < IN6_ADDR_HSIZE) {
3443                 state->offset = 0;
3444                 hlist_for_each_entry_rcu_bh(ifa,
3445                                      &inet6_addr_lst[state->bucket], addr_lst) {
3446                         if (!net_eq(dev_net(ifa->idev->dev), net))
3447                                 continue;
3448                         state->offset++;
3449                         return ifa;
3450                 }
3451         }
3452
3453         return NULL;
3454 }
3455
3456 static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
3457         __acquires(rcu_bh)
3458 {
3459         rcu_read_lock_bh();
3460         return if6_get_first(seq, *pos);
3461 }
3462
3463 static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3464 {
3465         struct inet6_ifaddr *ifa;
3466
3467         ifa = if6_get_next(seq, v);
3468         ++*pos;
3469         return ifa;
3470 }
3471
3472 static void if6_seq_stop(struct seq_file *seq, void *v)
3473         __releases(rcu_bh)
3474 {
3475         rcu_read_unlock_bh();
3476 }
3477
3478 static int if6_seq_show(struct seq_file *seq, void *v)
3479 {
3480         struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
3481         seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
3482                    &ifp->addr,
3483                    ifp->idev->dev->ifindex,
3484                    ifp->prefix_len,
3485                    ifp->scope,
3486                    ifp->flags,
3487                    ifp->idev->dev->name);
3488         return 0;
3489 }
3490
3491 static const struct seq_operations if6_seq_ops = {
3492         .start  = if6_seq_start,
3493         .next   = if6_seq_next,
3494         .show   = if6_seq_show,
3495         .stop   = if6_seq_stop,
3496 };
3497
3498 static int if6_seq_open(struct inode *inode, struct file *file)
3499 {
3500         return seq_open_net(inode, file, &if6_seq_ops,
3501                             sizeof(struct if6_iter_state));
3502 }
3503
3504 static const struct file_operations if6_fops = {
3505         .owner          = THIS_MODULE,
3506         .open           = if6_seq_open,
3507         .read           = seq_read,
3508         .llseek         = seq_lseek,
3509         .release        = seq_release_net,
3510 };
3511
3512 static int __net_init if6_proc_net_init(struct net *net)
3513 {
3514         if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
3515                 return -ENOMEM;
3516         return 0;
3517 }
3518
3519 static void __net_exit if6_proc_net_exit(struct net *net)
3520 {
3521         remove_proc_entry("if_inet6", net->proc_net);
3522 }
3523
3524 static struct pernet_operations if6_proc_net_ops = {
3525        .init = if6_proc_net_init,
3526        .exit = if6_proc_net_exit,
3527 };
3528
3529 int __init if6_proc_init(void)
3530 {
3531         return register_pernet_subsys(&if6_proc_net_ops);
3532 }
3533
3534 void if6_proc_exit(void)
3535 {
3536         unregister_pernet_subsys(&if6_proc_net_ops);
3537 }
3538 #endif  /* CONFIG_PROC_FS */
3539
3540 #if IS_ENABLED(CONFIG_IPV6_MIP6)
3541 /* Check if address is a home address configured on any interface. */
3542 int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
3543 {
3544         int ret = 0;
3545         struct inet6_ifaddr *ifp = NULL;
3546         unsigned int hash = inet6_addr_hash(addr);
3547
3548         rcu_read_lock_bh();
3549         hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
3550                 if (!net_eq(dev_net(ifp->idev->dev), net))
3551                         continue;
3552                 if (ipv6_addr_equal(&ifp->addr, addr) &&
3553                     (ifp->flags & IFA_F_HOMEADDRESS)) {
3554                         ret = 1;
3555                         break;
3556                 }
3557         }
3558         rcu_read_unlock_bh();
3559         return ret;
3560 }
3561 #endif
3562
3563 /*
3564  *      Periodic address status verification
3565  */
3566
3567 static void addrconf_verify(unsigned long foo)
3568 {
3569         unsigned long now, next, next_sec, next_sched;
3570         struct inet6_ifaddr *ifp;
3571         int i;
3572
3573         rcu_read_lock_bh();
3574         spin_lock(&addrconf_verify_lock);
3575         now = jiffies;
3576         next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
3577
3578         del_timer(&addr_chk_timer);
3579
3580         for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3581 restart:
3582                 hlist_for_each_entry_rcu_bh(ifp,
3583                                          &inet6_addr_lst[i], addr_lst) {
3584                         unsigned long age;
3585
3586                         if (ifp->flags & IFA_F_PERMANENT)
3587                                 continue;
3588
3589                         spin_lock(&ifp->lock);
3590                         /* We try to batch several events at once. */
3591                         age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
3592
3593                         if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3594                             age >= ifp->valid_lft) {
3595                                 spin_unlock(&ifp->lock);
3596                                 in6_ifa_hold(ifp);
3597                                 ipv6_del_addr(ifp);
3598                                 goto restart;
3599                         } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3600                                 spin_unlock(&ifp->lock);
3601                                 continue;
3602                         } else if (age >= ifp->prefered_lft) {
3603                                 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
3604                                 int deprecate = 0;
3605
3606                                 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3607                                         deprecate = 1;
3608                                         ifp->flags |= IFA_F_DEPRECATED;
3609                                 }
3610
3611                                 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3612                                         next = ifp->tstamp + ifp->valid_lft * HZ;
3613
3614                                 spin_unlock(&ifp->lock);
3615
3616                                 if (deprecate) {
3617                                         in6_ifa_hold(ifp);
3618
3619                                         ipv6_ifa_notify(0, ifp);
3620                                         in6_ifa_put(ifp);
3621                                         goto restart;
3622                                 }
3623 #ifdef CONFIG_IPV6_PRIVACY
3624                         } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3625                                    !(ifp->flags&IFA_F_TENTATIVE)) {
3626                                 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3627                                         ifp->idev->cnf.dad_transmits *
3628                                         ifp->idev->nd_parms->retrans_time / HZ;
3629
3630                                 if (age >= ifp->prefered_lft - regen_advance) {
3631                                         struct inet6_ifaddr *ifpub = ifp->ifpub;
3632                                         if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3633                                                 next = ifp->tstamp + ifp->prefered_lft * HZ;
3634                                         if (!ifp->regen_count && ifpub) {
3635                                                 ifp->regen_count++;
3636                                                 in6_ifa_hold(ifp);
3637                                                 in6_ifa_hold(ifpub);
3638                                                 spin_unlock(&ifp->lock);
3639
3640                                                 spin_lock(&ifpub->lock);
3641                                                 ifpub->regen_count = 0;
3642                                                 spin_unlock(&ifpub->lock);
3643                                                 ipv6_create_tempaddr(ifpub, ifp);
3644                                                 in6_ifa_put(ifpub);
3645                                                 in6_ifa_put(ifp);
3646                                                 goto restart;
3647                                         }
3648                                 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3649                                         next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3650                                 spin_unlock(&ifp->lock);
3651 #endif
3652                         } else {
3653                                 /* ifp->prefered_lft <= ifp->valid_lft */
3654                                 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3655                                         next = ifp->tstamp + ifp->prefered_lft * HZ;
3656                                 spin_unlock(&ifp->lock);
3657                         }
3658                 }
3659         }
3660
3661         next_sec = round_jiffies_up(next);
3662         next_sched = next;
3663
3664         /* If rounded timeout is accurate enough, accept it. */
3665         if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3666                 next_sched = next_sec;
3667
3668         /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3669         if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3670                 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3671
3672         ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3673               now, next, next_sec, next_sched));
3674
3675         addr_chk_timer.expires = next_sched;
3676         add_timer(&addr_chk_timer);
3677         spin_unlock(&addrconf_verify_lock);
3678         rcu_read_unlock_bh();
3679 }
3680
3681 static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3682 {
3683         struct in6_addr *pfx = NULL;
3684
3685         if (addr)
3686                 pfx = nla_data(addr);
3687
3688         if (local) {
3689                 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3690                         pfx = NULL;
3691                 else
3692                         pfx = nla_data(local);
3693         }
3694
3695         return pfx;
3696 }
3697
3698 static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
3699         [IFA_ADDRESS]           = { .len = sizeof(struct in6_addr) },
3700         [IFA_LOCAL]             = { .len = sizeof(struct in6_addr) },
3701         [IFA_CACHEINFO]         = { .len = sizeof(struct ifa_cacheinfo) },
3702 };
3703
3704 static int
3705 inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
3706 {
3707         struct net *net = sock_net(skb->sk);
3708         struct ifaddrmsg *ifm;
3709         struct nlattr *tb[IFA_MAX+1];
3710         struct in6_addr *pfx;
3711         int err;
3712
3713         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3714         if (err < 0)
3715                 return err;
3716
3717         ifm = nlmsg_data(nlh);
3718         pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3719         if (pfx == NULL)
3720                 return -EINVAL;
3721
3722         return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
3723 }
3724
3725 static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3726                              u32 prefered_lft, u32 valid_lft)
3727 {
3728         u32 flags;
3729         clock_t expires;
3730         unsigned long timeout;
3731
3732         if (!valid_lft || (prefered_lft > valid_lft))
3733                 return -EINVAL;
3734
3735         timeout = addrconf_timeout_fixup(valid_lft, HZ);
3736         if (addrconf_finite_timeout(timeout)) {
3737                 expires = jiffies_to_clock_t(timeout * HZ);
3738                 valid_lft = timeout;
3739                 flags = RTF_EXPIRES;
3740         } else {
3741                 expires = 0;
3742                 flags = 0;
3743                 ifa_flags |= IFA_F_PERMANENT;
3744         }
3745
3746         timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3747         if (addrconf_finite_timeout(timeout)) {
3748                 if (timeout == 0)
3749                         ifa_flags |= IFA_F_DEPRECATED;
3750                 prefered_lft = timeout;
3751         }
3752
3753         spin_lock_bh(&ifp->lock);
3754         ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
3755         ifp->tstamp = jiffies;
3756         ifp->valid_lft = valid_lft;
3757         ifp->prefered_lft = prefered_lft;
3758
3759         spin_unlock_bh(&ifp->lock);
3760         if (!(ifp->flags&IFA_F_TENTATIVE))
3761                 ipv6_ifa_notify(0, ifp);
3762
3763         addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3764                               expires, flags);
3765         addrconf_verify(0);
3766
3767         return 0;
3768 }
3769
3770 static int
3771 inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
3772 {
3773         struct net *net = sock_net(skb->sk);
3774         struct ifaddrmsg *ifm;
3775         struct nlattr *tb[IFA_MAX+1];
3776         struct in6_addr *pfx;
3777         struct inet6_ifaddr *ifa;
3778         struct net_device *dev;
3779         u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3780         u8 ifa_flags;
3781         int err;
3782
3783         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3784         if (err < 0)
3785                 return err;
3786
3787         ifm = nlmsg_data(nlh);
3788         pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3789         if (pfx == NULL)
3790                 return -EINVAL;
3791
3792         if (tb[IFA_CACHEINFO]) {
3793                 struct ifa_cacheinfo *ci;
3794
3795                 ci = nla_data(tb[IFA_CACHEINFO]);
3796                 valid_lft = ci->ifa_valid;
3797                 preferred_lft = ci->ifa_prefered;
3798         } else {
3799                 preferred_lft = INFINITY_LIFE_TIME;
3800                 valid_lft = INFINITY_LIFE_TIME;
3801         }
3802
3803         dev =  __dev_get_by_index(net, ifm->ifa_index);
3804         if (dev == NULL)
3805                 return -ENODEV;
3806
3807         /* We ignore other flags so far. */
3808         ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
3809
3810         ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
3811         if (ifa == NULL) {
3812                 /*
3813                  * It would be best to check for !NLM_F_CREATE here but
3814                  * userspace alreay relies on not having to provide this.
3815                  */
3816                 return inet6_addr_add(net, ifm->ifa_index, pfx,
3817                                       ifm->ifa_prefixlen, ifa_flags,
3818                                       preferred_lft, valid_lft);
3819         }
3820
3821         if (nlh->nlmsg_flags & NLM_F_EXCL ||
3822             !(nlh->nlmsg_flags & NLM_F_REPLACE))
3823                 err = -EEXIST;
3824         else
3825                 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
3826
3827         in6_ifa_put(ifa);
3828
3829         return err;
3830 }
3831
3832 static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3833                           u8 scope, int ifindex)
3834 {
3835         struct ifaddrmsg *ifm;
3836
3837         ifm = nlmsg_data(nlh);
3838         ifm->ifa_family = AF_INET6;
3839         ifm->ifa_prefixlen = prefixlen;
3840         ifm->ifa_flags = flags;
3841         ifm->ifa_scope = scope;
3842         ifm->ifa_index = ifindex;
3843 }
3844
3845 static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3846                          unsigned long tstamp, u32 preferred, u32 valid)
3847 {
3848         struct ifa_cacheinfo ci;
3849
3850         ci.cstamp = cstamp_delta(cstamp);
3851         ci.tstamp = cstamp_delta(tstamp);
3852         ci.ifa_prefered = preferred;
3853         ci.ifa_valid = valid;
3854
3855         return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3856 }
3857
3858 static inline int rt_scope(int ifa_scope)
3859 {
3860         if (ifa_scope & IFA_HOST)
3861                 return RT_SCOPE_HOST;
3862         else if (ifa_scope & IFA_LINK)
3863                 return RT_SCOPE_LINK;
3864         else if (ifa_scope & IFA_SITE)
3865                 return RT_SCOPE_SITE;
3866         else
3867                 return RT_SCOPE_UNIVERSE;
3868 }
3869
3870 static inline int inet6_ifaddr_msgsize(void)
3871 {
3872         return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3873                + nla_total_size(16) /* IFA_ADDRESS */
3874                + nla_total_size(sizeof(struct ifa_cacheinfo));
3875 }
3876
3877 static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
3878                              u32 portid, u32 seq, int event, unsigned int flags)
3879 {
3880         struct nlmsghdr  *nlh;
3881         u32 preferred, valid;
3882
3883         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
3884         if (nlh == NULL)
3885                 return -EMSGSIZE;
3886
3887         put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3888                       ifa->idev->dev->ifindex);
3889
3890         if (!(ifa->flags&IFA_F_PERMANENT)) {
3891                 preferred = ifa->prefered_lft;
3892                 valid = ifa->valid_lft;
3893                 if (preferred != INFINITY_LIFE_TIME) {
3894                         long tval = (jiffies - ifa->tstamp)/HZ;
3895                         if (preferred > tval)
3896                                 preferred -= tval;
3897                         else
3898                                 preferred = 0;
3899                         if (valid != INFINITY_LIFE_TIME) {
3900                                 if (valid > tval)
3901                                         valid -= tval;
3902                                 else
3903                                         valid = 0;
3904                         }
3905                 }
3906         } else {
3907                 preferred = INFINITY_LIFE_TIME;
3908                 valid = INFINITY_LIFE_TIME;
3909         }
3910
3911         if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
3912             put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3913                 nlmsg_cancel(skb, nlh);
3914                 return -EMSGSIZE;
3915         }
3916
3917         return nlmsg_end(skb, nlh);
3918 }
3919
3920 static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
3921                                 u32 portid, u32 seq, int event, u16 flags)
3922 {
3923         struct nlmsghdr  *nlh;
3924         u8 scope = RT_SCOPE_UNIVERSE;
3925         int ifindex = ifmca->idev->dev->ifindex;
3926
3927         if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3928                 scope = RT_SCOPE_SITE;
3929
3930         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
3931         if (nlh == NULL)
3932                 return -EMSGSIZE;
3933
3934         put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
3935         if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3936             put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
3937                           INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3938                 nlmsg_cancel(skb, nlh);
3939                 return -EMSGSIZE;
3940         }
3941
3942         return nlmsg_end(skb, nlh);
3943 }
3944
3945 static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
3946                                 u32 portid, u32 seq, int event, unsigned int flags)
3947 {
3948         struct nlmsghdr  *nlh;
3949         u8 scope = RT_SCOPE_UNIVERSE;
3950         int ifindex = ifaca->aca_idev->dev->ifindex;
3951
3952         if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3953                 scope = RT_SCOPE_SITE;
3954
3955         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
3956         if (nlh == NULL)
3957                 return -EMSGSIZE;
3958
3959         put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
3960         if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3961             put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
3962                           INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3963                 nlmsg_cancel(skb, nlh);
3964                 return -EMSGSIZE;
3965         }
3966
3967         return nlmsg_end(skb, nlh);
3968 }
3969
3970 enum addr_type_t {
3971         UNICAST_ADDR,
3972         MULTICAST_ADDR,
3973         ANYCAST_ADDR,
3974 };
3975
3976 /* called with rcu_read_lock() */
3977 static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3978                           struct netlink_callback *cb, enum addr_type_t type,
3979                           int s_ip_idx, int *p_ip_idx)
3980 {
3981         struct ifmcaddr6 *ifmca;
3982         struct ifacaddr6 *ifaca;
3983         int err = 1;
3984         int ip_idx = *p_ip_idx;
3985
3986         read_lock_bh(&idev->lock);
3987         switch (type) {
3988         case UNICAST_ADDR: {
3989                 struct inet6_ifaddr *ifa;
3990
3991                 /* unicast address incl. temp addr */
3992                 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3993                         if (++ip_idx < s_ip_idx)
3994                                 continue;
3995                         err = inet6_fill_ifaddr(skb, ifa,
3996                                                 NETLINK_CB(cb->skb).portid,
3997                                                 cb->nlh->nlmsg_seq,
3998                                                 RTM_NEWADDR,
3999                                                 NLM_F_MULTI);
4000                         if (err <= 0)
4001                                 break;
4002                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
4003                 }
4004                 break;
4005         }
4006         case MULTICAST_ADDR:
4007                 /* multicast address */
4008                 for (ifmca = idev->mc_list; ifmca;
4009                      ifmca = ifmca->next, ip_idx++) {
4010                         if (ip_idx < s_ip_idx)
4011                                 continue;
4012                         err = inet6_fill_ifmcaddr(skb, ifmca,
4013                                                   NETLINK_CB(cb->skb).portid,
4014                                                   cb->nlh->nlmsg_seq,
4015                                                   RTM_GETMULTICAST,
4016                                                   NLM_F_MULTI);
4017                         if (err <= 0)
4018                                 break;
4019                 }
4020                 break;
4021         case ANYCAST_ADDR:
4022                 /* anycast address */
4023                 for (ifaca = idev->ac_list; ifaca;
4024                      ifaca = ifaca->aca_next, ip_idx++) {
4025                         if (ip_idx < s_ip_idx)
4026                                 continue;
4027                         err = inet6_fill_ifacaddr(skb, ifaca,
4028                                                   NETLINK_CB(cb->skb).portid,
4029                                                   cb->nlh->nlmsg_seq,
4030                                                   RTM_GETANYCAST,
4031                                                   NLM_F_MULTI);
4032                         if (err <= 0)
4033                                 break;
4034                 }
4035                 break;
4036         default:
4037                 break;
4038         }
4039         read_unlock_bh(&idev->lock);
4040         *p_ip_idx = ip_idx;
4041         return err;
4042 }
4043
4044 static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4045                            enum addr_type_t type)
4046 {
4047         struct net *net = sock_net(skb->sk);
4048         int h, s_h;
4049         int idx, ip_idx;
4050         int s_idx, s_ip_idx;
4051         struct net_device *dev;
4052         struct inet6_dev *idev;
4053         struct hlist_head *head;
4054
4055         s_h = cb->args[0];
4056         s_idx = idx = cb->args[1];
4057         s_ip_idx = ip_idx = cb->args[2];
4058
4059         rcu_read_lock();
4060         cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
4061         for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4062                 idx = 0;
4063                 head = &net->dev_index_head[h];
4064                 hlist_for_each_entry_rcu(dev, head, index_hlist) {
4065                         if (idx < s_idx)
4066                                 goto cont;
4067                         if (h > s_h || idx > s_idx)
4068                                 s_ip_idx = 0;
4069                         ip_idx = 0;
4070                         idev = __in6_dev_get(dev);
4071                         if (!idev)
4072                                 goto cont;
4073
4074                         if (in6_dump_addrs(idev, skb, cb, type,
4075                                            s_ip_idx, &ip_idx) <= 0)
4076                                 goto done;
4077 cont:
4078                         idx++;
4079                 }
4080         }
4081 done:
4082         rcu_read_unlock();
4083         cb->args[0] = h;
4084         cb->args[1] = idx;
4085         cb->args[2] = ip_idx;
4086
4087         return skb->len;
4088 }
4089
4090 static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4091 {
4092         enum addr_type_t type = UNICAST_ADDR;
4093
4094         return inet6_dump_addr(skb, cb, type);
4095 }
4096
4097 static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4098 {
4099         enum addr_type_t type = MULTICAST_ADDR;
4100
4101         return inet6_dump_addr(skb, cb, type);
4102 }
4103
4104
4105 static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4106 {
4107         enum addr_type_t type = ANYCAST_ADDR;
4108
4109         return inet6_dump_addr(skb, cb, type);
4110 }
4111
4112 static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
4113 {
4114         struct net *net = sock_net(in_skb->sk);
4115         struct ifaddrmsg *ifm;
4116         struct nlattr *tb[IFA_MAX+1];
4117         struct in6_addr *addr = NULL;
4118         struct net_device *dev = NULL;
4119         struct inet6_ifaddr *ifa;
4120         struct sk_buff *skb;
4121         int err;
4122
4123         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4124         if (err < 0)
4125                 goto errout;
4126
4127         addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
4128         if (addr == NULL) {
4129                 err = -EINVAL;
4130                 goto errout;
4131         }
4132
4133         ifm = nlmsg_data(nlh);
4134         if (ifm->ifa_index)
4135                 dev = __dev_get_by_index(net, ifm->ifa_index);
4136
4137         ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4138         if (!ifa) {
4139                 err = -EADDRNOTAVAIL;
4140                 goto errout;
4141         }
4142
4143         skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4144         if (!skb) {
4145                 err = -ENOBUFS;
4146                 goto errout_ifa;
4147         }
4148
4149         err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
4150                                 nlh->nlmsg_seq, RTM_NEWADDR, 0);
4151         if (err < 0) {
4152                 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4153                 WARN_ON(err == -EMSGSIZE);
4154                 kfree_skb(skb);
4155                 goto errout_ifa;
4156         }
4157         err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
4158 errout_ifa:
4159         in6_ifa_put(ifa);
4160 errout:
4161         return err;
4162 }
4163
4164 static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4165 {
4166         struct sk_buff *skb;
4167         struct net *net = dev_net(ifa->idev->dev);
4168         int err = -ENOBUFS;
4169
4170         skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
4171         if (skb == NULL)
4172                 goto errout;
4173
4174         err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
4175         if (err < 0) {
4176                 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4177                 WARN_ON(err == -EMSGSIZE);
4178                 kfree_skb(skb);
4179                 goto errout;
4180         }
4181         rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4182         return;
4183 errout:
4184         if (err < 0)
4185                 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
4186 }
4187
4188 static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
4189                                 __s32 *array, int bytes)
4190 {
4191         BUG_ON(bytes < (DEVCONF_MAX * 4));
4192
4193         memset(array, 0, bytes);
4194         array[DEVCONF_FORWARDING] = cnf->forwarding;
4195         array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4196         array[DEVCONF_MTU6] = cnf->mtu6;
4197         array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4198         array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4199         array[DEVCONF_AUTOCONF] = cnf->autoconf;
4200         array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4201         array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
4202         array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4203                 jiffies_to_msecs(cnf->rtr_solicit_interval);
4204         array[DEVCONF_RTR_SOLICIT_DELAY] =
4205                 jiffies_to_msecs(cnf->rtr_solicit_delay);
4206         array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
4207 #ifdef CONFIG_IPV6_PRIVACY
4208         array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4209         array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4210         array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4211         array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4212         array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4213 #endif
4214         array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
4215         array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
4216         array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
4217 #ifdef CONFIG_IPV6_ROUTER_PREF
4218         array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
4219         array[DEVCONF_RTR_PROBE_INTERVAL] =
4220                 jiffies_to_msecs(cnf->rtr_probe_interval);
4221 #ifdef CONFIG_IPV6_ROUTE_INFO
4222         array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4223 #endif
4224 #endif
4225         array[DEVCONF_ACCEPT_RA_RT_TABLE] = cnf->accept_ra_rt_table;
4226         array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
4227         array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
4228 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4229         array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4230         array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic;
4231 #endif
4232 #ifdef CONFIG_IPV6_MROUTE
4233         array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4234 #endif
4235         array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
4236         array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
4237         array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
4238         array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
4239 }
4240
4241 static inline size_t inet6_ifla6_size(void)
4242 {
4243         return nla_total_size(4) /* IFLA_INET6_FLAGS */
4244              + nla_total_size(sizeof(struct ifla_cacheinfo))
4245              + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4246              + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
4247              + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4248              + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
4249 }
4250
4251 static inline size_t inet6_if_nlmsg_size(void)
4252 {
4253         return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4254                + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4255                + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4256                + nla_total_size(4) /* IFLA_MTU */
4257                + nla_total_size(4) /* IFLA_LINK */
4258                + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
4259 }
4260
4261 static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
4262                                       int items, int bytes)
4263 {
4264         int i;
4265         int pad = bytes - sizeof(u64) * items;
4266         BUG_ON(pad < 0);
4267
4268         /* Use put_unaligned() because stats may not be aligned for u64. */
4269         put_unaligned(items, &stats[0]);
4270         for (i = 1; i < items; i++)
4271                 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
4272
4273         memset(&stats[items], 0, pad);
4274 }
4275
4276 static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4277                                       int items, int bytes, size_t syncpoff)
4278 {
4279         int i;
4280         int pad = bytes - sizeof(u64) * items;
4281         BUG_ON(pad < 0);
4282
4283         /* Use put_unaligned() because stats may not be aligned for u64. */
4284         put_unaligned(items, &stats[0]);
4285         for (i = 1; i < items; i++)
4286                 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4287
4288         memset(&stats[items], 0, pad);
4289 }
4290
4291 static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4292                              int bytes)
4293 {
4294         switch (attrtype) {
4295         case IFLA_INET6_STATS:
4296                 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4297                                      IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
4298                 break;
4299         case IFLA_INET6_ICMP6STATS:
4300                 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
4301                 break;
4302         }
4303 }
4304
4305 static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
4306 {
4307         struct nlattr *nla;
4308         struct ifla_cacheinfo ci;
4309
4310         if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4311                 goto nla_put_failure;
4312         ci.max_reasm_len = IPV6_MAXPLEN;
4313         ci.tstamp = cstamp_delta(idev->tstamp);
4314         ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4315         ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
4316         if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4317                 goto nla_put_failure;
4318         nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4319         if (nla == NULL)
4320                 goto nla_put_failure;
4321         ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
4322
4323         /* XXX - MC not implemented */
4324
4325         nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4326         if (nla == NULL)
4327                 goto nla_put_failure;
4328         snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4329
4330         nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4331         if (nla == NULL)
4332                 goto nla_put_failure;
4333         snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
4334
4335         nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4336         if (nla == NULL)
4337                 goto nla_put_failure;
4338         read_lock_bh(&idev->lock);
4339         memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4340         read_unlock_bh(&idev->lock);
4341
4342         return 0;
4343
4344 nla_put_failure:
4345         return -EMSGSIZE;
4346 }
4347
4348 static size_t inet6_get_link_af_size(const struct net_device *dev)
4349 {
4350         if (!__in6_dev_get(dev))
4351                 return 0;
4352
4353         return inet6_ifla6_size();
4354 }
4355
4356 static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4357 {
4358         struct inet6_dev *idev = __in6_dev_get(dev);
4359
4360         if (!idev)
4361                 return -ENODATA;
4362
4363         if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4364                 return -EMSGSIZE;
4365
4366         return 0;
4367 }
4368
4369 static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4370 {
4371         struct inet6_ifaddr *ifp;
4372         struct net_device *dev = idev->dev;
4373         bool update_rs = false;
4374         struct in6_addr ll_addr;
4375
4376         if (token == NULL)
4377                 return -EINVAL;
4378         if (ipv6_addr_any(token))
4379                 return -EINVAL;
4380         if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4381                 return -EINVAL;
4382         if (!ipv6_accept_ra(idev))
4383                 return -EINVAL;
4384         if (idev->cnf.rtr_solicits <= 0)
4385                 return -EINVAL;
4386
4387         write_lock_bh(&idev->lock);
4388
4389         BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4390         memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4391
4392         write_unlock_bh(&idev->lock);
4393
4394         if (!idev->dead && (idev->if_flags & IF_READY) &&
4395             !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4396                              IFA_F_OPTIMISTIC)) {
4397
4398                 /* If we're not ready, then normal ifup will take care
4399                  * of this. Otherwise, we need to request our rs here.
4400                  */
4401                 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4402                 update_rs = true;
4403         }
4404
4405         write_lock_bh(&idev->lock);
4406
4407         if (update_rs)
4408                 idev->if_flags |= IF_RS_SENT;
4409
4410         /* Well, that's kinda nasty ... */
4411         list_for_each_entry(ifp, &idev->addr_list, if_list) {
4412                 spin_lock(&ifp->lock);
4413                 if (ifp->tokenized) {
4414                         ifp->valid_lft = 0;
4415                         ifp->prefered_lft = 0;
4416                 }
4417                 spin_unlock(&ifp->lock);
4418         }
4419
4420         write_unlock_bh(&idev->lock);
4421         return 0;
4422 }
4423
4424 static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4425 {
4426         int err = -EINVAL;
4427         struct inet6_dev *idev = __in6_dev_get(dev);
4428         struct nlattr *tb[IFLA_INET6_MAX + 1];
4429
4430         if (!idev)
4431                 return -EAFNOSUPPORT;
4432
4433         if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4434                 BUG();
4435
4436         if (tb[IFLA_INET6_TOKEN])
4437                 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4438
4439         return err;
4440 }
4441
4442 static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
4443                              u32 portid, u32 seq, int event, unsigned int flags)
4444 {
4445         struct net_device *dev = idev->dev;
4446         struct ifinfomsg *hdr;
4447         struct nlmsghdr *nlh;
4448         void *protoinfo;
4449
4450         nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
4451         if (nlh == NULL)
4452                 return -EMSGSIZE;
4453
4454         hdr = nlmsg_data(nlh);
4455         hdr->ifi_family = AF_INET6;
4456         hdr->__ifi_pad = 0;
4457         hdr->ifi_type = dev->type;
4458         hdr->ifi_index = dev->ifindex;
4459         hdr->ifi_flags = dev_get_flags(dev);
4460         hdr->ifi_change = 0;
4461
4462         if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4463             (dev->addr_len &&
4464              nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4465             nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4466             (dev->ifindex != dev->iflink &&
4467              nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4468                 goto nla_put_failure;
4469         protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4470         if (protoinfo == NULL)
4471                 goto nla_put_failure;
4472
4473         if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4474                 goto nla_put_failure;
4475
4476         nla_nest_end(skb, protoinfo);
4477         return nlmsg_end(skb, nlh);
4478
4479 nla_put_failure:
4480         nlmsg_cancel(skb, nlh);
4481         return -EMSGSIZE;
4482 }
4483
4484 static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4485 {
4486         struct net *net = sock_net(skb->sk);
4487         int h, s_h;
4488         int idx = 0, s_idx;
4489         struct net_device *dev;
4490         struct inet6_dev *idev;
4491         struct hlist_head *head;
4492
4493         s_h = cb->args[0];
4494         s_idx = cb->args[1];
4495
4496         rcu_read_lock();
4497         for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4498                 idx = 0;
4499                 head = &net->dev_index_head[h];
4500                 hlist_for_each_entry_rcu(dev, head, index_hlist) {
4501                         if (idx < s_idx)
4502                                 goto cont;
4503                         idev = __in6_dev_get(dev);
4504                         if (!idev)
4505                                 goto cont;
4506                         if (inet6_fill_ifinfo(skb, idev,
4507                                               NETLINK_CB(cb->skb).portid,
4508                                               cb->nlh->nlmsg_seq,
4509                                               RTM_NEWLINK, NLM_F_MULTI) <= 0)
4510                                 goto out;
4511 cont:
4512                         idx++;
4513                 }
4514         }
4515 out:
4516         rcu_read_unlock();
4517         cb->args[1] = idx;
4518         cb->args[0] = h;
4519
4520         return skb->len;
4521 }
4522
4523 void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4524 {
4525         struct sk_buff *skb;
4526         struct net *net = dev_net(idev->dev);
4527         int err = -ENOBUFS;
4528
4529         skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
4530         if (skb == NULL)
4531                 goto errout;
4532
4533         err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
4534         if (err < 0) {
4535                 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4536                 WARN_ON(err == -EMSGSIZE);
4537                 kfree_skb(skb);
4538                 goto errout;
4539         }
4540         rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
4541         return;
4542 errout:
4543         if (err < 0)
4544                 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
4545 }
4546
4547 static inline size_t inet6_prefix_nlmsg_size(void)
4548 {
4549         return NLMSG_ALIGN(sizeof(struct prefixmsg))
4550                + nla_total_size(sizeof(struct in6_addr))
4551                + nla_total_size(sizeof(struct prefix_cacheinfo));
4552 }
4553
4554 static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
4555                              struct prefix_info *pinfo, u32 portid, u32 seq,
4556                              int event, unsigned int flags)
4557 {
4558         struct prefixmsg *pmsg;
4559         struct nlmsghdr *nlh;
4560         struct prefix_cacheinfo ci;
4561
4562         nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
4563         if (nlh == NULL)
4564                 return -EMSGSIZE;
4565
4566         pmsg = nlmsg_data(nlh);
4567         pmsg->prefix_family = AF_INET6;
4568         pmsg->prefix_pad1 = 0;
4569         pmsg->prefix_pad2 = 0;
4570         pmsg->prefix_ifindex = idev->dev->ifindex;
4571         pmsg->prefix_len = pinfo->prefix_len;
4572         pmsg->prefix_type = pinfo->type;
4573         pmsg->prefix_pad3 = 0;
4574         pmsg->prefix_flags = 0;
4575         if (pinfo->onlink)
4576                 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4577         if (pinfo->autoconf)
4578                 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4579
4580         if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4581                 goto nla_put_failure;
4582         ci.preferred_time = ntohl(pinfo->prefered);
4583         ci.valid_time = ntohl(pinfo->valid);
4584         if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4585                 goto nla_put_failure;
4586         return nlmsg_end(skb, nlh);
4587
4588 nla_put_failure:
4589         nlmsg_cancel(skb, nlh);
4590         return -EMSGSIZE;
4591 }
4592
4593 static void inet6_prefix_notify(int event, struct inet6_dev *idev,
4594                          struct prefix_info *pinfo)
4595 {
4596         struct sk_buff *skb;
4597         struct net *net = dev_net(idev->dev);
4598         int err = -ENOBUFS;
4599
4600         skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
4601         if (skb == NULL)
4602                 goto errout;
4603
4604         err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
4605         if (err < 0) {
4606                 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4607                 WARN_ON(err == -EMSGSIZE);
4608                 kfree_skb(skb);
4609                 goto errout;
4610         }
4611         rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4612         return;
4613 errout:
4614         if (err < 0)
4615                 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
4616 }
4617
4618 static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4619 {
4620         struct net *net = dev_net(ifp->idev->dev);
4621
4622         inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4623
4624         switch (event) {
4625         case RTM_NEWADDR:
4626                 /*
4627                  * If the address was optimistic
4628                  * we inserted the route at the start of
4629                  * our DAD process, so we don't need
4630                  * to do it again
4631                  */
4632                 if (!(ifp->rt->rt6i_node))
4633                         ip6_ins_rt(ifp->rt);
4634                 if (ifp->idev->cnf.forwarding)
4635                         addrconf_join_anycast(ifp);
4636                 break;
4637         case RTM_DELADDR:
4638                 if (ifp->idev->cnf.forwarding)
4639                         addrconf_leave_anycast(ifp);
4640                 addrconf_leave_solict(ifp->idev, &ifp->addr);
4641                 dst_hold(&ifp->rt->dst);
4642
4643                 if (ip6_del_rt(ifp->rt))
4644                         dst_free(&ifp->rt->dst);
4645                 break;
4646         }
4647         atomic_inc(&net->ipv6.dev_addr_genid);
4648 }
4649
4650 static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4651 {
4652         rcu_read_lock_bh();
4653         if (likely(ifp->idev->dead == 0))
4654                 __ipv6_ifa_notify(event, ifp);
4655         rcu_read_unlock_bh();
4656 }
4657
4658 #ifdef CONFIG_SYSCTL
4659
4660 static
4661 int addrconf_sysctl_forward(ctl_table *ctl, int write,
4662                            void __user *buffer, size_t *lenp, loff_t *ppos)
4663 {
4664         int *valp = ctl->data;
4665         int val = *valp;
4666         loff_t pos = *ppos;
4667         ctl_table lctl;
4668         int ret;
4669
4670         /*
4671          * ctl->data points to idev->cnf.forwarding, we should
4672          * not modify it until we get the rtnl lock.
4673          */
4674         lctl = *ctl;
4675         lctl.data = &val;
4676
4677         ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
4678
4679         if (write)
4680                 ret = addrconf_fixup_forwarding(ctl, valp, val);
4681         if (ret)
4682                 *ppos = pos;
4683         return ret;
4684 }
4685
4686 static void dev_disable_change(struct inet6_dev *idev)
4687 {
4688         if (!idev || !idev->dev)
4689                 return;
4690
4691         if (idev->cnf.disable_ipv6)
4692                 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
4693         else
4694                 addrconf_notify(NULL, NETDEV_UP, idev->dev);
4695 }
4696
4697 static void addrconf_disable_change(struct net *net, __s32 newf)
4698 {
4699         struct net_device *dev;
4700         struct inet6_dev *idev;
4701
4702         rcu_read_lock();
4703         for_each_netdev_rcu(net, dev) {
4704                 idev = __in6_dev_get(dev);
4705                 if (idev) {
4706                         int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4707                         idev->cnf.disable_ipv6 = newf;
4708                         if (changed)
4709                                 dev_disable_change(idev);
4710                 }
4711         }
4712         rcu_read_unlock();
4713 }
4714
4715 static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
4716 {
4717         struct net *net;
4718         int old;
4719
4720         if (!rtnl_trylock())
4721                 return restart_syscall();
4722
4723         net = (struct net *)table->extra2;
4724         old = *p;
4725         *p = newf;
4726
4727         if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4728                 rtnl_unlock();
4729                 return 0;
4730         }
4731
4732         if (p == &net->ipv6.devconf_all->disable_ipv6) {
4733                 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4734                 addrconf_disable_change(net, newf);
4735         } else if ((!newf) ^ (!old))
4736                 dev_disable_change((struct inet6_dev *)table->extra1);
4737
4738         rtnl_unlock();
4739         return 0;
4740 }
4741
4742 static
4743 int addrconf_sysctl_disable(ctl_table *ctl, int write,
4744                             void __user *buffer, size_t *lenp, loff_t *ppos)
4745 {
4746         int *valp = ctl->data;
4747         int val = *valp;
4748         loff_t pos = *ppos;
4749         ctl_table lctl;
4750         int ret;
4751
4752         /*
4753          * ctl->data points to idev->cnf.disable_ipv6, we should
4754          * not modify it until we get the rtnl lock.
4755          */
4756         lctl = *ctl;
4757         lctl.data = &val;
4758
4759         ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
4760
4761         if (write)
4762                 ret = addrconf_disable_ipv6(ctl, valp, val);
4763         if (ret)
4764                 *ppos = pos;
4765         return ret;
4766 }
4767
4768 static struct addrconf_sysctl_table
4769 {
4770         struct ctl_table_header *sysctl_header;
4771         ctl_table addrconf_vars[DEVCONF_MAX+1];
4772 } addrconf_sysctl __read_mostly = {
4773         .sysctl_header = NULL,
4774         .addrconf_vars = {
4775                 {
4776                         .procname       = "forwarding",
4777                         .data           = &ipv6_devconf.forwarding,
4778                         .maxlen         = sizeof(int),
4779                         .mode           = 0644,
4780                         .proc_handler   = addrconf_sysctl_forward,
4781                 },
4782                 {
4783                         .procname       = "hop_limit",
4784                         .data           = &ipv6_devconf.hop_limit,
4785                         .maxlen         = sizeof(int),
4786                         .mode           = 0644,
4787                         .proc_handler   = proc_dointvec,
4788                 },
4789                 {
4790                         .procname       = "mtu",
4791                         .data           = &ipv6_devconf.mtu6,
4792                         .maxlen         = sizeof(int),
4793                         .mode           = 0644,
4794                         .proc_handler   = proc_dointvec,
4795                 },
4796                 {
4797                         .procname       = "accept_ra",
4798                         .data           = &ipv6_devconf.accept_ra,
4799                         .maxlen         = sizeof(int),
4800                         .mode           = 0644,
4801                         .proc_handler   = proc_dointvec,
4802                 },
4803                 {
4804                         .procname       = "accept_redirects",
4805                         .data           = &ipv6_devconf.accept_redirects,
4806                         .maxlen         = sizeof(int),
4807                         .mode           = 0644,
4808                         .proc_handler   = proc_dointvec,
4809                 },
4810                 {
4811                         .procname       = "autoconf",
4812                         .data           = &ipv6_devconf.autoconf,
4813                         .maxlen         = sizeof(int),
4814                         .mode           = 0644,
4815                         .proc_handler   = proc_dointvec,
4816                 },
4817                 {
4818                         .procname       = "dad_transmits",
4819                         .data           = &ipv6_devconf.dad_transmits,
4820                         .maxlen         = sizeof(int),
4821                         .mode           = 0644,
4822                         .proc_handler   = proc_dointvec,
4823                 },
4824                 {
4825                         .procname       = "router_solicitations",
4826                         .data           = &ipv6_devconf.rtr_solicits,
4827                         .maxlen         = sizeof(int),
4828                         .mode           = 0644,
4829                         .proc_handler   = proc_dointvec,
4830                 },
4831                 {
4832                         .procname       = "router_solicitation_interval",
4833                         .data           = &ipv6_devconf.rtr_solicit_interval,
4834                         .maxlen         = sizeof(int),
4835                         .mode           = 0644,
4836                         .proc_handler   = proc_dointvec_jiffies,
4837                 },
4838                 {
4839                         .procname       = "router_solicitation_delay",
4840                         .data           = &ipv6_devconf.rtr_solicit_delay,
4841                         .maxlen         = sizeof(int),
4842                         .mode           = 0644,
4843                         .proc_handler   = proc_dointvec_jiffies,
4844                 },
4845                 {
4846                         .procname       = "force_mld_version",
4847                         .data           = &ipv6_devconf.force_mld_version,
4848                         .maxlen         = sizeof(int),
4849                         .mode           = 0644,
4850                         .proc_handler   = proc_dointvec,
4851                 },
4852 #ifdef CONFIG_IPV6_PRIVACY
4853                 {
4854                         .procname       = "use_tempaddr",
4855                         .data           = &ipv6_devconf.use_tempaddr,
4856                         .maxlen         = sizeof(int),
4857                         .mode           = 0644,
4858                         .proc_handler   = proc_dointvec,
4859                 },
4860                 {
4861                         .procname       = "temp_valid_lft",
4862                         .data           = &ipv6_devconf.temp_valid_lft,
4863                         .maxlen         = sizeof(int),
4864                         .mode           = 0644,
4865                         .proc_handler   = proc_dointvec,
4866                 },
4867                 {
4868                         .procname       = "temp_prefered_lft",
4869                         .data           = &ipv6_devconf.temp_prefered_lft,
4870                         .maxlen         = sizeof(int),
4871                         .mode           = 0644,
4872                         .proc_handler   = proc_dointvec,
4873                 },
4874                 {
4875                         .procname       = "regen_max_retry",
4876                         .data           = &ipv6_devconf.regen_max_retry,
4877                         .maxlen         = sizeof(int),
4878                         .mode           = 0644,
4879                         .proc_handler   = proc_dointvec,
4880                 },
4881                 {
4882                         .procname       = "max_desync_factor",
4883                         .data           = &ipv6_devconf.max_desync_factor,
4884                         .maxlen         = sizeof(int),
4885                         .mode           = 0644,
4886                         .proc_handler   = proc_dointvec,
4887                 },
4888 #endif
4889                 {
4890                         .procname       = "max_addresses",
4891                         .data           = &ipv6_devconf.max_addresses,
4892                         .maxlen         = sizeof(int),
4893                         .mode           = 0644,
4894                         .proc_handler   = proc_dointvec,
4895                 },
4896                 {
4897                         .procname       = "accept_ra_defrtr",
4898                         .data           = &ipv6_devconf.accept_ra_defrtr,
4899                         .maxlen         = sizeof(int),
4900                         .mode           = 0644,
4901                         .proc_handler   = proc_dointvec,
4902                 },
4903                 {
4904                         .procname       = "accept_ra_pinfo",
4905                         .data           = &ipv6_devconf.accept_ra_pinfo,
4906                         .maxlen         = sizeof(int),
4907                         .mode           = 0644,
4908                         .proc_handler   = proc_dointvec,
4909                 },
4910 #ifdef CONFIG_IPV6_ROUTER_PREF
4911                 {
4912                         .procname       = "accept_ra_rtr_pref",
4913                         .data           = &ipv6_devconf.accept_ra_rtr_pref,
4914                         .maxlen         = sizeof(int),
4915                         .mode           = 0644,
4916                         .proc_handler   = proc_dointvec,
4917                 },
4918                 {
4919                         .procname       = "router_probe_interval",
4920                         .data           = &ipv6_devconf.rtr_probe_interval,
4921                         .maxlen         = sizeof(int),
4922                         .mode           = 0644,
4923                         .proc_handler   = proc_dointvec_jiffies,
4924                 },
4925 #ifdef CONFIG_IPV6_ROUTE_INFO
4926                 {
4927                         .procname       = "accept_ra_rt_info_max_plen",
4928                         .data           = &ipv6_devconf.accept_ra_rt_info_max_plen,
4929                         .maxlen         = sizeof(int),
4930                         .mode           = 0644,
4931                         .proc_handler   = proc_dointvec,
4932                 },
4933 #endif
4934 #endif
4935                 {
4936                         .procname       = "accept_ra_rt_table",
4937                         .data           = &ipv6_devconf.accept_ra_rt_table,
4938                         .maxlen         = sizeof(int),
4939                         .mode           = 0644,
4940                         .proc_handler   = proc_dointvec,
4941                 },
4942                 {
4943                         .procname       = "proxy_ndp",
4944                         .data           = &ipv6_devconf.proxy_ndp,
4945                         .maxlen         = sizeof(int),
4946                         .mode           = 0644,
4947                         .proc_handler   = proc_dointvec,
4948                 },
4949                 {
4950                         .procname       = "accept_source_route",
4951                         .data           = &ipv6_devconf.accept_source_route,
4952                         .maxlen         = sizeof(int),
4953                         .mode           = 0644,
4954                         .proc_handler   = proc_dointvec,
4955                 },
4956 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4957                 {
4958                         .procname       = "optimistic_dad",
4959                         .data           = &ipv6_devconf.optimistic_dad,
4960                         .maxlen         = sizeof(int),
4961                         .mode           = 0644,
4962                         .proc_handler   = proc_dointvec,
4963
4964                 },
4965                 {
4966                         .procname       = "use_optimistic",
4967                         .data           = &ipv6_devconf.use_optimistic,
4968                         .maxlen         = sizeof(int),
4969                         .mode           = 0644,
4970                         .proc_handler   = proc_dointvec,
4971
4972                 },
4973 #endif
4974 #ifdef CONFIG_IPV6_MROUTE
4975                 {
4976                         .procname       = "mc_forwarding",
4977                         .data           = &ipv6_devconf.mc_forwarding,
4978                         .maxlen         = sizeof(int),
4979                         .mode           = 0444,
4980                         .proc_handler   = proc_dointvec,
4981                 },
4982 #endif
4983                 {
4984                         .procname       = "disable_ipv6",
4985                         .data           = &ipv6_devconf.disable_ipv6,
4986                         .maxlen         = sizeof(int),
4987                         .mode           = 0644,
4988                         .proc_handler   = addrconf_sysctl_disable,
4989                 },
4990                 {
4991                         .procname       = "accept_dad",
4992                         .data           = &ipv6_devconf.accept_dad,
4993                         .maxlen         = sizeof(int),
4994                         .mode           = 0644,
4995                         .proc_handler   = proc_dointvec,
4996                 },
4997                 {
4998                         .procname       = "force_tllao",
4999                         .data           = &ipv6_devconf.force_tllao,
5000                         .maxlen         = sizeof(int),
5001                         .mode           = 0644,
5002                         .proc_handler   = proc_dointvec
5003                 },
5004                 {
5005                         .procname       = "ndisc_notify",
5006                         .data           = &ipv6_devconf.ndisc_notify,
5007                         .maxlen         = sizeof(int),
5008                         .mode           = 0644,
5009                         .proc_handler   = proc_dointvec
5010                 },
5011                 {
5012                         /* sentinel */
5013                 }
5014         },
5015 };
5016
5017 static int __addrconf_sysctl_register(struct net *net, char *dev_name,
5018                 struct inet6_dev *idev, struct ipv6_devconf *p)
5019 {
5020         int i;
5021         struct addrconf_sysctl_table *t;
5022         char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
5023
5024         t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
5025         if (t == NULL)
5026                 goto out;
5027
5028         for (i = 0; t->addrconf_vars[i].data; i++) {
5029                 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
5030                 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
5031                 t->addrconf_vars[i].extra2 = net;
5032         }
5033
5034         snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
5035
5036         t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
5037         if (t->sysctl_header == NULL)
5038                 goto free;
5039
5040         p->sysctl = t;
5041         return 0;
5042
5043 free:
5044         kfree(t);
5045 out:
5046         return -ENOBUFS;
5047 }
5048
5049 static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5050 {
5051         struct addrconf_sysctl_table *t;
5052
5053         if (p->sysctl == NULL)
5054                 return;
5055
5056         t = p->sysctl;
5057         p->sysctl = NULL;
5058         unregister_net_sysctl_table(t->sysctl_header);
5059         kfree(t);
5060 }
5061
5062 static void addrconf_sysctl_register(struct inet6_dev *idev)
5063 {
5064         neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
5065                               &ndisc_ifinfo_sysctl_change);
5066         __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
5067                                         idev, &idev->cnf);
5068 }
5069
5070 static void addrconf_sysctl_unregister(struct inet6_dev *idev)
5071 {
5072         __addrconf_sysctl_unregister(&idev->cnf);
5073         neigh_sysctl_unregister(idev->nd_parms);
5074 }
5075
5076
5077 #endif
5078
5079 static int __net_init addrconf_init_net(struct net *net)
5080 {
5081         int err = -ENOMEM;
5082         struct ipv6_devconf *all, *dflt;
5083
5084         all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5085         if (all == NULL)
5086                 goto err_alloc_all;
5087
5088         dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5089         if (dflt == NULL)
5090                 goto err_alloc_dflt;
5091
5092         /* these will be inherited by all namespaces */
5093         dflt->autoconf = ipv6_defaults.autoconf;
5094         dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
5095
5096         net->ipv6.devconf_all = all;
5097         net->ipv6.devconf_dflt = dflt;
5098
5099 #ifdef CONFIG_SYSCTL
5100         err = __addrconf_sysctl_register(net, "all", NULL, all);
5101         if (err < 0)
5102                 goto err_reg_all;
5103
5104         err = __addrconf_sysctl_register(net, "default", NULL, dflt);
5105         if (err < 0)
5106                 goto err_reg_dflt;
5107 #endif
5108         return 0;
5109
5110 #ifdef CONFIG_SYSCTL
5111 err_reg_dflt:
5112         __addrconf_sysctl_unregister(all);
5113 err_reg_all:
5114         kfree(dflt);
5115 #endif
5116 err_alloc_dflt:
5117         kfree(all);
5118 err_alloc_all:
5119         return err;
5120 }
5121
5122 static void __net_exit addrconf_exit_net(struct net *net)
5123 {
5124 #ifdef CONFIG_SYSCTL
5125         __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5126         __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5127 #endif
5128         if (!net_eq(net, &init_net)) {
5129                 kfree(net->ipv6.devconf_dflt);
5130                 kfree(net->ipv6.devconf_all);
5131         }
5132 }
5133
5134 static struct pernet_operations addrconf_ops = {
5135         .init = addrconf_init_net,
5136         .exit = addrconf_exit_net,
5137 };
5138
5139 static struct rtnl_af_ops inet6_ops = {
5140         .family           = AF_INET6,
5141         .fill_link_af     = inet6_fill_link_af,
5142         .get_link_af_size = inet6_get_link_af_size,
5143         .set_link_af      = inet6_set_link_af,
5144 };
5145
5146 /*
5147  *      Init / cleanup code
5148  */
5149
5150 int __init addrconf_init(void)
5151 {
5152         int i, err;
5153
5154         err = ipv6_addr_label_init();
5155         if (err < 0) {
5156                 pr_crit("%s: cannot initialize default policy table: %d\n",
5157                         __func__, err);
5158                 goto out;
5159         }
5160
5161         err = register_pernet_subsys(&addrconf_ops);
5162         if (err < 0)
5163                 goto out_addrlabel;
5164
5165         /* The addrconf netdev notifier requires that loopback_dev
5166          * has it's ipv6 private information allocated and setup
5167          * before it can bring up and give link-local addresses
5168          * to other devices which are up.
5169          *
5170          * Unfortunately, loopback_dev is not necessarily the first
5171          * entry in the global dev_base list of net devices.  In fact,
5172          * it is likely to be the very last entry on that list.
5173          * So this causes the notifier registry below to try and
5174          * give link-local addresses to all devices besides loopback_dev
5175          * first, then loopback_dev, which cases all the non-loopback_dev
5176          * devices to fail to get a link-local address.
5177          *
5178          * So, as a temporary fix, allocate the ipv6 structure for
5179          * loopback_dev first by hand.
5180          * Longer term, all of the dependencies ipv6 has upon the loopback
5181          * device and it being up should be removed.
5182          */
5183         rtnl_lock();
5184         if (!ipv6_add_dev(init_net.loopback_dev))
5185                 err = -ENOMEM;
5186         rtnl_unlock();
5187         if (err)
5188                 goto errlo;
5189
5190         for (i = 0; i < IN6_ADDR_HSIZE; i++)
5191                 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5192
5193         register_netdevice_notifier(&ipv6_dev_notf);
5194
5195         addrconf_verify(0);
5196
5197         err = rtnl_af_register(&inet6_ops);
5198         if (err < 0)
5199                 goto errout_af;
5200
5201         err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5202                               NULL);
5203         if (err < 0)
5204                 goto errout;
5205
5206         /* Only the first call to __rtnl_register can fail */
5207         __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5208         __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5209         __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5210                         inet6_dump_ifaddr, NULL);
5211         __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5212                         inet6_dump_ifmcaddr, NULL);
5213         __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5214                         inet6_dump_ifacaddr, NULL);
5215         __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
5216                         inet6_netconf_dump_devconf, NULL);
5217
5218         ipv6_addr_label_rtnl_register();
5219
5220         return 0;
5221 errout:
5222         rtnl_af_unregister(&inet6_ops);
5223 errout_af:
5224         unregister_netdevice_notifier(&ipv6_dev_notf);
5225 errlo:
5226         unregister_pernet_subsys(&addrconf_ops);
5227 out_addrlabel:
5228         ipv6_addr_label_cleanup();
5229 out:
5230         return err;
5231 }
5232
5233 void addrconf_cleanup(void)
5234 {
5235         struct net_device *dev;
5236         int i;
5237
5238         unregister_netdevice_notifier(&ipv6_dev_notf);
5239         unregister_pernet_subsys(&addrconf_ops);
5240         ipv6_addr_label_cleanup();
5241
5242         rtnl_lock();
5243
5244         __rtnl_af_unregister(&inet6_ops);
5245
5246         /* clean dev list */
5247         for_each_netdev(&init_net, dev) {
5248                 if (__in6_dev_get(dev) == NULL)
5249                         continue;
5250                 addrconf_ifdown(dev, 1);
5251         }
5252         addrconf_ifdown(init_net.loopback_dev, 2);
5253
5254         /*
5255          *      Check hash table.
5256          */
5257         spin_lock_bh(&addrconf_hash_lock);
5258         for (i = 0; i < IN6_ADDR_HSIZE; i++)
5259                 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
5260         spin_unlock_bh(&addrconf_hash_lock);
5261
5262         del_timer(&addr_chk_timer);
5263         rtnl_unlock();
5264 }