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