blob: 78d8414d2cf41b5eefc51fdee311e08593dfe7a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080036 * YOSHIFUJI Hideaki @USAGI : improved source address
37 * selection; consider scope,
38 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Joe Perchesf3213832012-05-15 14:11:53 +000041#define pr_fmt(fmt) "IPv6: " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070045#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/socket.h>
47#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/net.h>
49#include <linux/in6.h>
50#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070051#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090058#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifdef CONFIG_SYSCTL
60#include <linux/sysctl.h>
61#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/delay.h>
64#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070065#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000066#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020068#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <net/sock.h>
70#include <net/snmp.h>
71
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +000072#include <net/af_ieee802154.h>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000073#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#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>
Thomas Graf5d620262006-08-15 00:35:02 -070081#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070082#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/if_tunnel.h>
84#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000085#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef CONFIG_IPV6_PRIVACY
88#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
90
Stephen Hemmingere21e8462010-03-20 16:09:01 -070091#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070092#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94#include <linux/proc_fs.h>
95#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040096#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* Set to 3 to get tracing... */
99#define ACONF_DEBUG 2
100
101#if ACONF_DEBUG >= 3
102#define ADBG(x) printk x
103#else
104#define ADBG(x)
105#endif
106
107#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000108
109static inline u32 cstamp_delta(unsigned long cstamp)
110{
111 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100115static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800116static void addrconf_sysctl_unregister(struct inet6_dev *idev);
117#else
118static inline void addrconf_sysctl_register(struct inet6_dev *idev)
119{
120}
121
122static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
123{
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
127#ifdef CONFIG_IPV6_PRIVACY
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000128static void __ipv6_regen_rndid(struct inet6_dev *idev);
129static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900133static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static int ipv6_count_addresses(struct inet6_dev *idev);
135
136/*
137 * Configured unicast address hash table
138 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000139static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578ae2010-03-17 20:31:11 +0000140static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static void addrconf_verify(unsigned long);
143
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700144static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static DEFINE_SPINLOCK(addrconf_verify_lock);
146
147static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
148static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
149
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000150static void addrconf_type_change(struct net_device *dev,
151 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int addrconf_ifdown(struct net_device *dev, int how);
153
Romain Kuntz21caa662013-01-09 21:06:03 +0000154static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
155 int plen,
156 const struct net_device *dev,
157 u32 flags, u32 noflags);
158
David S. Millercf22f9a2012-04-14 21:37:40 -0400159static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static void addrconf_dad_timer(unsigned long data);
161static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900162static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static void addrconf_rs_timer(unsigned long data);
164static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
165static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
166
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900167static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700169static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
170 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Alan Sterne041c682006-03-27 01:16:30 -0800172static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Adrian Bunk888c8482008-07-22 14:21:58 -0700174static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 .forwarding = 0,
176 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
177 .mtu6 = IPV6_MIN_MTU,
178 .accept_ra = 1,
179 .accept_redirects = 1,
180 .autoconf = 1,
181 .force_mld_version = 0,
182 .dad_transmits = 1,
183 .rtr_solicits = MAX_RTR_SOLICITATIONS,
184 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
185 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
186#ifdef CONFIG_IPV6_PRIVACY
187 .use_tempaddr = 0,
188 .temp_valid_lft = TEMP_VALID_LIFETIME,
189 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
190 .regen_max_retry = REGEN_MAX_RETRY,
191 .max_desync_factor = MAX_DESYNC_FACTOR,
192#endif
193 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800194 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800195 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800196#ifdef CONFIG_IPV6_ROUTER_PREF
197 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800198 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800199#ifdef CONFIG_IPV6_ROUTE_INFO
200 .accept_ra_rt_info_max_plen = 0,
201#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800202#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700203 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700204 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900205 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900206 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
Brian Haleyab32ea52006-09-22 14:15:41 -0700209static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .forwarding = 0,
211 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
212 .mtu6 = IPV6_MIN_MTU,
213 .accept_ra = 1,
214 .accept_redirects = 1,
215 .autoconf = 1,
216 .dad_transmits = 1,
217 .rtr_solicits = MAX_RTR_SOLICITATIONS,
218 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
219 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
220#ifdef CONFIG_IPV6_PRIVACY
221 .use_tempaddr = 0,
222 .temp_valid_lft = TEMP_VALID_LIFETIME,
223 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
224 .regen_max_retry = REGEN_MAX_RETRY,
225 .max_desync_factor = MAX_DESYNC_FACTOR,
226#endif
227 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800228 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800229 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800230#ifdef CONFIG_IPV6_ROUTER_PREF
231 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800232 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800233#ifdef CONFIG_IPV6_ROUTE_INFO
234 .accept_ra_rt_info_max_plen = 0,
235#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800236#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700237 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700238 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900239 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900240 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241};
242
243/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900246const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
247const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000248const struct in6_addr in6addr_interfacelocal_allnodes = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT;
249const struct in6_addr in6addr_interfacelocal_allrouters = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT;
250const struct in6_addr in6addr_sitelocal_allrouters = IN6ADDR_SITELOCAL_ALLROUTERS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700252/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700253static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700254{
David S. Miller05297942008-07-08 23:01:27 -0700255 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258static void addrconf_del_timer(struct inet6_ifaddr *ifp)
259{
260 if (del_timer(&ifp->timer))
261 __in6_ifa_put(ifp);
262}
263
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700264enum addrconf_timer_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 AC_NONE,
266 AC_DAD,
267 AC_RS,
268};
269
270static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
271 enum addrconf_timer_t what,
272 unsigned long when)
273{
274 if (!del_timer(&ifp->timer))
275 in6_ifa_hold(ifp);
276
277 switch (what) {
278 case AC_DAD:
279 ifp->timer.function = addrconf_dad_timer;
280 break;
281 case AC_RS:
282 ifp->timer.function = addrconf_rs_timer;
283 break;
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700284 default:
285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 ifp->timer.expires = jiffies + when;
288 add_timer(&ifp->timer);
289}
290
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700291static int snmp6_alloc_dev(struct inet6_dev *idev)
292{
Tejun Heo7d720c32010-02-16 15:20:26 +0000293 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000294 sizeof(struct ipstats_mib),
295 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700296 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000297 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
298 GFP_KERNEL);
299 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700300 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000301 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
302 GFP_KERNEL);
303 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700304 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305
306 return 0;
307
David L Stevens14878f72007-09-16 16:52:35 -0700308err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000309 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700310err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000311 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700312err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700313 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700314}
315
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700316static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700317{
Eric Dumazetbe281e52011-05-19 01:14:23 +0000318 kfree(idev->stats.icmpv6msgdev);
319 kfree(idev->stats.icmpv6dev);
Tejun Heo7d720c32010-02-16 15:20:26 +0000320 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/* Nobody refers to this device, we may destroy it. */
324
325void in6_dev_finish_destroy(struct inet6_dev *idev)
326{
327 struct net_device *dev = idev->dev;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700328
stephen hemminger502a2ff2010-03-17 20:31:13 +0000329 WARN_ON(!list_empty(&idev->addr_list));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700330 WARN_ON(idev->mc_list != NULL);
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000333 pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#endif
335 dev_put(dev);
336 if (!idev->dead) {
Joe Perchesf3213832012-05-15 14:11:53 +0000337 pr_warn("Freeing alive inet6 device %p\n", idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return;
339 }
340 snmp6_free_dev(idev);
Lai Jiangshan38f57d12011-03-15 17:59:14 +0800341 kfree_rcu(idev, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900343EXPORT_SYMBOL(in6_dev_finish_destroy);
344
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000345static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 struct inet6_dev *ndev;
348
349 ASSERT_RTNL();
350
351 if (dev->mtu < IPV6_MIN_MTU)
352 return NULL;
353
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900354 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900356 if (ndev == NULL)
357 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Ingo Oeser322f74a2006-03-20 23:01:47 -0800359 rwlock_init(&ndev->lock);
360 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000361 INIT_LIST_HEAD(&ndev->addr_list);
362
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900363 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800364 ndev->cnf.mtu6 = dev->mtu;
365 ndev->cnf.sysctl = NULL;
366 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
367 if (ndev->nd_parms == NULL) {
368 kfree(ndev);
369 return NULL;
370 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700371 if (ndev->cnf.forwarding)
372 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800373 /* We refer to the device */
374 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Ingo Oeser322f74a2006-03-20 23:01:47 -0800376 if (snmp6_alloc_dev(ndev) < 0) {
377 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000378 "%s: cannot allocate memory for statistics; dev=%s.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800379 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800380 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400381 dev_put(dev);
382 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800383 return NULL;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Ingo Oeser322f74a2006-03-20 23:01:47 -0800386 if (snmp6_register_dev(ndev) < 0) {
387 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000388 "%s: cannot create /proc/net/dev_snmp6/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800389 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800390 neigh_parms_release(&nd_tbl, ndev->nd_parms);
391 ndev->dead = 1;
392 in6_dev_finish_destroy(ndev);
393 return NULL;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 /* One reference from device. We must do this before
397 * we invoke __ipv6_regen_rndid().
398 */
399 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900401 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
402 ndev->cnf.accept_dad = -1;
403
Amerigo Wang07a93622012-10-29 16:23:10 +0000404#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700405 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000406 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700407 ndev->cnf.rtr_solicits = 0;
408 }
409#endif
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000412 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800413 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800414 if ((dev->flags&IFF_LOOPBACK) ||
415 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700416 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700417 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700418 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800419 ndev->cnf.use_tempaddr = -1;
420 } else {
421 in6_dev_hold(ndev);
422 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800424#endif
425
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700426 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700427 ndev->if_flags |= IF_READY;
428
Ingo Oeser322f74a2006-03-20 23:01:47 -0800429 ipv6_mc_init_dev(ndev);
430 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100431 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800432 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000433 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800434
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000435 /* Join interface-local all-node multicast group */
436 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
437
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800438 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900439 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800440
Li Weid6ddef92012-03-05 14:45:17 +0000441 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000442 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000443 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return ndev;
446}
447
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000448static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 struct inet6_dev *idev;
451
452 ASSERT_RTNL();
453
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700454 idev = __in6_dev_get(dev);
455 if (!idev) {
456 idev = ipv6_add_dev(dev);
457 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return NULL;
459 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (dev->flags&IFF_UP)
462 ipv6_mc_up(idev);
463 return idev;
464}
465
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000466static int inet6_netconf_msgsize_devconf(int type)
467{
468 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
469 + nla_total_size(4); /* NETCONFA_IFINDEX */
470
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000471 /* type -1 is used for ALL */
472 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000473 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500474#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000475 if (type == -1 || type == NETCONFA_MC_FORWARDING)
476 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500477#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000478
479 return size;
480}
481
482static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
483 struct ipv6_devconf *devconf, u32 portid,
484 u32 seq, int event, unsigned int flags,
485 int type)
486{
487 struct nlmsghdr *nlh;
488 struct netconfmsg *ncm;
489
490 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
491 flags);
492 if (nlh == NULL)
493 return -EMSGSIZE;
494
495 ncm = nlmsg_data(nlh);
496 ncm->ncm_family = AF_INET6;
497
498 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
499 goto nla_put_failure;
500
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000501 /* type -1 is used for ALL */
502 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000503 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
504 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500505#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000506 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
507 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
508 devconf->mc_forwarding) < 0)
509 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500510#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000511 return nlmsg_end(skb, nlh);
512
513nla_put_failure:
514 nlmsg_cancel(skb, nlh);
515 return -EMSGSIZE;
516}
517
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000518void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
519 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000520{
521 struct sk_buff *skb;
522 int err = -ENOBUFS;
523
524 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
525 if (skb == NULL)
526 goto errout;
527
528 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
529 RTM_NEWNETCONF, 0, type);
530 if (err < 0) {
531 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
532 WARN_ON(err == -EMSGSIZE);
533 kfree_skb(skb);
534 goto errout;
535 }
536 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
537 return;
538errout:
Cong Dingbd779022012-12-18 12:08:56 +0000539 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000540}
541
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000542static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
543 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
544 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
545};
546
547static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000548 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000549{
550 struct net *net = sock_net(in_skb->sk);
551 struct nlattr *tb[NETCONFA_MAX+1];
552 struct netconfmsg *ncm;
553 struct sk_buff *skb;
554 struct ipv6_devconf *devconf;
555 struct inet6_dev *in6_dev;
556 struct net_device *dev;
557 int ifindex;
558 int err;
559
560 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
561 devconf_ipv6_policy);
562 if (err < 0)
563 goto errout;
564
565 err = EINVAL;
566 if (!tb[NETCONFA_IFINDEX])
567 goto errout;
568
569 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
570 switch (ifindex) {
571 case NETCONFA_IFINDEX_ALL:
572 devconf = net->ipv6.devconf_all;
573 break;
574 case NETCONFA_IFINDEX_DEFAULT:
575 devconf = net->ipv6.devconf_dflt;
576 break;
577 default:
578 dev = __dev_get_by_index(net, ifindex);
579 if (dev == NULL)
580 goto errout;
581 in6_dev = __in6_dev_get(dev);
582 if (in6_dev == NULL)
583 goto errout;
584 devconf = &in6_dev->cnf;
585 break;
586 }
587
588 err = -ENOBUFS;
589 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
590 if (skb == NULL)
591 goto errout;
592
593 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
594 NETLINK_CB(in_skb).portid,
595 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
596 -1);
597 if (err < 0) {
598 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
599 WARN_ON(err == -EMSGSIZE);
600 kfree_skb(skb);
601 goto errout;
602 }
603 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
604errout:
605 return err;
606}
607
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000608static int inet6_netconf_dump_devconf(struct sk_buff *skb,
609 struct netlink_callback *cb)
610{
611 struct net *net = sock_net(skb->sk);
612 int h, s_h;
613 int idx, s_idx;
614 struct net_device *dev;
615 struct inet6_dev *idev;
616 struct hlist_head *head;
617
618 s_h = cb->args[0];
619 s_idx = idx = cb->args[1];
620
621 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
622 idx = 0;
623 head = &net->dev_index_head[h];
624 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000625 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
626 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000627 hlist_for_each_entry_rcu(dev, head, index_hlist) {
628 if (idx < s_idx)
629 goto cont;
630 idev = __in6_dev_get(dev);
631 if (!idev)
632 goto cont;
633
634 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
635 &idev->cnf,
636 NETLINK_CB(cb->skb).portid,
637 cb->nlh->nlmsg_seq,
638 RTM_NEWNETCONF,
639 NLM_F_MULTI,
640 -1) <= 0) {
641 rcu_read_unlock();
642 goto done;
643 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000644 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000645cont:
646 idx++;
647 }
648 rcu_read_unlock();
649 }
650 if (h == NETDEV_HASHENTRIES) {
651 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
652 net->ipv6.devconf_all,
653 NETLINK_CB(cb->skb).portid,
654 cb->nlh->nlmsg_seq,
655 RTM_NEWNETCONF, NLM_F_MULTI,
656 -1) <= 0)
657 goto done;
658 else
659 h++;
660 }
661 if (h == NETDEV_HASHENTRIES + 1) {
662 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
663 net->ipv6.devconf_dflt,
664 NETLINK_CB(cb->skb).portid,
665 cb->nlh->nlmsg_seq,
666 RTM_NEWNETCONF, NLM_F_MULTI,
667 -1) <= 0)
668 goto done;
669 else
670 h++;
671 }
672done:
673 cb->args[0] = h;
674 cb->args[1] = idx;
675
676 return skb->len;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#ifdef CONFIG_SYSCTL
680static void dev_forward_change(struct inet6_dev *idev)
681{
682 struct net_device *dev;
683 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (!idev)
686 return;
687 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700688 if (idev->cnf.forwarding)
689 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000690 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000691 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900692 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000693 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
694 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
695 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900696 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000697 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
698 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000701
702 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800703 if (ifa->flags&IFA_F_TENTATIVE)
704 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (idev->cnf.forwarding)
706 addrconf_join_anycast(ifa);
707 else
708 addrconf_leave_anycast(ifa);
709 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000710 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
711 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714
Pavel Emelyanove1869322008-01-10 17:43:50 -0800715static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 struct net_device *dev;
718 struct inet6_dev *idev;
719
Ben Hutchings4acd4942012-08-14 08:54:51 +0000720 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 idev = __in6_dev_get(dev);
722 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800723 int changed = (!idev->cnf.forwarding) ^ (!newf);
724 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (changed)
726 dev_forward_change(idev);
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800730
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000731static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800732{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800733 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000734 int old;
735
736 if (!rtnl_trylock())
737 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800738
739 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000740 old = *p;
741 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800742
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000743 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000744 if ((!newf) ^ (!old))
745 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
746 NETCONFA_IFINDEX_DEFAULT,
747 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000748 rtnl_unlock();
749 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000750 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000751
Pavel Emelyanove1869322008-01-10 17:43:50 -0800752 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800753 net->ipv6.devconf_dflt->forwarding = newf;
754 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000755 if ((!newf) ^ (!old))
756 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
757 NETCONFA_IFINDEX_ALL,
758 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000759 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800760 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700761 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800762
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000763 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800764 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000765 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800766}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767#endif
768
stephen hemminger5c578ae2010-03-17 20:31:11 +0000769/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
771{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000772 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000775 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776#endif
777
778 in6_dev_put(ifp->idev);
779
780 if (del_timer(&ifp->timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700781 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Herbert Xue9d3e082010-05-18 15:36:06 -0700783 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000784 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return;
786 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000787 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Lai Jiangshane5785982011-03-15 18:00:14 +0800789 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Brian Haleye55ffac2006-07-10 15:25:51 -0700792static void
793ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
794{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000795 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700796 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700797
798 /*
799 * Each device address list is sorted in order of scope -
800 * global before linklocal.
801 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000802 list_for_each(p, &idev->addr_list) {
803 struct inet6_ifaddr *ifa
804 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700805 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700806 break;
807 }
808
David S. Millerb54c9b92010-03-25 21:25:30 -0700809 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700810}
811
Eric Dumazetddbe5032012-07-18 08:11:12 +0000812static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900813{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000814 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900815}
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817/* On success it returns ifp with increased reference count */
818
819static struct inet6_ifaddr *
820ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700821 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 struct inet6_ifaddr *ifa = NULL;
824 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000825 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900827 int addr_type = ipv6_addr_type(addr);
828
829 if (addr_type == IPV6_ADDR_ANY ||
830 addr_type & IPV6_ADDR_MULTICAST ||
831 (!(idev->dev->flags & IFF_LOOPBACK) &&
832 addr_type & IPV6_ADDR_LOOPBACK))
833 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700835 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (idev->dead) {
837 err = -ENODEV; /*XXX*/
838 goto out2;
839 }
840
Brian Haley56d417b2009-06-01 03:07:33 -0700841 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700842 err = -EACCES;
843 goto out2;
844 }
845
stephen hemminger5c578ae2010-03-17 20:31:11 +0000846 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900849 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 ADBG(("ipv6_add_addr: already assigned\n"));
851 err = -EEXIST;
852 goto out;
853 }
854
Ingo Oeser322f74a2006-03-20 23:01:47 -0800855 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 if (ifa == NULL) {
858 ADBG(("ipv6_add_addr: malloc failed\n"));
859 err = -ENOBUFS;
860 goto out;
861 }
862
David S. Miller8f031512011-12-06 16:48:14 -0500863 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (IS_ERR(rt)) {
865 err = PTR_ERR(rt);
866 goto out;
867 }
868
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000869 ifa->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700872 spin_lock_init(&ifa->state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 init_timer(&ifa->timer);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000874 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 ifa->timer.data = (unsigned long) ifa;
876 ifa->scope = scope;
877 ifa->prefix_len = pfxlen;
878 ifa->flags = flags | IFA_F_TENTATIVE;
879 ifa->cstamp = ifa->tstamp = jiffies;
880
Keir Fraser57f5f542006-08-29 02:43:49 -0700881 ifa->rt = rt;
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 ifa->idev = idev;
884 in6_dev_hold(idev);
885 /* For caller */
886 in6_ifa_hold(ifa);
887
888 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000889 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
stephen hemminger5c578ae2010-03-17 20:31:11 +0000891 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000892 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 write_lock(&idev->lock);
895 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700896 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898#ifdef CONFIG_IPV6_PRIVACY
899 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000900 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 in6_ifa_hold(ifa);
902 }
903#endif
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 in6_ifa_hold(ifa);
906 write_unlock(&idev->lock);
907out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700908 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700910 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800911 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 else {
913 kfree(ifa);
914 ifa = ERR_PTR(err);
915 }
916
917 return ifa;
918out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000919 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 goto out2;
921}
922
923/* This function wants to get referenced ifp and releases it before return */
924
925static void ipv6_del_addr(struct inet6_ifaddr *ifp)
926{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000927 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700929 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int deleted = 0, onlink = 0;
931 unsigned long expires = jiffies;
932
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700933 spin_lock_bh(&ifp->state_lock);
934 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700935 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700936 spin_unlock_bh(&ifp->state_lock);
937
938 if (state == INET6_IFADDR_STATE_DEAD)
939 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
stephen hemminger5c578ae2010-03-17 20:31:11 +0000941 spin_lock_bh(&addrconf_hash_lock);
942 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000943 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 write_lock_bh(&idev->lock);
946#ifdef CONFIG_IPV6_PRIVACY
947 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000948 list_del(&ifp->tmp_list);
949 if (ifp->ifpub) {
950 in6_ifa_put(ifp->ifpub);
951 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000953 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955#endif
956
stephen hemminger502a2ff2010-03-17 20:31:13 +0000957 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000959 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
963 break;
964 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800965 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 } else if (ifp->flags & IFA_F_PERMANENT) {
967 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
968 ifp->prefix_len)) {
969 if (ifa->flags & IFA_F_PERMANENT) {
970 onlink = 1;
971 if (deleted)
972 break;
973 } else {
974 unsigned long lifetime;
975
976 if (!onlink)
977 onlink = -1;
978
979 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900980
981 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
982 /*
983 * Note: Because this address is
984 * not permanent, lifetime <
985 * LONG_MAX / HZ here.
986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (time_before(expires,
988 ifa->tstamp + lifetime * HZ))
989 expires = ifa->tstamp + lifetime * HZ;
990 spin_unlock(&ifa->lock);
991 }
992 }
993 }
994 }
995 write_unlock_bh(&idev->lock);
996
Andrey Vaginb2238562008-07-08 15:13:31 -0700997 addrconf_del_timer(ifp);
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 ipv6_ifa_notify(RTM_DELADDR, ifp);
1000
Alan Sterne041c682006-03-27 01:16:30 -08001001 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /*
1004 * Purge or update corresponding prefix
1005 *
1006 * 1) we don't purge prefix here if address was not permanent.
1007 * prefix is managed by its own lifetime.
1008 * 2) if there're no addresses, delete prefix.
1009 * 3) if there're still other permanent address(es),
1010 * corresponding prefix is still permanent.
1011 * 4) otherwise, update prefix lifetime to the
1012 * longest valid lifetime among the corresponding
1013 * addresses on the device.
1014 * Note: subsequent RA will update lifetime.
1015 *
1016 * --yoshfuji
1017 */
1018 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1019 struct in6_addr prefix;
1020 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001022 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001023
Romain Kuntz21caa662013-01-09 21:06:03 +00001024 rt = addrconf_get_prefix_route(&prefix,
1025 ifp->prefix_len,
1026 ifp->idev->dev,
1027 0, RTF_GATEWAY | RTF_DEFAULT);
1028
1029 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001031 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 rt = NULL;
1033 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001034 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001037 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
Daniel Walterc3968a82011-04-13 21:10:57 +00001040 /* clean up prefsrc entries */
1041 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001042out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 in6_ifa_put(ifp);
1044}
1045
1046#ifdef CONFIG_IPV6_PRIVACY
1047static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1048{
1049 struct inet6_dev *idev = ifp->idev;
1050 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001051 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001052 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int tmp_plen;
1054 int ret = 0;
1055 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001056 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001057 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 write_lock(&idev->lock);
1060 if (ift) {
1061 spin_lock_bh(&ift->lock);
1062 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1063 spin_unlock_bh(&ift->lock);
1064 tmpaddr = &addr;
1065 } else {
1066 tmpaddr = NULL;
1067 }
1068retry:
1069 in6_dev_hold(idev);
1070 if (idev->cnf.use_tempaddr <= 0) {
1071 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001072 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 in6_dev_put(idev);
1074 ret = -1;
1075 goto out;
1076 }
1077 spin_lock_bh(&ifp->lock);
1078 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1079 idev->cnf.use_tempaddr = -1; /*XXX*/
1080 spin_unlock_bh(&ifp->lock);
1081 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001082 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1083 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 in6_dev_put(idev);
1085 ret = -1;
1086 goto out;
1087 }
1088 in6_ifa_hold(ifp);
1089 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001090 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001092 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 tmp_valid_lft = min_t(__u32,
1094 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001095 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001096 tmp_prefered_lft = min_t(__u32,
1097 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001098 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001099 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 tmp_plen = ifp->prefix_len;
1101 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 tmp_tstamp = ifp->tstamp;
1103 spin_unlock_bh(&ifp->lock);
1104
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001105 regen_advance = idev->cnf.regen_max_retry *
1106 idev->cnf.dad_transmits *
1107 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001109
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001110 /* A temporary address is created only if this calculated Preferred
1111 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1112 * an implementation must not create a temporary address with a zero
1113 * Preferred Lifetime.
1114 */
1115 if (tmp_prefered_lft <= regen_advance) {
1116 in6_ifa_put(ifp);
1117 in6_dev_put(idev);
1118 ret = -1;
1119 goto out;
1120 }
1121
Neil Horman95c385b2007-04-25 17:08:10 -07001122 addr_flags = IFA_F_TEMPORARY;
1123 /* set in addrconf_prefix_rcv() */
1124 if (ifp->flags & IFA_F_OPTIMISTIC)
1125 addr_flags |= IFA_F_OPTIMISTIC;
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001128 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -07001130 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
1131 addr_flags) : NULL;
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00001132 if (IS_ERR_OR_NULL(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 in6_ifa_put(ifp);
1134 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001135 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 tmpaddr = &addr;
1137 write_lock(&idev->lock);
1138 goto retry;
1139 }
1140
1141 spin_lock_bh(&ift->lock);
1142 ift->ifpub = ifp;
1143 ift->valid_lft = tmp_valid_lft;
1144 ift->prefered_lft = tmp_prefered_lft;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001145 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 ift->tstamp = tmp_tstamp;
1147 spin_unlock_bh(&ift->lock);
1148
David S. Millercf22f9a2012-04-14 21:37:40 -04001149 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 in6_ifa_put(ift);
1151 in6_dev_put(idev);
1152out:
1153 return ret;
1154}
1155#endif
1156
1157/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001158 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001160enum {
1161 IPV6_SADDR_RULE_INIT = 0,
1162 IPV6_SADDR_RULE_LOCAL,
1163 IPV6_SADDR_RULE_SCOPE,
1164 IPV6_SADDR_RULE_PREFERRED,
1165#ifdef CONFIG_IPV6_MIP6
1166 IPV6_SADDR_RULE_HOA,
1167#endif
1168 IPV6_SADDR_RULE_OIF,
1169 IPV6_SADDR_RULE_LABEL,
1170#ifdef CONFIG_IPV6_PRIVACY
1171 IPV6_SADDR_RULE_PRIVACY,
1172#endif
1173 IPV6_SADDR_RULE_ORCHID,
1174 IPV6_SADDR_RULE_PREFIX,
1175 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001176};
1177
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001178struct ipv6_saddr_score {
1179 int rule;
1180 int addr_type;
1181 struct inet6_ifaddr *ifa;
1182 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1183 int scopedist;
1184 int matchlen;
1185};
1186
1187struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001188 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001189 int ifindex;
1190 int scope;
1191 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001192 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001193};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001194
Dave Jonesb6f99a22007-03-22 12:27:49 -07001195static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001197 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001198 return 1;
1199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Benjamin Thery3de23252008-05-28 14:51:24 +02001202static int ipv6_get_saddr_eval(struct net *net,
1203 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001204 struct ipv6_saddr_dst *dst,
1205 int i)
1206{
1207 int ret;
1208
1209 if (i <= score->rule) {
1210 switch (i) {
1211 case IPV6_SADDR_RULE_SCOPE:
1212 ret = score->scopedist;
1213 break;
1214 case IPV6_SADDR_RULE_PREFIX:
1215 ret = score->matchlen;
1216 break;
1217 default:
1218 ret = !!test_bit(i, score->scorebits);
1219 }
1220 goto out;
1221 }
1222
1223 switch (i) {
1224 case IPV6_SADDR_RULE_INIT:
1225 /* Rule 0: remember if hiscore is not ready yet */
1226 ret = !!score->ifa;
1227 break;
1228 case IPV6_SADDR_RULE_LOCAL:
1229 /* Rule 1: Prefer same address */
1230 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1231 break;
1232 case IPV6_SADDR_RULE_SCOPE:
1233 /* Rule 2: Prefer appropriate scope
1234 *
1235 * ret
1236 * ^
1237 * -1 | d 15
1238 * ---+--+-+---> scope
1239 * |
1240 * | d is scope of the destination.
1241 * B-d | \
1242 * | \ <- smaller scope is better if
1243 * B-15 | \ if scope is enough for destinaion.
1244 * | ret = B - scope (-1 <= scope >= d <= 15).
1245 * d-C-1 | /
1246 * |/ <- greater is better
1247 * -C / if scope is not enough for destination.
1248 * /| ret = scope - C (-1 <= d < scope <= 15).
1249 *
1250 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1251 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1252 * Assume B = 0 and we get C > 29.
1253 */
1254 ret = __ipv6_addr_src_scope(score->addr_type);
1255 if (ret >= dst->scope)
1256 ret = -ret;
1257 else
1258 ret -= 128; /* 30 is enough */
1259 score->scopedist = ret;
1260 break;
1261 case IPV6_SADDR_RULE_PREFERRED:
1262 /* Rule 3: Avoid deprecated and optimistic addresses */
1263 ret = ipv6_saddr_preferred(score->addr_type) ||
1264 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1265 break;
1266#ifdef CONFIG_IPV6_MIP6
1267 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001268 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001269 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001270 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1271 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001272 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001273 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001274#endif
1275 case IPV6_SADDR_RULE_OIF:
1276 /* Rule 5: Prefer outgoing interface */
1277 ret = (!dst->ifindex ||
1278 dst->ifindex == score->ifa->idev->dev->ifindex);
1279 break;
1280 case IPV6_SADDR_RULE_LABEL:
1281 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001282 ret = ipv6_addr_label(net,
1283 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001284 score->ifa->idev->dev->ifindex) == dst->label;
1285 break;
1286#ifdef CONFIG_IPV6_PRIVACY
1287 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001288 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001289 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001290 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001291 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001292 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1293 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1294 score->ifa->idev->cnf.use_tempaddr >= 2;
1295 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001296 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001297 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001298#endif
1299 case IPV6_SADDR_RULE_ORCHID:
1300 /* Rule 8-: Prefer ORCHID vs ORCHID or
1301 * non-ORCHID vs non-ORCHID
1302 */
1303 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1304 ipv6_addr_orchid(dst->addr));
1305 break;
1306 case IPV6_SADDR_RULE_PREFIX:
1307 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001308 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1309 if (ret > score->ifa->prefix_len)
1310 ret = score->ifa->prefix_len;
1311 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001312 break;
1313 default:
1314 ret = 0;
1315 }
1316
1317 if (ret)
1318 __set_bit(i, score->scorebits);
1319 score->rule = i;
1320out:
1321 return ret;
1322}
1323
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001324int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001325 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001326 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001328 struct ipv6_saddr_score scores[2],
1329 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001330 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001331 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001332 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001334 dst_type = __ipv6_addr_type(daddr);
1335 dst.addr = daddr;
1336 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1337 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001338 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001339 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001340
1341 hiscore->rule = -1;
1342 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001344 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001345
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001346 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001347 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001348
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001349 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001350 * - multicast and link-local destination address,
1351 * the set of candidate source address MUST only
1352 * include addresses assigned to interfaces
1353 * belonging to the same link as the outgoing
1354 * interface.
1355 * (- For site-local destination addresses, the
1356 * set of candidate source addresses MUST only
1357 * include addresses assigned to interfaces
1358 * belonging to the same site as the outgoing
1359 * interface.)
1360 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001361 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1362 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1363 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001364 continue;
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001367 if (!idev)
1368 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001370 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001371 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001372 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001374 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001375 * - Tentative Address (RFC2462 section 5.4)
1376 * - A tentative address is not considered
1377 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001378 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001379 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001380 * - In any case, anycast addresses, multicast
1381 * addresses, and the unspecified address MUST
1382 * NOT be included in a candidate set.
1383 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001384 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1385 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001386 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001387
1388 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1389
1390 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1391 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001392 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -08001393 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001394 "assigned as unicast address on %s",
1395 dev->name);
1396 continue;
1397 }
1398
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001399 score->rule = -1;
1400 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001401
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001402 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1403 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001404
Benjamin Thery3de23252008-05-28 14:51:24 +02001405 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1406 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001407
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001408 if (minihiscore > miniscore) {
1409 if (i == IPV6_SADDR_RULE_SCOPE &&
1410 score->scopedist > 0) {
1411 /*
1412 * special case:
1413 * each remaining entry
1414 * has too small (not enough)
1415 * scope, because ifa entries
1416 * are sorted by their scope
1417 * values.
1418 */
1419 goto try_nextdev;
1420 }
1421 break;
1422 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001423 if (hiscore->ifa)
1424 in6_ifa_put(hiscore->ifa);
1425
1426 in6_ifa_hold(score->ifa);
1427
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001428 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001429
1430 /* restore our iterator */
1431 score->ifa = hiscore->ifa;
1432
1433 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001436 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001437try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001438 read_unlock_bh(&idev->lock);
1439 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001440 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001442 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001443 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001444
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001445 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001446 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001449EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Neil Horman95c385b2007-04-25 17:08:10 -07001451int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1452 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 struct inet6_dev *idev;
1455 int err = -EADDRNOTAVAIL;
1456
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001457 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001458 idev = __in6_dev_get(dev);
1459 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 struct inet6_ifaddr *ifp;
1461
1462 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001463 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1464 if (ifp->scope == IFA_LINK &&
1465 !(ifp->flags & banned_flags)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001466 *addr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 err = 0;
1468 break;
1469 }
1470 }
1471 read_unlock_bh(&idev->lock);
1472 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001473 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return err;
1475}
1476
1477static int ipv6_count_addresses(struct inet6_dev *idev)
1478{
1479 int cnt = 0;
1480 struct inet6_ifaddr *ifp;
1481
1482 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001483 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 cnt++;
1485 read_unlock_bh(&idev->lock);
1486 return cnt;
1487}
1488
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001489int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001490 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001492 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001493 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
stephen hemminger5c578ae2010-03-17 20:31:11 +00001495 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001496 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001497 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001498 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001500 !(ifp->flags&IFA_F_TENTATIVE) &&
1501 (dev == NULL || ifp->idev->dev == dev ||
1502 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1503 rcu_read_unlock_bh();
1504 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001507
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001508 rcu_read_unlock_bh();
1509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001511EXPORT_SYMBOL(ipv6_chk_addr);
1512
David S. Miller3e81c6d2010-03-20 16:18:00 -07001513static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1514 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001516 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001517 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Sasha Levinb67bfe02013-02-27 17:06:00 -08001519 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001520 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001521 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (ipv6_addr_equal(&ifp->addr, addr)) {
1523 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001524 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001527 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001530int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001531{
1532 struct inet6_dev *idev;
1533 struct inet6_ifaddr *ifa;
1534 int onlink;
1535
1536 onlink = 0;
1537 rcu_read_lock();
1538 idev = __in6_dev_get(dev);
1539 if (idev) {
1540 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001541 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001542 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1543 ifa->prefix_len);
1544 if (onlink)
1545 break;
1546 }
1547 read_unlock_bh(&idev->lock);
1548 }
1549 rcu_read_unlock();
1550 return onlink;
1551}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001552EXPORT_SYMBOL(ipv6_chk_prefix);
1553
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001554struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001555 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
David S. Millerb79d1d52010-03-25 21:39:21 -07001557 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001558 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
stephen hemminger5c578ae2010-03-17 20:31:11 +00001560 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001561 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001562 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001563 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (ipv6_addr_equal(&ifp->addr, addr)) {
1565 if (dev == NULL || ifp->idev->dev == dev ||
1566 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001567 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 in6_ifa_hold(ifp);
1569 break;
1570 }
1571 }
1572 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001573 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
David S. Millerb79d1d52010-03-25 21:39:21 -07001575 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578/* Gets referenced address, destroys ifaddr */
1579
Brian Haleycc411d02009-09-09 14:41:32 +00001580static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (ifp->flags&IFA_F_PERMANENT) {
1583 spin_lock_bh(&ifp->lock);
1584 addrconf_del_timer(ifp);
1585 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001586 if (dad_failed)
1587 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001589 if (dad_failed)
1590 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 in6_ifa_put(ifp);
1592#ifdef CONFIG_IPV6_PRIVACY
1593 } else if (ifp->flags&IFA_F_TEMPORARY) {
1594 struct inet6_ifaddr *ifpub;
1595 spin_lock_bh(&ifp->lock);
1596 ifpub = ifp->ifpub;
1597 if (ifpub) {
1598 in6_ifa_hold(ifpub);
1599 spin_unlock_bh(&ifp->lock);
1600 ipv6_create_tempaddr(ifpub, ifp);
1601 in6_ifa_put(ifpub);
1602 } else {
1603 spin_unlock_bh(&ifp->lock);
1604 }
1605 ipv6_del_addr(ifp);
1606#endif
1607 } else
1608 ipv6_del_addr(ifp);
1609}
1610
Herbert Xuf2344a12010-05-18 15:55:27 -07001611static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1612{
1613 int err = -ENOENT;
1614
1615 spin_lock(&ifp->state_lock);
1616 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1617 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1618 err = 0;
1619 }
1620 spin_unlock(&ifp->state_lock);
1621
1622 return err;
1623}
1624
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001625void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1626{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001627 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001628
Ursula Braun853dc2e2010-10-24 23:06:43 +00001629 if (addrconf_dad_end(ifp)) {
1630 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001631 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001632 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001633
Joe Perchese87cc472012-05-13 21:56:26 +00001634 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1635 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001636
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001637 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1638 struct in6_addr addr;
1639
1640 addr.s6_addr32[0] = htonl(0xfe800000);
1641 addr.s6_addr32[1] = 0;
1642
1643 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1644 ipv6_addr_equal(&ifp->addr, &addr)) {
1645 /* DAD failed for link-local based on MAC address */
1646 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001647
Joe Perchesf3213832012-05-15 14:11:53 +00001648 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001649 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001650 }
1651 }
1652
Brian Haleycc411d02009-09-09 14:41:32 +00001653 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001654}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656/* Join to solicited addr multicast group. */
1657
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001658void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
1660 struct in6_addr maddr;
1661
1662 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1663 return;
1664
1665 addrconf_addr_solict_mult(addr, &maddr);
1666 ipv6_dev_mc_inc(dev, &maddr);
1667}
1668
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001669void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 struct in6_addr maddr;
1672
1673 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1674 return;
1675
1676 addrconf_addr_solict_mult(addr, &maddr);
1677 __ipv6_dev_mc_dec(idev, &maddr);
1678}
1679
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001680static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001683 if (ifp->prefix_len == 127) /* RFC 6164 */
1684 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1686 if (ipv6_addr_any(&addr))
1687 return;
1688 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1689}
1690
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001691static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001694 if (ifp->prefix_len == 127) /* RFC 6164 */
1695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1697 if (ipv6_addr_any(&addr))
1698 return;
1699 __ipv6_dev_ac_dec(ifp->idev, &addr);
1700}
1701
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001702static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1703{
1704 if (dev->addr_len != ETH_ALEN)
1705 return -1;
1706 memcpy(eui, dev->dev_addr, 3);
1707 memcpy(eui + 5, dev->dev_addr + 3, 3);
1708
1709 /*
1710 * The zSeries OSA network cards can be shared among various
1711 * OS instances, but the OSA cards have only one MAC address.
1712 * This leads to duplicate address conflicts in conjunction
1713 * with IPv6 if more than one instance uses the same card.
1714 *
1715 * The driver for these cards can deliver a unique 16-bit
1716 * identifier for each instance sharing the same card. It is
1717 * placed instead of 0xFFFE in the interface identifier. The
1718 * "u" bit of the interface identifier is not inverted in this
1719 * case. Hence the resulting interface identifier has local
1720 * scope according to RFC2373.
1721 */
1722 if (dev->dev_id) {
1723 eui[3] = (dev->dev_id >> 8) & 0xFF;
1724 eui[4] = dev->dev_id & 0xFF;
1725 } else {
1726 eui[3] = 0xFF;
1727 eui[4] = 0xFE;
1728 eui[0] ^= 2;
1729 }
1730 return 0;
1731}
1732
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001733static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1734{
1735 if (dev->addr_len != IEEE802154_ADDR_LEN)
1736 return -1;
1737 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001738 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001739 return 0;
1740}
1741
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001742static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1743{
1744 union fwnet_hwaddr *ha;
1745
1746 if (dev->addr_len != FWNET_ALEN)
1747 return -1;
1748
1749 ha = (union fwnet_hwaddr *)dev->dev_addr;
1750
1751 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1752 eui[0] ^= 2;
1753 return 0;
1754}
1755
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001756static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1757{
1758 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1759 if (dev->addr_len != ARCNET_ALEN)
1760 return -1;
1761 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001762 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001763 return 0;
1764}
1765
1766static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1767{
1768 if (dev->addr_len != INFINIBAND_ALEN)
1769 return -1;
1770 memcpy(eui, dev->dev_addr + 12, 8);
1771 eui[0] |= 2;
1772 return 0;
1773}
1774
stephen hemmingerc61393e2010-10-04 20:17:53 +00001775static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001776{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001777 if (addr == 0)
1778 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001779 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1780 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1781 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1782 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1783 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1784 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1785 eui[1] = 0;
1786 eui[2] = 0x5E;
1787 eui[3] = 0xFE;
1788 memcpy(eui + 4, &addr, 4);
1789 return 0;
1790}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001791
1792static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1793{
1794 if (dev->priv_flags & IFF_ISATAP)
1795 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1796 return -1;
1797}
1798
stephen hemmingeraee80b52011-06-08 10:44:30 +00001799static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1800{
1801 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1802}
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1805{
1806 switch (dev->type) {
1807 case ARPHRD_ETHER:
1808 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001809 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001811 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001813 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001814 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001815 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001816 case ARPHRD_IPGRE:
1817 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001818 case ARPHRD_IEEE802154:
1819 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001820 case ARPHRD_IEEE1394:
1821 return addrconf_ifid_ieee1394(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823 return -1;
1824}
1825
1826static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1827{
1828 int err = -1;
1829 struct inet6_ifaddr *ifp;
1830
1831 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001832 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1834 memcpy(eui, ifp->addr.s6_addr+8, 8);
1835 err = 0;
1836 break;
1837 }
1838 }
1839 read_unlock_bh(&idev->lock);
1840 return err;
1841}
1842
1843#ifdef CONFIG_IPV6_PRIVACY
1844/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001845static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001848 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 /*
1852 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1853 * check if generated address is not inappropriate
1854 *
1855 * - Reserved subnet anycast (RFC 2526)
1856 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001857 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 * 00-00-5E-FE-xx-xx-xx-xx
1859 * - value 0
1860 * - XXX: already assigned to an address on the device
1861 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001862 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1864 (idev->rndid[7]&0x80))
1865 goto regen;
1866 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1867 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1868 goto regen;
1869 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1870 goto regen;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874static void ipv6_regen_rndid(unsigned long data)
1875{
1876 struct inet6_dev *idev = (struct inet6_dev *) data;
1877 unsigned long expires;
1878
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001879 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 write_lock_bh(&idev->lock);
1881
1882 if (idev->dead)
1883 goto out;
1884
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001885 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001888 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001889 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1890 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001892 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1893 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 goto out;
1895 }
1896
1897 if (!mod_timer(&idev->regen_timer, expires))
1898 in6_dev_hold(idev);
1899
1900out:
1901 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001902 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 in6_dev_put(idev);
1904}
1905
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001906static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001907{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001909 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911#endif
1912
1913/*
1914 * Add prefix route.
1915 */
1916
1917static void
1918addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001919 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Thomas Graf86872cb2006-08-22 00:01:08 -07001921 struct fib6_config cfg = {
1922 .fc_table = RT6_TABLE_PREFIX,
1923 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1924 .fc_ifindex = dev->ifindex,
1925 .fc_expires = expires,
1926 .fc_dst_len = plen,
1927 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001928 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001929 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001930 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001932 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 /* Prevent useless cloning on PtP SIT.
1935 This thing is done here expecting that the whole
1936 class of non-broadcast devices need not cloning.
1937 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001938#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001939 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1940 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001941#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Thomas Graf86872cb2006-08-22 00:01:08 -07001943 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001946
1947static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1948 int plen,
1949 const struct net_device *dev,
1950 u32 flags, u32 noflags)
1951{
1952 struct fib6_node *fn;
1953 struct rt6_info *rt = NULL;
1954 struct fib6_table *table;
1955
1956 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1957 if (table == NULL)
1958 return NULL;
1959
Li RongQing5744dd92012-09-11 21:59:01 +00001960 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001961 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1962 if (!fn)
1963 goto out;
1964 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001965 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001966 continue;
1967 if ((rt->rt6i_flags & flags) != flags)
1968 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001969 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001970 continue;
1971 dst_hold(&rt->dst);
1972 break;
1973 }
1974out:
Li RongQing5744dd92012-09-11 21:59:01 +00001975 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001976 return rt;
1977}
1978
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/* Create "default" multicast route to the interface */
1981
1982static void addrconf_add_mroute(struct net_device *dev)
1983{
Thomas Graf86872cb2006-08-22 00:01:08 -07001984 struct fib6_config cfg = {
1985 .fc_table = RT6_TABLE_LOCAL,
1986 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1987 .fc_ifindex = dev->ifindex,
1988 .fc_dst_len = 8,
1989 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001990 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001991 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Thomas Graf86872cb2006-08-22 00:01:08 -07001993 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1994
1995 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Amerigo Wang07a93622012-10-29 16:23:10 +00001998#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999static void sit_route_add(struct net_device *dev)
2000{
Thomas Graf86872cb2006-08-22 00:01:08 -07002001 struct fib6_config cfg = {
2002 .fc_table = RT6_TABLE_MAIN,
2003 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2004 .fc_ifindex = dev->ifindex,
2005 .fc_dst_len = 96,
2006 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002007 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002008 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002011 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002013#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2016{
2017 struct inet6_dev *idev;
2018
2019 ASSERT_RTNL();
2020
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002021 idev = ipv6_find_idev(dev);
2022 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002023 return ERR_PTR(-ENOBUFS);
2024
2025 if (idev->cnf.disable_ipv6)
2026 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002029 if (!(dev->flags & IFF_LOOPBACK))
2030 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return idev;
2033}
2034
Neil Hormane6bff992012-01-04 10:49:15 +00002035void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
2037 struct prefix_info *pinfo;
2038 __u32 valid_lft;
2039 __u32 prefered_lft;
2040 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002042 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (len < sizeof(struct prefix_info)) {
2047 ADBG(("addrconf: prefix option too short\n"));
2048 return;
2049 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 /*
2052 * Validation checks ([ADDRCONF], page 19)
2053 */
2054
2055 addr_type = ipv6_addr_type(&pinfo->prefix);
2056
2057 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2058 return;
2059
2060 valid_lft = ntohl(pinfo->valid);
2061 prefered_lft = ntohl(pinfo->prefered);
2062
2063 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002064 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return;
2066 }
2067
2068 in6_dev = in6_dev_get(dev);
2069
2070 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002071 net_dbg_ratelimited("addrconf: device %s not configured\n",
2072 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return;
2074 }
2075
2076 /*
2077 * Two things going on here:
2078 * 1) Add routes for on-link prefixes
2079 * 2) Configure prefixes with the auto flag set
2080 */
2081
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002082 if (pinfo->onlink) {
2083 struct rt6_info *rt;
2084 unsigned long rt_expires;
2085
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002086 /* Avoid arithmetic overflow. Really, we could
2087 * save rt_expires in seconds, likely valid_lft,
2088 * but it would require division in fib gc, that it
2089 * not good.
2090 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002091 if (HZ > USER_HZ)
2092 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2093 else
2094 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002095
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002096 if (addrconf_finite_timeout(rt_expires))
2097 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002099 rt = addrconf_get_prefix_route(&pinfo->prefix,
2100 pinfo->prefix_len,
2101 dev,
2102 RTF_ADDRCONF | RTF_PREFIX_RT,
2103 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002105 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002106 /* Autoconf prefix route */
2107 if (valid_lft == 0) {
2108 ip6_del_rt(rt);
2109 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002110 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002111 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002112 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002113 } else {
Gao feng1716a962012-04-06 00:13:10 +00002114 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002117 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002118 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2119 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002120 /* not infinity */
2121 flags |= RTF_EXPIRES;
2122 expires = jiffies_to_clock_t(rt_expires);
2123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002125 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002127 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129
2130 /* Try to figure out our local address for this prefix */
2131
2132 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002133 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct in6_addr addr;
2135 int create = 0, update_lft = 0;
2136
2137 if (pinfo->prefix_len == 64) {
2138 memcpy(&addr, &pinfo->prefix, 8);
2139 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2140 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
2141 in6_dev_put(in6_dev);
2142 return;
2143 }
2144 goto ok;
2145 }
Joe Perchese87cc472012-05-13 21:56:26 +00002146 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2147 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 in6_dev_put(in6_dev);
2149 return;
2150
2151ok:
2152
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002153 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 if (ifp == NULL && valid_lft) {
2156 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002157 u32 addr_flags = 0;
2158
2159#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2160 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002161 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002162 addr_flags = IFA_F_OPTIMISTIC;
2163#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 /* Do not allow to create too much of autoconfigured
2166 * addresses; this would be too easy way to crash kernel.
2167 */
2168 if (!max_addresses ||
2169 ipv6_count_addresses(in6_dev) < max_addresses)
2170 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002171 addr_type&IPV6_ADDR_SCOPE_MASK,
2172 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002174 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 in6_dev_put(in6_dev);
2176 return;
2177 }
2178
2179 update_lft = create = 1;
2180 ifp->cstamp = jiffies;
David S. Millercf22f9a2012-04-14 21:37:40 -04002181 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183
2184 if (ifp) {
2185 int flags;
2186 unsigned long now;
2187#ifdef CONFIG_IPV6_PRIVACY
2188 struct inet6_ifaddr *ift;
2189#endif
2190 u32 stored_lft;
2191
2192 /* update lifetime (RFC2462 5.5.3 e) */
2193 spin_lock(&ifp->lock);
2194 now = jiffies;
2195 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2196 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2197 else
2198 stored_lft = 0;
2199 if (!update_lft && stored_lft) {
2200 if (valid_lft > MIN_VALID_LIFETIME ||
2201 valid_lft > stored_lft)
2202 update_lft = 1;
2203 else if (stored_lft <= MIN_VALID_LIFETIME) {
2204 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002205 /*
2206 * RFC 4862 Section 5.5.3e:
2207 * "Note that the preferred lifetime of
2208 * the corresponding address is always
2209 * reset to the Preferred Lifetime in
2210 * the received Prefix Information
2211 * option, regardless of whether the
2212 * valid lifetime is also reset or
2213 * ignored."
2214 *
2215 * So if the preferred lifetime in
2216 * this advertisement is different
2217 * than what we have stored, but the
2218 * valid lifetime is invalid, just
2219 * reset prefered_lft.
2220 *
2221 * We must set the valid lifetime
2222 * to the stored lifetime since we'll
2223 * be updating the timestamp below,
2224 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002225 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002226 */
2227 if (prefered_lft != ifp->prefered_lft) {
2228 valid_lft = stored_lft;
2229 update_lft = 1;
2230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 } else {
2232 valid_lft = MIN_VALID_LIFETIME;
2233 if (valid_lft < prefered_lft)
2234 prefered_lft = valid_lft;
2235 update_lft = 1;
2236 }
2237 }
2238
2239 if (update_lft) {
2240 ifp->valid_lft = valid_lft;
2241 ifp->prefered_lft = prefered_lft;
2242 ifp->tstamp = now;
2243 flags = ifp->flags;
2244 ifp->flags &= ~IFA_F_DEPRECATED;
2245 spin_unlock(&ifp->lock);
2246
2247 if (!(flags&IFA_F_TENTATIVE))
2248 ipv6_ifa_notify(0, ifp);
2249 } else
2250 spin_unlock(&ifp->lock);
2251
2252#ifdef CONFIG_IPV6_PRIVACY
2253 read_lock_bh(&in6_dev->lock);
2254 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002255 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2256 tmp_list) {
2257 int age, max_valid, max_prefered;
2258
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002259 if (ifp != ift->ifpub)
2260 continue;
2261
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002262 /*
2263 * RFC 4941 section 3.3:
2264 * If a received option will extend the lifetime
2265 * of a public address, the lifetimes of
2266 * temporary addresses should be extended,
2267 * subject to the overall constraint that no
2268 * temporary addresses should ever remain
2269 * "valid" or "preferred" for a time longer than
2270 * (TEMP_VALID_LIFETIME) or
2271 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2272 * respectively.
2273 */
2274 age = (now - ift->cstamp) / HZ;
2275 max_valid = in6_dev->cnf.temp_valid_lft - age;
2276 if (max_valid < 0)
2277 max_valid = 0;
2278
2279 max_prefered = in6_dev->cnf.temp_prefered_lft -
2280 in6_dev->cnf.max_desync_factor -
2281 age;
2282 if (max_prefered < 0)
2283 max_prefered = 0;
2284
2285 if (valid_lft > max_valid)
2286 valid_lft = max_valid;
2287
2288 if (prefered_lft > max_prefered)
2289 prefered_lft = max_prefered;
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 spin_lock(&ift->lock);
2292 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002293 ift->valid_lft = valid_lft;
2294 ift->prefered_lft = prefered_lft;
2295 ift->tstamp = now;
2296 if (prefered_lft > 0)
2297 ift->flags &= ~IFA_F_DEPRECATED;
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 spin_unlock(&ift->lock);
2300 if (!(flags&IFA_F_TENTATIVE))
2301 ipv6_ifa_notify(0, ift);
2302 }
2303
Glenn Wursteraed65502010-09-27 07:04:30 +00002304 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002306 * When a new public address is created as
2307 * described in [ADDRCONF], also create a new
2308 * temporary address. Also create a temporary
2309 * address if it's enabled but no temporary
2310 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002312 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 ipv6_create_tempaddr(ifp, NULL);
2314 } else {
2315 read_unlock_bh(&in6_dev->lock);
2316 }
2317#endif
2318 in6_ifa_put(ifp);
2319 addrconf_verify(0);
2320 }
2321 }
2322 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2323 in6_dev_put(in6_dev);
2324}
2325
2326/*
2327 * Set destination address.
2328 * Special case for SIT interfaces where we create a new "virtual"
2329 * device.
2330 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002331int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332{
2333 struct in6_ifreq ireq;
2334 struct net_device *dev;
2335 int err = -EINVAL;
2336
2337 rtnl_lock();
2338
2339 err = -EFAULT;
2340 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2341 goto err_exit;
2342
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002343 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 err = -ENODEV;
2346 if (dev == NULL)
2347 goto err_exit;
2348
Amerigo Wang07a93622012-10-29 16:23:10 +00002349#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002351 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 struct ip_tunnel_parm p;
2354
2355 err = -EADDRNOTAVAIL;
2356 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2357 goto err_exit;
2358
2359 memset(&p, 0, sizeof(p));
2360 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2361 p.iph.saddr = 0;
2362 p.iph.version = 4;
2363 p.iph.ihl = 5;
2364 p.iph.protocol = IPPROTO_IPV6;
2365 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002366 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002368 if (ops->ndo_do_ioctl) {
2369 mm_segment_t oldfs = get_fs();
2370
2371 set_fs(KERNEL_DS);
2372 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2373 set_fs(oldfs);
2374 } else
2375 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 if (err == 0) {
2378 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002379 dev = __dev_get_by_name(net, p.name);
2380 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 goto err_exit;
2382 err = dev_open(dev);
2383 }
2384 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002385#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387err_exit:
2388 rtnl_unlock();
2389 return err;
2390}
2391
2392/*
2393 * Manual configuration of address on an interface
2394 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002395static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002396 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002397 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
2399 struct inet6_ifaddr *ifp;
2400 struct inet6_dev *idev;
2401 struct net_device *dev;
2402 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002403 u32 flags;
2404 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002405 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002408
Thomas Graf24ef0da2008-05-28 16:54:22 +02002409 if (plen > 128)
2410 return -EINVAL;
2411
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002412 /* check the lifetime */
2413 if (!valid_lft || prefered_lft > valid_lft)
2414 return -EINVAL;
2415
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002416 dev = __dev_get_by_index(net, ifindex);
2417 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002419
Brian Haley64e724f2010-07-20 10:34:30 +00002420 idev = addrconf_add_dev(dev);
2421 if (IS_ERR(idev))
2422 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 scope = ipv6_addr_scope(pfx);
2425
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002426 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2427 if (addrconf_finite_timeout(timeout)) {
2428 expires = jiffies_to_clock_t(timeout * HZ);
2429 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002430 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002431 } else {
2432 expires = 0;
2433 flags = 0;
2434 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002435 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002436
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002437 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2438 if (addrconf_finite_timeout(timeout)) {
2439 if (timeout == 0)
2440 ifa_flags |= IFA_F_DEPRECATED;
2441 prefered_lft = timeout;
2442 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002443
2444 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07002447 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002448 ifp->valid_lft = valid_lft;
2449 ifp->prefered_lft = prefered_lft;
2450 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07002451 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002452
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002453 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002454 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002455 /*
2456 * Note that section 3.1 of RFC 4429 indicates
2457 * that the Optimistic flag should not be set for
2458 * manually configured addresses
2459 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002460 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002462 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
2464 }
2465
2466 return PTR_ERR(ifp);
2467}
2468
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002469static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002470 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 struct inet6_ifaddr *ifp;
2473 struct inet6_dev *idev;
2474 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002475
Thomas Graf24ef0da2008-05-28 16:54:22 +02002476 if (plen > 128)
2477 return -EINVAL;
2478
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002479 dev = __dev_get_by_index(net, ifindex);
2480 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 return -ENODEV;
2482
2483 if ((idev = __in6_dev_get(dev)) == NULL)
2484 return -ENXIO;
2485
2486 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002487 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (ifp->prefix_len == plen &&
2489 ipv6_addr_equal(pfx, &ifp->addr)) {
2490 in6_ifa_hold(ifp);
2491 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 ipv6_del_addr(ifp);
2494
2495 /* If the last address is deleted administratively,
2496 disable IPv6 on this interface.
2497 */
stephen hemminger502a2ff2010-03-17 20:31:13 +00002498 if (list_empty(&idev->addr_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 addrconf_ifdown(idev->dev, 1);
2500 return 0;
2501 }
2502 }
2503 read_unlock_bh(&idev->lock);
2504 return -EADDRNOTAVAIL;
2505}
2506
2507
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002508int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
2510 struct in6_ifreq ireq;
2511 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002512
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002513 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002515
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2517 return -EFAULT;
2518
2519 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002520 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2521 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2522 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 rtnl_unlock();
2524 return err;
2525}
2526
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002527int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528{
2529 struct in6_ifreq ireq;
2530 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002531
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002532 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 return -EPERM;
2534
2535 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2536 return -EFAULT;
2537
2538 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002539 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2540 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 rtnl_unlock();
2542 return err;
2543}
2544
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002545static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2546 int plen, int scope)
2547{
2548 struct inet6_ifaddr *ifp;
2549
2550 ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
2551 if (!IS_ERR(ifp)) {
2552 spin_lock_bh(&ifp->lock);
2553 ifp->flags &= ~IFA_F_TENTATIVE;
2554 spin_unlock_bh(&ifp->lock);
2555 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2556 in6_ifa_put(ifp);
2557 }
2558}
2559
Amerigo Wang07a93622012-10-29 16:23:10 +00002560#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561static void sit_add_v4_addrs(struct inet6_dev *idev)
2562{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 struct in6_addr addr;
2564 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002565 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 int scope;
2567
2568 ASSERT_RTNL();
2569
2570 memset(&addr, 0, sizeof(struct in6_addr));
2571 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2572
2573 if (idev->dev->flags&IFF_POINTOPOINT) {
2574 addr.s6_addr32[0] = htonl(0xfe800000);
2575 scope = IFA_LINK;
2576 } else {
2577 scope = IPV6_ADDR_COMPATv4;
2578 }
2579
2580 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002581 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 return;
2583 }
2584
Benjamin Thery6fda7352008-03-05 10:47:47 -08002585 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002586 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002588 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590 int flag = scope;
2591
2592 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2593 int plen;
2594
2595 addr.s6_addr32[3] = ifa->ifa_local;
2596
2597 if (ifa->ifa_scope == RT_SCOPE_LINK)
2598 continue;
2599 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2600 if (idev->dev->flags&IFF_POINTOPOINT)
2601 continue;
2602 flag |= IFA_HOST;
2603 }
2604 if (idev->dev->flags&IFF_POINTOPOINT)
2605 plen = 64;
2606 else
2607 plen = 96;
2608
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002609 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002614#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616static void init_loopback(struct net_device *dev)
2617{
2618 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
2620 /* ::1 */
2621
2622 ASSERT_RTNL();
2623
2624 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002625 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 return;
2627 }
2628
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002629 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002632static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002634 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002635 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Neil Horman95c385b2007-04-25 17:08:10 -07002637#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2638 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002639 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002640 addr_flags |= IFA_F_OPTIMISTIC;
2641#endif
2642
2643
2644 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002646 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002647 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 in6_ifa_put(ifp);
2649 }
2650}
2651
2652static void addrconf_dev_config(struct net_device *dev)
2653{
2654 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002655 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 ASSERT_RTNL();
2658
Herbert Xu74235a22007-06-14 13:02:55 -07002659 if ((dev->type != ARPHRD_ETHER) &&
2660 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002661 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002662 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002663 (dev->type != ARPHRD_IEEE802154) &&
2664 (dev->type != ARPHRD_IEEE1394)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002665 /* Alas, we support only Ethernet autoconfiguration. */
2666 return;
2667 }
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002670 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 return;
2672
2673 memset(&addr, 0, sizeof(struct in6_addr));
2674 addr.s6_addr32[0] = htonl(0xFE800000);
2675
2676 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2677 addrconf_add_linklocal(idev, &addr);
2678}
2679
Amerigo Wang07a93622012-10-29 16:23:10 +00002680#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681static void addrconf_sit_config(struct net_device *dev)
2682{
2683 struct inet6_dev *idev;
2684
2685 ASSERT_RTNL();
2686
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002687 /*
2688 * Configure the tunnel with one of our IPv4
2689 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 * our v4 addrs in the tunnel
2691 */
2692
2693 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002694 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 return;
2696 }
2697
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002698 if (dev->priv_flags & IFF_ISATAP) {
2699 struct in6_addr addr;
2700
2701 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2702 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2703 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2704 addrconf_add_linklocal(idev, &addr);
2705 return;
2706 }
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 sit_add_v4_addrs(idev);
2709
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002710 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002712 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 sit_route_add(dev);
2714}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002715#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Amerigo Wang07a93622012-10-29 16:23:10 +00002717#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002718static void addrconf_gre_config(struct net_device *dev)
2719{
2720 struct inet6_dev *idev;
2721 struct in6_addr addr;
2722
Joe Perchesf3213832012-05-15 14:11:53 +00002723 pr_info("%s(%s)\n", __func__, dev->name);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002724
2725 ASSERT_RTNL();
2726
2727 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002728 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002729 return;
2730 }
2731
2732 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2733 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2734
2735 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2736 addrconf_add_linklocal(idev, &addr);
2737}
2738#endif
2739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740static inline int
2741ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2742{
2743 struct in6_addr lladdr;
2744
Neil Horman95c385b2007-04-25 17:08:10 -07002745 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 addrconf_add_linklocal(idev, &lladdr);
2747 return 0;
2748 }
2749 return -1;
2750}
2751
2752static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2753{
2754 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002755 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
2757 /* first try to inherit the link-local address from the link device */
2758 if (idev->dev->iflink &&
Benjamin Thery6fda7352008-03-05 10:47:47 -08002759 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 if (!ipv6_inherit_linklocal(idev, link_dev))
2761 return;
2762 }
2763 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002764 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 if (!ipv6_inherit_linklocal(idev, link_dev))
2766 return;
2767 }
Joe Perches91df42b2012-05-15 14:11:54 +00002768 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769}
2770
2771/*
2772 * Autoconfigure tunnel with a link-local address so routing protocols,
2773 * DHCPv6, MLD etc. can be run over the virtual link
2774 */
2775
2776static void addrconf_ip6_tnl_config(struct net_device *dev)
2777{
2778 struct inet6_dev *idev;
2779
2780 ASSERT_RTNL();
2781
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002782 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002783 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002784 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return;
2786 }
2787 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788}
2789
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002790static int addrconf_notify(struct notifier_block *this, unsigned long event,
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002791 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792{
2793 struct net_device *dev = (struct net_device *) data;
Eric Dumazet748e2d92012-08-22 21:50:59 +00002794 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002795 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002796 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002798 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002799 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002800 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002801 idev = ipv6_add_dev(dev);
2802 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002803 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002804 }
2805 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002808 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002809 if (dev->flags & IFF_SLAVE)
2810 break;
2811
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002812 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002813 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002814 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002815 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002816 dev->name);
2817 break;
2818 }
Kristian Slavov99081042006-02-08 16:10:53 -08002819
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002820 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2821 idev = ipv6_add_dev(dev);
2822
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002823 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002824 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002825 run_pending = 1;
2826 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002827 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002828 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002829 /* device is still not ready. */
2830 break;
2831 }
2832
2833 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002834 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002835 /* device is already configured. */
2836 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002837 idev->if_flags |= IF_READY;
2838 }
2839
Joe Perchesf3213832012-05-15 14:11:53 +00002840 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2841 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002842
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002843 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002844 }
2845
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002846 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002847#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 case ARPHRD_SIT:
2849 addrconf_sit_config(dev);
2850 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002851#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002852#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002853 case ARPHRD_IPGRE:
2854 addrconf_gre_config(dev);
2855 break;
2856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 case ARPHRD_TUNNEL6:
2858 addrconf_ip6_tnl_config(dev);
2859 break;
2860 case ARPHRD_LOOPBACK:
2861 init_loopback(dev);
2862 break;
2863
2864 default:
2865 addrconf_dev_config(dev);
2866 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002867 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002870 if (run_pending)
2871 addrconf_dad_run(idev);
2872
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002873 /*
2874 * If the MTU changed during the interface down,
2875 * when the interface up, the changed MTU must be
2876 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002878 if (idev->cnf.mtu6 != dev->mtu &&
2879 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 rt6_mtu_change(dev, dev->mtu);
2881 idev->cnf.mtu6 = dev->mtu;
2882 }
2883 idev->tstamp = jiffies;
2884 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002885
2886 /*
2887 * If the changed mtu during down is lower than
2888 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 */
2890 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002891 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 }
2893 break;
2894
2895 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002896 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 rt6_mtu_change(dev, dev->mtu);
2898 idev->cnf.mtu6 = dev->mtu;
2899 break;
2900 }
2901
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002902 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2903 idev = ipv6_add_dev(dev);
2904 if (idev)
2905 break;
2906 }
2907
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002908 /*
2909 * MTU falled under IPV6_MIN_MTU.
2910 * Stop IPv6 on this interface.
2911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 case NETDEV_DOWN:
2914 case NETDEV_UNREGISTER:
2915 /*
2916 * Remove all addresses from this interface.
2917 */
2918 addrconf_ifdown(dev, event != NETDEV_DOWN);
2919 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002923 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002924 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002925 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002926 err = snmp6_register_dev(idev);
2927 if (err)
2928 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002931
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002932 case NETDEV_PRE_TYPE_CHANGE:
2933 case NETDEV_POST_TYPE_CHANGE:
2934 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002935 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
2938 return NOTIFY_OK;
2939}
2940
2941/*
2942 * addrconf module should be notified of a device going up
2943 */
2944static struct notifier_block ipv6_dev_notf = {
2945 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946};
2947
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002948static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002949{
2950 struct inet6_dev *idev;
2951 ASSERT_RTNL();
2952
2953 idev = __in6_dev_get(dev);
2954
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002955 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002956 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002957 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002958 ipv6_mc_unmap(idev);
2959}
2960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961static int addrconf_ifdown(struct net_device *dev, int how)
2962{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002963 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002964 struct inet6_dev *idev;
2965 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002966 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968 ASSERT_RTNL();
2969
David S. Miller73a8bd72011-01-23 23:27:15 -08002970 rt6_ifdown(net, dev);
2971 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973 idev = __in6_dev_get(dev);
2974 if (idev == NULL)
2975 return -ENODEV;
2976
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002977 /*
2978 * Step 1: remove reference to ipv6 device from parent device.
2979 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002981 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002983
2984 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002985 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987 /* Step 1.5: remove snmp6 entry */
2988 snmp6_unregister_dev(idev);
2989
2990 }
2991
David S. Miller73a8bd72011-01-23 23:27:15 -08002992 /* Step 2: clear hash table */
2993 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2994 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002995
2996 spin_lock_bh(&addrconf_hash_lock);
2997 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002998 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08002999 if (ifa->idev == idev) {
3000 hlist_del_init_rcu(&ifa->addr_lst);
3001 addrconf_del_timer(ifa);
3002 goto restart;
3003 }
3004 }
3005 spin_unlock_bh(&addrconf_hash_lock);
3006 }
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 write_lock_bh(&idev->lock);
3009
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003010 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003011 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003012 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003015 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 in6_dev_put(idev);
3017
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003018 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003019 while (!list_empty(&idev->tempaddr_list)) {
3020 ifa = list_first_entry(&idev->tempaddr_list,
3021 struct inet6_ifaddr, tmp_list);
3022 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 write_unlock_bh(&idev->lock);
3024 spin_lock_bh(&ifa->lock);
3025
3026 if (ifa->ifpub) {
3027 in6_ifa_put(ifa->ifpub);
3028 ifa->ifpub = NULL;
3029 }
3030 spin_unlock_bh(&ifa->lock);
3031 in6_ifa_put(ifa);
3032 write_lock_bh(&idev->lock);
3033 }
3034#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003035
stephen hemminger502a2ff2010-03-17 20:31:13 +00003036 while (!list_empty(&idev->addr_list)) {
3037 ifa = list_first_entry(&idev->addr_list,
3038 struct inet6_ifaddr, if_list);
stephen hemminger84e8b802010-03-02 13:32:46 +00003039 addrconf_del_timer(ifa);
3040
David S. Miller73a8bd72011-01-23 23:27:15 -08003041 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
David S. Miller73a8bd72011-01-23 23:27:15 -08003043 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003044
David S. Miller73a8bd72011-01-23 23:27:15 -08003045 spin_lock_bh(&ifa->state_lock);
3046 state = ifa->state;
3047 ifa->state = INET6_IFADDR_STATE_DEAD;
3048 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003049
David S. Miller73a8bd72011-01-23 23:27:15 -08003050 if (state != INET6_IFADDR_STATE_DEAD) {
3051 __ipv6_ifa_notify(RTM_DELADDR, ifa);
3052 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003053 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003054 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003055
David S. Miller73a8bd72011-01-23 23:27:15 -08003056 write_lock_bh(&idev->lock);
3057 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 write_unlock_bh(&idev->lock);
3060
3061 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003062 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 ipv6_mc_destroy_dev(idev);
3064 else
3065 ipv6_mc_down(idev);
3066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003068
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003069 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003070 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003071 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 neigh_parms_release(&nd_tbl, idev->nd_parms);
3073 neigh_ifdown(&nd_tbl, dev);
3074 in6_dev_put(idev);
3075 }
3076 return 0;
3077}
3078
3079static void addrconf_rs_timer(unsigned long data)
3080{
3081 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003082 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
stephen hemminger5b2a1952010-03-02 13:32:45 +00003084 read_lock(&idev->lock);
3085 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 goto out;
3087
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003088 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003090
3091 /* Announcement received after solicitation was sent */
3092 if (idev->if_flags & IF_RA_RCVD)
3093 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 spin_lock(&ifp->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003096 if (ifp->probes++ < idev->cnf.rtr_solicits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 /* The wait after the last probe can be shorter */
3098 addrconf_mod_timer(ifp, AC_RS,
stephen hemminger5b2a1952010-03-02 13:32:45 +00003099 (ifp->probes == idev->cnf.rtr_solicits) ?
3100 idev->cnf.rtr_solicit_delay :
3101 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 spin_unlock(&ifp->lock);
3103
stephen hemminger5b2a1952010-03-02 13:32:45 +00003104 ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 } else {
3106 spin_unlock(&ifp->lock);
3107 /*
3108 * Note: we do not support deprecated "all on-link"
3109 * assumption any longer.
3110 */
Joe Perches91df42b2012-05-15 14:11:54 +00003111 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 }
3113
3114out:
stephen hemminger5b2a1952010-03-02 13:32:45 +00003115 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 in6_ifa_put(ifp);
3117}
3118
3119/*
3120 * Duplicate Address Detection
3121 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003122static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3123{
3124 unsigned long rand_num;
3125 struct inet6_dev *idev = ifp->idev;
3126
Neil Horman95c385b2007-04-25 17:08:10 -07003127 if (ifp->flags & IFA_F_OPTIMISTIC)
3128 rand_num = 0;
3129 else
3130 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3131
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003132 ifp->probes = idev->cnf.dad_transmits;
3133 addrconf_mod_timer(ifp, AC_DAD, rand_num);
3134}
3135
David S. Millercf22f9a2012-04-14 21:37:40 -04003136static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
3138 struct inet6_dev *idev = ifp->idev;
3139 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
3141 addrconf_join_solict(dev, &ifp->addr);
3142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003146 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003147 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003151 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003152 !(ifp->flags&IFA_F_TENTATIVE) ||
3153 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003154 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003155 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 read_unlock_bh(&idev->lock);
3157
3158 addrconf_dad_completed(ifp);
3159 return;
3160 }
3161
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003162 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003163 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003164 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003165 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003166 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003167 * - keep it tentative if it is a permanent address.
3168 * - otherwise, kill it.
3169 */
3170 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003171 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003172 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003173 }
Neil Horman95c385b2007-04-25 17:08:10 -07003174
3175 /*
3176 * Optimistic nodes can start receiving
3177 * Frames right away
3178 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003179 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003180 ip6_ins_rt(ifp->rt);
3181
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003182 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003184 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 read_unlock_bh(&idev->lock);
3186}
3187
3188static void addrconf_dad_timer(unsigned long data)
3189{
3190 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3191 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 struct in6_addr mcaddr;
3193
Herbert Xuf2344a12010-05-18 15:55:27 -07003194 if (!ifp->probes && addrconf_dad_end(ifp))
3195 goto out;
3196
stephen hemminger122e4512010-03-02 13:32:44 +00003197 read_lock(&idev->lock);
3198 if (idev->dead || !(idev->if_flags & IF_READY)) {
3199 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 goto out;
3201 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003202
3203 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003204 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3205 spin_unlock(&ifp->lock);
3206 read_unlock(&idev->lock);
3207 goto out;
3208 }
3209
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 if (ifp->probes == 0) {
3211 /*
3212 * DAD was successful
3213 */
3214
Brian Haleycc411d02009-09-09 14:41:32 +00003215 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003216 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003217 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219 addrconf_dad_completed(ifp);
3220
3221 goto out;
3222 }
3223
3224 ifp->probes--;
3225 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003226 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003227 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003231 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232out:
3233 in6_ifa_put(ifp);
3234}
3235
3236static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3237{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003238 struct net_device *dev = ifp->idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240 /*
3241 * Configure the address for reception. Now it is valid.
3242 */
3243
3244 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3245
Tore Anderson026359b2011-08-28 23:47:33 +00003246 /* If added prefix is link local and we are prepared to process
3247 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 */
3249
Shmulik Ladkaniaeaf6e92012-11-30 10:25:59 +00003250 if (ipv6_accept_ra(ifp->idev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 ifp->idev->cnf.rtr_solicits > 0 &&
3252 (dev->flags&IFF_LOOPBACK) == 0 &&
3253 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 /*
3255 * If a host as already performed a random delay
3256 * [...] as part of DAD [...] there is no need
3257 * to delay again before sending the first RS
3258 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09003259 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261 spin_lock_bh(&ifp->lock);
3262 ifp->probes = 1;
3263 ifp->idev->if_flags |= IF_RS_SENT;
3264 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
3265 spin_unlock_bh(&ifp->lock);
3266 }
3267}
3268
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003269static void addrconf_dad_run(struct inet6_dev *idev)
3270{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003271 struct inet6_ifaddr *ifp;
3272
3273 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003274 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003275 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003276 if (ifp->flags & IFA_F_TENTATIVE &&
3277 ifp->state == INET6_IFADDR_STATE_DAD)
3278 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003279 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003280 }
3281 read_unlock_bh(&idev->lock);
3282}
3283
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284#ifdef CONFIG_PROC_FS
3285struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003286 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003288 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289};
3290
Mihai Maruseac1d578302012-01-03 23:31:35 +00003291static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292{
3293 struct inet6_ifaddr *ifa = NULL;
3294 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003295 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003296 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Mihai Maruseac1d578302012-01-03 23:31:35 +00003298 /* initial bucket if pos is 0 */
3299 if (pos == 0) {
3300 state->bucket = 0;
3301 state->offset = 0;
3302 }
3303
3304 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003305 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003306 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003307 if (!net_eq(dev_net(ifa->idev->dev), net))
3308 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003309 /* sync with offset */
3310 if (p < state->offset) {
3311 p++;
3312 continue;
3313 }
3314 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003315 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003316 }
3317
3318 /* prepare for next bucket */
3319 state->offset = 0;
3320 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003322 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
stephen hemmingerc2e21292010-03-17 20:31:10 +00003325static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3326 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327{
3328 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003329 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Sasha Levinb67bfe02013-02-27 17:06:00 -08003331 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003332 if (!net_eq(dev_net(ifa->idev->dev), net))
3333 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003334 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003335 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003336 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003337
3338 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003339 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003340 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003341 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003342 if (!net_eq(dev_net(ifa->idev->dev), net))
3343 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003344 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003345 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003346 }
3347 }
3348
stephen hemmingerc2e21292010-03-17 20:31:10 +00003349 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350}
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003353 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003355 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003356 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
3359static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3360{
3361 struct inet6_ifaddr *ifa;
3362
3363 ifa = if6_get_next(seq, v);
3364 ++*pos;
3365 return ifa;
3366}
3367
3368static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003369 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003371 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372}
3373
3374static int if6_seq_show(struct seq_file *seq, void *v)
3375{
3376 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003377 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003378 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 ifp->idev->dev->ifindex,
3380 ifp->prefix_len,
3381 ifp->scope,
3382 ifp->flags,
3383 ifp->idev->dev->name);
3384 return 0;
3385}
3386
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003387static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 .start = if6_seq_start,
3389 .next = if6_seq_next,
3390 .show = if6_seq_show,
3391 .stop = if6_seq_stop,
3392};
3393
3394static int if6_seq_open(struct inode *inode, struct file *file)
3395{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003396 return seq_open_net(inode, file, &if6_seq_ops,
3397 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398}
3399
Arjan van de Ven9a321442007-02-12 00:55:35 -08003400static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 .owner = THIS_MODULE,
3402 .open = if6_seq_open,
3403 .read = seq_read,
3404 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003405 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406};
3407
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003408static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409{
Gao fengd4beaa62013-02-18 01:34:54 +00003410 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 return -ENOMEM;
3412 return 0;
3413}
3414
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003415static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003416{
Gao fengece31ff2013-02-18 01:34:56 +00003417 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003418}
3419
3420static struct pernet_operations if6_proc_net_ops = {
3421 .init = if6_proc_net_init,
3422 .exit = if6_proc_net_exit,
3423};
3424
3425int __init if6_proc_init(void)
3426{
3427 return register_pernet_subsys(&if6_proc_net_ops);
3428}
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430void if6_proc_exit(void)
3431{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003432 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433}
3434#endif /* CONFIG_PROC_FS */
3435
Amerigo Wang07a93622012-10-29 16:23:10 +00003436#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003437/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003438int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003439{
3440 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003441 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003442 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003443
stephen hemminger5c578ae2010-03-17 20:31:11 +00003444 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003445 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003446 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003447 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003448 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003449 (ifp->flags & IFA_F_HOMEADDRESS)) {
3450 ret = 1;
3451 break;
3452 }
3453 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003454 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003455 return ret;
3456}
3457#endif
3458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459/*
3460 * Periodic address status verification
3461 */
3462
3463static void addrconf_verify(unsigned long foo)
3464{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003465 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 int i;
3468
stephen hemminger5c578ae2010-03-17 20:31:11 +00003469 rcu_read_lock_bh();
3470 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003472 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
3474 del_timer(&addr_chk_timer);
3475
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003476 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003478 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003479 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482 if (ifp->flags & IFA_F_PERMANENT)
3483 continue;
3484
3485 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003486 /* We try to batch several events at once. */
3487 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003489 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3490 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 spin_unlock(&ifp->lock);
3492 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 ipv6_del_addr(ifp);
3494 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003495 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3496 spin_unlock(&ifp->lock);
3497 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003499 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 int deprecate = 0;
3501
3502 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3503 deprecate = 1;
3504 ifp->flags |= IFA_F_DEPRECATED;
3505 }
3506
3507 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3508 next = ifp->tstamp + ifp->valid_lft * HZ;
3509
3510 spin_unlock(&ifp->lock);
3511
3512 if (deprecate) {
3513 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
3515 ipv6_ifa_notify(0, ifp);
3516 in6_ifa_put(ifp);
3517 goto restart;
3518 }
3519#ifdef CONFIG_IPV6_PRIVACY
3520 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3521 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003522 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3523 ifp->idev->cnf.dad_transmits *
3524 ifp->idev->nd_parms->retrans_time / HZ;
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 if (age >= ifp->prefered_lft - regen_advance) {
3527 struct inet6_ifaddr *ifpub = ifp->ifpub;
3528 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3529 next = ifp->tstamp + ifp->prefered_lft * HZ;
3530 if (!ifp->regen_count && ifpub) {
3531 ifp->regen_count++;
3532 in6_ifa_hold(ifp);
3533 in6_ifa_hold(ifpub);
3534 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003535
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003536 spin_lock(&ifpub->lock);
3537 ifpub->regen_count = 0;
3538 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 ipv6_create_tempaddr(ifpub, ifp);
3540 in6_ifa_put(ifpub);
3541 in6_ifa_put(ifp);
3542 goto restart;
3543 }
3544 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3545 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3546 spin_unlock(&ifp->lock);
3547#endif
3548 } else {
3549 /* ifp->prefered_lft <= ifp->valid_lft */
3550 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3551 next = ifp->tstamp + ifp->prefered_lft * HZ;
3552 spin_unlock(&ifp->lock);
3553 }
3554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
3556
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003557 next_sec = round_jiffies_up(next);
3558 next_sched = next;
3559
3560 /* If rounded timeout is accurate enough, accept it. */
3561 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3562 next_sched = next_sec;
3563
3564 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3565 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3566 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3567
3568 ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3569 now, next, next_sec, next_sched));
3570
3571 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003573 spin_unlock(&addrconf_verify_lock);
3574 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575}
3576
Thomas Graf461d8832006-09-18 00:09:49 -07003577static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3578{
3579 struct in6_addr *pfx = NULL;
3580
3581 if (addr)
3582 pfx = nla_data(addr);
3583
3584 if (local) {
3585 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3586 pfx = NULL;
3587 else
3588 pfx = nla_data(local);
3589 }
3590
3591 return pfx;
3592}
3593
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003594static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003595 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3596 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3597 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3598};
3599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600static int
Thomas Graf661d2962013-03-21 07:45:29 +00003601inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003603 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003604 struct ifaddrmsg *ifm;
3605 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003607 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Thomas Grafb933f712006-09-18 00:10:19 -07003609 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3610 if (err < 0)
3611 return err;
3612
3613 ifm = nlmsg_data(nlh);
3614 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 if (pfx == NULL)
3616 return -EINVAL;
3617
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003618 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619}
3620
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003621static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3622 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003623{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003624 u32 flags;
3625 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003626 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003627
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003628 if (!valid_lft || (prefered_lft > valid_lft))
3629 return -EINVAL;
3630
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003631 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3632 if (addrconf_finite_timeout(timeout)) {
3633 expires = jiffies_to_clock_t(timeout * HZ);
3634 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003635 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003636 } else {
3637 expires = 0;
3638 flags = 0;
3639 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003640 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003641
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003642 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3643 if (addrconf_finite_timeout(timeout)) {
3644 if (timeout == 0)
3645 ifa_flags |= IFA_F_DEPRECATED;
3646 prefered_lft = timeout;
3647 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003648
3649 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003650 ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003651 ifp->tstamp = jiffies;
3652 ifp->valid_lft = valid_lft;
3653 ifp->prefered_lft = prefered_lft;
3654
3655 spin_unlock_bh(&ifp->lock);
3656 if (!(ifp->flags&IFA_F_TENTATIVE))
3657 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003658
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003659 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003660 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003661 addrconf_verify(0);
3662
3663 return 0;
3664}
3665
3666static int
Thomas Graf661d2962013-03-21 07:45:29 +00003667inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003669 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003670 struct ifaddrmsg *ifm;
3671 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003673 struct inet6_ifaddr *ifa;
3674 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003675 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3676 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003677 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Thomas Graf461d8832006-09-18 00:09:49 -07003679 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3680 if (err < 0)
3681 return err;
3682
3683 ifm = nlmsg_data(nlh);
3684 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 if (pfx == NULL)
3686 return -EINVAL;
3687
Thomas Graf461d8832006-09-18 00:09:49 -07003688 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003689 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003690
3691 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003692 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003693 preferred_lft = ci->ifa_prefered;
3694 } else {
3695 preferred_lft = INFINITY_LIFE_TIME;
3696 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003697 }
3698
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003699 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003700 if (dev == NULL)
3701 return -ENODEV;
3702
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003703 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003704 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003705
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003706 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003707 if (ifa == NULL) {
3708 /*
3709 * It would be best to check for !NLM_F_CREATE here but
3710 * userspace alreay relies on not having to provide this.
3711 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003712 return inet6_addr_add(net, ifm->ifa_index, pfx,
3713 ifm->ifa_prefixlen, ifa_flags,
3714 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003715 }
3716
Thomas Graf7198f8c2006-09-18 00:13:46 -07003717 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3718 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3719 err = -EEXIST;
3720 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003721 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003722
3723 in6_ifa_put(ifa);
3724
3725 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726}
3727
Thomas Graf101bb222006-09-18 00:11:52 -07003728static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3729 u8 scope, int ifindex)
3730{
3731 struct ifaddrmsg *ifm;
3732
3733 ifm = nlmsg_data(nlh);
3734 ifm->ifa_family = AF_INET6;
3735 ifm->ifa_prefixlen = prefixlen;
3736 ifm->ifa_flags = flags;
3737 ifm->ifa_scope = scope;
3738 ifm->ifa_index = ifindex;
3739}
3740
Thomas Graf85486af2006-09-18 00:11:24 -07003741static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3742 unsigned long tstamp, u32 preferred, u32 valid)
3743{
3744 struct ifa_cacheinfo ci;
3745
Thomas Graf18a31e12010-11-17 04:12:02 +00003746 ci.cstamp = cstamp_delta(cstamp);
3747 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003748 ci.ifa_prefered = preferred;
3749 ci.ifa_valid = valid;
3750
3751 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3752}
3753
Thomas Graf101bb222006-09-18 00:11:52 -07003754static inline int rt_scope(int ifa_scope)
3755{
3756 if (ifa_scope & IFA_HOST)
3757 return RT_SCOPE_HOST;
3758 else if (ifa_scope & IFA_LINK)
3759 return RT_SCOPE_LINK;
3760 else if (ifa_scope & IFA_SITE)
3761 return RT_SCOPE_SITE;
3762 else
3763 return RT_SCOPE_UNIVERSE;
3764}
3765
Thomas Graf0ab68032006-09-18 00:12:35 -07003766static inline int inet6_ifaddr_msgsize(void)
3767{
Thomas Graf339bf982006-11-10 14:10:15 -08003768 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3769 + nla_total_size(16) /* IFA_ADDRESS */
3770 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003771}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003774 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003777 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
Eric W. Biederman15e47302012-09-07 20:12:54 +00003779 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003780 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003781 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003782
Thomas Graf101bb222006-09-18 00:11:52 -07003783 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3784 ifa->idev->dev->ifindex);
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003787 preferred = ifa->prefered_lft;
3788 valid = ifa->valid_lft;
3789 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003791 if (preferred > tval)
3792 preferred -= tval;
3793 else
3794 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003795 if (valid != INFINITY_LIFE_TIME) {
3796 if (valid > tval)
3797 valid -= tval;
3798 else
3799 valid = 0;
3800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 }
3802 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003803 preferred = INFINITY_LIFE_TIME;
3804 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 }
Thomas Graf85486af2006-09-18 00:11:24 -07003806
Thomas Graf0ab68032006-09-18 00:12:35 -07003807 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003808 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3809 nlmsg_cancel(skb, nlh);
3810 return -EMSGSIZE;
3811 }
Thomas Graf85486af2006-09-18 00:11:24 -07003812
Thomas Graf0ab68032006-09-18 00:12:35 -07003813 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814}
3815
3816static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003817 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003820 u8 scope = RT_SCOPE_UNIVERSE;
3821 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Thomas Graf101bb222006-09-18 00:11:52 -07003823 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3824 scope = RT_SCOPE_SITE;
3825
Eric W. Biederman15e47302012-09-07 20:12:54 +00003826 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003827 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003828 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003829
Thomas Graf101bb222006-09-18 00:11:52 -07003830 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003831 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3832 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003833 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3834 nlmsg_cancel(skb, nlh);
3835 return -EMSGSIZE;
3836 }
Thomas Graf85486af2006-09-18 00:11:24 -07003837
Thomas Graf0ab68032006-09-18 00:12:35 -07003838 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839}
3840
3841static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003842 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003845 u8 scope = RT_SCOPE_UNIVERSE;
3846 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Thomas Graf101bb222006-09-18 00:11:52 -07003848 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3849 scope = RT_SCOPE_SITE;
3850
Eric W. Biederman15e47302012-09-07 20:12:54 +00003851 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003852 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003853 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003854
Thomas Graf101bb222006-09-18 00:11:52 -07003855 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003856 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3857 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003858 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3859 nlmsg_cancel(skb, nlh);
3860 return -EMSGSIZE;
3861 }
Thomas Graf85486af2006-09-18 00:11:24 -07003862
Thomas Graf0ab68032006-09-18 00:12:35 -07003863 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864}
3865
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003866enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 UNICAST_ADDR,
3868 MULTICAST_ADDR,
3869 ANYCAST_ADDR,
3870};
3871
Eric Dumazet234b27c2009-11-12 04:11:50 +00003872/* called with rcu_read_lock() */
3873static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3874 struct netlink_callback *cb, enum addr_type_t type,
3875 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 struct ifmcaddr6 *ifmca;
3878 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003879 int err = 1;
3880 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Eric Dumazet234b27c2009-11-12 04:11:50 +00003882 read_lock_bh(&idev->lock);
3883 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003884 case UNICAST_ADDR: {
3885 struct inet6_ifaddr *ifa;
3886
Eric Dumazet234b27c2009-11-12 04:11:50 +00003887 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003888 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3889 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003890 continue;
3891 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003892 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003893 cb->nlh->nlmsg_seq,
3894 RTM_NEWADDR,
3895 NLM_F_MULTI);
3896 if (err <= 0)
3897 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003898 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003900 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003901 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003902 case MULTICAST_ADDR:
3903 /* multicast address */
3904 for (ifmca = idev->mc_list; ifmca;
3905 ifmca = ifmca->next, ip_idx++) {
3906 if (ip_idx < s_ip_idx)
3907 continue;
3908 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003909 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003910 cb->nlh->nlmsg_seq,
3911 RTM_GETMULTICAST,
3912 NLM_F_MULTI);
3913 if (err <= 0)
3914 break;
3915 }
3916 break;
3917 case ANYCAST_ADDR:
3918 /* anycast address */
3919 for (ifaca = idev->ac_list; ifaca;
3920 ifaca = ifaca->aca_next, ip_idx++) {
3921 if (ip_idx < s_ip_idx)
3922 continue;
3923 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003924 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003925 cb->nlh->nlmsg_seq,
3926 RTM_GETANYCAST,
3927 NLM_F_MULTI);
3928 if (err <= 0)
3929 break;
3930 }
3931 break;
3932 default:
3933 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003935 read_unlock_bh(&idev->lock);
3936 *p_ip_idx = ip_idx;
3937 return err;
3938}
3939
3940static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3941 enum addr_type_t type)
3942{
3943 struct net *net = sock_net(skb->sk);
3944 int h, s_h;
3945 int idx, ip_idx;
3946 int s_idx, s_ip_idx;
3947 struct net_device *dev;
3948 struct inet6_dev *idev;
3949 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003950
3951 s_h = cb->args[0];
3952 s_idx = idx = cb->args[1];
3953 s_ip_idx = ip_idx = cb->args[2];
3954
3955 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003956 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003957 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3958 idx = 0;
3959 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003960 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00003961 if (idx < s_idx)
3962 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003963 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003964 s_ip_idx = 0;
3965 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003966 idev = __in6_dev_get(dev);
3967 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003968 goto cont;
3969
3970 if (in6_dump_addrs(idev, skb, cb, type,
3971 s_ip_idx, &ip_idx) <= 0)
3972 goto done;
3973cont:
3974 idx++;
3975 }
3976 }
3977done:
3978 rcu_read_unlock();
3979 cb->args[0] = h;
3980 cb->args[1] = idx;
3981 cb->args[2] = ip_idx;
3982
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 return skb->len;
3984}
3985
3986static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3987{
3988 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003989
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 return inet6_dump_addr(skb, cb, type);
3991}
3992
3993static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3994{
3995 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003996
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 return inet6_dump_addr(skb, cb, type);
3998}
3999
4000
4001static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4002{
4003 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004004
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 return inet6_dump_addr(skb, cb, type);
4006}
4007
Thomas Graf661d2962013-03-21 07:45:29 +00004008static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004009{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004010 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004011 struct ifaddrmsg *ifm;
4012 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004013 struct in6_addr *addr = NULL;
4014 struct net_device *dev = NULL;
4015 struct inet6_ifaddr *ifa;
4016 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004017 int err;
4018
Thomas Graf1b29fc22006-09-18 00:10:50 -07004019 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4020 if (err < 0)
4021 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004022
Thomas Graf1b29fc22006-09-18 00:10:50 -07004023 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
4024 if (addr == NULL) {
4025 err = -EINVAL;
4026 goto errout;
4027 }
4028
4029 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004030 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004031 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004032
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004033 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4034 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004035 err = -EADDRNOTAVAIL;
4036 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004037 }
4038
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004039 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4040 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004041 err = -ENOBUFS;
4042 goto errout_ifa;
4043 }
4044
Eric W. Biederman15e47302012-09-07 20:12:54 +00004045 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004046 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004047 if (err < 0) {
4048 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4049 WARN_ON(err == -EMSGSIZE);
4050 kfree_skb(skb);
4051 goto errout_ifa;
4052 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004053 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004054errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004055 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004056errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004057 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004058}
4059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4061{
4062 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004063 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004064 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Thomas Graf0ab68032006-09-18 00:12:35 -07004066 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004067 if (skb == NULL)
4068 goto errout;
4069
4070 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004071 if (err < 0) {
4072 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4073 WARN_ON(err == -EMSGSIZE);
4074 kfree_skb(skb);
4075 goto errout;
4076 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004077 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4078 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004079errout:
4080 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004081 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082}
4083
Dave Jonesb6f99a22007-03-22 12:27:49 -07004084static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 __s32 *array, int bytes)
4086{
Thomas Graf04561c12006-11-14 19:53:58 -08004087 BUG_ON(bytes < (DEVCONF_MAX * 4));
4088
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 memset(array, 0, bytes);
4090 array[DEVCONF_FORWARDING] = cnf->forwarding;
4091 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4092 array[DEVCONF_MTU6] = cnf->mtu6;
4093 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4094 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4095 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4096 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4097 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004098 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4099 jiffies_to_msecs(cnf->rtr_solicit_interval);
4100 array[DEVCONF_RTR_SOLICIT_DELAY] =
4101 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
4103#ifdef CONFIG_IPV6_PRIVACY
4104 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4105 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4106 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4107 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4108 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4109#endif
4110 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004111 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004112 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004113#ifdef CONFIG_IPV6_ROUTER_PREF
4114 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004115 array[DEVCONF_RTR_PROBE_INTERVAL] =
4116 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004117#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004118 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4119#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004120#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004121 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004122 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004123#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4124 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4125#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004126#ifdef CONFIG_IPV6_MROUTE
4127 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4128#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004129 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004130 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004131 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004132 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133}
4134
Thomas Grafb382b192010-11-16 04:33:57 +00004135static inline size_t inet6_ifla6_size(void)
4136{
4137 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4138 + nla_total_size(sizeof(struct ifla_cacheinfo))
4139 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4140 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
4141 + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */
4142}
4143
Thomas Graf339bf982006-11-10 14:10:15 -08004144static inline size_t inet6_if_nlmsg_size(void)
4145{
4146 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4147 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4148 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4149 + nla_total_size(4) /* IFLA_MTU */
4150 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004151 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004152}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004153
Eric Dumazetbe281e52011-05-19 01:14:23 +00004154static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004155 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004156{
4157 int i;
4158 int pad = bytes - sizeof(u64) * items;
4159 BUG_ON(pad < 0);
4160
4161 /* Use put_unaligned() because stats may not be aligned for u64. */
4162 put_unaligned(items, &stats[0]);
4163 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004164 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004165
4166 memset(&stats[items], 0, pad);
4167}
4168
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004169static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4170 int items, int bytes, size_t syncpoff)
4171{
4172 int i;
4173 int pad = bytes - sizeof(u64) * items;
4174 BUG_ON(pad < 0);
4175
4176 /* Use put_unaligned() because stats may not be aligned for u64. */
4177 put_unaligned(items, &stats[0]);
4178 for (i = 1; i < items; i++)
4179 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4180
4181 memset(&stats[items], 0, pad);
4182}
4183
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004184static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4185 int bytes)
4186{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004187 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004188 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004189 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4190 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004191 break;
4192 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004193 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004194 break;
4195 }
4196}
4197
Thomas Grafb382b192010-11-16 04:33:57 +00004198static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004200 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004201 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
David S. Millerc78679e2012-04-01 20:27:33 -04004203 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4204 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004206 ci.tstamp = cstamp_delta(idev->tstamp);
4207 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4208 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004209 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4210 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004211 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4212 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004213 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004214 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004216 /* XXX - MC not implemented */
4217
4218 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4219 if (nla == NULL)
4220 goto nla_put_failure;
4221 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4222
4223 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4224 if (nla == NULL)
4225 goto nla_put_failure;
4226 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Thomas Grafb382b192010-11-16 04:33:57 +00004228 return 0;
4229
4230nla_put_failure:
4231 return -EMSGSIZE;
4232}
4233
4234static size_t inet6_get_link_af_size(const struct net_device *dev)
4235{
4236 if (!__in6_dev_get(dev))
4237 return 0;
4238
4239 return inet6_ifla6_size();
4240}
4241
4242static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4243{
4244 struct inet6_dev *idev = __in6_dev_get(dev);
4245
4246 if (!idev)
4247 return -ENODATA;
4248
4249 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4250 return -EMSGSIZE;
4251
4252 return 0;
4253}
4254
Thomas Grafb382b192010-11-16 04:33:57 +00004255static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004256 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004257{
4258 struct net_device *dev = idev->dev;
4259 struct ifinfomsg *hdr;
4260 struct nlmsghdr *nlh;
4261 void *protoinfo;
4262
Eric W. Biederman15e47302012-09-07 20:12:54 +00004263 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004264 if (nlh == NULL)
4265 return -EMSGSIZE;
4266
4267 hdr = nlmsg_data(nlh);
4268 hdr->ifi_family = AF_INET6;
4269 hdr->__ifi_pad = 0;
4270 hdr->ifi_type = dev->type;
4271 hdr->ifi_index = dev->ifindex;
4272 hdr->ifi_flags = dev_get_flags(dev);
4273 hdr->ifi_change = 0;
4274
David S. Millerc78679e2012-04-01 20:27:33 -04004275 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4276 (dev->addr_len &&
4277 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4278 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4279 (dev->ifindex != dev->iflink &&
4280 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4281 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004282 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4283 if (protoinfo == NULL)
4284 goto nla_put_failure;
4285
4286 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4287 goto nla_put_failure;
4288
Thomas Graf04561c12006-11-14 19:53:58 -08004289 nla_nest_end(skb, protoinfo);
4290 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291
Thomas Graf04561c12006-11-14 19:53:58 -08004292nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004293 nlmsg_cancel(skb, nlh);
4294 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295}
4296
4297static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4298{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004299 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004300 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004301 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 struct net_device *dev;
4303 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004304 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Eric Dumazet84d26972009-11-09 12:11:28 +00004306 s_h = cb->args[0];
4307 s_idx = cb->args[1];
4308
4309 rcu_read_lock();
4310 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4311 idx = 0;
4312 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004313 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004314 if (idx < s_idx)
4315 goto cont;
4316 idev = __in6_dev_get(dev);
4317 if (!idev)
4318 goto cont;
4319 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004320 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004321 cb->nlh->nlmsg_seq,
4322 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4323 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004324cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004325 idx++;
4326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004328out:
4329 rcu_read_unlock();
4330 cb->args[1] = idx;
4331 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
4333 return skb->len;
4334}
4335
4336void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4337{
4338 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004339 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004340 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004341
Thomas Graf339bf982006-11-10 14:10:15 -08004342 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004343 if (skb == NULL)
4344 goto errout;
4345
4346 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004347 if (err < 0) {
4348 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4349 WARN_ON(err == -EMSGSIZE);
4350 kfree_skb(skb);
4351 goto errout;
4352 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004353 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004354 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004355errout:
4356 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004357 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358}
4359
Thomas Graf339bf982006-11-10 14:10:15 -08004360static inline size_t inet6_prefix_nlmsg_size(void)
4361{
4362 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4363 + nla_total_size(sizeof(struct in6_addr))
4364 + nla_total_size(sizeof(struct prefix_cacheinfo));
4365}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004368 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004369 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004371 struct prefixmsg *pmsg;
4372 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 struct prefix_cacheinfo ci;
4374
Eric W. Biederman15e47302012-09-07 20:12:54 +00004375 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004376 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004377 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004378
4379 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004381 pmsg->prefix_pad1 = 0;
4382 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 pmsg->prefix_ifindex = idev->dev->ifindex;
4384 pmsg->prefix_len = pinfo->prefix_len;
4385 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004386 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 pmsg->prefix_flags = 0;
4388 if (pinfo->onlink)
4389 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4390 if (pinfo->autoconf)
4391 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4392
David S. Millerc78679e2012-04-01 20:27:33 -04004393 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4394 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 ci.preferred_time = ntohl(pinfo->prefered);
4396 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004397 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4398 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004399 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Thomas Graf6051e2f2006-11-14 19:54:19 -08004401nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004402 nlmsg_cancel(skb, nlh);
4403 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404}
4405
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004406static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 struct prefix_info *pinfo)
4408{
4409 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004410 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004411 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412
Thomas Graf339bf982006-11-10 14:10:15 -08004413 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004414 if (skb == NULL)
4415 goto errout;
4416
4417 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004418 if (err < 0) {
4419 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4420 WARN_ON(err == -EMSGSIZE);
4421 kfree_skb(skb);
4422 goto errout;
4423 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004424 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4425 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004426errout:
4427 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004428 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429}
4430
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4432{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004433 struct net *net = dev_net(ifp->idev->dev);
4434
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4436
4437 switch (event) {
4438 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004439 /*
4440 * If the address was optimistic
4441 * we inserted the route at the start of
4442 * our DAD process, so we don't need
4443 * to do it again
4444 */
4445 if (!(ifp->rt->rt6i_node))
4446 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 if (ifp->idev->cnf.forwarding)
4448 addrconf_join_anycast(ifp);
4449 break;
4450 case RTM_DELADDR:
4451 if (ifp->idev->cnf.forwarding)
4452 addrconf_leave_anycast(ifp);
4453 addrconf_leave_solict(ifp->idev, &ifp->addr);
Changli Gaod8d1f302010-06-10 23:31:35 -07004454 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004455
David S. Miller73a8bd72011-01-23 23:27:15 -08004456 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004457 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 break;
4459 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004460 atomic_inc(&net->ipv6.dev_addr_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461}
4462
4463static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4464{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004465 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 if (likely(ifp->idev->dead == 0))
4467 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004468 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469}
4470
4471#ifdef CONFIG_SYSCTL
4472
4473static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004474int addrconf_sysctl_forward(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 void __user *buffer, size_t *lenp, loff_t *ppos)
4476{
4477 int *valp = ctl->data;
4478 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004479 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004480 ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 int ret;
4482
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004483 /*
4484 * ctl->data points to idev->cnf.forwarding, we should
4485 * not modify it until we get the rtnl lock.
4486 */
4487 lctl = *ctl;
4488 lctl.data = &val;
4489
4490 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004492 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004493 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004494 if (ret)
4495 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004496 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497}
4498
Brian Haley56d417b2009-06-01 03:07:33 -07004499static void dev_disable_change(struct inet6_dev *idev)
4500{
4501 if (!idev || !idev->dev)
4502 return;
4503
4504 if (idev->cnf.disable_ipv6)
4505 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
4506 else
4507 addrconf_notify(NULL, NETDEV_UP, idev->dev);
4508}
4509
4510static void addrconf_disable_change(struct net *net, __s32 newf)
4511{
4512 struct net_device *dev;
4513 struct inet6_dev *idev;
4514
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004515 rcu_read_lock();
4516 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004517 idev = __in6_dev_get(dev);
4518 if (idev) {
4519 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4520 idev->cnf.disable_ipv6 = newf;
4521 if (changed)
4522 dev_disable_change(idev);
4523 }
Brian Haley56d417b2009-06-01 03:07:33 -07004524 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004525 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004526}
4527
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004528static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004529{
4530 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004531 int old;
4532
4533 if (!rtnl_trylock())
4534 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004535
4536 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004537 old = *p;
4538 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004539
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004540 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4541 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004542 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004543 }
Brian Haley56d417b2009-06-01 03:07:33 -07004544
4545 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004546 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4547 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004548 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004549 dev_disable_change((struct inet6_dev *)table->extra1);
4550
4551 rtnl_unlock();
4552 return 0;
4553}
4554
4555static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004556int addrconf_sysctl_disable(ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004557 void __user *buffer, size_t *lenp, loff_t *ppos)
4558{
4559 int *valp = ctl->data;
4560 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004561 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004562 ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004563 int ret;
4564
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004565 /*
4566 * ctl->data points to idev->cnf.disable_ipv6, we should
4567 * not modify it until we get the rtnl lock.
4568 */
4569 lctl = *ctl;
4570 lctl.data = &val;
4571
4572 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004573
4574 if (write)
4575 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004576 if (ret)
4577 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004578 return ret;
4579}
4580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581static struct addrconf_sysctl_table
4582{
4583 struct ctl_table_header *sysctl_header;
YOSHIFUJI Hideakif6a07b22008-03-25 00:25:11 +09004584 ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004585} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 .sysctl_header = NULL,
4587 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004588 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004589 .procname = "forwarding",
4590 .data = &ipv6_devconf.forwarding,
4591 .maxlen = sizeof(int),
4592 .mode = 0644,
4593 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 },
4595 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004596 .procname = "hop_limit",
4597 .data = &ipv6_devconf.hop_limit,
4598 .maxlen = sizeof(int),
4599 .mode = 0644,
4600 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 },
4602 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004603 .procname = "mtu",
4604 .data = &ipv6_devconf.mtu6,
4605 .maxlen = sizeof(int),
4606 .mode = 0644,
4607 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 },
4609 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004610 .procname = "accept_ra",
4611 .data = &ipv6_devconf.accept_ra,
4612 .maxlen = sizeof(int),
4613 .mode = 0644,
4614 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 },
4616 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004617 .procname = "accept_redirects",
4618 .data = &ipv6_devconf.accept_redirects,
4619 .maxlen = sizeof(int),
4620 .mode = 0644,
4621 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 },
4623 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004624 .procname = "autoconf",
4625 .data = &ipv6_devconf.autoconf,
4626 .maxlen = sizeof(int),
4627 .mode = 0644,
4628 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 },
4630 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004631 .procname = "dad_transmits",
4632 .data = &ipv6_devconf.dad_transmits,
4633 .maxlen = sizeof(int),
4634 .mode = 0644,
4635 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 },
4637 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004638 .procname = "router_solicitations",
4639 .data = &ipv6_devconf.rtr_solicits,
4640 .maxlen = sizeof(int),
4641 .mode = 0644,
4642 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 },
4644 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004645 .procname = "router_solicitation_interval",
4646 .data = &ipv6_devconf.rtr_solicit_interval,
4647 .maxlen = sizeof(int),
4648 .mode = 0644,
4649 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 },
4651 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004652 .procname = "router_solicitation_delay",
4653 .data = &ipv6_devconf.rtr_solicit_delay,
4654 .maxlen = sizeof(int),
4655 .mode = 0644,
4656 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 },
4658 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004659 .procname = "force_mld_version",
4660 .data = &ipv6_devconf.force_mld_version,
4661 .maxlen = sizeof(int),
4662 .mode = 0644,
4663 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 },
4665#ifdef CONFIG_IPV6_PRIVACY
4666 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004667 .procname = "use_tempaddr",
4668 .data = &ipv6_devconf.use_tempaddr,
4669 .maxlen = sizeof(int),
4670 .mode = 0644,
4671 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 },
4673 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004674 .procname = "temp_valid_lft",
4675 .data = &ipv6_devconf.temp_valid_lft,
4676 .maxlen = sizeof(int),
4677 .mode = 0644,
4678 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 },
4680 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004681 .procname = "temp_prefered_lft",
4682 .data = &ipv6_devconf.temp_prefered_lft,
4683 .maxlen = sizeof(int),
4684 .mode = 0644,
4685 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 },
4687 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004688 .procname = "regen_max_retry",
4689 .data = &ipv6_devconf.regen_max_retry,
4690 .maxlen = sizeof(int),
4691 .mode = 0644,
4692 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 },
4694 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004695 .procname = "max_desync_factor",
4696 .data = &ipv6_devconf.max_desync_factor,
4697 .maxlen = sizeof(int),
4698 .mode = 0644,
4699 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 },
4701#endif
4702 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004703 .procname = "max_addresses",
4704 .data = &ipv6_devconf.max_addresses,
4705 .maxlen = sizeof(int),
4706 .mode = 0644,
4707 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 },
4709 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004710 .procname = "accept_ra_defrtr",
4711 .data = &ipv6_devconf.accept_ra_defrtr,
4712 .maxlen = sizeof(int),
4713 .mode = 0644,
4714 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004715 },
4716 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004717 .procname = "accept_ra_pinfo",
4718 .data = &ipv6_devconf.accept_ra_pinfo,
4719 .maxlen = sizeof(int),
4720 .mode = 0644,
4721 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004722 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004723#ifdef CONFIG_IPV6_ROUTER_PREF
4724 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004725 .procname = "accept_ra_rtr_pref",
4726 .data = &ipv6_devconf.accept_ra_rtr_pref,
4727 .maxlen = sizeof(int),
4728 .mode = 0644,
4729 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004730 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004731 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004732 .procname = "router_probe_interval",
4733 .data = &ipv6_devconf.rtr_probe_interval,
4734 .maxlen = sizeof(int),
4735 .mode = 0644,
4736 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004737 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004738#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004739 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004740 .procname = "accept_ra_rt_info_max_plen",
4741 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4742 .maxlen = sizeof(int),
4743 .mode = 0644,
4744 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004745 },
4746#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004747#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004748 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004749 .procname = "proxy_ndp",
4750 .data = &ipv6_devconf.proxy_ndp,
4751 .maxlen = sizeof(int),
4752 .mode = 0644,
4753 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004754 },
4755 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004756 .procname = "accept_source_route",
4757 .data = &ipv6_devconf.accept_source_route,
4758 .maxlen = sizeof(int),
4759 .mode = 0644,
4760 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004761 },
Neil Horman95c385b2007-04-25 17:08:10 -07004762#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4763 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004764 .procname = "optimistic_dad",
4765 .data = &ipv6_devconf.optimistic_dad,
4766 .maxlen = sizeof(int),
4767 .mode = 0644,
4768 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004769
4770 },
4771#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004772#ifdef CONFIG_IPV6_MROUTE
4773 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004774 .procname = "mc_forwarding",
4775 .data = &ipv6_devconf.mc_forwarding,
4776 .maxlen = sizeof(int),
4777 .mode = 0444,
4778 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004779 },
4780#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004781 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004782 .procname = "disable_ipv6",
4783 .data = &ipv6_devconf.disable_ipv6,
4784 .maxlen = sizeof(int),
4785 .mode = 0644,
4786 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004787 },
4788 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004789 .procname = "accept_dad",
4790 .data = &ipv6_devconf.accept_dad,
4791 .maxlen = sizeof(int),
4792 .mode = 0644,
4793 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004794 },
4795 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004796 .procname = "force_tllao",
4797 .data = &ipv6_devconf.force_tllao,
4798 .maxlen = sizeof(int),
4799 .mode = 0644,
4800 .proc_handler = proc_dointvec
4801 },
4802 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004803 .procname = "ndisc_notify",
4804 .data = &ipv6_devconf.ndisc_notify,
4805 .maxlen = sizeof(int),
4806 .mode = 0644,
4807 .proc_handler = proc_dointvec
4808 },
4809 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004810 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 }
4812 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813};
4814
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004815static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004816 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817{
4818 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004820 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004821
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004822 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004824 goto out;
4825
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004826 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004827 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004829 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Eric W. Biederman6105e292012-04-19 13:41:24 +00004832 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833
Eric W. Biederman6105e292012-04-19 13:41:24 +00004834 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00004836 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004837
4838 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004841free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004843out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004844 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845}
4846
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004847static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4848{
4849 struct addrconf_sysctl_table *t;
4850
4851 if (p->sysctl == NULL)
4852 return;
4853
4854 t = p->sysctl;
4855 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00004856 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004857 kfree(t);
4858}
4859
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004860static void addrconf_sysctl_register(struct inet6_dev *idev)
4861{
Eric W. Biederman54716e32010-02-14 03:27:03 +00004862 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004863 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004864 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004865 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004866}
4867
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004868static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004870 __addrconf_sysctl_unregister(&idev->cnf);
4871 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872}
4873
4874
4875#endif
4876
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004877static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004878{
4879 int err;
4880 struct ipv6_devconf *all, *dflt;
4881
4882 err = -ENOMEM;
4883 all = &ipv6_devconf;
4884 dflt = &ipv6_devconf_dflt;
4885
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004886 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004887 all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
4888 if (all == NULL)
4889 goto err_alloc_all;
4890
4891 dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
4892 if (dflt == NULL)
4893 goto err_alloc_dflt;
Brian Haley56d417b2009-06-01 03:07:33 -07004894 } else {
4895 /* these will be inherited by all namespaces */
4896 dflt->autoconf = ipv6_defaults.autoconf;
4897 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004898 }
4899
4900 net->ipv6.devconf_all = all;
4901 net->ipv6.devconf_dflt = dflt;
4902
4903#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004904 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004905 if (err < 0)
4906 goto err_reg_all;
4907
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004908 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004909 if (err < 0)
4910 goto err_reg_dflt;
4911#endif
4912 return 0;
4913
4914#ifdef CONFIG_SYSCTL
4915err_reg_dflt:
4916 __addrconf_sysctl_unregister(all);
4917err_reg_all:
4918 kfree(dflt);
4919#endif
4920err_alloc_dflt:
4921 kfree(all);
4922err_alloc_all:
4923 return err;
4924}
4925
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004926static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004927{
4928#ifdef CONFIG_SYSCTL
4929 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
4930 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
4931#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004932 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004933 kfree(net->ipv6.devconf_dflt);
4934 kfree(net->ipv6.devconf_all);
4935 }
4936}
4937
4938static struct pernet_operations addrconf_ops = {
4939 .init = addrconf_init_net,
4940 .exit = addrconf_exit_net,
4941};
4942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943/*
4944 * Device notifier
4945 */
4946
4947int register_inet6addr_notifier(struct notifier_block *nb)
4948{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004949 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004951EXPORT_SYMBOL(register_inet6addr_notifier);
4952
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953int unregister_inet6addr_notifier(struct notifier_block *nb)
4954{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004955 return atomic_notifier_chain_unregister(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004957EXPORT_SYMBOL(unregister_inet6addr_notifier);
4958
Thomas Grafb382b192010-11-16 04:33:57 +00004959static struct rtnl_af_ops inet6_ops = {
4960 .family = AF_INET6,
4961 .fill_link_af = inet6_fill_link_af,
4962 .get_link_af_size = inet6_get_link_af_size,
Thomas Grafb382b192010-11-16 04:33:57 +00004963};
4964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965/*
4966 * Init / cleanup code
4967 */
4968
4969int __init addrconf_init(void)
4970{
stephen hemmingerc2e21292010-03-17 20:31:10 +00004971 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004972
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004973 err = ipv6_addr_label_init();
4974 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00004975 pr_crit("%s: cannot initialize default policy table: %d\n",
4976 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004977 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004980 err = register_pernet_subsys(&addrconf_ops);
4981 if (err < 0)
4982 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 /* The addrconf netdev notifier requires that loopback_dev
4985 * has it's ipv6 private information allocated and setup
4986 * before it can bring up and give link-local addresses
4987 * to other devices which are up.
4988 *
4989 * Unfortunately, loopback_dev is not necessarily the first
4990 * entry in the global dev_base list of net devices. In fact,
4991 * it is likely to be the very last entry on that list.
4992 * So this causes the notifier registry below to try and
4993 * give link-local addresses to all devices besides loopback_dev
4994 * first, then loopback_dev, which cases all the non-loopback_dev
4995 * devices to fail to get a link-local address.
4996 *
4997 * So, as a temporary fix, allocate the ipv6 structure for
4998 * loopback_dev first by hand.
4999 * Longer term, all of the dependencies ipv6 has upon the loopback
5000 * device and it being up should be removed.
5001 */
5002 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005003 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 err = -ENOMEM;
5005 rtnl_unlock();
5006 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005007 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
stephen hemmingerc2e21292010-03-17 20:31:10 +00005009 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5010 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 register_netdevice_notifier(&ipv6_dev_notf);
5013
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005015
Thomas Grafb382b192010-11-16 04:33:57 +00005016 err = rtnl_af_register(&inet6_ops);
5017 if (err < 0)
5018 goto errout_af;
5019
Greg Rosec7ac8672011-06-10 01:27:09 +00005020 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5021 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005022 if (err < 0)
5023 goto errout;
5024
5025 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005026 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5027 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5028 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5029 inet6_dump_ifaddr, NULL);
5030 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5031 inet6_dump_ifmcaddr, NULL);
5032 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5033 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005034 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005035 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005036
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005037 ipv6_addr_label_rtnl_register();
5038
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005040errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005041 rtnl_af_unregister(&inet6_ops);
5042errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005043 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005044errlo:
5045 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005046out_addrlabel:
5047 ipv6_addr_label_cleanup();
5048out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005049 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050}
5051
Daniel Lezcano09f77092007-12-13 05:34:58 -08005052void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005054 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 int i;
5056
5057 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005058 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005059 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
5061 rtnl_lock();
5062
Thomas Grafb382b192010-11-16 04:33:57 +00005063 __rtnl_af_unregister(&inet6_ops);
5064
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005065 /* clean dev list */
5066 for_each_netdev(&init_net, dev) {
5067 if (__in6_dev_get(dev) == NULL)
5068 continue;
5069 addrconf_ifdown(dev, 1);
5070 }
5071 addrconf_ifdown(init_net.loopback_dev, 2);
5072
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 * Check hash table.
5075 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005076 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005077 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5078 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005079 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
5081 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083}