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