blob: 6913a82f4669d91491d92fe7bb46fa0fa8050a43 [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#include <linux/random.h>
Stephen Hemmingere21e8462010-03-20 16:09:01 -070087#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070088#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90#include <linux/proc_fs.h>
91#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040092#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/* Set to 3 to get tracing... */
95#define ACONF_DEBUG 2
96
97#if ACONF_DEBUG >= 3
dingtianhongba3542e2013-08-17 10:27:04 +080098#define ADBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#else
dingtianhongba3542e2013-08-17 10:27:04 +0800100#define ADBG(fmt, ...) do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
103#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000104
105static inline u32 cstamp_delta(unsigned long cstamp)
106{
107 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100111static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800112static void addrconf_sysctl_unregister(struct inet6_dev *idev);
113#else
114static inline void addrconf_sysctl_register(struct inet6_dev *idev)
115{
116}
117
118static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
119{
120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif
122
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000123static void __ipv6_regen_rndid(struct inet6_dev *idev);
124static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900127static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int ipv6_count_addresses(struct inet6_dev *idev);
129
130/*
131 * Configured unicast address hash table
132 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000133static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578aed2010-03-17 20:31:11 +0000134static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static void addrconf_verify(unsigned long);
137
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700138static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static DEFINE_SPINLOCK(addrconf_verify_lock);
140
141static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
142static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
143
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000144static void addrconf_type_change(struct net_device *dev,
145 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int addrconf_ifdown(struct net_device *dev, int how);
147
Romain Kuntz21caa662013-01-09 21:06:03 +0000148static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
149 int plen,
150 const struct net_device *dev,
151 u32 flags, u32 noflags);
152
David S. Millercf22f9a2012-04-14 21:37:40 -0400153static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void addrconf_dad_timer(unsigned long data);
155static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900156static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void addrconf_rs_timer(unsigned long data);
158static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
159static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
160
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900161static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700163static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
164 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Adrian Bunk888c8482008-07-22 14:21:58 -0700166static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .forwarding = 0,
168 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
169 .mtu6 = IPV6_MIN_MTU,
170 .accept_ra = 1,
171 .accept_redirects = 1,
172 .autoconf = 1,
173 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200174 .mldv1_unsolicited_report_interval = 10 * HZ,
175 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .dad_transmits = 1,
177 .rtr_solicits = MAX_RTR_SOLICITATIONS,
178 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
179 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .use_tempaddr = 0,
181 .temp_valid_lft = TEMP_VALID_LIFETIME,
182 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
183 .regen_max_retry = REGEN_MAX_RETRY,
184 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800186 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800187 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800188#ifdef CONFIG_IPV6_ROUTER_PREF
189 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800190 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800191#ifdef CONFIG_IPV6_ROUTE_INFO
192 .accept_ra_rt_info_max_plen = 0,
193#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800194#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700195 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700196 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900197 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900198 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200199 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Brian Haleyab32ea52006-09-22 14:15:41 -0700202static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .forwarding = 0,
204 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
205 .mtu6 = IPV6_MIN_MTU,
206 .accept_ra = 1,
207 .accept_redirects = 1,
208 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200209 .force_mld_version = 0,
210 .mldv1_unsolicited_report_interval = 10 * HZ,
211 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .dad_transmits = 1,
213 .rtr_solicits = MAX_RTR_SOLICITATIONS,
214 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
215 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .use_tempaddr = 0,
217 .temp_valid_lft = TEMP_VALID_LIFETIME,
218 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
219 .regen_max_retry = REGEN_MAX_RETRY,
220 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800222 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800223 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800224#ifdef CONFIG_IPV6_ROUTER_PREF
225 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800226 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800227#ifdef CONFIG_IPV6_ROUTE_INFO
228 .accept_ra_rt_info_max_plen = 0,
229#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800230#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700231 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700232 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900233 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900234 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200235 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700238/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700239static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700240{
David S. Miller05297942008-07-08 23:01:27 -0700241 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700242}
243
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200244static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200246 if (del_timer(&idev->rs_timer))
247 __in6_dev_put(idev);
248}
249
250static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
251{
252 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 __in6_ifa_put(ifp);
254}
255
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200256static void addrconf_mod_rs_timer(struct inet6_dev *idev,
257 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200259 if (!timer_pending(&idev->rs_timer))
260 in6_dev_hold(idev);
261 mod_timer(&idev->rs_timer, jiffies + when);
262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200264static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
265 unsigned long when)
266{
267 if (!timer_pending(&ifp->dad_timer))
268 in6_ifa_hold(ifp);
269 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700272static int snmp6_alloc_dev(struct inet6_dev *idev)
273{
John Stultz827da442013-10-07 15:51:58 -0700274 int i;
275
Tejun Heo7d720c32010-02-16 15:20:26 +0000276 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000277 sizeof(struct ipstats_mib),
278 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700279 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700280
281 for_each_possible_cpu(i) {
282 struct ipstats_mib *addrconf_stats;
283 addrconf_stats = per_cpu_ptr(idev->stats.ipv6[0], i);
284 u64_stats_init(&addrconf_stats->syncp);
285#if SNMP_ARRAY_SZ == 2
286 addrconf_stats = per_cpu_ptr(idev->stats.ipv6[1], i);
287 u64_stats_init(&addrconf_stats->syncp);
288#endif
289 }
290
291
Eric Dumazetbe281e52011-05-19 01:14:23 +0000292 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
293 GFP_KERNEL);
294 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700295 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000296 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
297 GFP_KERNEL);
298 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700299 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700300
301 return 0;
302
David L Stevens14878f72007-09-16 16:52:35 -0700303err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000304 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000306 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700307err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700308 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700309}
310
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000311static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 struct inet6_dev *ndev;
314
315 ASSERT_RTNL();
316
317 if (dev->mtu < IPV6_MIN_MTU)
318 return NULL;
319
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900320 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900322 if (ndev == NULL)
323 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Ingo Oeser322f74a2006-03-20 23:01:47 -0800325 rwlock_init(&ndev->lock);
326 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000327 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200328 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
329 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900330 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800331 ndev->cnf.mtu6 = dev->mtu;
332 ndev->cnf.sysctl = NULL;
333 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
334 if (ndev->nd_parms == NULL) {
335 kfree(ndev);
336 return NULL;
337 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700338 if (ndev->cnf.forwarding)
339 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800340 /* We refer to the device */
341 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Ingo Oeser322f74a2006-03-20 23:01:47 -0800343 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800344 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000345 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800346 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800347 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400348 dev_put(dev);
349 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800350 return NULL;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Ingo Oeser322f74a2006-03-20 23:01:47 -0800353 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800354 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000355 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800356 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800357 neigh_parms_release(&nd_tbl, ndev->nd_parms);
358 ndev->dead = 1;
359 in6_dev_finish_destroy(ndev);
360 return NULL;
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Ingo Oeser322f74a2006-03-20 23:01:47 -0800363 /* One reference from device. We must do this before
364 * we invoke __ipv6_regen_rndid().
365 */
366 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900368 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
369 ndev->cnf.accept_dad = -1;
370
Amerigo Wang07a93622012-10-29 16:23:10 +0000371#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700372 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000373 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700374 ndev->cnf.rtr_solicits = 0;
375 }
376#endif
377
stephen hemminger372e6c82010-03-17 20:31:09 +0000378 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800379 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800380 if ((dev->flags&IFF_LOOPBACK) ||
381 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700382 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700383 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700384 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800385 ndev->cnf.use_tempaddr = -1;
386 } else {
387 in6_dev_hold(ndev);
388 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
David S. Miller5d9efa72013-10-28 20:07:50 -0400390
Daniel Borkmann914faa12013-04-09 03:47:14 +0000391 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800392
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700393 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700394 ndev->if_flags |= IF_READY;
395
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 ipv6_mc_init_dev(ndev);
397 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100398 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800399 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000400 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800401
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000402 /* Join interface-local all-node multicast group */
403 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
404
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800405 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900406 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800407
Li Weid6ddef92012-03-05 14:45:17 +0000408 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000409 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000410 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ndev;
413}
414
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000415static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct inet6_dev *idev;
418
419 ASSERT_RTNL();
420
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700421 idev = __in6_dev_get(dev);
422 if (!idev) {
423 idev = ipv6_add_dev(dev);
424 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return NULL;
426 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (dev->flags&IFF_UP)
429 ipv6_mc_up(idev);
430 return idev;
431}
432
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000433static int inet6_netconf_msgsize_devconf(int type)
434{
435 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
436 + nla_total_size(4); /* NETCONFA_IFINDEX */
437
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000438 /* type -1 is used for ALL */
439 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000440 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500441#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000442 if (type == -1 || type == NETCONFA_MC_FORWARDING)
443 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500444#endif
stephen hemmingerc92d5492013-12-17 22:37:14 -0800445 if (type == -1 || type == NETCONFA_PROXY_NEIGH)
446 size += nla_total_size(4);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000447
448 return size;
449}
450
451static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
452 struct ipv6_devconf *devconf, u32 portid,
453 u32 seq, int event, unsigned int flags,
454 int type)
455{
456 struct nlmsghdr *nlh;
457 struct netconfmsg *ncm;
458
459 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
460 flags);
461 if (nlh == NULL)
462 return -EMSGSIZE;
463
464 ncm = nlmsg_data(nlh);
465 ncm->ncm_family = AF_INET6;
466
467 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
468 goto nla_put_failure;
469
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000470 /* type -1 is used for ALL */
471 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000472 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
473 goto nla_put_failure;
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 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
477 devconf->mc_forwarding) < 0)
478 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500479#endif
stephen hemmingerc92d5492013-12-17 22:37:14 -0800480 if ((type == -1 || type == NETCONFA_PROXY_NEIGH) &&
481 nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
482 goto nla_put_failure;
483
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000484 return nlmsg_end(skb, nlh);
485
486nla_put_failure:
487 nlmsg_cancel(skb, nlh);
488 return -EMSGSIZE;
489}
490
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000491void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
492 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000493{
494 struct sk_buff *skb;
495 int err = -ENOBUFS;
496
497 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
498 if (skb == NULL)
499 goto errout;
500
501 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
502 RTM_NEWNETCONF, 0, type);
503 if (err < 0) {
504 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
505 WARN_ON(err == -EMSGSIZE);
506 kfree_skb(skb);
507 goto errout;
508 }
509 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
510 return;
511errout:
Cong Dingbd779022012-12-18 12:08:56 +0000512 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000513}
514
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000515static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
516 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
517 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
stephen hemmingerc92d5492013-12-17 22:37:14 -0800518 [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) },
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000519};
520
521static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000522 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000523{
524 struct net *net = sock_net(in_skb->sk);
525 struct nlattr *tb[NETCONFA_MAX+1];
526 struct netconfmsg *ncm;
527 struct sk_buff *skb;
528 struct ipv6_devconf *devconf;
529 struct inet6_dev *in6_dev;
530 struct net_device *dev;
531 int ifindex;
532 int err;
533
534 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
535 devconf_ipv6_policy);
536 if (err < 0)
537 goto errout;
538
539 err = EINVAL;
540 if (!tb[NETCONFA_IFINDEX])
541 goto errout;
542
543 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
544 switch (ifindex) {
545 case NETCONFA_IFINDEX_ALL:
546 devconf = net->ipv6.devconf_all;
547 break;
548 case NETCONFA_IFINDEX_DEFAULT:
549 devconf = net->ipv6.devconf_dflt;
550 break;
551 default:
552 dev = __dev_get_by_index(net, ifindex);
553 if (dev == NULL)
554 goto errout;
555 in6_dev = __in6_dev_get(dev);
556 if (in6_dev == NULL)
557 goto errout;
558 devconf = &in6_dev->cnf;
559 break;
560 }
561
562 err = -ENOBUFS;
563 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
564 if (skb == NULL)
565 goto errout;
566
567 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
568 NETLINK_CB(in_skb).portid,
569 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
570 -1);
571 if (err < 0) {
572 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
573 WARN_ON(err == -EMSGSIZE);
574 kfree_skb(skb);
575 goto errout;
576 }
577 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
578errout:
579 return err;
580}
581
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000582static int inet6_netconf_dump_devconf(struct sk_buff *skb,
583 struct netlink_callback *cb)
584{
585 struct net *net = sock_net(skb->sk);
586 int h, s_h;
587 int idx, s_idx;
588 struct net_device *dev;
589 struct inet6_dev *idev;
590 struct hlist_head *head;
591
592 s_h = cb->args[0];
593 s_idx = idx = cb->args[1];
594
595 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
596 idx = 0;
597 head = &net->dev_index_head[h];
598 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000599 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
600 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000601 hlist_for_each_entry_rcu(dev, head, index_hlist) {
602 if (idx < s_idx)
603 goto cont;
604 idev = __in6_dev_get(dev);
605 if (!idev)
606 goto cont;
607
608 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
609 &idev->cnf,
610 NETLINK_CB(cb->skb).portid,
611 cb->nlh->nlmsg_seq,
612 RTM_NEWNETCONF,
613 NLM_F_MULTI,
614 -1) <= 0) {
615 rcu_read_unlock();
616 goto done;
617 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000618 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000619cont:
620 idx++;
621 }
622 rcu_read_unlock();
623 }
624 if (h == NETDEV_HASHENTRIES) {
625 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
626 net->ipv6.devconf_all,
627 NETLINK_CB(cb->skb).portid,
628 cb->nlh->nlmsg_seq,
629 RTM_NEWNETCONF, NLM_F_MULTI,
630 -1) <= 0)
631 goto done;
632 else
633 h++;
634 }
635 if (h == NETDEV_HASHENTRIES + 1) {
636 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
637 net->ipv6.devconf_dflt,
638 NETLINK_CB(cb->skb).portid,
639 cb->nlh->nlmsg_seq,
640 RTM_NEWNETCONF, NLM_F_MULTI,
641 -1) <= 0)
642 goto done;
643 else
644 h++;
645 }
646done:
647 cb->args[0] = h;
648 cb->args[1] = idx;
649
650 return skb->len;
651}
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653#ifdef CONFIG_SYSCTL
654static void dev_forward_change(struct inet6_dev *idev)
655{
656 struct net_device *dev;
657 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (!idev)
660 return;
661 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700662 if (idev->cnf.forwarding)
663 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000664 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000665 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900666 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000667 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
668 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
669 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900670 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000671 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
672 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000675
676 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800677 if (ifa->flags&IFA_F_TENTATIVE)
678 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (idev->cnf.forwarding)
680 addrconf_join_anycast(ifa);
681 else
682 addrconf_leave_anycast(ifa);
683 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000684 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
685 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688
Pavel Emelyanove1869322008-01-10 17:43:50 -0800689static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct net_device *dev;
692 struct inet6_dev *idev;
693
Ben Hutchings4acd4942012-08-14 08:54:51 +0000694 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 idev = __in6_dev_get(dev);
696 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800697 int changed = (!idev->cnf.forwarding) ^ (!newf);
698 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (changed)
700 dev_forward_change(idev);
701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800704
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000705static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800706{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800707 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000708 int old;
709
710 if (!rtnl_trylock())
711 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800712
713 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000714 old = *p;
715 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800716
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000717 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000718 if ((!newf) ^ (!old))
719 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
720 NETCONFA_IFINDEX_DEFAULT,
721 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000722 rtnl_unlock();
723 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000724 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000725
Pavel Emelyanove1869322008-01-10 17:43:50 -0800726 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800727 net->ipv6.devconf_dflt->forwarding = newf;
728 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000729 if ((!newf) ^ (!old))
730 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
731 NETCONFA_IFINDEX_ALL,
732 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000733 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800734 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700735 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800736
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000737 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800738 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000739 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800740}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741#endif
742
stephen hemminger5c578aed2010-03-17 20:31:11 +0000743/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
745{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000746 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000749 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#endif
751
752 in6_dev_put(ifp->idev);
753
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200754 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700755 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Herbert Xue9d3e082010-05-18 15:36:06 -0700757 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000758 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return;
760 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000761 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Lai Jiangshane5785982011-03-15 18:00:14 +0800763 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Brian Haleye55ffac2006-07-10 15:25:51 -0700766static void
767ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
768{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000769 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700770 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700771
772 /*
773 * Each device address list is sorted in order of scope -
774 * global before linklocal.
775 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000776 list_for_each(p, &idev->addr_list) {
777 struct inet6_ifaddr *ifa
778 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700779 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700780 break;
781 }
782
David S. Millerb54c9b92010-03-25 21:25:30 -0700783 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700784}
785
Eric Dumazetddbe5032012-07-18 08:11:12 +0000786static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900787{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000788 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/* On success it returns ifp with increased reference count */
792
793static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200794ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
795 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200796 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct inet6_ifaddr *ifa = NULL;
799 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000800 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900802 int addr_type = ipv6_addr_type(addr);
803
804 if (addr_type == IPV6_ADDR_ANY ||
805 addr_type & IPV6_ADDR_MULTICAST ||
806 (!(idev->dev->flags & IFF_LOOPBACK) &&
807 addr_type & IPV6_ADDR_LOOPBACK))
808 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700810 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (idev->dead) {
812 err = -ENODEV; /*XXX*/
813 goto out2;
814 }
815
Brian Haley56d417b2009-06-01 03:07:33 -0700816 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700817 err = -EACCES;
818 goto out2;
819 }
820
stephen hemminger5c578aed2010-03-17 20:31:11 +0000821 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900824 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800825 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 err = -EEXIST;
827 goto out;
828 }
829
Ingo Oeser322f74a2006-03-20 23:01:47 -0800830 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800833 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 err = -ENOBUFS;
835 goto out;
836 }
837
David S. Miller8f031512011-12-06 16:48:14 -0500838 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (IS_ERR(rt)) {
840 err = PTR_ERR(rt);
841 goto out;
842 }
843
Jiri Pirkobba24892013-12-07 19:26:57 +0100844 neigh_parms_data_state_setall(idev->nd_parms);
845
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000846 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200847 if (peer_addr)
848 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700851 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200852 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
853 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000854 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 ifa->scope = scope;
856 ifa->prefix_len = pfxlen;
857 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200858 ifa->valid_lft = valid_lft;
859 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000861 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Keir Fraser57f5f542006-08-29 02:43:49 -0700863 ifa->rt = rt;
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 ifa->idev = idev;
866 in6_dev_hold(idev);
867 /* For caller */
868 in6_ifa_hold(ifa);
869
870 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000871 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
stephen hemminger5c578aed2010-03-17 20:31:11 +0000873 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000874 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 write_lock(&idev->lock);
877 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700878 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000881 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 in6_ifa_hold(ifa);
883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 in6_ifa_hold(ifa);
886 write_unlock(&idev->lock);
887out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700888 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700890 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800891 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 else {
893 kfree(ifa);
894 ifa = ERR_PTR(err);
895 }
896
897 return ifa;
898out:
stephen hemminger5c578aed2010-03-17 20:31:11 +0000899 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 goto out2;
901}
902
Thomas Haller5b84efe2014-01-15 15:36:59 +0100903enum cleanup_prefix_rt_t {
904 CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */
905 CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */
906 CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */
907};
908
909/*
910 * Check, whether the prefix for ifp would still need a prefix route
911 * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
912 * constants.
913 *
914 * 1) we don't purge prefix if address was not permanent.
915 * prefix is managed by its own lifetime.
916 * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
917 * 3) if there are no addresses, delete prefix.
918 * 4) if there are still other permanent address(es),
919 * corresponding prefix is still permanent.
920 * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
921 * don't purge the prefix, assume user space is managing it.
922 * 6) otherwise, update prefix lifetime to the
923 * longest valid lifetime among the corresponding
924 * addresses on the device.
925 * Note: subsequent RA will update lifetime.
926 **/
927static enum cleanup_prefix_rt_t
928check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires)
929{
930 struct inet6_ifaddr *ifa;
931 struct inet6_dev *idev = ifp->idev;
932 unsigned long lifetime;
933 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL;
934
935 *expires = jiffies;
936
937 list_for_each_entry(ifa, &idev->addr_list, if_list) {
938 if (ifa == ifp)
939 continue;
940 if (!ipv6_prefix_equal(&ifa->addr, &ifp->addr,
941 ifp->prefix_len))
942 continue;
943 if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE))
944 return CLEANUP_PREFIX_RT_NOP;
945
946 action = CLEANUP_PREFIX_RT_EXPIRE;
947
948 spin_lock(&ifa->lock);
949
950 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
951 /*
952 * Note: Because this address is
953 * not permanent, lifetime <
954 * LONG_MAX / HZ here.
955 */
956 if (time_before(*expires, ifa->tstamp + lifetime * HZ))
957 *expires = ifa->tstamp + lifetime * HZ;
958 spin_unlock(&ifa->lock);
959 }
960
961 return action;
962}
963
964static void
965cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires, bool del_rt)
966{
967 struct rt6_info *rt;
968
969 rt = addrconf_get_prefix_route(&ifp->addr,
970 ifp->prefix_len,
971 ifp->idev->dev,
972 0, RTF_GATEWAY | RTF_DEFAULT);
973 if (rt) {
974 if (del_rt)
975 ip6_del_rt(rt);
976 else {
977 if (!(rt->rt6i_flags & RTF_EXPIRES))
978 rt6_set_expires(rt, expires);
979 ip6_rt_put(rt);
980 }
981 }
982}
983
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/* This function wants to get referenced ifp and releases it before return */
986
987static void ipv6_del_addr(struct inet6_ifaddr *ifp)
988{
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700989 int state;
Thomas Haller5b84efe2014-01-15 15:36:59 +0100990 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP;
991 unsigned long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700993 spin_lock_bh(&ifp->state_lock);
994 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700995 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700996 spin_unlock_bh(&ifp->state_lock);
997
998 if (state == INET6_IFADDR_STATE_DEAD)
999 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
stephen hemminger5c578aed2010-03-17 20:31:11 +00001001 spin_lock_bh(&addrconf_hash_lock);
1002 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +00001003 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Thomas Haller5b84efe2014-01-15 15:36:59 +01001005 write_lock_bh(&ifp->idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -04001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001008 list_del(&ifp->tmp_list);
1009 if (ifp->ifpub) {
1010 in6_ifa_put(ifp->ifpub);
1011 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
stephen hemminger372e6c82010-03-17 20:31:09 +00001013 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Thomas Haller5b84efe2014-01-15 15:36:59 +01001016 if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE))
1017 action = check_cleanup_prefix_route(ifp, &expires);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001018
Thomas Haller5b84efe2014-01-15 15:36:59 +01001019 list_del_init(&ifp->if_list);
1020 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Thomas Haller5b84efe2014-01-15 15:36:59 +01001022 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001024 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 ipv6_ifa_notify(RTM_DELADDR, ifp);
1027
Cong Wangf88c91d2013-04-14 23:18:43 +08001028 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Thomas Haller5b84efe2014-01-15 15:36:59 +01001030 if (action != CLEANUP_PREFIX_RT_NOP) {
1031 cleanup_prefix_route(ifp, expires,
1032 action == CLEANUP_PREFIX_RT_DEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034
Daniel Walterc3968a82011-04-13 21:10:57 +00001035 /* clean up prefsrc entries */
1036 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001037out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 in6_ifa_put(ifp);
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1042{
1043 struct inet6_dev *idev = ifp->idev;
1044 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001045 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001046 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int tmp_plen;
1048 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001049 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001050 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Jiri Pirko53bd6742013-12-06 09:45:22 +01001052 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (ift) {
1054 spin_lock_bh(&ift->lock);
1055 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1056 spin_unlock_bh(&ift->lock);
1057 tmpaddr = &addr;
1058 } else {
1059 tmpaddr = NULL;
1060 }
1061retry:
1062 in6_dev_hold(idev);
1063 if (idev->cnf.use_tempaddr <= 0) {
Jiri Pirko53bd6742013-12-06 09:45:22 +01001064 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001065 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 in6_dev_put(idev);
1067 ret = -1;
1068 goto out;
1069 }
1070 spin_lock_bh(&ifp->lock);
1071 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1072 idev->cnf.use_tempaddr = -1; /*XXX*/
1073 spin_unlock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01001074 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001075 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1076 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 in6_dev_put(idev);
1078 ret = -1;
1079 goto out;
1080 }
1081 in6_ifa_hold(ifp);
1082 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001083 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001085 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 tmp_valid_lft = min_t(__u32,
1087 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001088 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001089 tmp_prefered_lft = min_t(__u32,
1090 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001091 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001092 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 tmp_plen = ifp->prefix_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 tmp_tstamp = ifp->tstamp;
1095 spin_unlock_bh(&ifp->lock);
1096
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001097 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001098 idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01001099 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) / HZ;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001100 write_unlock_bh(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001101
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001102 /* A temporary address is created only if this calculated Preferred
1103 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1104 * an implementation must not create a temporary address with a zero
1105 * Preferred Lifetime.
1106 */
1107 if (tmp_prefered_lft <= regen_advance) {
1108 in6_ifa_put(ifp);
1109 in6_dev_put(idev);
1110 ret = -1;
1111 goto out;
1112 }
1113
Neil Horman95c385b2007-04-25 17:08:10 -07001114 addr_flags = IFA_F_TEMPORARY;
1115 /* set in addrconf_prefix_rcv() */
1116 if (ifp->flags & IFA_F_OPTIMISTIC)
1117 addr_flags |= IFA_F_OPTIMISTIC;
1118
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001119 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1120 ipv6_addr_scope(&addr), addr_flags,
1121 tmp_valid_lft, tmp_prefered_lft);
1122 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 in6_ifa_put(ifp);
1124 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001125 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 tmpaddr = &addr;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001127 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 goto retry;
1129 }
1130
1131 spin_lock_bh(&ift->lock);
1132 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001133 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 ift->tstamp = tmp_tstamp;
1135 spin_unlock_bh(&ift->lock);
1136
David S. Millercf22f9a2012-04-14 21:37:40 -04001137 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 in6_ifa_put(ift);
1139 in6_dev_put(idev);
1140out:
1141 return ret;
1142}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144/*
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001145 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001147enum {
1148 IPV6_SADDR_RULE_INIT = 0,
1149 IPV6_SADDR_RULE_LOCAL,
1150 IPV6_SADDR_RULE_SCOPE,
1151 IPV6_SADDR_RULE_PREFERRED,
1152#ifdef CONFIG_IPV6_MIP6
1153 IPV6_SADDR_RULE_HOA,
1154#endif
1155 IPV6_SADDR_RULE_OIF,
1156 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001157 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001158 IPV6_SADDR_RULE_ORCHID,
1159 IPV6_SADDR_RULE_PREFIX,
1160 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001161};
1162
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001163struct ipv6_saddr_score {
1164 int rule;
1165 int addr_type;
1166 struct inet6_ifaddr *ifa;
1167 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1168 int scopedist;
1169 int matchlen;
1170};
1171
1172struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001173 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001174 int ifindex;
1175 int scope;
1176 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001177 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001178};
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001179
Dave Jonesb6f99a22007-03-22 12:27:49 -07001180static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001182 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001183 return 1;
1184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
Benjamin Thery3de23252008-05-28 14:51:24 +02001187static int ipv6_get_saddr_eval(struct net *net,
1188 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001189 struct ipv6_saddr_dst *dst,
1190 int i)
1191{
1192 int ret;
1193
1194 if (i <= score->rule) {
1195 switch (i) {
1196 case IPV6_SADDR_RULE_SCOPE:
1197 ret = score->scopedist;
1198 break;
1199 case IPV6_SADDR_RULE_PREFIX:
1200 ret = score->matchlen;
1201 break;
1202 default:
1203 ret = !!test_bit(i, score->scorebits);
1204 }
1205 goto out;
1206 }
1207
1208 switch (i) {
1209 case IPV6_SADDR_RULE_INIT:
1210 /* Rule 0: remember if hiscore is not ready yet */
1211 ret = !!score->ifa;
1212 break;
1213 case IPV6_SADDR_RULE_LOCAL:
1214 /* Rule 1: Prefer same address */
1215 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1216 break;
1217 case IPV6_SADDR_RULE_SCOPE:
1218 /* Rule 2: Prefer appropriate scope
1219 *
1220 * ret
1221 * ^
1222 * -1 | d 15
1223 * ---+--+-+---> scope
1224 * |
1225 * | d is scope of the destination.
1226 * B-d | \
1227 * | \ <- smaller scope is better if
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08001228 * B-15 | \ if scope is enough for destination.
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001229 * | ret = B - scope (-1 <= scope >= d <= 15).
1230 * d-C-1 | /
1231 * |/ <- greater is better
1232 * -C / if scope is not enough for destination.
1233 * /| ret = scope - C (-1 <= d < scope <= 15).
1234 *
1235 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1236 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1237 * Assume B = 0 and we get C > 29.
1238 */
1239 ret = __ipv6_addr_src_scope(score->addr_type);
1240 if (ret >= dst->scope)
1241 ret = -ret;
1242 else
1243 ret -= 128; /* 30 is enough */
1244 score->scopedist = ret;
1245 break;
1246 case IPV6_SADDR_RULE_PREFERRED:
1247 /* Rule 3: Avoid deprecated and optimistic addresses */
1248 ret = ipv6_saddr_preferred(score->addr_type) ||
1249 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1250 break;
1251#ifdef CONFIG_IPV6_MIP6
1252 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001253 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001254 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001255 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1256 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001257 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001258 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001259#endif
1260 case IPV6_SADDR_RULE_OIF:
1261 /* Rule 5: Prefer outgoing interface */
1262 ret = (!dst->ifindex ||
1263 dst->ifindex == score->ifa->idev->dev->ifindex);
1264 break;
1265 case IPV6_SADDR_RULE_LABEL:
1266 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001267 ret = ipv6_addr_label(net,
1268 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001269 score->ifa->idev->dev->ifindex) == dst->label;
1270 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001271 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001272 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001273 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001274 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001275 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001276 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1277 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1278 score->ifa->idev->cnf.use_tempaddr >= 2;
1279 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001280 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001281 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001282 case IPV6_SADDR_RULE_ORCHID:
1283 /* Rule 8-: Prefer ORCHID vs ORCHID or
1284 * non-ORCHID vs non-ORCHID
1285 */
1286 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1287 ipv6_addr_orchid(dst->addr));
1288 break;
1289 case IPV6_SADDR_RULE_PREFIX:
1290 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001291 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1292 if (ret > score->ifa->prefix_len)
1293 ret = score->ifa->prefix_len;
1294 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001295 break;
1296 default:
1297 ret = 0;
1298 }
1299
1300 if (ret)
1301 __set_bit(i, score->scorebits);
1302 score->rule = i;
1303out:
1304 return ret;
1305}
1306
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001307int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001308 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001309 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001311 struct ipv6_saddr_score scores[2],
1312 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001313 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001314 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001315 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001317 dst_type = __ipv6_addr_type(daddr);
1318 dst.addr = daddr;
1319 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1320 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001321 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001322 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001323
1324 hiscore->rule = -1;
1325 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001327 rcu_read_lock();
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001328
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001329 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001330 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001331
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001332 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001333 * - multicast and link-local destination address,
1334 * the set of candidate source address MUST only
1335 * include addresses assigned to interfaces
1336 * belonging to the same link as the outgoing
1337 * interface.
1338 * (- For site-local destination addresses, the
1339 * set of candidate source addresses MUST only
1340 * include addresses assigned to interfaces
1341 * belonging to the same site as the outgoing
1342 * interface.)
1343 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001344 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1345 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1346 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001347 continue;
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001350 if (!idev)
1351 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001353 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001354 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001355 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001357 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001358 * - Tentative Address (RFC2462 section 5.4)
1359 * - A tentative address is not considered
1360 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001361 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001362 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001363 * - In any case, anycast addresses, multicast
1364 * addresses, and the unspecified address MUST
1365 * NOT be included in a candidate set.
1366 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001367 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1368 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001369 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001370
1371 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1372
1373 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1374 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001375 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001376 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001377 "assigned as unicast address on %s",
1378 dev->name);
1379 continue;
1380 }
1381
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001382 score->rule = -1;
1383 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001384
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001385 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1386 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001387
Benjamin Thery3de23252008-05-28 14:51:24 +02001388 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1389 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001390
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001391 if (minihiscore > miniscore) {
1392 if (i == IPV6_SADDR_RULE_SCOPE &&
1393 score->scopedist > 0) {
1394 /*
1395 * special case:
1396 * each remaining entry
1397 * has too small (not enough)
1398 * scope, because ifa entries
1399 * are sorted by their scope
1400 * values.
1401 */
1402 goto try_nextdev;
1403 }
1404 break;
1405 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001406 if (hiscore->ifa)
1407 in6_ifa_put(hiscore->ifa);
1408
1409 in6_ifa_hold(score->ifa);
1410
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001411 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001412
1413 /* restore our iterator */
1414 score->ifa = hiscore->ifa;
1415
1416 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418 }
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001419 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001420try_nextdev:
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001421 read_unlock_bh(&idev->lock);
1422 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001423 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001425 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001426 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001427
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001428 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001429 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001430 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001432EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Amerigo Wang89657792013-06-29 21:30:49 +08001434int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001435 u32 banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001436{
1437 struct inet6_ifaddr *ifp;
1438 int err = -EADDRNOTAVAIL;
1439
1440 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1441 if (ifp->scope == IFA_LINK &&
1442 !(ifp->flags & banned_flags)) {
1443 *addr = ifp->addr;
1444 err = 0;
1445 break;
1446 }
1447 }
1448 return err;
1449}
1450
Neil Horman95c385b2007-04-25 17:08:10 -07001451int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001452 u32 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 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001461 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 read_unlock_bh(&idev->lock);
1463 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001464 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return err;
1466}
1467
1468static int ipv6_count_addresses(struct inet6_dev *idev)
1469{
1470 int cnt = 0;
1471 struct inet6_ifaddr *ifp;
1472
1473 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001474 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 cnt++;
1476 read_unlock_bh(&idev->lock);
1477 return cnt;
1478}
1479
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001480int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001481 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001483 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001484 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
stephen hemminger5c578aed2010-03-17 20:31:11 +00001486 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001487 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001488 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001489 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001491 !(ifp->flags&IFA_F_TENTATIVE) &&
1492 (dev == NULL || ifp->idev->dev == dev ||
1493 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1494 rcu_read_unlock_bh();
1495 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001498
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001499 rcu_read_unlock_bh();
1500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001502EXPORT_SYMBOL(ipv6_chk_addr);
1503
David S. Miller3e81c6d2010-03-20 16:18:00 -07001504static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1505 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001507 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001508 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Sasha Levinb67bfe02013-02-27 17:06:00 -08001510 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001511 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001512 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (ipv6_addr_equal(&ifp->addr, addr)) {
1514 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001515 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
1517 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001518 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001521/* Compares an address/prefix_len with addresses on device @dev.
1522 * If one is found it returns true.
1523 */
1524bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1525 const unsigned int prefix_len, struct net_device *dev)
1526{
1527 struct inet6_dev *idev;
1528 struct inet6_ifaddr *ifa;
1529 bool ret = false;
1530
1531 rcu_read_lock();
1532 idev = __in6_dev_get(dev);
1533 if (idev) {
1534 read_lock_bh(&idev->lock);
1535 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1536 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1537 if (ret)
1538 break;
1539 }
1540 read_unlock_bh(&idev->lock);
1541 }
1542 rcu_read_unlock();
1543
1544 return ret;
1545}
1546EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1547
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001548int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001549{
1550 struct inet6_dev *idev;
1551 struct inet6_ifaddr *ifa;
1552 int onlink;
1553
1554 onlink = 0;
1555 rcu_read_lock();
1556 idev = __in6_dev_get(dev);
1557 if (idev) {
1558 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001559 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001560 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1561 ifa->prefix_len);
1562 if (onlink)
1563 break;
1564 }
1565 read_unlock_bh(&idev->lock);
1566 }
1567 rcu_read_unlock();
1568 return onlink;
1569}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001570EXPORT_SYMBOL(ipv6_chk_prefix);
1571
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001572struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001573 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
David S. Millerb79d1d52010-03-25 21:39:21 -07001575 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001576 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
stephen hemminger5c578aed2010-03-17 20:31:11 +00001578 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001579 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001580 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001581 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (ipv6_addr_equal(&ifp->addr, addr)) {
1583 if (dev == NULL || ifp->idev->dev == dev ||
1584 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001585 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 in6_ifa_hold(ifp);
1587 break;
1588 }
1589 }
1590 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001591 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
David S. Millerb79d1d52010-03-25 21:39:21 -07001593 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596/* Gets referenced address, destroys ifaddr */
1597
Brian Haleycc411d02009-09-09 14:41:32 +00001598static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (ifp->flags&IFA_F_PERMANENT) {
1601 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001602 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001604 if (dad_failed)
1605 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001607 if (dad_failed)
1608 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 } else if (ifp->flags&IFA_F_TEMPORARY) {
1611 struct inet6_ifaddr *ifpub;
1612 spin_lock_bh(&ifp->lock);
1613 ifpub = ifp->ifpub;
1614 if (ifpub) {
1615 in6_ifa_hold(ifpub);
1616 spin_unlock_bh(&ifp->lock);
1617 ipv6_create_tempaddr(ifpub, ifp);
1618 in6_ifa_put(ifpub);
1619 } else {
1620 spin_unlock_bh(&ifp->lock);
1621 }
1622 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 } else
1624 ipv6_del_addr(ifp);
1625}
1626
Herbert Xuf2344a12010-05-18 15:55:27 -07001627static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1628{
1629 int err = -ENOENT;
1630
1631 spin_lock(&ifp->state_lock);
1632 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1633 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1634 err = 0;
1635 }
1636 spin_unlock(&ifp->state_lock);
1637
1638 return err;
1639}
1640
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001641void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1642{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001643 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001644
Ursula Braun853dc2e2010-10-24 23:06:43 +00001645 if (addrconf_dad_end(ifp)) {
1646 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001647 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001648 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001649
Joe Perchese87cc472012-05-13 21:56:26 +00001650 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1651 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001652
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001653 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1654 struct in6_addr addr;
1655
1656 addr.s6_addr32[0] = htonl(0xfe800000);
1657 addr.s6_addr32[1] = 0;
1658
1659 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1660 ipv6_addr_equal(&ifp->addr, &addr)) {
1661 /* DAD failed for link-local based on MAC address */
1662 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001663
Joe Perchesf3213832012-05-15 14:11:53 +00001664 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001665 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001666 }
1667 }
1668
Brian Haleycc411d02009-09-09 14:41:32 +00001669 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672/* Join to solicited addr multicast group. */
1673
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001674void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
1676 struct in6_addr maddr;
1677
1678 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1679 return;
1680
1681 addrconf_addr_solict_mult(addr, &maddr);
1682 ipv6_dev_mc_inc(dev, &maddr);
1683}
1684
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001685void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
1687 struct in6_addr maddr;
1688
1689 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1690 return;
1691
1692 addrconf_addr_solict_mult(addr, &maddr);
1693 __ipv6_dev_mc_dec(idev, &maddr);
1694}
1695
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001696static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
1698 struct in6_addr addr;
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001699 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001700 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1702 if (ipv6_addr_any(&addr))
1703 return;
1704 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1705}
1706
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001707static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
1709 struct in6_addr addr;
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001710 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001711 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1713 if (ipv6_addr_any(&addr))
1714 return;
1715 __ipv6_dev_ac_dec(ifp->idev, &addr);
1716}
1717
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001718static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1719{
1720 if (dev->addr_len != ETH_ALEN)
1721 return -1;
1722 memcpy(eui, dev->dev_addr, 3);
1723 memcpy(eui + 5, dev->dev_addr + 3, 3);
1724
1725 /*
1726 * The zSeries OSA network cards can be shared among various
1727 * OS instances, but the OSA cards have only one MAC address.
1728 * This leads to duplicate address conflicts in conjunction
1729 * with IPv6 if more than one instance uses the same card.
1730 *
1731 * The driver for these cards can deliver a unique 16-bit
1732 * identifier for each instance sharing the same card. It is
1733 * placed instead of 0xFFFE in the interface identifier. The
1734 * "u" bit of the interface identifier is not inverted in this
1735 * case. Hence the resulting interface identifier has local
1736 * scope according to RFC2373.
1737 */
1738 if (dev->dev_id) {
1739 eui[3] = (dev->dev_id >> 8) & 0xFF;
1740 eui[4] = dev->dev_id & 0xFF;
1741 } else {
1742 eui[3] = 0xFF;
1743 eui[4] = 0xFE;
1744 eui[0] ^= 2;
1745 }
1746 return 0;
1747}
1748
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001749static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1750{
1751 if (dev->addr_len != IEEE802154_ADDR_LEN)
1752 return -1;
1753 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001754 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001755 return 0;
1756}
1757
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001758static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1759{
1760 union fwnet_hwaddr *ha;
1761
1762 if (dev->addr_len != FWNET_ALEN)
1763 return -1;
1764
1765 ha = (union fwnet_hwaddr *)dev->dev_addr;
1766
1767 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1768 eui[0] ^= 2;
1769 return 0;
1770}
1771
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001772static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1773{
1774 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1775 if (dev->addr_len != ARCNET_ALEN)
1776 return -1;
1777 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001778 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001779 return 0;
1780}
1781
1782static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1783{
1784 if (dev->addr_len != INFINIBAND_ALEN)
1785 return -1;
1786 memcpy(eui, dev->dev_addr + 12, 8);
1787 eui[0] |= 2;
1788 return 0;
1789}
1790
stephen hemmingerc61393e2010-10-04 20:17:53 +00001791static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001792{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001793 if (addr == 0)
1794 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001795 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1796 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1797 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1798 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1799 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1800 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1801 eui[1] = 0;
1802 eui[2] = 0x5E;
1803 eui[3] = 0xFE;
1804 memcpy(eui + 4, &addr, 4);
1805 return 0;
1806}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001807
1808static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1809{
1810 if (dev->priv_flags & IFF_ISATAP)
1811 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1812 return -1;
1813}
1814
stephen hemmingeraee80b52011-06-08 10:44:30 +00001815static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1816{
1817 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1818}
1819
Nicolas Dichtele8377352013-08-20 12:16:06 +02001820static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1821{
1822 memcpy(eui, dev->perm_addr, 3);
1823 memcpy(eui + 5, dev->perm_addr + 3, 3);
1824 eui[3] = 0xFF;
1825 eui[4] = 0xFE;
1826 eui[0] ^= 2;
1827 return 0;
1828}
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1831{
1832 switch (dev->type) {
1833 case ARPHRD_ETHER:
1834 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001835 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001837 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001839 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001840 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001841 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001842 case ARPHRD_IPGRE:
1843 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb82013-12-11 17:05:36 +02001844 case ARPHRD_6LOWPAN:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001845 case ARPHRD_IEEE802154:
1846 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001847 case ARPHRD_IEEE1394:
1848 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001849 case ARPHRD_TUNNEL6:
1850 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852 return -1;
1853}
1854
1855static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1856{
1857 int err = -1;
1858 struct inet6_ifaddr *ifp;
1859
1860 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001861 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1863 memcpy(eui, ifp->addr.s6_addr+8, 8);
1864 err = 0;
1865 break;
1866 }
1867 }
1868 read_unlock_bh(&idev->lock);
1869 return err;
1870}
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001873static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001876 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 /*
1880 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1881 * check if generated address is not inappropriate
1882 *
1883 * - Reserved subnet anycast (RFC 2526)
1884 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001885 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 * 00-00-5E-FE-xx-xx-xx-xx
1887 * - value 0
1888 * - XXX: already assigned to an address on the device
1889 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001890 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1892 (idev->rndid[7]&0x80))
1893 goto regen;
1894 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1895 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1896 goto regen;
1897 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1898 goto regen;
1899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
1902static void ipv6_regen_rndid(unsigned long data)
1903{
1904 struct inet6_dev *idev = (struct inet6_dev *) data;
1905 unsigned long expires;
1906
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001907 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 write_lock_bh(&idev->lock);
1909
1910 if (idev->dead)
1911 goto out;
1912
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001913 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001916 idev->cnf.temp_prefered_lft * HZ -
Jiri Pirko1f9248e2013-12-07 19:26:53 +01001917 idev->cnf.regen_max_retry * idev->cnf.dad_transmits *
1918 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) -
Ben Hutchings784e2712010-06-26 11:42:55 +00001919 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001921 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1922 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 goto out;
1924 }
1925
1926 if (!mod_timer(&idev->regen_timer, expires))
1927 in6_dev_hold(idev);
1928
1929out:
1930 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001931 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 in6_dev_put(idev);
1933}
1934
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001935static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001936{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001938 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941/*
1942 * Add prefix route.
1943 */
1944
1945static void
1946addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001947 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Thomas Graf86872cb2006-08-22 00:01:08 -07001949 struct fib6_config cfg = {
1950 .fc_table = RT6_TABLE_PREFIX,
1951 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1952 .fc_ifindex = dev->ifindex,
1953 .fc_expires = expires,
1954 .fc_dst_len = plen,
1955 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001956 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001957 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001960 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 /* Prevent useless cloning on PtP SIT.
1963 This thing is done here expecting that the whole
1964 class of non-broadcast devices need not cloning.
1965 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001966#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001967 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1968 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001969#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Thomas Graf86872cb2006-08-22 00:01:08 -07001971 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001974
1975static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1976 int plen,
1977 const struct net_device *dev,
1978 u32 flags, u32 noflags)
1979{
1980 struct fib6_node *fn;
1981 struct rt6_info *rt = NULL;
1982 struct fib6_table *table;
1983
1984 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1985 if (table == NULL)
1986 return NULL;
1987
Li RongQing5744dd92012-09-11 21:59:01 +00001988 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001989 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1990 if (!fn)
1991 goto out;
1992 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001993 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001994 continue;
1995 if ((rt->rt6i_flags & flags) != flags)
1996 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001997 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001998 continue;
1999 dst_hold(&rt->dst);
2000 break;
2001 }
2002out:
Li RongQing5744dd92012-09-11 21:59:01 +00002003 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002004 return rt;
2005}
2006
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008/* Create "default" multicast route to the interface */
2009
2010static void addrconf_add_mroute(struct net_device *dev)
2011{
Thomas Graf86872cb2006-08-22 00:01:08 -07002012 struct fib6_config cfg = {
2013 .fc_table = RT6_TABLE_LOCAL,
2014 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2015 .fc_ifindex = dev->ifindex,
2016 .fc_dst_len = 8,
2017 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002018 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002019 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Thomas Graf86872cb2006-08-22 00:01:08 -07002021 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2022
2023 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2027{
2028 struct inet6_dev *idev;
2029
2030 ASSERT_RTNL();
2031
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002032 idev = ipv6_find_idev(dev);
2033 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002034 return ERR_PTR(-ENOBUFS);
2035
2036 if (idev->cnf.disable_ipv6)
2037 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002040 if (!(dev->flags & IFF_LOOPBACK))
2041 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return idev;
2044}
2045
Jiri Pirko53bd6742013-12-06 09:45:22 +01002046static void manage_tempaddrs(struct inet6_dev *idev,
2047 struct inet6_ifaddr *ifp,
2048 __u32 valid_lft, __u32 prefered_lft,
2049 bool create, unsigned long now)
2050{
2051 u32 flags;
2052 struct inet6_ifaddr *ift;
2053
2054 read_lock_bh(&idev->lock);
2055 /* update all temporary addresses in the list */
2056 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2057 int age, max_valid, max_prefered;
2058
2059 if (ifp != ift->ifpub)
2060 continue;
2061
2062 /* RFC 4941 section 3.3:
2063 * If a received option will extend the lifetime of a public
2064 * address, the lifetimes of temporary addresses should
2065 * be extended, subject to the overall constraint that no
2066 * temporary addresses should ever remain "valid" or "preferred"
2067 * for a time longer than (TEMP_VALID_LIFETIME) or
2068 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2069 */
2070 age = (now - ift->cstamp) / HZ;
2071 max_valid = idev->cnf.temp_valid_lft - age;
2072 if (max_valid < 0)
2073 max_valid = 0;
2074
2075 max_prefered = idev->cnf.temp_prefered_lft -
2076 idev->cnf.max_desync_factor - age;
2077 if (max_prefered < 0)
2078 max_prefered = 0;
2079
2080 if (valid_lft > max_valid)
2081 valid_lft = max_valid;
2082
2083 if (prefered_lft > max_prefered)
2084 prefered_lft = max_prefered;
2085
2086 spin_lock(&ift->lock);
2087 flags = ift->flags;
2088 ift->valid_lft = valid_lft;
2089 ift->prefered_lft = prefered_lft;
2090 ift->tstamp = now;
2091 if (prefered_lft > 0)
2092 ift->flags &= ~IFA_F_DEPRECATED;
2093
2094 spin_unlock(&ift->lock);
2095 if (!(flags&IFA_F_TENTATIVE))
2096 ipv6_ifa_notify(0, ift);
2097 }
2098
2099 if ((create || list_empty(&idev->tempaddr_list)) &&
2100 idev->cnf.use_tempaddr > 0) {
2101 /* When a new public address is created as described
2102 * in [ADDRCONF], also create a new temporary address.
2103 * Also create a temporary address if it's enabled but
2104 * no temporary address currently exists.
2105 */
2106 read_unlock_bh(&idev->lock);
2107 ipv6_create_tempaddr(ifp, NULL);
2108 } else {
2109 read_unlock_bh(&idev->lock);
2110 }
2111}
2112
Neil Hormane6bff992012-01-04 10:49:15 +00002113void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
2115 struct prefix_info *pinfo;
2116 __u32 valid_lft;
2117 __u32 prefered_lft;
2118 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002120 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002125 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return;
2127 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /*
2130 * Validation checks ([ADDRCONF], page 19)
2131 */
2132
2133 addr_type = ipv6_addr_type(&pinfo->prefix);
2134
2135 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2136 return;
2137
2138 valid_lft = ntohl(pinfo->valid);
2139 prefered_lft = ntohl(pinfo->prefered);
2140
2141 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002142 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 return;
2144 }
2145
2146 in6_dev = in6_dev_get(dev);
2147
2148 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002149 net_dbg_ratelimited("addrconf: device %s not configured\n",
2150 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return;
2152 }
2153
2154 /*
2155 * Two things going on here:
2156 * 1) Add routes for on-link prefixes
2157 * 2) Configure prefixes with the auto flag set
2158 */
2159
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002160 if (pinfo->onlink) {
2161 struct rt6_info *rt;
2162 unsigned long rt_expires;
2163
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002164 /* Avoid arithmetic overflow. Really, we could
2165 * save rt_expires in seconds, likely valid_lft,
2166 * but it would require division in fib gc, that it
2167 * not good.
2168 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002169 if (HZ > USER_HZ)
2170 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2171 else
2172 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002173
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002174 if (addrconf_finite_timeout(rt_expires))
2175 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002177 rt = addrconf_get_prefix_route(&pinfo->prefix,
2178 pinfo->prefix_len,
2179 dev,
2180 RTF_ADDRCONF | RTF_PREFIX_RT,
2181 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002183 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002184 /* Autoconf prefix route */
2185 if (valid_lft == 0) {
2186 ip6_del_rt(rt);
2187 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002188 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002189 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002190 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002191 } else {
Gao feng1716a962012-04-06 00:13:10 +00002192 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
2194 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002195 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002196 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2197 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002198 /* not infinity */
2199 flags |= RTF_EXPIRES;
2200 expires = jiffies_to_clock_t(rt_expires);
2201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002203 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002205 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207
2208 /* Try to figure out our local address for this prefix */
2209
2210 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002211 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 struct in6_addr addr;
2213 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002214 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 if (pinfo->prefix_len == 64) {
2217 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002218
2219 if (!ipv6_addr_any(&in6_dev->token)) {
2220 read_lock_bh(&in6_dev->lock);
2221 memcpy(addr.s6_addr + 8,
2222 in6_dev->token.s6_addr + 8, 8);
2223 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002224 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002225 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2226 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 in6_dev_put(in6_dev);
2228 return;
2229 }
2230 goto ok;
2231 }
Joe Perchese87cc472012-05-13 21:56:26 +00002232 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2233 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 in6_dev_put(in6_dev);
2235 return;
2236
2237ok:
2238
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002239 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 if (ifp == NULL && valid_lft) {
2242 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002243 u32 addr_flags = 0;
2244
2245#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2246 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002247 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002248 addr_flags = IFA_F_OPTIMISTIC;
2249#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 /* Do not allow to create too much of autoconfigured
2252 * addresses; this would be too easy way to crash kernel.
2253 */
2254 if (!max_addresses ||
2255 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002256 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2257 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002258 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002259 addr_flags, valid_lft,
2260 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002262 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 in6_dev_put(in6_dev);
2264 return;
2265 }
2266
Jiri Pirko53bd6742013-12-06 09:45:22 +01002267 ifp->flags |= IFA_F_MANAGETEMPADDR;
Jiri Benc8a226b22013-08-01 10:41:28 +02002268 update_lft = 0;
2269 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002271 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002272 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
2274
2275 if (ifp) {
Jiri Pirko479840f2013-12-06 09:45:21 +01002276 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 u32 stored_lft;
2279
2280 /* update lifetime (RFC2462 5.5.3 e) */
2281 spin_lock(&ifp->lock);
2282 now = jiffies;
2283 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2284 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2285 else
2286 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002287 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002288 const u32 minimum_lft = min(
2289 stored_lft, (u32)MIN_VALID_LIFETIME);
2290 valid_lft = max(valid_lft, minimum_lft);
2291
2292 /* RFC4862 Section 5.5.3e:
2293 * "Note that the preferred lifetime of the
2294 * corresponding address is always reset to
2295 * the Preferred Lifetime in the received
2296 * Prefix Information option, regardless of
2297 * whether the valid lifetime is also reset or
2298 * ignored."
2299 *
2300 * So we should always update prefered_lft here.
2301 */
2302 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 }
2304
2305 if (update_lft) {
2306 ifp->valid_lft = valid_lft;
2307 ifp->prefered_lft = prefered_lft;
2308 ifp->tstamp = now;
2309 flags = ifp->flags;
2310 ifp->flags &= ~IFA_F_DEPRECATED;
2311 spin_unlock(&ifp->lock);
2312
2313 if (!(flags&IFA_F_TENTATIVE))
2314 ipv6_ifa_notify(0, ifp);
2315 } else
2316 spin_unlock(&ifp->lock);
2317
Jiri Pirko53bd6742013-12-06 09:45:22 +01002318 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2319 create, now);
David S. Miller5d9efa72013-10-28 20:07:50 -04002320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 in6_ifa_put(ifp);
2322 addrconf_verify(0);
2323 }
2324 }
2325 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2326 in6_dev_put(in6_dev);
2327}
2328
2329/*
2330 * Set destination address.
2331 * Special case for SIT interfaces where we create a new "virtual"
2332 * device.
2333 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002334int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335{
2336 struct in6_ifreq ireq;
2337 struct net_device *dev;
2338 int err = -EINVAL;
2339
2340 rtnl_lock();
2341
2342 err = -EFAULT;
2343 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2344 goto err_exit;
2345
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002346 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 err = -ENODEV;
2349 if (dev == NULL)
2350 goto err_exit;
2351
Amerigo Wang07a93622012-10-29 16:23:10 +00002352#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002354 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 struct ip_tunnel_parm p;
2357
2358 err = -EADDRNOTAVAIL;
2359 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2360 goto err_exit;
2361
2362 memset(&p, 0, sizeof(p));
2363 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2364 p.iph.saddr = 0;
2365 p.iph.version = 4;
2366 p.iph.ihl = 5;
2367 p.iph.protocol = IPPROTO_IPV6;
2368 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002369 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002371 if (ops->ndo_do_ioctl) {
2372 mm_segment_t oldfs = get_fs();
2373
2374 set_fs(KERNEL_DS);
2375 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2376 set_fs(oldfs);
2377 } else
2378 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 if (err == 0) {
2381 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002382 dev = __dev_get_by_name(net, p.name);
2383 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 goto err_exit;
2385 err = dev_open(dev);
2386 }
2387 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002388#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390err_exit:
2391 rtnl_unlock();
2392 return err;
2393}
2394
2395/*
2396 * Manual configuration of address on an interface
2397 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002398static int inet6_addr_add(struct net *net, int ifindex,
2399 const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002400 const struct in6_addr *peer_pfx,
Jiri Pirko479840f2013-12-06 09:45:21 +01002401 unsigned int plen, __u32 ifa_flags,
2402 __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
2404 struct inet6_ifaddr *ifp;
2405 struct inet6_dev *idev;
2406 struct net_device *dev;
2407 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002408 u32 flags;
2409 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002410 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002413
Thomas Graf24ef0da2008-05-28 16:54:22 +02002414 if (plen > 128)
2415 return -EINVAL;
2416
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002417 /* check the lifetime */
2418 if (!valid_lft || prefered_lft > valid_lft)
2419 return -EINVAL;
2420
Jiri Pirko53bd6742013-12-06 09:45:22 +01002421 if (ifa_flags & IFA_F_MANAGETEMPADDR && plen != 64)
2422 return -EINVAL;
2423
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002424 dev = __dev_get_by_index(net, ifindex);
2425 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002427
Brian Haley64e724f2010-07-20 10:34:30 +00002428 idev = addrconf_add_dev(dev);
2429 if (IS_ERR(idev))
2430 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432 scope = ipv6_addr_scope(pfx);
2433
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002434 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2435 if (addrconf_finite_timeout(timeout)) {
2436 expires = jiffies_to_clock_t(timeout * HZ);
2437 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002438 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002439 } else {
2440 expires = 0;
2441 flags = 0;
2442 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002443 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002444
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002445 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2446 if (addrconf_finite_timeout(timeout)) {
2447 if (timeout == 0)
2448 ifa_flags |= IFA_F_DEPRECATED;
2449 prefered_lft = timeout;
2450 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002451
Jiri Benc8a226b22013-08-01 10:41:28 +02002452 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2453 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 if (!IS_ERR(ifp)) {
Thomas Haller761aac72014-01-15 15:36:58 +01002456 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
2457 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2458 expires, flags);
2459 }
2460
Neil Horman95c385b2007-04-25 17:08:10 -07002461 /*
2462 * Note that section 3.1 of RFC 4429 indicates
2463 * that the Optimistic flag should not be set for
2464 * manually configured addresses
2465 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002466 addrconf_dad_start(ifp);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002467 if (ifa_flags & IFA_F_MANAGETEMPADDR)
2468 manage_tempaddrs(idev, ifp, valid_lft, prefered_lft,
2469 true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002471 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 return 0;
2473 }
2474
2475 return PTR_ERR(ifp);
2476}
2477
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002478static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002479 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
2481 struct inet6_ifaddr *ifp;
2482 struct inet6_dev *idev;
2483 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002484
Thomas Graf24ef0da2008-05-28 16:54:22 +02002485 if (plen > 128)
2486 return -EINVAL;
2487
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002488 dev = __dev_get_by_index(net, ifindex);
2489 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 return -ENODEV;
2491
David S. Miller7eaa48a2013-08-20 23:44:39 -07002492 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return -ENXIO;
2494
2495 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002496 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (ifp->prefix_len == plen &&
2498 ipv6_addr_equal(pfx, &ifp->addr)) {
2499 in6_ifa_hold(ifp);
2500 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return 0;
2504 }
2505 }
2506 read_unlock_bh(&idev->lock);
2507 return -EADDRNOTAVAIL;
2508}
2509
2510
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002511int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
2513 struct in6_ifreq ireq;
2514 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002515
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002516 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2520 return -EFAULT;
2521
2522 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002523 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002524 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2525 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 rtnl_unlock();
2527 return err;
2528}
2529
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002530int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
2532 struct in6_ifreq ireq;
2533 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002534
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002535 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return -EPERM;
2537
2538 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2539 return -EFAULT;
2540
2541 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002542 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2543 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 rtnl_unlock();
2545 return err;
2546}
2547
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002548static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2549 int plen, int scope)
2550{
2551 struct inet6_ifaddr *ifp;
2552
Jiri Benc8a226b22013-08-01 10:41:28 +02002553 ifp = ipv6_add_addr(idev, addr, NULL, plen,
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002554 scope, IFA_F_PERMANENT,
2555 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002556 if (!IS_ERR(ifp)) {
2557 spin_lock_bh(&ifp->lock);
2558 ifp->flags &= ~IFA_F_TENTATIVE;
2559 spin_unlock_bh(&ifp->lock);
2560 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2561 in6_ifa_put(ifp);
2562 }
2563}
2564
Amerigo Wang07a93622012-10-29 16:23:10 +00002565#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566static void sit_add_v4_addrs(struct inet6_dev *idev)
2567{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 struct in6_addr addr;
2569 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002570 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002571 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002572 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574 ASSERT_RTNL();
2575
2576 memset(&addr, 0, sizeof(struct in6_addr));
2577 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2578
2579 if (idev->dev->flags&IFF_POINTOPOINT) {
2580 addr.s6_addr32[0] = htonl(0xfe800000);
2581 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002582 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 } else {
2584 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002585 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002586 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 }
2588
2589 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002590 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002591 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 return;
2593 }
2594
Benjamin Thery6fda7352008-03-05 10:47:47 -08002595 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002596 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002598 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 int flag = scope;
2601
2602 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 addr.s6_addr32[3] = ifa->ifa_local;
2605
2606 if (ifa->ifa_scope == RT_SCOPE_LINK)
2607 continue;
2608 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2609 if (idev->dev->flags&IFF_POINTOPOINT)
2610 continue;
2611 flag |= IFA_HOST;
2612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002614 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002615 addrconf_prefix_route(&addr, plen, idev->dev, 0,
2616 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
2618 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002621#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623static void init_loopback(struct net_device *dev)
2624{
2625 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302626 struct net_device *sp_dev;
2627 struct inet6_ifaddr *sp_ifa;
2628 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630 /* ::1 */
2631
2632 ASSERT_RTNL();
2633
David S. Miller7eaa48a2013-08-20 23:44:39 -07002634 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002635 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 return;
2637 }
2638
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002639 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302640
2641 /* Add routes to other interface's IPv6 addresses */
2642 for_each_netdev(dev_net(dev), sp_dev) {
2643 if (!strcmp(sp_dev->name, dev->name))
2644 continue;
2645
2646 idev = __in6_dev_get(sp_dev);
2647 if (!idev)
2648 continue;
2649
2650 read_lock_bh(&idev->lock);
2651 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2652
2653 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2654 continue;
2655
Gao fenga881ae12013-06-16 11:14:30 +08002656 if (sp_ifa->rt)
2657 continue;
2658
François-Xavier Le Bail57ec0af2013-12-02 11:28:49 +01002659 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302660
2661 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002662 if (!IS_ERR(sp_rt)) {
2663 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302664 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002665 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302666 }
2667 read_unlock_bh(&idev->lock);
2668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669}
2670
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002671static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002673 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002674 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Neil Horman95c385b2007-04-25 17:08:10 -07002676#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2677 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002678 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002679 addr_flags |= IFA_F_OPTIMISTIC;
2680#endif
2681
2682
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002683 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags,
2684 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002686 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002687 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 in6_ifa_put(ifp);
2689 }
2690}
2691
2692static void addrconf_dev_config(struct net_device *dev)
2693{
2694 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002695 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 ASSERT_RTNL();
2698
Herbert Xu74235a22007-06-14 13:02:55 -07002699 if ((dev->type != ARPHRD_ETHER) &&
2700 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002701 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002702 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002703 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002704 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb82013-12-11 17:05:36 +02002705 (dev->type != ARPHRD_TUNNEL6) &&
2706 (dev->type != ARPHRD_6LOWPAN)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002707 /* Alas, we support only Ethernet autoconfiguration. */
2708 return;
2709 }
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002712 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 return;
2714
2715 memset(&addr, 0, sizeof(struct in6_addr));
2716 addr.s6_addr32[0] = htonl(0xFE800000);
2717
2718 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2719 addrconf_add_linklocal(idev, &addr);
2720}
2721
Amerigo Wang07a93622012-10-29 16:23:10 +00002722#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723static void addrconf_sit_config(struct net_device *dev)
2724{
2725 struct inet6_dev *idev;
2726
2727 ASSERT_RTNL();
2728
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002729 /*
2730 * Configure the tunnel with one of our IPv4
2731 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 * our v4 addrs in the tunnel
2733 */
2734
David S. Miller7eaa48a2013-08-20 23:44:39 -07002735 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002736 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return;
2738 }
2739
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002740 if (dev->priv_flags & IFF_ISATAP) {
2741 struct in6_addr addr;
2742
2743 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002744 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2745 addrconf_add_linklocal(idev, &addr);
2746 return;
2747 }
2748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 sit_add_v4_addrs(idev);
2750
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002751 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Amerigo Wang07a93622012-10-29 16:23:10 +00002756#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002757static void addrconf_gre_config(struct net_device *dev)
2758{
2759 struct inet6_dev *idev;
2760 struct in6_addr addr;
2761
stephen hemmingeraee80b52011-06-08 10:44:30 +00002762 ASSERT_RTNL();
2763
David S. Miller7eaa48a2013-08-20 23:44:39 -07002764 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002765 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002766 return;
2767 }
2768
2769 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002770 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2771 addrconf_add_linklocal(idev, &addr);
2772}
2773#endif
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775static inline int
2776ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2777{
2778 struct in6_addr lladdr;
2779
Neil Horman95c385b2007-04-25 17:08:10 -07002780 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 addrconf_add_linklocal(idev, &lladdr);
2782 return 0;
2783 }
2784 return -1;
2785}
2786
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002787static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002788 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
Jiri Pirko351638e2013-05-28 01:30:21 +00002790 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002791 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002792 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002793 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002795 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002796 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002797 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002798 idev = ipv6_add_dev(dev);
2799 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002800 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002801 }
2802 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002805 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002806 if (dev->flags & IFF_SLAVE)
2807 break;
2808
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002809 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002810 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002811 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002812 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002813 dev->name);
2814 break;
2815 }
Kristian Slavov99081042006-02-08 16:10:53 -08002816
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002817 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2818 idev = ipv6_add_dev(dev);
2819
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002820 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002821 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002822 run_pending = 1;
2823 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002824 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002825 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002826 /* device is still not ready. */
2827 break;
2828 }
2829
2830 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002831 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002832 /* device is already configured. */
2833 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002834 idev->if_flags |= IF_READY;
2835 }
2836
Joe Perchesf3213832012-05-15 14:11:53 +00002837 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2838 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002839
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002840 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002841 }
2842
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002843 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002844#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 case ARPHRD_SIT:
2846 addrconf_sit_config(dev);
2847 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002848#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002849#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002850 case ARPHRD_IPGRE:
2851 addrconf_gre_config(dev);
2852 break;
2853#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 case ARPHRD_LOOPBACK:
2855 init_loopback(dev);
2856 break;
2857
2858 default:
2859 addrconf_dev_config(dev);
2860 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002861 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002864 if (run_pending)
2865 addrconf_dad_run(idev);
2866
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002867 /*
2868 * If the MTU changed during the interface down,
2869 * when the interface up, the changed MTU must be
2870 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002872 if (idev->cnf.mtu6 != dev->mtu &&
2873 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 rt6_mtu_change(dev, dev->mtu);
2875 idev->cnf.mtu6 = dev->mtu;
2876 }
2877 idev->tstamp = jiffies;
2878 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002879
2880 /*
2881 * If the changed mtu during down is lower than
2882 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 */
2884 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002885 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 }
2887 break;
2888
2889 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002890 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 rt6_mtu_change(dev, dev->mtu);
2892 idev->cnf.mtu6 = dev->mtu;
2893 break;
2894 }
2895
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002896 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2897 idev = ipv6_add_dev(dev);
2898 if (idev)
2899 break;
2900 }
2901
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002902 /*
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08002903 * if MTU under IPV6_MIN_MTU.
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002904 * Stop IPv6 on this interface.
2905 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 case NETDEV_DOWN:
2908 case NETDEV_UNREGISTER:
2909 /*
2910 * Remove all addresses from this interface.
2911 */
2912 addrconf_ifdown(dev, event != NETDEV_DOWN);
2913 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002917 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002918 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002919 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002920 err = snmp6_register_dev(idev);
2921 if (err)
2922 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002925
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002926 case NETDEV_PRE_TYPE_CHANGE:
2927 case NETDEV_POST_TYPE_CHANGE:
2928 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002929 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
2932 return NOTIFY_OK;
2933}
2934
2935/*
2936 * addrconf module should be notified of a device going up
2937 */
2938static struct notifier_block ipv6_dev_notf = {
2939 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940};
2941
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002942static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002943{
2944 struct inet6_dev *idev;
2945 ASSERT_RTNL();
2946
2947 idev = __in6_dev_get(dev);
2948
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002949 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002950 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002951 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002952 ipv6_mc_unmap(idev);
2953}
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955static int addrconf_ifdown(struct net_device *dev, int how)
2956{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002957 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002958 struct inet6_dev *idev;
2959 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002960 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
2962 ASSERT_RTNL();
2963
David S. Miller73a8bd72011-01-23 23:27:15 -08002964 rt6_ifdown(net, dev);
2965 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
2967 idev = __in6_dev_get(dev);
2968 if (idev == NULL)
2969 return -ENODEV;
2970
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002971 /*
2972 * Step 1: remove reference to ipv6 device from parent device.
2973 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002975 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002977
2978 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002979 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 /* Step 1.5: remove snmp6 entry */
2982 snmp6_unregister_dev(idev);
2983
2984 }
2985
David S. Miller73a8bd72011-01-23 23:27:15 -08002986 /* Step 2: clear hash table */
2987 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2988 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002989
2990 spin_lock_bh(&addrconf_hash_lock);
2991 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002992 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08002993 if (ifa->idev == idev) {
2994 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002995 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08002996 goto restart;
2997 }
2998 }
2999 spin_unlock_bh(&addrconf_hash_lock);
3000 }
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 write_lock_bh(&idev->lock);
3003
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003004 addrconf_del_rs_timer(idev);
3005
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003006 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003007 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003008 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Denis V. Lunev439e2382008-04-03 13:30:17 -07003010 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 in6_dev_put(idev);
3012
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003013 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003014 while (!list_empty(&idev->tempaddr_list)) {
3015 ifa = list_first_entry(&idev->tempaddr_list,
3016 struct inet6_ifaddr, tmp_list);
3017 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 write_unlock_bh(&idev->lock);
3019 spin_lock_bh(&ifa->lock);
3020
3021 if (ifa->ifpub) {
3022 in6_ifa_put(ifa->ifpub);
3023 ifa->ifpub = NULL;
3024 }
3025 spin_unlock_bh(&ifa->lock);
3026 in6_ifa_put(ifa);
3027 write_lock_bh(&idev->lock);
3028 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003029
stephen hemminger502a2ff2010-03-17 20:31:13 +00003030 while (!list_empty(&idev->addr_list)) {
3031 ifa = list_first_entry(&idev->addr_list,
3032 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003033 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003034
David S. Miller73a8bd72011-01-23 23:27:15 -08003035 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
David S. Miller73a8bd72011-01-23 23:27:15 -08003037 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003038
David S. Miller73a8bd72011-01-23 23:27:15 -08003039 spin_lock_bh(&ifa->state_lock);
3040 state = ifa->state;
3041 ifa->state = INET6_IFADDR_STATE_DEAD;
3042 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003043
David S. Miller73a8bd72011-01-23 23:27:15 -08003044 if (state != INET6_IFADDR_STATE_DEAD) {
3045 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003046 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003047 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003048 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003049
David S. Miller73a8bd72011-01-23 23:27:15 -08003050 write_lock_bh(&idev->lock);
3051 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003052
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 write_unlock_bh(&idev->lock);
3054
3055 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003056 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 ipv6_mc_destroy_dev(idev);
3058 else
3059 ipv6_mc_down(idev);
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003062
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003063 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003064 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003065 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 neigh_parms_release(&nd_tbl, idev->nd_parms);
3067 neigh_ifdown(&nd_tbl, dev);
3068 in6_dev_put(idev);
3069 }
3070 return 0;
3071}
3072
3073static void addrconf_rs_timer(unsigned long data)
3074{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003075 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003076 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003077 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003079 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003080 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 goto out;
3082
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003083 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003085
3086 /* Announcement received after solicitation was sent */
3087 if (idev->if_flags & IF_RA_RCVD)
3088 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003090 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003091 write_unlock(&idev->lock);
3092 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3093 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003094 &in6addr_linklocal_allrouters);
3095 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003096 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Cong Wangcaf92bc2013-08-31 13:44:32 +08003098 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003099 /* The wait after the last probe can be shorter */
3100 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3101 idev->cnf.rtr_solicits) ?
3102 idev->cnf.rtr_solicit_delay :
3103 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 /*
3106 * Note: we do not support deprecated "all on-link"
3107 * assumption any longer.
3108 */
Joe Perches91df42b2012-05-15 14:11:54 +00003109 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 }
3111
3112out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003113 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003114put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003115 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116}
3117
3118/*
3119 * Duplicate Address Detection
3120 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003121static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3122{
3123 unsigned long rand_num;
3124 struct inet6_dev *idev = ifp->idev;
3125
Neil Horman95c385b2007-04-25 17:08:10 -07003126 if (ifp->flags & IFA_F_OPTIMISTIC)
3127 rand_num = 0;
3128 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003129 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003130
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003131 ifp->dad_probes = idev->cnf.dad_transmits;
3132 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003133}
3134
David S. Millercf22f9a2012-04-14 21:37:40 -04003135static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136{
3137 struct inet6_dev *idev = ifp->idev;
3138 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140 addrconf_join_solict(dev, &ifp->addr);
3141
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003142 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003145 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003146 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003150 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003151 !(ifp->flags&IFA_F_TENTATIVE) ||
3152 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003153 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003154 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 read_unlock_bh(&idev->lock);
3156
3157 addrconf_dad_completed(ifp);
3158 return;
3159 }
3160
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003161 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003162 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003163 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003164 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003165 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003166 * - keep it tentative if it is a permanent address.
3167 * - otherwise, kill it.
3168 */
3169 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003170 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003171 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003172 }
Neil Horman95c385b2007-04-25 17:08:10 -07003173
3174 /*
3175 * Optimistic nodes can start receiving
3176 * Frames right away
3177 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003178 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003179 ip6_ins_rt(ifp->rt);
3180
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003181 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003183 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 read_unlock_bh(&idev->lock);
3185}
3186
3187static void addrconf_dad_timer(unsigned long data)
3188{
3189 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3190 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 struct in6_addr mcaddr;
3192
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003193 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003194 goto out;
3195
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003196 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003197 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003198 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 goto out;
3200 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003201
3202 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003203 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3204 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003205 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003206 goto out;
3207 }
3208
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003209 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 /*
3211 * DAD was successful
3212 */
3213
Brian Haleycc411d02009-09-09 14:41:32 +00003214 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003215 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003216 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 addrconf_dad_completed(ifp);
3219
3220 goto out;
3221 }
3222
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003223 ifp->dad_probes--;
Jiri Pirko1f9248e2013-12-07 19:26:53 +01003224 addrconf_mod_dad_timer(ifp,
3225 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00003226 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003227 write_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;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003239 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003240 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003241
3242 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244 /*
3245 * Configure the address for reception. Now it is valid.
3246 */
3247
3248 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3249
Tore Anderson026359b2011-08-28 23:47:33 +00003250 /* If added prefix is link local and we are prepared to process
3251 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 */
3253
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003254 read_lock_bh(&ifp->idev->lock);
3255 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003256 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3257 ifp->idev->valid_ll_addr_cnt == 1;
3258 send_rs = send_mld &&
3259 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003260 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003261 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003262 spin_unlock(&ifp->lock);
3263 read_unlock_bh(&ifp->idev->lock);
3264
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003265 /* While dad is in progress mld report's source address is in6_addrany.
3266 * Resend with proper ll now.
3267 */
3268 if (send_mld)
3269 ipv6_mc_dad_complete(ifp->idev);
3270
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003271 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 /*
3273 * If a host as already performed a random delay
3274 * [...] as part of DAD [...] there is no need
3275 * to delay again before sending the first RS
3276 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003277 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003278 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003279 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003281 write_lock_bh(&ifp->idev->lock);
3282 spin_lock(&ifp->lock);
3283 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003285 addrconf_mod_rs_timer(ifp->idev,
3286 ifp->idev->cnf.rtr_solicit_interval);
3287 spin_unlock(&ifp->lock);
3288 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 }
3290}
3291
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003292static void addrconf_dad_run(struct inet6_dev *idev)
3293{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003294 struct inet6_ifaddr *ifp;
3295
3296 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003297 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003298 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003299 if (ifp->flags & IFA_F_TENTATIVE &&
3300 ifp->state == INET6_IFADDR_STATE_DAD)
3301 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003302 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003303 }
3304 read_unlock_bh(&idev->lock);
3305}
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307#ifdef CONFIG_PROC_FS
3308struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003309 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003311 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312};
3313
Mihai Maruseac1d578302012-01-03 23:31:35 +00003314static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
3316 struct inet6_ifaddr *ifa = NULL;
3317 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003318 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003319 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
Mihai Maruseac1d578302012-01-03 23:31:35 +00003321 /* initial bucket if pos is 0 */
3322 if (pos == 0) {
3323 state->bucket = 0;
3324 state->offset = 0;
3325 }
3326
3327 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003328 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003329 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003330 if (!net_eq(dev_net(ifa->idev->dev), net))
3331 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003332 /* sync with offset */
3333 if (p < state->offset) {
3334 p++;
3335 continue;
3336 }
3337 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003338 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003339 }
3340
3341 /* prepare for next bucket */
3342 state->offset = 0;
3343 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003345 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346}
3347
stephen hemmingerc2e21292010-03-17 20:31:10 +00003348static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3349 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
3351 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003352 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Sasha Levinb67bfe02013-02-27 17:06:00 -08003354 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003355 if (!net_eq(dev_net(ifa->idev->dev), net))
3356 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003357 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003358 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003359 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003360
3361 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003362 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003363 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003364 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003365 if (!net_eq(dev_net(ifa->idev->dev), net))
3366 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003367 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003368 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003369 }
3370 }
3371
stephen hemmingerc2e21292010-03-17 20:31:10 +00003372 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373}
3374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003376 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003378 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003379 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381
3382static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3383{
3384 struct inet6_ifaddr *ifa;
3385
3386 ifa = if6_get_next(seq, v);
3387 ++*pos;
3388 return ifa;
3389}
3390
3391static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003392 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003394 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
3397static int if6_seq_show(struct seq_file *seq, void *v)
3398{
3399 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01003400 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003401 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 ifp->idev->dev->ifindex,
3403 ifp->prefix_len,
3404 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01003405 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 ifp->idev->dev->name);
3407 return 0;
3408}
3409
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003410static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 .start = if6_seq_start,
3412 .next = if6_seq_next,
3413 .show = if6_seq_show,
3414 .stop = if6_seq_stop,
3415};
3416
3417static int if6_seq_open(struct inode *inode, struct file *file)
3418{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003419 return seq_open_net(inode, file, &if6_seq_ops,
3420 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421}
3422
Arjan van de Ven9a321442007-02-12 00:55:35 -08003423static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 .owner = THIS_MODULE,
3425 .open = if6_seq_open,
3426 .read = seq_read,
3427 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003428 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429};
3430
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003431static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432{
Gao fengd4beaa62013-02-18 01:34:54 +00003433 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return -ENOMEM;
3435 return 0;
3436}
3437
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003438static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003439{
Gao fengece31ff2013-02-18 01:34:56 +00003440 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003441}
3442
3443static struct pernet_operations if6_proc_net_ops = {
3444 .init = if6_proc_net_init,
3445 .exit = if6_proc_net_exit,
3446};
3447
3448int __init if6_proc_init(void)
3449{
3450 return register_pernet_subsys(&if6_proc_net_ops);
3451}
3452
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453void if6_proc_exit(void)
3454{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003455 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456}
3457#endif /* CONFIG_PROC_FS */
3458
Amerigo Wang07a93622012-10-29 16:23:10 +00003459#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003460/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003461int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003462{
3463 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003464 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003465 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003466
stephen hemminger5c578aed2010-03-17 20:31:11 +00003467 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003468 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003469 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003470 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003471 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003472 (ifp->flags & IFA_F_HOMEADDRESS)) {
3473 ret = 1;
3474 break;
3475 }
3476 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00003477 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003478 return ret;
3479}
3480#endif
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482/*
3483 * Periodic address status verification
3484 */
3485
3486static void addrconf_verify(unsigned long foo)
3487{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003488 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 int i;
3491
stephen hemminger5c578aed2010-03-17 20:31:11 +00003492 rcu_read_lock_bh();
3493 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003495 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
3497 del_timer(&addr_chk_timer);
3498
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003499 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003501 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578aed2010-03-17 20:31:11 +00003502 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
Yasushi Asanofad8da32013-12-31 12:04:19 +09003505 /* When setting preferred_lft to a value not zero or
3506 * infinity, while valid_lft is infinity
3507 * IFA_F_PERMANENT has a non-infinity life time.
3508 */
3509 if ((ifp->flags & IFA_F_PERMANENT) &&
3510 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 continue;
3512
3513 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003514 /* We try to batch several events at once. */
3515 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003517 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3518 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 spin_unlock(&ifp->lock);
3520 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 ipv6_del_addr(ifp);
3522 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003523 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3524 spin_unlock(&ifp->lock);
3525 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003527 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 int deprecate = 0;
3529
3530 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3531 deprecate = 1;
3532 ifp->flags |= IFA_F_DEPRECATED;
3533 }
3534
Yasushi Asanofad8da32013-12-31 12:04:19 +09003535 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
3536 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 next = ifp->tstamp + ifp->valid_lft * HZ;
3538
3539 spin_unlock(&ifp->lock);
3540
3541 if (deprecate) {
3542 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
3544 ipv6_ifa_notify(0, ifp);
3545 in6_ifa_put(ifp);
3546 goto restart;
3547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3549 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003550 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3551 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01003552 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00003553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 if (age >= ifp->prefered_lft - regen_advance) {
3555 struct inet6_ifaddr *ifpub = ifp->ifpub;
3556 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3557 next = ifp->tstamp + ifp->prefered_lft * HZ;
3558 if (!ifp->regen_count && ifpub) {
3559 ifp->regen_count++;
3560 in6_ifa_hold(ifp);
3561 in6_ifa_hold(ifpub);
3562 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003563
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003564 spin_lock(&ifpub->lock);
3565 ifpub->regen_count = 0;
3566 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 ipv6_create_tempaddr(ifpub, ifp);
3568 in6_ifa_put(ifpub);
3569 in6_ifa_put(ifp);
3570 goto restart;
3571 }
3572 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3573 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3574 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 } else {
3576 /* ifp->prefered_lft <= ifp->valid_lft */
3577 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3578 next = ifp->tstamp + ifp->prefered_lft * HZ;
3579 spin_unlock(&ifp->lock);
3580 }
3581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 }
3583
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003584 next_sec = round_jiffies_up(next);
3585 next_sched = next;
3586
3587 /* If rounded timeout is accurate enough, accept it. */
3588 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3589 next_sched = next_sec;
3590
3591 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3592 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3593 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3594
dingtianhongba3542e2013-08-17 10:27:04 +08003595 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3596 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003597
3598 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 add_timer(&addr_chk_timer);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003600 spin_unlock(&addrconf_verify_lock);
3601 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602}
3603
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003604static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3605 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003606{
3607 struct in6_addr *pfx = NULL;
3608
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003609 *peer_pfx = NULL;
3610
Thomas Graf461d8832006-09-18 00:09:49 -07003611 if (addr)
3612 pfx = nla_data(addr);
3613
3614 if (local) {
3615 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003616 *peer_pfx = pfx;
3617 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003618 }
3619
3620 return pfx;
3621}
3622
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003623static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003624 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3625 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3626 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01003627 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07003628};
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630static int
Thomas Graf661d2962013-03-21 07:45:29 +00003631inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003633 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003634 struct ifaddrmsg *ifm;
3635 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003636 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003637 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Thomas Grafb933f712006-09-18 00:10:19 -07003639 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3640 if (err < 0)
3641 return err;
3642
3643 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003644 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 if (pfx == NULL)
3646 return -EINVAL;
3647
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003648 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649}
3650
Jiri Pirko479840f2013-12-06 09:45:21 +01003651static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003652 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003653{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003654 u32 flags;
3655 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003656 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01003657 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003658 bool had_prefixroute;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003659
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003660 if (!valid_lft || (prefered_lft > valid_lft))
3661 return -EINVAL;
3662
Jiri Pirko53bd6742013-12-06 09:45:22 +01003663 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
3664 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
3665 return -EINVAL;
3666
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003667 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3668 if (addrconf_finite_timeout(timeout)) {
3669 expires = jiffies_to_clock_t(timeout * HZ);
3670 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003671 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003672 } else {
3673 expires = 0;
3674 flags = 0;
3675 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003676 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003677
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003678 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3679 if (addrconf_finite_timeout(timeout)) {
3680 if (timeout == 0)
3681 ifa_flags |= IFA_F_DEPRECATED;
3682 prefered_lft = timeout;
3683 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003684
3685 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003686 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003687 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
3688 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003689 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01003690 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3691 IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003692 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003693 ifp->tstamp = jiffies;
3694 ifp->valid_lft = valid_lft;
3695 ifp->prefered_lft = prefered_lft;
3696
3697 spin_unlock_bh(&ifp->lock);
3698 if (!(ifp->flags&IFA_F_TENTATIVE))
3699 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003700
Thomas Haller761aac72014-01-15 15:36:58 +01003701 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
3702 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3703 expires, flags);
Thomas Haller5b84efe2014-01-15 15:36:59 +01003704 } else if (had_prefixroute) {
3705 enum cleanup_prefix_rt_t action;
3706 unsigned long rt_expires;
3707
3708 write_lock_bh(&ifp->idev->lock);
3709 action = check_cleanup_prefix_route(ifp, &rt_expires);
3710 write_unlock_bh(&ifp->idev->lock);
3711
3712 if (action != CLEANUP_PREFIX_RT_NOP) {
3713 cleanup_prefix_route(ifp, rt_expires,
3714 action == CLEANUP_PREFIX_RT_DEL);
3715 }
Thomas Haller761aac72014-01-15 15:36:58 +01003716 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01003717
3718 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
3719 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
3720 valid_lft = prefered_lft = 0;
3721 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
3722 !was_managetempaddr, jiffies);
3723 }
3724
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003725 addrconf_verify(0);
3726
3727 return 0;
3728}
3729
3730static int
Thomas Graf661d2962013-03-21 07:45:29 +00003731inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003733 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003734 struct ifaddrmsg *ifm;
3735 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003736 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003737 struct inet6_ifaddr *ifa;
3738 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003739 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01003740 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003741 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Thomas Graf461d8832006-09-18 00:09:49 -07003743 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3744 if (err < 0)
3745 return err;
3746
3747 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003748 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 if (pfx == NULL)
3750 return -EINVAL;
3751
Thomas Graf461d8832006-09-18 00:09:49 -07003752 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003753 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003754
3755 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003756 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003757 preferred_lft = ci->ifa_prefered;
3758 } else {
3759 preferred_lft = INFINITY_LIFE_TIME;
3760 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003761 }
3762
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003763 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003764 if (dev == NULL)
3765 return -ENODEV;
3766
Jiri Pirko479840f2013-12-06 09:45:21 +01003767 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3768
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003769 /* We ignore other flags so far. */
Thomas Haller761aac72014-01-15 15:36:58 +01003770 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3771 IFA_F_NOPREFIXROUTE;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003772
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003773 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003774 if (ifa == NULL) {
3775 /*
3776 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08003777 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07003778 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003779 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003780 ifm->ifa_prefixlen, ifa_flags,
3781 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003782 }
3783
Thomas Graf7198f8c2006-09-18 00:13:46 -07003784 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3785 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3786 err = -EEXIST;
3787 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003788 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003789
3790 in6_ifa_put(ifa);
3791
3792 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793}
3794
Jiri Pirko479840f2013-12-06 09:45:21 +01003795static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07003796 u8 scope, int ifindex)
3797{
3798 struct ifaddrmsg *ifm;
3799
3800 ifm = nlmsg_data(nlh);
3801 ifm->ifa_family = AF_INET6;
3802 ifm->ifa_prefixlen = prefixlen;
3803 ifm->ifa_flags = flags;
3804 ifm->ifa_scope = scope;
3805 ifm->ifa_index = ifindex;
3806}
3807
Thomas Graf85486af2006-09-18 00:11:24 -07003808static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3809 unsigned long tstamp, u32 preferred, u32 valid)
3810{
3811 struct ifa_cacheinfo ci;
3812
Thomas Graf18a31e12010-11-17 04:12:02 +00003813 ci.cstamp = cstamp_delta(cstamp);
3814 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003815 ci.ifa_prefered = preferred;
3816 ci.ifa_valid = valid;
3817
3818 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3819}
3820
Thomas Graf101bb222006-09-18 00:11:52 -07003821static inline int rt_scope(int ifa_scope)
3822{
3823 if (ifa_scope & IFA_HOST)
3824 return RT_SCOPE_HOST;
3825 else if (ifa_scope & IFA_LINK)
3826 return RT_SCOPE_LINK;
3827 else if (ifa_scope & IFA_SITE)
3828 return RT_SCOPE_SITE;
3829 else
3830 return RT_SCOPE_UNIVERSE;
3831}
3832
Thomas Graf0ab68032006-09-18 00:12:35 -07003833static inline int inet6_ifaddr_msgsize(void)
3834{
Thomas Graf339bf982006-11-10 14:10:15 -08003835 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003836 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003837 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01003838 + nla_total_size(sizeof(struct ifa_cacheinfo))
3839 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07003840}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003843 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003846 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Eric W. Biederman15e47302012-09-07 20:12:54 +00003848 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003849 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003850 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003851
Thomas Graf101bb222006-09-18 00:11:52 -07003852 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3853 ifa->idev->dev->ifindex);
3854
Yasushi Asanofad8da32013-12-31 12:04:19 +09003855 if (!((ifa->flags&IFA_F_PERMANENT) &&
3856 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07003857 preferred = ifa->prefered_lft;
3858 valid = ifa->valid_lft;
3859 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003861 if (preferred > tval)
3862 preferred -= tval;
3863 else
3864 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003865 if (valid != INFINITY_LIFE_TIME) {
3866 if (valid > tval)
3867 valid -= tval;
3868 else
3869 valid = 0;
3870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 }
3872 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003873 preferred = INFINITY_LIFE_TIME;
3874 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 }
Thomas Graf85486af2006-09-18 00:11:24 -07003876
Cong Wang7996c792013-05-22 05:41:06 +00003877 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003878 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3879 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3880 goto error;
3881 } else
3882 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3883 goto error;
3884
3885 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3886 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003887
Jiri Pirko479840f2013-12-06 09:45:21 +01003888 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
3889 goto error;
3890
Thomas Graf0ab68032006-09-18 00:12:35 -07003891 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003892
3893error:
3894 nlmsg_cancel(skb, nlh);
3895 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896}
3897
3898static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003899 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003902 u8 scope = RT_SCOPE_UNIVERSE;
3903 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Thomas Graf101bb222006-09-18 00:11:52 -07003905 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3906 scope = RT_SCOPE_SITE;
3907
Eric W. Biederman15e47302012-09-07 20:12:54 +00003908 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003909 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003910 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003911
Thomas Graf101bb222006-09-18 00:11:52 -07003912 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003913 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3914 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003915 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3916 nlmsg_cancel(skb, nlh);
3917 return -EMSGSIZE;
3918 }
Thomas Graf85486af2006-09-18 00:11:24 -07003919
Thomas Graf0ab68032006-09-18 00:12:35 -07003920 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
3923static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003924 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003927 u8 scope = RT_SCOPE_UNIVERSE;
3928 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Thomas Graf101bb222006-09-18 00:11:52 -07003930 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3931 scope = RT_SCOPE_SITE;
3932
Eric W. Biederman15e47302012-09-07 20:12:54 +00003933 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003934 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003935 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003936
Thomas Graf101bb222006-09-18 00:11:52 -07003937 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003938 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3939 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003940 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3941 nlmsg_cancel(skb, nlh);
3942 return -EMSGSIZE;
3943 }
Thomas Graf85486af2006-09-18 00:11:24 -07003944
Thomas Graf0ab68032006-09-18 00:12:35 -07003945 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946}
3947
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003948enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 UNICAST_ADDR,
3950 MULTICAST_ADDR,
3951 ANYCAST_ADDR,
3952};
3953
Eric Dumazet234b27c2009-11-12 04:11:50 +00003954/* called with rcu_read_lock() */
3955static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3956 struct netlink_callback *cb, enum addr_type_t type,
3957 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 struct ifmcaddr6 *ifmca;
3960 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003961 int err = 1;
3962 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Eric Dumazet234b27c2009-11-12 04:11:50 +00003964 read_lock_bh(&idev->lock);
3965 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003966 case UNICAST_ADDR: {
3967 struct inet6_ifaddr *ifa;
3968
Eric Dumazet234b27c2009-11-12 04:11:50 +00003969 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003970 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3971 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003972 continue;
3973 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003974 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003975 cb->nlh->nlmsg_seq,
3976 RTM_NEWADDR,
3977 NLM_F_MULTI);
3978 if (err <= 0)
3979 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003980 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003982 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003983 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003984 case MULTICAST_ADDR:
3985 /* multicast address */
3986 for (ifmca = idev->mc_list; ifmca;
3987 ifmca = ifmca->next, ip_idx++) {
3988 if (ip_idx < s_ip_idx)
3989 continue;
3990 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003991 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003992 cb->nlh->nlmsg_seq,
3993 RTM_GETMULTICAST,
3994 NLM_F_MULTI);
3995 if (err <= 0)
3996 break;
3997 }
3998 break;
3999 case ANYCAST_ADDR:
4000 /* anycast address */
4001 for (ifaca = idev->ac_list; ifaca;
4002 ifaca = ifaca->aca_next, ip_idx++) {
4003 if (ip_idx < s_ip_idx)
4004 continue;
4005 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004006 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004007 cb->nlh->nlmsg_seq,
4008 RTM_GETANYCAST,
4009 NLM_F_MULTI);
4010 if (err <= 0)
4011 break;
4012 }
4013 break;
4014 default:
4015 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004017 read_unlock_bh(&idev->lock);
4018 *p_ip_idx = ip_idx;
4019 return err;
4020}
4021
4022static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4023 enum addr_type_t type)
4024{
4025 struct net *net = sock_net(skb->sk);
4026 int h, s_h;
4027 int idx, ip_idx;
4028 int s_idx, s_ip_idx;
4029 struct net_device *dev;
4030 struct inet6_dev *idev;
4031 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004032
4033 s_h = cb->args[0];
4034 s_idx = idx = cb->args[1];
4035 s_ip_idx = ip_idx = cb->args[2];
4036
4037 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004038 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004039 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4040 idx = 0;
4041 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004042 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004043 if (idx < s_idx)
4044 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004045 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004046 s_ip_idx = 0;
4047 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004048 idev = __in6_dev_get(dev);
4049 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004050 goto cont;
4051
4052 if (in6_dump_addrs(idev, skb, cb, type,
4053 s_ip_idx, &ip_idx) <= 0)
4054 goto done;
4055cont:
4056 idx++;
4057 }
4058 }
4059done:
4060 rcu_read_unlock();
4061 cb->args[0] = h;
4062 cb->args[1] = idx;
4063 cb->args[2] = ip_idx;
4064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 return skb->len;
4066}
4067
4068static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4069{
4070 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 return inet6_dump_addr(skb, cb, type);
4073}
4074
4075static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4076{
4077 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004078
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 return inet6_dump_addr(skb, cb, type);
4080}
4081
4082
4083static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4084{
4085 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 return inet6_dump_addr(skb, cb, type);
4088}
4089
Thomas Graf661d2962013-03-21 07:45:29 +00004090static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004091{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004092 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004093 struct ifaddrmsg *ifm;
4094 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004095 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004096 struct net_device *dev = NULL;
4097 struct inet6_ifaddr *ifa;
4098 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004099 int err;
4100
Thomas Graf1b29fc22006-09-18 00:10:50 -07004101 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4102 if (err < 0)
4103 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004104
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004105 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004106 if (addr == NULL) {
4107 err = -EINVAL;
4108 goto errout;
4109 }
4110
4111 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004112 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004113 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004114
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004115 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4116 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004117 err = -EADDRNOTAVAIL;
4118 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004119 }
4120
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004121 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4122 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004123 err = -ENOBUFS;
4124 goto errout_ifa;
4125 }
4126
Eric W. Biederman15e47302012-09-07 20:12:54 +00004127 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004128 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004129 if (err < 0) {
4130 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4131 WARN_ON(err == -EMSGSIZE);
4132 kfree_skb(skb);
4133 goto errout_ifa;
4134 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004135 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004136errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004137 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004138errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004139 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004140}
4141
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4143{
4144 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004145 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004146 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Thomas Graf0ab68032006-09-18 00:12:35 -07004148 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004149 if (skb == NULL)
4150 goto errout;
4151
4152 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004153 if (err < 0) {
4154 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4155 WARN_ON(err == -EMSGSIZE);
4156 kfree_skb(skb);
4157 goto errout;
4158 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004159 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4160 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004161errout:
4162 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004163 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164}
4165
Dave Jonesb6f99a22007-03-22 12:27:49 -07004166static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 __s32 *array, int bytes)
4168{
Thomas Graf04561c12006-11-14 19:53:58 -08004169 BUG_ON(bytes < (DEVCONF_MAX * 4));
4170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 memset(array, 0, bytes);
4172 array[DEVCONF_FORWARDING] = cnf->forwarding;
4173 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4174 array[DEVCONF_MTU6] = cnf->mtu6;
4175 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4176 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4177 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4178 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4179 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004180 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4181 jiffies_to_msecs(cnf->rtr_solicit_interval);
4182 array[DEVCONF_RTR_SOLICIT_DELAY] =
4183 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004185 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4186 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4187 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4188 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4190 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4191 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4192 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4193 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004195 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004196 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004197#ifdef CONFIG_IPV6_ROUTER_PREF
4198 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004199 array[DEVCONF_RTR_PROBE_INTERVAL] =
4200 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004201#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004202 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4203#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004204#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004205 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004206 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004207#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4208 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4209#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004210#ifdef CONFIG_IPV6_MROUTE
4211 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4212#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004213 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004214 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004215 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004216 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004217 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218}
4219
Thomas Grafb382b192010-11-16 04:33:57 +00004220static inline size_t inet6_ifla6_size(void)
4221{
4222 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4223 + nla_total_size(sizeof(struct ifla_cacheinfo))
4224 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4225 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004226 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4227 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004228}
4229
Thomas Graf339bf982006-11-10 14:10:15 -08004230static inline size_t inet6_if_nlmsg_size(void)
4231{
4232 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4233 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4234 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4235 + nla_total_size(4) /* IFLA_MTU */
4236 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004237 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004238}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004239
Eric Dumazetbe281e52011-05-19 01:14:23 +00004240static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004241 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004242{
4243 int i;
4244 int pad = bytes - sizeof(u64) * items;
4245 BUG_ON(pad < 0);
4246
4247 /* Use put_unaligned() because stats may not be aligned for u64. */
4248 put_unaligned(items, &stats[0]);
4249 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004250 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004251
4252 memset(&stats[items], 0, pad);
4253}
4254
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004255static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4256 int items, int bytes, size_t syncpoff)
4257{
4258 int i;
4259 int pad = bytes - sizeof(u64) * items;
4260 BUG_ON(pad < 0);
4261
4262 /* Use put_unaligned() because stats may not be aligned for u64. */
4263 put_unaligned(items, &stats[0]);
4264 for (i = 1; i < items; i++)
4265 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4266
4267 memset(&stats[items], 0, pad);
4268}
4269
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004270static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4271 int bytes)
4272{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004273 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004274 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004275 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4276 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004277 break;
4278 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004279 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004280 break;
4281 }
4282}
4283
Thomas Grafb382b192010-11-16 04:33:57 +00004284static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004286 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004287 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
David S. Millerc78679e2012-04-01 20:27:33 -04004289 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4290 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004292 ci.tstamp = cstamp_delta(idev->tstamp);
4293 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e2013-12-07 19:26:53 +01004294 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04004295 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4296 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004297 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4298 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004299 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004300 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004302 /* XXX - MC not implemented */
4303
4304 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4305 if (nla == NULL)
4306 goto nla_put_failure;
4307 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4308
4309 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4310 if (nla == NULL)
4311 goto nla_put_failure;
4312 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004314 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4315 if (nla == NULL)
4316 goto nla_put_failure;
4317 read_lock_bh(&idev->lock);
4318 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4319 read_unlock_bh(&idev->lock);
4320
Thomas Grafb382b192010-11-16 04:33:57 +00004321 return 0;
4322
4323nla_put_failure:
4324 return -EMSGSIZE;
4325}
4326
4327static size_t inet6_get_link_af_size(const struct net_device *dev)
4328{
4329 if (!__in6_dev_get(dev))
4330 return 0;
4331
4332 return inet6_ifla6_size();
4333}
4334
4335static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4336{
4337 struct inet6_dev *idev = __in6_dev_get(dev);
4338
4339 if (!idev)
4340 return -ENODATA;
4341
4342 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4343 return -EMSGSIZE;
4344
4345 return 0;
4346}
4347
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004348static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4349{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004350 struct inet6_ifaddr *ifp;
4351 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004352 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004353 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004354
4355 if (token == NULL)
4356 return -EINVAL;
4357 if (ipv6_addr_any(token))
4358 return -EINVAL;
4359 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4360 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004361 if (!ipv6_accept_ra(idev))
4362 return -EINVAL;
4363 if (idev->cnf.rtr_solicits <= 0)
4364 return -EINVAL;
4365
4366 write_lock_bh(&idev->lock);
4367
4368 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4369 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4370
4371 write_unlock_bh(&idev->lock);
4372
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004373 if (!idev->dead && (idev->if_flags & IF_READY) &&
4374 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4375 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004376
4377 /* If we're not ready, then normal ifup will take care
4378 * of this. Otherwise, we need to request our rs here.
4379 */
4380 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4381 update_rs = true;
4382 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004383
4384 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004385
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004386 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004387 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004388 idev->rs_probes = 1;
4389 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4390 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004391
4392 /* Well, that's kinda nasty ... */
4393 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4394 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004395 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004396 ifp->valid_lft = 0;
4397 ifp->prefered_lft = 0;
4398 }
4399 spin_unlock(&ifp->lock);
4400 }
4401
4402 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004403 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004404 return 0;
4405}
4406
4407static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4408{
4409 int err = -EINVAL;
4410 struct inet6_dev *idev = __in6_dev_get(dev);
4411 struct nlattr *tb[IFLA_INET6_MAX + 1];
4412
4413 if (!idev)
4414 return -EAFNOSUPPORT;
4415
4416 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4417 BUG();
4418
4419 if (tb[IFLA_INET6_TOKEN])
4420 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4421
4422 return err;
4423}
4424
Thomas Grafb382b192010-11-16 04:33:57 +00004425static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004426 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004427{
4428 struct net_device *dev = idev->dev;
4429 struct ifinfomsg *hdr;
4430 struct nlmsghdr *nlh;
4431 void *protoinfo;
4432
Eric W. Biederman15e47302012-09-07 20:12:54 +00004433 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004434 if (nlh == NULL)
4435 return -EMSGSIZE;
4436
4437 hdr = nlmsg_data(nlh);
4438 hdr->ifi_family = AF_INET6;
4439 hdr->__ifi_pad = 0;
4440 hdr->ifi_type = dev->type;
4441 hdr->ifi_index = dev->ifindex;
4442 hdr->ifi_flags = dev_get_flags(dev);
4443 hdr->ifi_change = 0;
4444
David S. Millerc78679e2012-04-01 20:27:33 -04004445 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4446 (dev->addr_len &&
4447 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4448 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4449 (dev->ifindex != dev->iflink &&
4450 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4451 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004452 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4453 if (protoinfo == NULL)
4454 goto nla_put_failure;
4455
4456 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4457 goto nla_put_failure;
4458
Thomas Graf04561c12006-11-14 19:53:58 -08004459 nla_nest_end(skb, protoinfo);
4460 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
Thomas Graf04561c12006-11-14 19:53:58 -08004462nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004463 nlmsg_cancel(skb, nlh);
4464 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465}
4466
4467static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4468{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004469 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004470 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004471 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 struct net_device *dev;
4473 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004474 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Eric Dumazet84d26972009-11-09 12:11:28 +00004476 s_h = cb->args[0];
4477 s_idx = cb->args[1];
4478
4479 rcu_read_lock();
4480 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4481 idx = 0;
4482 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004483 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004484 if (idx < s_idx)
4485 goto cont;
4486 idev = __in6_dev_get(dev);
4487 if (!idev)
4488 goto cont;
4489 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004490 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004491 cb->nlh->nlmsg_seq,
4492 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4493 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004494cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004495 idx++;
4496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004498out:
4499 rcu_read_unlock();
4500 cb->args[1] = idx;
4501 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503 return skb->len;
4504}
4505
4506void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4507{
4508 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004509 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004510 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004511
Thomas Graf339bf982006-11-10 14:10:15 -08004512 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004513 if (skb == NULL)
4514 goto errout;
4515
4516 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004517 if (err < 0) {
4518 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4519 WARN_ON(err == -EMSGSIZE);
4520 kfree_skb(skb);
4521 goto errout;
4522 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004523 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004524 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004525errout:
4526 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004527 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528}
4529
Thomas Graf339bf982006-11-10 14:10:15 -08004530static inline size_t inet6_prefix_nlmsg_size(void)
4531{
4532 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4533 + nla_total_size(sizeof(struct in6_addr))
4534 + nla_total_size(sizeof(struct prefix_cacheinfo));
4535}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004538 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004539 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004541 struct prefixmsg *pmsg;
4542 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 struct prefix_cacheinfo ci;
4544
Eric W. Biederman15e47302012-09-07 20:12:54 +00004545 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004546 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004547 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004548
4549 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004551 pmsg->prefix_pad1 = 0;
4552 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 pmsg->prefix_ifindex = idev->dev->ifindex;
4554 pmsg->prefix_len = pinfo->prefix_len;
4555 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004556 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 pmsg->prefix_flags = 0;
4558 if (pinfo->onlink)
4559 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4560 if (pinfo->autoconf)
4561 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4562
David S. Millerc78679e2012-04-01 20:27:33 -04004563 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4564 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 ci.preferred_time = ntohl(pinfo->prefered);
4566 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004567 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4568 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004569 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Thomas Graf6051e2f2006-11-14 19:54:19 -08004571nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004572 nlmsg_cancel(skb, nlh);
4573 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574}
4575
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004576static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 struct prefix_info *pinfo)
4578{
4579 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004580 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004581 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
Thomas Graf339bf982006-11-10 14:10:15 -08004583 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004584 if (skb == NULL)
4585 goto errout;
4586
4587 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004588 if (err < 0) {
4589 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4590 WARN_ON(err == -EMSGSIZE);
4591 kfree_skb(skb);
4592 goto errout;
4593 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004594 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4595 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004596errout:
4597 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004598 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599}
4600
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004601static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4602{
4603 write_lock_bh(&ifp->idev->lock);
4604 spin_lock(&ifp->lock);
4605 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4606 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4607 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4608 ifp->idev->valid_ll_addr_cnt += count;
4609 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4610 spin_unlock(&ifp->lock);
4611 write_unlock_bh(&ifp->idev->lock);
4612}
4613
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4615{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004616 struct net *net = dev_net(ifp->idev->dev);
4617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4619
4620 switch (event) {
4621 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004622 update_valid_ll_addr_cnt(ifp, 1);
4623
Neil Horman95c385b2007-04-25 17:08:10 -07004624 /*
4625 * If the address was optimistic
4626 * we inserted the route at the start of
4627 * our DAD process, so we don't need
4628 * to do it again
4629 */
4630 if (!(ifp->rt->rt6i_node))
4631 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 if (ifp->idev->cnf.forwarding)
4633 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004634 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004635 addrconf_prefix_route(&ifp->peer_addr, 128,
4636 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 break;
4638 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004639 update_valid_ll_addr_cnt(ifp, -1);
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 if (ifp->idev->cnf.forwarding)
4642 addrconf_leave_anycast(ifp);
4643 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004644 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004645 struct rt6_info *rt;
4646 struct net_device *dev = ifp->idev->dev;
4647
4648 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4649 dev->ifindex, 1);
4650 if (rt) {
4651 dst_hold(&rt->dst);
4652 if (ip6_del_rt(rt))
4653 dst_free(&rt->dst);
4654 }
4655 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004656 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004657
David S. Miller73a8bd72011-01-23 23:27:15 -08004658 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004659 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 break;
4661 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004662 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004663 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664}
4665
4666static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4667{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004668 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 if (likely(ifp->idev->dead == 0))
4670 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004671 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672}
4673
4674#ifdef CONFIG_SYSCTL
4675
4676static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004677int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 void __user *buffer, size_t *lenp, loff_t *ppos)
4679{
4680 int *valp = ctl->data;
4681 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004682 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004683 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 int ret;
4685
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004686 /*
4687 * ctl->data points to idev->cnf.forwarding, we should
4688 * not modify it until we get the rtnl lock.
4689 */
4690 lctl = *ctl;
4691 lctl.data = &val;
4692
4693 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004695 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004696 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004697 if (ret)
4698 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700}
4701
Brian Haley56d417b2009-06-01 03:07:33 -07004702static void dev_disable_change(struct inet6_dev *idev)
4703{
Cong Wang75538c22013-05-29 11:30:50 +08004704 struct netdev_notifier_info info;
4705
Brian Haley56d417b2009-06-01 03:07:33 -07004706 if (!idev || !idev->dev)
4707 return;
4708
Cong Wang75538c22013-05-29 11:30:50 +08004709 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004710 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004711 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004712 else
Cong Wang75538c22013-05-29 11:30:50 +08004713 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004714}
4715
4716static void addrconf_disable_change(struct net *net, __s32 newf)
4717{
4718 struct net_device *dev;
4719 struct inet6_dev *idev;
4720
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004721 rcu_read_lock();
4722 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004723 idev = __in6_dev_get(dev);
4724 if (idev) {
4725 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4726 idev->cnf.disable_ipv6 = newf;
4727 if (changed)
4728 dev_disable_change(idev);
4729 }
Brian Haley56d417b2009-06-01 03:07:33 -07004730 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004731 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004732}
4733
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004734static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004735{
4736 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004737 int old;
4738
4739 if (!rtnl_trylock())
4740 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004741
4742 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004743 old = *p;
4744 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004745
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004746 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4747 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004748 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004749 }
Brian Haley56d417b2009-06-01 03:07:33 -07004750
4751 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004752 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4753 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004754 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004755 dev_disable_change((struct inet6_dev *)table->extra1);
4756
4757 rtnl_unlock();
4758 return 0;
4759}
4760
4761static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004762int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004763 void __user *buffer, size_t *lenp, loff_t *ppos)
4764{
4765 int *valp = ctl->data;
4766 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004767 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004768 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004769 int ret;
4770
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004771 /*
4772 * ctl->data points to idev->cnf.disable_ipv6, we should
4773 * not modify it until we get the rtnl lock.
4774 */
4775 lctl = *ctl;
4776 lctl.data = &val;
4777
4778 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004779
4780 if (write)
4781 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004782 if (ret)
4783 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004784 return ret;
4785}
4786
stephen hemmingerc92d5492013-12-17 22:37:14 -08004787static
4788int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
4789 void __user *buffer, size_t *lenp, loff_t *ppos)
4790{
4791 int *valp = ctl->data;
4792 int ret;
4793 int old, new;
4794
4795 old = *valp;
4796 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
4797 new = *valp;
4798
4799 if (write && old != new) {
4800 struct net *net = ctl->extra2;
4801
4802 if (!rtnl_trylock())
4803 return restart_syscall();
4804
4805 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
4806 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4807 NETCONFA_IFINDEX_DEFAULT,
4808 net->ipv6.devconf_dflt);
4809 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
4810 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4811 NETCONFA_IFINDEX_ALL,
4812 net->ipv6.devconf_all);
4813 else {
4814 struct inet6_dev *idev = ctl->extra1;
4815
4816 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4817 idev->dev->ifindex,
4818 &idev->cnf);
4819 }
4820 rtnl_unlock();
4821 }
4822
4823 return ret;
4824}
4825
4826
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827static struct addrconf_sysctl_table
4828{
4829 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004830 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004831} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 .sysctl_header = NULL,
4833 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004834 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004835 .procname = "forwarding",
4836 .data = &ipv6_devconf.forwarding,
4837 .maxlen = sizeof(int),
4838 .mode = 0644,
4839 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 },
4841 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004842 .procname = "hop_limit",
4843 .data = &ipv6_devconf.hop_limit,
4844 .maxlen = sizeof(int),
4845 .mode = 0644,
4846 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 },
4848 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004849 .procname = "mtu",
4850 .data = &ipv6_devconf.mtu6,
4851 .maxlen = sizeof(int),
4852 .mode = 0644,
4853 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 },
4855 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004856 .procname = "accept_ra",
4857 .data = &ipv6_devconf.accept_ra,
4858 .maxlen = sizeof(int),
4859 .mode = 0644,
4860 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 },
4862 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004863 .procname = "accept_redirects",
4864 .data = &ipv6_devconf.accept_redirects,
4865 .maxlen = sizeof(int),
4866 .mode = 0644,
4867 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 },
4869 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004870 .procname = "autoconf",
4871 .data = &ipv6_devconf.autoconf,
4872 .maxlen = sizeof(int),
4873 .mode = 0644,
4874 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 },
4876 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004877 .procname = "dad_transmits",
4878 .data = &ipv6_devconf.dad_transmits,
4879 .maxlen = sizeof(int),
4880 .mode = 0644,
4881 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 },
4883 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004884 .procname = "router_solicitations",
4885 .data = &ipv6_devconf.rtr_solicits,
4886 .maxlen = sizeof(int),
4887 .mode = 0644,
4888 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 },
4890 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004891 .procname = "router_solicitation_interval",
4892 .data = &ipv6_devconf.rtr_solicit_interval,
4893 .maxlen = sizeof(int),
4894 .mode = 0644,
4895 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 },
4897 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004898 .procname = "router_solicitation_delay",
4899 .data = &ipv6_devconf.rtr_solicit_delay,
4900 .maxlen = sizeof(int),
4901 .mode = 0644,
4902 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 },
4904 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004905 .procname = "force_mld_version",
4906 .data = &ipv6_devconf.force_mld_version,
4907 .maxlen = sizeof(int),
4908 .mode = 0644,
4909 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004911 {
4912 .procname = "mldv1_unsolicited_report_interval",
4913 .data =
4914 &ipv6_devconf.mldv1_unsolicited_report_interval,
4915 .maxlen = sizeof(int),
4916 .mode = 0644,
4917 .proc_handler = proc_dointvec_ms_jiffies,
4918 },
4919 {
4920 .procname = "mldv2_unsolicited_report_interval",
4921 .data =
4922 &ipv6_devconf.mldv2_unsolicited_report_interval,
4923 .maxlen = sizeof(int),
4924 .mode = 0644,
4925 .proc_handler = proc_dointvec_ms_jiffies,
4926 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004928 .procname = "use_tempaddr",
4929 .data = &ipv6_devconf.use_tempaddr,
4930 .maxlen = sizeof(int),
4931 .mode = 0644,
4932 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 },
4934 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004935 .procname = "temp_valid_lft",
4936 .data = &ipv6_devconf.temp_valid_lft,
4937 .maxlen = sizeof(int),
4938 .mode = 0644,
4939 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 },
4941 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004942 .procname = "temp_prefered_lft",
4943 .data = &ipv6_devconf.temp_prefered_lft,
4944 .maxlen = sizeof(int),
4945 .mode = 0644,
4946 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 },
4948 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004949 .procname = "regen_max_retry",
4950 .data = &ipv6_devconf.regen_max_retry,
4951 .maxlen = sizeof(int),
4952 .mode = 0644,
4953 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 },
4955 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004956 .procname = "max_desync_factor",
4957 .data = &ipv6_devconf.max_desync_factor,
4958 .maxlen = sizeof(int),
4959 .mode = 0644,
4960 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004963 .procname = "max_addresses",
4964 .data = &ipv6_devconf.max_addresses,
4965 .maxlen = sizeof(int),
4966 .mode = 0644,
4967 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 },
4969 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004970 .procname = "accept_ra_defrtr",
4971 .data = &ipv6_devconf.accept_ra_defrtr,
4972 .maxlen = sizeof(int),
4973 .mode = 0644,
4974 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004975 },
4976 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004977 .procname = "accept_ra_pinfo",
4978 .data = &ipv6_devconf.accept_ra_pinfo,
4979 .maxlen = sizeof(int),
4980 .mode = 0644,
4981 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004982 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004983#ifdef CONFIG_IPV6_ROUTER_PREF
4984 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004985 .procname = "accept_ra_rtr_pref",
4986 .data = &ipv6_devconf.accept_ra_rtr_pref,
4987 .maxlen = sizeof(int),
4988 .mode = 0644,
4989 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004990 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004991 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004992 .procname = "router_probe_interval",
4993 .data = &ipv6_devconf.rtr_probe_interval,
4994 .maxlen = sizeof(int),
4995 .mode = 0644,
4996 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004997 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004998#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004999 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005000 .procname = "accept_ra_rt_info_max_plen",
5001 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
5002 .maxlen = sizeof(int),
5003 .mode = 0644,
5004 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005005 },
5006#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005007#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005008 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005009 .procname = "proxy_ndp",
5010 .data = &ipv6_devconf.proxy_ndp,
5011 .maxlen = sizeof(int),
5012 .mode = 0644,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005013 .proc_handler = addrconf_sysctl_proxy_ndp,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005014 },
5015 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005016 .procname = "accept_source_route",
5017 .data = &ipv6_devconf.accept_source_route,
5018 .maxlen = sizeof(int),
5019 .mode = 0644,
5020 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005021 },
Neil Horman95c385b2007-04-25 17:08:10 -07005022#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5023 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005024 .procname = "optimistic_dad",
5025 .data = &ipv6_devconf.optimistic_dad,
5026 .maxlen = sizeof(int),
5027 .mode = 0644,
5028 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07005029
5030 },
5031#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005032#ifdef CONFIG_IPV6_MROUTE
5033 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005034 .procname = "mc_forwarding",
5035 .data = &ipv6_devconf.mc_forwarding,
5036 .maxlen = sizeof(int),
5037 .mode = 0444,
5038 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005039 },
5040#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005041 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005042 .procname = "disable_ipv6",
5043 .data = &ipv6_devconf.disable_ipv6,
5044 .maxlen = sizeof(int),
5045 .mode = 0644,
5046 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005047 },
5048 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005049 .procname = "accept_dad",
5050 .data = &ipv6_devconf.accept_dad,
5051 .maxlen = sizeof(int),
5052 .mode = 0644,
5053 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005054 },
5055 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00005056 .procname = "force_tllao",
5057 .data = &ipv6_devconf.force_tllao,
5058 .maxlen = sizeof(int),
5059 .mode = 0644,
5060 .proc_handler = proc_dointvec
5061 },
5062 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005063 .procname = "ndisc_notify",
5064 .data = &ipv6_devconf.ndisc_notify,
5065 .maxlen = sizeof(int),
5066 .mode = 0644,
5067 .proc_handler = proc_dointvec
5068 },
5069 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005070 .procname = "suppress_frag_ndisc",
5071 .data = &ipv6_devconf.suppress_frag_ndisc,
5072 .maxlen = sizeof(int),
5073 .mode = 0644,
5074 .proc_handler = proc_dointvec
5075 },
5076 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005077 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 }
5079 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080};
5081
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005082static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005083 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084{
5085 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005087 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005088
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005089 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005091 goto out;
5092
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005093 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005094 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005096 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098
Eric W. Biederman6105e292012-04-19 13:41:24 +00005099 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100
Eric W. Biederman6105e292012-04-19 13:41:24 +00005101 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005103 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005104
5105 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005106 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005108free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005110out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005111 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112}
5113
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005114static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5115{
5116 struct addrconf_sysctl_table *t;
5117
5118 if (p->sysctl == NULL)
5119 return;
5120
5121 t = p->sysctl;
5122 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005123 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005124 kfree(t);
5125}
5126
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005127static void addrconf_sysctl_register(struct inet6_dev *idev)
5128{
Jiri Pirko73af6142013-12-07 19:26:55 +01005129 neigh_sysctl_register(idev->dev, idev->nd_parms,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005130 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005131 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005132 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005133}
5134
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005135static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005137 __addrconf_sysctl_unregister(&idev->cnf);
5138 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139}
5140
5141
5142#endif
5143
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005144static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005145{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005146 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005147 struct ipv6_devconf *all, *dflt;
5148
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005149 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5150 if (all == NULL)
5151 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005152
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005153 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5154 if (dflt == NULL)
5155 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005156
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005157 /* these will be inherited by all namespaces */
5158 dflt->autoconf = ipv6_defaults.autoconf;
5159 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005160
5161 net->ipv6.devconf_all = all;
5162 net->ipv6.devconf_dflt = dflt;
5163
5164#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005165 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005166 if (err < 0)
5167 goto err_reg_all;
5168
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005169 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005170 if (err < 0)
5171 goto err_reg_dflt;
5172#endif
5173 return 0;
5174
5175#ifdef CONFIG_SYSCTL
5176err_reg_dflt:
5177 __addrconf_sysctl_unregister(all);
5178err_reg_all:
5179 kfree(dflt);
5180#endif
5181err_alloc_dflt:
5182 kfree(all);
5183err_alloc_all:
5184 return err;
5185}
5186
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005187static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005188{
5189#ifdef CONFIG_SYSCTL
5190 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5191 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5192#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005193 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005194 kfree(net->ipv6.devconf_dflt);
5195 kfree(net->ipv6.devconf_all);
5196 }
5197}
5198
5199static struct pernet_operations addrconf_ops = {
5200 .init = addrconf_init_net,
5201 .exit = addrconf_exit_net,
5202};
5203
Thomas Grafb382b192010-11-16 04:33:57 +00005204static struct rtnl_af_ops inet6_ops = {
5205 .family = AF_INET6,
5206 .fill_link_af = inet6_fill_link_af,
5207 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005208 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005209};
5210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211/*
5212 * Init / cleanup code
5213 */
5214
5215int __init addrconf_init(void)
5216{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005217 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005218
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005219 err = ipv6_addr_label_init();
5220 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005221 pr_crit("%s: cannot initialize default policy table: %d\n",
5222 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005223 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005226 err = register_pernet_subsys(&addrconf_ops);
5227 if (err < 0)
5228 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005229
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 /* The addrconf netdev notifier requires that loopback_dev
5231 * has it's ipv6 private information allocated and setup
5232 * before it can bring up and give link-local addresses
5233 * to other devices which are up.
5234 *
5235 * Unfortunately, loopback_dev is not necessarily the first
5236 * entry in the global dev_base list of net devices. In fact,
5237 * it is likely to be the very last entry on that list.
5238 * So this causes the notifier registry below to try and
5239 * give link-local addresses to all devices besides loopback_dev
5240 * first, then loopback_dev, which cases all the non-loopback_dev
5241 * devices to fail to get a link-local address.
5242 *
5243 * So, as a temporary fix, allocate the ipv6 structure for
5244 * loopback_dev first by hand.
5245 * Longer term, all of the dependencies ipv6 has upon the loopback
5246 * device and it being up should be removed.
5247 */
5248 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005249 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250 err = -ENOMEM;
5251 rtnl_unlock();
5252 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005253 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
stephen hemmingerc2e21292010-03-17 20:31:10 +00005255 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5256 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5257
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 register_netdevice_notifier(&ipv6_dev_notf);
5259
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005261
stephen hemminger3678a9d2013-12-30 10:41:32 -08005262 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00005263
Greg Rosec7ac8672011-06-10 01:27:09 +00005264 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5265 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005266 if (err < 0)
5267 goto errout;
5268
5269 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005270 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5271 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5272 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5273 inet6_dump_ifaddr, NULL);
5274 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5275 inet6_dump_ifmcaddr, NULL);
5276 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5277 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005278 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005279 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005280
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005281 ipv6_addr_label_rtnl_register();
5282
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005284errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005285 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07005286 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005287errlo:
5288 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005289out_addrlabel:
5290 ipv6_addr_label_cleanup();
5291out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005292 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293}
5294
Daniel Lezcano09f77092007-12-13 05:34:58 -08005295void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005297 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298 int i;
5299
5300 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005301 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005302 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
5304 rtnl_lock();
5305
Thomas Grafb382b192010-11-16 04:33:57 +00005306 __rtnl_af_unregister(&inet6_ops);
5307
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005308 /* clean dev list */
5309 for_each_netdev(&init_net, dev) {
5310 if (__in6_dev_get(dev) == NULL)
5311 continue;
5312 addrconf_ifdown(dev, 1);
5313 }
5314 addrconf_ifdown(init_net.loopback_dev, 2);
5315
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317 * Check hash table.
5318 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00005319 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005320 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5321 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00005322 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323
5324 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326}