blob: ad235690684c97f873e0c24b774d5184055fe7e2 [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 hemminger5c578ae2010-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 Hideaki52e16352006-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 Hideaki52e16352006-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 hemminger5c578ae2010-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 hemminger5c578ae2010-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 hemminger5c578ae2010-03-17 20:31:11 +0000873 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-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 hemminger5c578ae2010-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 hemminger5c578ae2010-03-17 20:31:11 +00001001 spin_lock_bh(&addrconf_hash_lock);
1002 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-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 Pirko1f9248e52013-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 Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-11-08 09:38:30 -08001328
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001329 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001330 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001331
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001332 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-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 Hideaki072047e2005-11-08 09:38:30 -08001347 continue;
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001350 if (!idev)
1351 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
YOSHIFUJI Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-11-08 09:38:30 -08001375 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001376 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-11-08 09:38:30 -08001419 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001420try_nextdev:
YOSHIFUJI Hideaki072047e2005-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 Hideaki072047e2005-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 Hideaki072047e2005-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
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001440 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1441 if (ifp->scope > IFA_LINK)
1442 break;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001443 if (ifp->scope == IFA_LINK &&
1444 !(ifp->flags & banned_flags)) {
1445 *addr = ifp->addr;
1446 err = 0;
1447 break;
1448 }
1449 }
1450 return err;
1451}
1452
Neil Horman95c385b2007-04-25 17:08:10 -07001453int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001454 u32 banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
1456 struct inet6_dev *idev;
1457 int err = -EADDRNOTAVAIL;
1458
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001459 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001460 idev = __in6_dev_get(dev);
1461 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001463 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 read_unlock_bh(&idev->lock);
1465 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001466 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return err;
1468}
1469
1470static int ipv6_count_addresses(struct inet6_dev *idev)
1471{
1472 int cnt = 0;
1473 struct inet6_ifaddr *ifp;
1474
1475 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001476 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 cnt++;
1478 read_unlock_bh(&idev->lock);
1479 return cnt;
1480}
1481
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001482int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001483 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001485 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001486 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
stephen hemminger5c578ae2010-03-17 20:31:11 +00001488 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001489 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001490 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001491 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001493 !(ifp->flags&IFA_F_TENTATIVE) &&
1494 (dev == NULL || ifp->idev->dev == dev ||
1495 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1496 rcu_read_unlock_bh();
1497 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001500
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001501 rcu_read_unlock_bh();
1502 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001504EXPORT_SYMBOL(ipv6_chk_addr);
1505
David S. Miller3e81c6d2010-03-20 16:18:00 -07001506static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1507 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001509 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001510 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Sasha Levinb67bfe02013-02-27 17:06:00 -08001512 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001513 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001514 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (ipv6_addr_equal(&ifp->addr, addr)) {
1516 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001517 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001520 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001523/* Compares an address/prefix_len with addresses on device @dev.
1524 * If one is found it returns true.
1525 */
1526bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1527 const unsigned int prefix_len, struct net_device *dev)
1528{
1529 struct inet6_dev *idev;
1530 struct inet6_ifaddr *ifa;
1531 bool ret = false;
1532
1533 rcu_read_lock();
1534 idev = __in6_dev_get(dev);
1535 if (idev) {
1536 read_lock_bh(&idev->lock);
1537 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1538 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1539 if (ret)
1540 break;
1541 }
1542 read_unlock_bh(&idev->lock);
1543 }
1544 rcu_read_unlock();
1545
1546 return ret;
1547}
1548EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1549
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001550int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001551{
1552 struct inet6_dev *idev;
1553 struct inet6_ifaddr *ifa;
1554 int onlink;
1555
1556 onlink = 0;
1557 rcu_read_lock();
1558 idev = __in6_dev_get(dev);
1559 if (idev) {
1560 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001561 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001562 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1563 ifa->prefix_len);
1564 if (onlink)
1565 break;
1566 }
1567 read_unlock_bh(&idev->lock);
1568 }
1569 rcu_read_unlock();
1570 return onlink;
1571}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001572EXPORT_SYMBOL(ipv6_chk_prefix);
1573
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001574struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001575 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
David S. Millerb79d1d52010-03-25 21:39:21 -07001577 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001578 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
stephen hemminger5c578ae2010-03-17 20:31:11 +00001580 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001581 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001582 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001583 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (ipv6_addr_equal(&ifp->addr, addr)) {
1585 if (dev == NULL || ifp->idev->dev == dev ||
1586 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001587 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 in6_ifa_hold(ifp);
1589 break;
1590 }
1591 }
1592 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001593 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
David S. Millerb79d1d52010-03-25 21:39:21 -07001595 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598/* Gets referenced address, destroys ifaddr */
1599
Brian Haleycc411d02009-09-09 14:41:32 +00001600static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (ifp->flags&IFA_F_PERMANENT) {
1603 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001604 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001606 if (dad_failed)
1607 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001609 if (dad_failed)
1610 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 } else if (ifp->flags&IFA_F_TEMPORARY) {
1613 struct inet6_ifaddr *ifpub;
1614 spin_lock_bh(&ifp->lock);
1615 ifpub = ifp->ifpub;
1616 if (ifpub) {
1617 in6_ifa_hold(ifpub);
1618 spin_unlock_bh(&ifp->lock);
1619 ipv6_create_tempaddr(ifpub, ifp);
1620 in6_ifa_put(ifpub);
1621 } else {
1622 spin_unlock_bh(&ifp->lock);
1623 }
1624 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 } else
1626 ipv6_del_addr(ifp);
1627}
1628
Herbert Xuf2344a12010-05-18 15:55:27 -07001629static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1630{
1631 int err = -ENOENT;
1632
1633 spin_lock(&ifp->state_lock);
1634 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1635 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1636 err = 0;
1637 }
1638 spin_unlock(&ifp->state_lock);
1639
1640 return err;
1641}
1642
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001643void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1644{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001645 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001646
Ursula Braun853dc2e2010-10-24 23:06:43 +00001647 if (addrconf_dad_end(ifp)) {
1648 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001649 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001650 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001651
Joe Perchese87cc472012-05-13 21:56:26 +00001652 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1653 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001654
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001655 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1656 struct in6_addr addr;
1657
1658 addr.s6_addr32[0] = htonl(0xfe800000);
1659 addr.s6_addr32[1] = 0;
1660
1661 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1662 ipv6_addr_equal(&ifp->addr, &addr)) {
1663 /* DAD failed for link-local based on MAC address */
1664 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001665
Joe Perchesf3213832012-05-15 14:11:53 +00001666 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001667 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001668 }
1669 }
1670
Brian Haleycc411d02009-09-09 14:41:32 +00001671 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001672}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674/* Join to solicited addr multicast group. */
1675
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001676void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
1678 struct in6_addr maddr;
1679
1680 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1681 return;
1682
1683 addrconf_addr_solict_mult(addr, &maddr);
1684 ipv6_dev_mc_inc(dev, &maddr);
1685}
1686
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001687void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
1689 struct in6_addr maddr;
1690
1691 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1692 return;
1693
1694 addrconf_addr_solict_mult(addr, &maddr);
1695 __ipv6_dev_mc_dec(idev, &maddr);
1696}
1697
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001698static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 struct in6_addr addr;
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001701 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001702 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1704 if (ipv6_addr_any(&addr))
1705 return;
1706 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1707}
1708
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001709static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
1711 struct in6_addr addr;
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001712 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001713 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1715 if (ipv6_addr_any(&addr))
1716 return;
1717 __ipv6_dev_ac_dec(ifp->idev, &addr);
1718}
1719
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001720static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1721{
1722 if (dev->addr_len != ETH_ALEN)
1723 return -1;
1724 memcpy(eui, dev->dev_addr, 3);
1725 memcpy(eui + 5, dev->dev_addr + 3, 3);
1726
1727 /*
1728 * The zSeries OSA network cards can be shared among various
1729 * OS instances, but the OSA cards have only one MAC address.
1730 * This leads to duplicate address conflicts in conjunction
1731 * with IPv6 if more than one instance uses the same card.
1732 *
1733 * The driver for these cards can deliver a unique 16-bit
1734 * identifier for each instance sharing the same card. It is
1735 * placed instead of 0xFFFE in the interface identifier. The
1736 * "u" bit of the interface identifier is not inverted in this
1737 * case. Hence the resulting interface identifier has local
1738 * scope according to RFC2373.
1739 */
1740 if (dev->dev_id) {
1741 eui[3] = (dev->dev_id >> 8) & 0xFF;
1742 eui[4] = dev->dev_id & 0xFF;
1743 } else {
1744 eui[3] = 0xFF;
1745 eui[4] = 0xFE;
1746 eui[0] ^= 2;
1747 }
1748 return 0;
1749}
1750
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001751static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1752{
1753 if (dev->addr_len != IEEE802154_ADDR_LEN)
1754 return -1;
1755 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001756 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001757 return 0;
1758}
1759
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001760static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1761{
1762 union fwnet_hwaddr *ha;
1763
1764 if (dev->addr_len != FWNET_ALEN)
1765 return -1;
1766
1767 ha = (union fwnet_hwaddr *)dev->dev_addr;
1768
1769 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1770 eui[0] ^= 2;
1771 return 0;
1772}
1773
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001774static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1775{
1776 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1777 if (dev->addr_len != ARCNET_ALEN)
1778 return -1;
1779 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001780 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001781 return 0;
1782}
1783
1784static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1785{
1786 if (dev->addr_len != INFINIBAND_ALEN)
1787 return -1;
1788 memcpy(eui, dev->dev_addr + 12, 8);
1789 eui[0] |= 2;
1790 return 0;
1791}
1792
stephen hemmingerc61393e2010-10-04 20:17:53 +00001793static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001794{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001795 if (addr == 0)
1796 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001797 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1798 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1799 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1800 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1801 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1802 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1803 eui[1] = 0;
1804 eui[2] = 0x5E;
1805 eui[3] = 0xFE;
1806 memcpy(eui + 4, &addr, 4);
1807 return 0;
1808}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001809
1810static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1811{
1812 if (dev->priv_flags & IFF_ISATAP)
1813 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1814 return -1;
1815}
1816
stephen hemmingeraee80b52011-06-08 10:44:30 +00001817static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1818{
1819 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1820}
1821
Nicolas Dichtele8377352013-08-20 12:16:06 +02001822static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1823{
1824 memcpy(eui, dev->perm_addr, 3);
1825 memcpy(eui + 5, dev->perm_addr + 3, 3);
1826 eui[3] = 0xFF;
1827 eui[4] = 0xFE;
1828 eui[0] ^= 2;
1829 return 0;
1830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1833{
1834 switch (dev->type) {
1835 case ARPHRD_ETHER:
1836 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001837 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001839 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001841 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001842 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001843 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001844 case ARPHRD_IPGRE:
1845 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb2013-12-11 17:05:36 +02001846 case ARPHRD_6LOWPAN:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001847 case ARPHRD_IEEE802154:
1848 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001849 case ARPHRD_IEEE1394:
1850 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001851 case ARPHRD_TUNNEL6:
1852 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854 return -1;
1855}
1856
1857static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1858{
1859 int err = -1;
1860 struct inet6_ifaddr *ifp;
1861
1862 read_lock_bh(&idev->lock);
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001863 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1864 if (ifp->scope > IFA_LINK)
1865 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1867 memcpy(eui, ifp->addr.s6_addr+8, 8);
1868 err = 0;
1869 break;
1870 }
1871 }
1872 read_unlock_bh(&idev->lock);
1873 return err;
1874}
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001877static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001880 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 /*
1884 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1885 * check if generated address is not inappropriate
1886 *
1887 * - Reserved subnet anycast (RFC 2526)
1888 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001889 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 * 00-00-5E-FE-xx-xx-xx-xx
1891 * - value 0
1892 * - XXX: already assigned to an address on the device
1893 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001894 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1896 (idev->rndid[7]&0x80))
1897 goto regen;
1898 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1899 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1900 goto regen;
1901 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1902 goto regen;
1903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
1906static void ipv6_regen_rndid(unsigned long data)
1907{
1908 struct inet6_dev *idev = (struct inet6_dev *) data;
1909 unsigned long expires;
1910
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001911 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 write_lock_bh(&idev->lock);
1913
1914 if (idev->dead)
1915 goto out;
1916
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001917 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001920 idev->cnf.temp_prefered_lft * HZ -
Jiri Pirko1f9248e52013-12-07 19:26:53 +01001921 idev->cnf.regen_max_retry * idev->cnf.dad_transmits *
1922 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) -
Ben Hutchings784e2712010-06-26 11:42:55 +00001923 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001925 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1926 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 goto out;
1928 }
1929
1930 if (!mod_timer(&idev->regen_timer, expires))
1931 in6_dev_hold(idev);
1932
1933out:
1934 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001935 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 in6_dev_put(idev);
1937}
1938
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001939static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001940{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001942 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945/*
1946 * Add prefix route.
1947 */
1948
1949static void
1950addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001951 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
Thomas Graf86872cb2006-08-22 00:01:08 -07001953 struct fib6_config cfg = {
1954 .fc_table = RT6_TABLE_PREFIX,
1955 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1956 .fc_ifindex = dev->ifindex,
1957 .fc_expires = expires,
1958 .fc_dst_len = plen,
1959 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001960 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001961 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001962 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001964 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 /* Prevent useless cloning on PtP SIT.
1967 This thing is done here expecting that the whole
1968 class of non-broadcast devices need not cloning.
1969 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001970#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001971 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1972 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001973#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Thomas Graf86872cb2006-08-22 00:01:08 -07001975 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001978
1979static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1980 int plen,
1981 const struct net_device *dev,
1982 u32 flags, u32 noflags)
1983{
1984 struct fib6_node *fn;
1985 struct rt6_info *rt = NULL;
1986 struct fib6_table *table;
1987
1988 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1989 if (table == NULL)
1990 return NULL;
1991
Li RongQing5744dd92012-09-11 21:59:01 +00001992 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001993 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1994 if (!fn)
1995 goto out;
1996 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001997 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001998 continue;
1999 if ((rt->rt6i_flags & flags) != flags)
2000 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01002001 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002002 continue;
2003 dst_hold(&rt->dst);
2004 break;
2005 }
2006out:
Li RongQing5744dd92012-09-11 21:59:01 +00002007 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002008 return rt;
2009}
2010
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012/* Create "default" multicast route to the interface */
2013
2014static void addrconf_add_mroute(struct net_device *dev)
2015{
Thomas Graf86872cb2006-08-22 00:01:08 -07002016 struct fib6_config cfg = {
2017 .fc_table = RT6_TABLE_LOCAL,
2018 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2019 .fc_ifindex = dev->ifindex,
2020 .fc_dst_len = 8,
2021 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002022 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002023 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Thomas Graf86872cb2006-08-22 00:01:08 -07002025 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2026
2027 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2031{
2032 struct inet6_dev *idev;
2033
2034 ASSERT_RTNL();
2035
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002036 idev = ipv6_find_idev(dev);
2037 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002038 return ERR_PTR(-ENOBUFS);
2039
2040 if (idev->cnf.disable_ipv6)
2041 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002044 if (!(dev->flags & IFF_LOOPBACK))
2045 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return idev;
2048}
2049
Jiri Pirko53bd6742013-12-06 09:45:22 +01002050static void manage_tempaddrs(struct inet6_dev *idev,
2051 struct inet6_ifaddr *ifp,
2052 __u32 valid_lft, __u32 prefered_lft,
2053 bool create, unsigned long now)
2054{
2055 u32 flags;
2056 struct inet6_ifaddr *ift;
2057
2058 read_lock_bh(&idev->lock);
2059 /* update all temporary addresses in the list */
2060 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2061 int age, max_valid, max_prefered;
2062
2063 if (ifp != ift->ifpub)
2064 continue;
2065
2066 /* RFC 4941 section 3.3:
2067 * If a received option will extend the lifetime of a public
2068 * address, the lifetimes of temporary addresses should
2069 * be extended, subject to the overall constraint that no
2070 * temporary addresses should ever remain "valid" or "preferred"
2071 * for a time longer than (TEMP_VALID_LIFETIME) or
2072 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2073 */
2074 age = (now - ift->cstamp) / HZ;
2075 max_valid = idev->cnf.temp_valid_lft - age;
2076 if (max_valid < 0)
2077 max_valid = 0;
2078
2079 max_prefered = idev->cnf.temp_prefered_lft -
2080 idev->cnf.max_desync_factor - age;
2081 if (max_prefered < 0)
2082 max_prefered = 0;
2083
2084 if (valid_lft > max_valid)
2085 valid_lft = max_valid;
2086
2087 if (prefered_lft > max_prefered)
2088 prefered_lft = max_prefered;
2089
2090 spin_lock(&ift->lock);
2091 flags = ift->flags;
2092 ift->valid_lft = valid_lft;
2093 ift->prefered_lft = prefered_lft;
2094 ift->tstamp = now;
2095 if (prefered_lft > 0)
2096 ift->flags &= ~IFA_F_DEPRECATED;
2097
2098 spin_unlock(&ift->lock);
2099 if (!(flags&IFA_F_TENTATIVE))
2100 ipv6_ifa_notify(0, ift);
2101 }
2102
2103 if ((create || list_empty(&idev->tempaddr_list)) &&
2104 idev->cnf.use_tempaddr > 0) {
2105 /* When a new public address is created as described
2106 * in [ADDRCONF], also create a new temporary address.
2107 * Also create a temporary address if it's enabled but
2108 * no temporary address currently exists.
2109 */
2110 read_unlock_bh(&idev->lock);
2111 ipv6_create_tempaddr(ifp, NULL);
2112 } else {
2113 read_unlock_bh(&idev->lock);
2114 }
2115}
2116
Neil Hormane6bff992012-01-04 10:49:15 +00002117void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 struct prefix_info *pinfo;
2120 __u32 valid_lft;
2121 __u32 prefered_lft;
2122 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002124 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002129 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return;
2131 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 /*
2134 * Validation checks ([ADDRCONF], page 19)
2135 */
2136
2137 addr_type = ipv6_addr_type(&pinfo->prefix);
2138
2139 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2140 return;
2141
2142 valid_lft = ntohl(pinfo->valid);
2143 prefered_lft = ntohl(pinfo->prefered);
2144
2145 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002146 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return;
2148 }
2149
2150 in6_dev = in6_dev_get(dev);
2151
2152 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002153 net_dbg_ratelimited("addrconf: device %s not configured\n",
2154 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return;
2156 }
2157
2158 /*
2159 * Two things going on here:
2160 * 1) Add routes for on-link prefixes
2161 * 2) Configure prefixes with the auto flag set
2162 */
2163
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002164 if (pinfo->onlink) {
2165 struct rt6_info *rt;
2166 unsigned long rt_expires;
2167
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002168 /* Avoid arithmetic overflow. Really, we could
2169 * save rt_expires in seconds, likely valid_lft,
2170 * but it would require division in fib gc, that it
2171 * not good.
2172 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002173 if (HZ > USER_HZ)
2174 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2175 else
2176 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002177
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002178 if (addrconf_finite_timeout(rt_expires))
2179 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002181 rt = addrconf_get_prefix_route(&pinfo->prefix,
2182 pinfo->prefix_len,
2183 dev,
2184 RTF_ADDRCONF | RTF_PREFIX_RT,
2185 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002187 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002188 /* Autoconf prefix route */
2189 if (valid_lft == 0) {
2190 ip6_del_rt(rt);
2191 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002192 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002193 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002194 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002195 } else {
Gao feng1716a962012-04-06 00:13:10 +00002196 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002199 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002200 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2201 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002202 /* not infinity */
2203 flags |= RTF_EXPIRES;
2204 expires = jiffies_to_clock_t(rt_expires);
2205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002207 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002209 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211
2212 /* Try to figure out our local address for this prefix */
2213
2214 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002215 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 struct in6_addr addr;
2217 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002218 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220 if (pinfo->prefix_len == 64) {
2221 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002222
2223 if (!ipv6_addr_any(&in6_dev->token)) {
2224 read_lock_bh(&in6_dev->lock);
2225 memcpy(addr.s6_addr + 8,
2226 in6_dev->token.s6_addr + 8, 8);
2227 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002228 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002229 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2230 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 in6_dev_put(in6_dev);
2232 return;
2233 }
2234 goto ok;
2235 }
Joe Perchese87cc472012-05-13 21:56:26 +00002236 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2237 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 in6_dev_put(in6_dev);
2239 return;
2240
2241ok:
2242
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002243 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 if (ifp == NULL && valid_lft) {
2246 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002247 u32 addr_flags = 0;
2248
2249#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2250 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002251 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002252 addr_flags = IFA_F_OPTIMISTIC;
2253#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 /* Do not allow to create too much of autoconfigured
2256 * addresses; this would be too easy way to crash kernel.
2257 */
2258 if (!max_addresses ||
2259 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002260 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2261 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002262 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002263 addr_flags, valid_lft,
2264 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002266 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 in6_dev_put(in6_dev);
2268 return;
2269 }
2270
Jiri Pirko53bd6742013-12-06 09:45:22 +01002271 ifp->flags |= IFA_F_MANAGETEMPADDR;
Jiri Benc8a226b22013-08-01 10:41:28 +02002272 update_lft = 0;
2273 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002275 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002276 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 }
2278
2279 if (ifp) {
Jiri Pirko479840f2013-12-06 09:45:21 +01002280 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 u32 stored_lft;
2283
2284 /* update lifetime (RFC2462 5.5.3 e) */
2285 spin_lock(&ifp->lock);
2286 now = jiffies;
2287 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2288 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2289 else
2290 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002291 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002292 const u32 minimum_lft = min(
2293 stored_lft, (u32)MIN_VALID_LIFETIME);
2294 valid_lft = max(valid_lft, minimum_lft);
2295
2296 /* RFC4862 Section 5.5.3e:
2297 * "Note that the preferred lifetime of the
2298 * corresponding address is always reset to
2299 * the Preferred Lifetime in the received
2300 * Prefix Information option, regardless of
2301 * whether the valid lifetime is also reset or
2302 * ignored."
2303 *
2304 * So we should always update prefered_lft here.
2305 */
2306 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308
2309 if (update_lft) {
2310 ifp->valid_lft = valid_lft;
2311 ifp->prefered_lft = prefered_lft;
2312 ifp->tstamp = now;
2313 flags = ifp->flags;
2314 ifp->flags &= ~IFA_F_DEPRECATED;
2315 spin_unlock(&ifp->lock);
2316
2317 if (!(flags&IFA_F_TENTATIVE))
2318 ipv6_ifa_notify(0, ifp);
2319 } else
2320 spin_unlock(&ifp->lock);
2321
Jiri Pirko53bd6742013-12-06 09:45:22 +01002322 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2323 create, now);
David S. Miller5d9efa72013-10-28 20:07:50 -04002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 in6_ifa_put(ifp);
2326 addrconf_verify(0);
2327 }
2328 }
2329 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2330 in6_dev_put(in6_dev);
2331}
2332
2333/*
2334 * Set destination address.
2335 * Special case for SIT interfaces where we create a new "virtual"
2336 * device.
2337 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002338int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 struct in6_ifreq ireq;
2341 struct net_device *dev;
2342 int err = -EINVAL;
2343
2344 rtnl_lock();
2345
2346 err = -EFAULT;
2347 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2348 goto err_exit;
2349
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002350 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 err = -ENODEV;
2353 if (dev == NULL)
2354 goto err_exit;
2355
Amerigo Wang07a93622012-10-29 16:23:10 +00002356#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002358 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 struct ip_tunnel_parm p;
2361
2362 err = -EADDRNOTAVAIL;
2363 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2364 goto err_exit;
2365
2366 memset(&p, 0, sizeof(p));
2367 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2368 p.iph.saddr = 0;
2369 p.iph.version = 4;
2370 p.iph.ihl = 5;
2371 p.iph.protocol = IPPROTO_IPV6;
2372 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002373 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002375 if (ops->ndo_do_ioctl) {
2376 mm_segment_t oldfs = get_fs();
2377
2378 set_fs(KERNEL_DS);
2379 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2380 set_fs(oldfs);
2381 } else
2382 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 if (err == 0) {
2385 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002386 dev = __dev_get_by_name(net, p.name);
2387 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 goto err_exit;
2389 err = dev_open(dev);
2390 }
2391 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002392#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394err_exit:
2395 rtnl_unlock();
2396 return err;
2397}
2398
2399/*
2400 * Manual configuration of address on an interface
2401 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002402static int inet6_addr_add(struct net *net, int ifindex,
2403 const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002404 const struct in6_addr *peer_pfx,
Jiri Pirko479840f2013-12-06 09:45:21 +01002405 unsigned int plen, __u32 ifa_flags,
2406 __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
2408 struct inet6_ifaddr *ifp;
2409 struct inet6_dev *idev;
2410 struct net_device *dev;
2411 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002412 u32 flags;
2413 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002414 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002417
Thomas Graf24ef0da2008-05-28 16:54:22 +02002418 if (plen > 128)
2419 return -EINVAL;
2420
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002421 /* check the lifetime */
2422 if (!valid_lft || prefered_lft > valid_lft)
2423 return -EINVAL;
2424
Jiri Pirko53bd6742013-12-06 09:45:22 +01002425 if (ifa_flags & IFA_F_MANAGETEMPADDR && plen != 64)
2426 return -EINVAL;
2427
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002428 dev = __dev_get_by_index(net, ifindex);
2429 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002431
Brian Haley64e724f2010-07-20 10:34:30 +00002432 idev = addrconf_add_dev(dev);
2433 if (IS_ERR(idev))
2434 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 scope = ipv6_addr_scope(pfx);
2437
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002438 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2439 if (addrconf_finite_timeout(timeout)) {
2440 expires = jiffies_to_clock_t(timeout * HZ);
2441 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002442 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002443 } else {
2444 expires = 0;
2445 flags = 0;
2446 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002447 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002448
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002449 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2450 if (addrconf_finite_timeout(timeout)) {
2451 if (timeout == 0)
2452 ifa_flags |= IFA_F_DEPRECATED;
2453 prefered_lft = timeout;
2454 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002455
Jiri Benc8a226b22013-08-01 10:41:28 +02002456 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2457 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 if (!IS_ERR(ifp)) {
Thomas Haller761aac72014-01-15 15:36:58 +01002460 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
2461 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2462 expires, flags);
2463 }
2464
Neil Horman95c385b2007-04-25 17:08:10 -07002465 /*
2466 * Note that section 3.1 of RFC 4429 indicates
2467 * that the Optimistic flag should not be set for
2468 * manually configured addresses
2469 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002470 addrconf_dad_start(ifp);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002471 if (ifa_flags & IFA_F_MANAGETEMPADDR)
2472 manage_tempaddrs(idev, ifp, valid_lft, prefered_lft,
2473 true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002475 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return 0;
2477 }
2478
2479 return PTR_ERR(ifp);
2480}
2481
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002482static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002483 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484{
2485 struct inet6_ifaddr *ifp;
2486 struct inet6_dev *idev;
2487 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002488
Thomas Graf24ef0da2008-05-28 16:54:22 +02002489 if (plen > 128)
2490 return -EINVAL;
2491
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002492 dev = __dev_get_by_index(net, ifindex);
2493 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 return -ENODEV;
2495
David S. Miller7eaa48a2013-08-20 23:44:39 -07002496 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 return -ENXIO;
2498
2499 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002500 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 if (ifp->prefix_len == plen &&
2502 ipv6_addr_equal(pfx, &ifp->addr)) {
2503 in6_ifa_hold(ifp);
2504 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return 0;
2508 }
2509 }
2510 read_unlock_bh(&idev->lock);
2511 return -EADDRNOTAVAIL;
2512}
2513
2514
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002515int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
2517 struct in6_ifreq ireq;
2518 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002519
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002520 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2524 return -EFAULT;
2525
2526 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002527 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002528 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2529 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 rtnl_unlock();
2531 return err;
2532}
2533
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002534int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
2536 struct in6_ifreq ireq;
2537 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002538
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002539 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 return -EPERM;
2541
2542 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2543 return -EFAULT;
2544
2545 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002546 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2547 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 rtnl_unlock();
2549 return err;
2550}
2551
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002552static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2553 int plen, int scope)
2554{
2555 struct inet6_ifaddr *ifp;
2556
Jiri Benc8a226b22013-08-01 10:41:28 +02002557 ifp = ipv6_add_addr(idev, addr, NULL, plen,
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002558 scope, IFA_F_PERMANENT,
2559 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002560 if (!IS_ERR(ifp)) {
2561 spin_lock_bh(&ifp->lock);
2562 ifp->flags &= ~IFA_F_TENTATIVE;
2563 spin_unlock_bh(&ifp->lock);
2564 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2565 in6_ifa_put(ifp);
2566 }
2567}
2568
Amerigo Wang07a93622012-10-29 16:23:10 +00002569#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570static void sit_add_v4_addrs(struct inet6_dev *idev)
2571{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 struct in6_addr addr;
2573 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002574 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002575 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002576 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 ASSERT_RTNL();
2579
2580 memset(&addr, 0, sizeof(struct in6_addr));
2581 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2582
2583 if (idev->dev->flags&IFF_POINTOPOINT) {
2584 addr.s6_addr32[0] = htonl(0xfe800000);
2585 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002586 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 } else {
2588 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002589 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002590 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
2592
2593 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002594 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002595 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 return;
2597 }
2598
Benjamin Thery6fda7352008-03-05 10:47:47 -08002599 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002600 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002602 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 int flag = scope;
2605
2606 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
2608 addr.s6_addr32[3] = ifa->ifa_local;
2609
2610 if (ifa->ifa_scope == RT_SCOPE_LINK)
2611 continue;
2612 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2613 if (idev->dev->flags&IFF_POINTOPOINT)
2614 continue;
2615 flag |= IFA_HOST;
2616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002618 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002619 addrconf_prefix_route(&addr, plen, idev->dev, 0,
2620 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
2622 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002625#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
2627static void init_loopback(struct net_device *dev)
2628{
2629 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302630 struct net_device *sp_dev;
2631 struct inet6_ifaddr *sp_ifa;
2632 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 /* ::1 */
2635
2636 ASSERT_RTNL();
2637
David S. Miller7eaa48a2013-08-20 23:44:39 -07002638 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002639 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 return;
2641 }
2642
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002643 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302644
2645 /* Add routes to other interface's IPv6 addresses */
2646 for_each_netdev(dev_net(dev), sp_dev) {
2647 if (!strcmp(sp_dev->name, dev->name))
2648 continue;
2649
2650 idev = __in6_dev_get(sp_dev);
2651 if (!idev)
2652 continue;
2653
2654 read_lock_bh(&idev->lock);
2655 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2656
2657 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2658 continue;
2659
Gao feng33d99112014-01-24 16:29:11 +08002660 if (sp_ifa->rt) {
2661 /* This dst has been added to garbage list when
2662 * lo device down, release this obsolete dst and
2663 * reallocate a new router for ifa.
2664 */
2665 if (sp_ifa->rt->dst.obsolete > 0) {
2666 ip6_rt_put(sp_ifa->rt);
2667 sp_ifa->rt = NULL;
2668 } else {
2669 continue;
2670 }
2671 }
Gao fenga881ae12013-06-16 11:14:30 +08002672
François-Xavier Le Bail57ec0af2013-12-02 11:28:49 +01002673 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302674
2675 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002676 if (!IS_ERR(sp_rt)) {
2677 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302678 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002679 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302680 }
2681 read_unlock_bh(&idev->lock);
2682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
2684
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002685static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002687 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002688 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Neil Horman95c385b2007-04-25 17:08:10 -07002690#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2691 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002692 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002693 addr_flags |= IFA_F_OPTIMISTIC;
2694#endif
2695
2696
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002697 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags,
2698 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002700 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002701 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 in6_ifa_put(ifp);
2703 }
2704}
2705
2706static void addrconf_dev_config(struct net_device *dev)
2707{
2708 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002709 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 ASSERT_RTNL();
2712
Herbert Xu74235a22007-06-14 13:02:55 -07002713 if ((dev->type != ARPHRD_ETHER) &&
2714 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002715 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002716 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002717 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002718 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb2013-12-11 17:05:36 +02002719 (dev->type != ARPHRD_TUNNEL6) &&
2720 (dev->type != ARPHRD_6LOWPAN)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002721 /* Alas, we support only Ethernet autoconfiguration. */
2722 return;
2723 }
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002726 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 return;
2728
2729 memset(&addr, 0, sizeof(struct in6_addr));
2730 addr.s6_addr32[0] = htonl(0xFE800000);
2731
2732 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2733 addrconf_add_linklocal(idev, &addr);
2734}
2735
Amerigo Wang07a93622012-10-29 16:23:10 +00002736#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737static void addrconf_sit_config(struct net_device *dev)
2738{
2739 struct inet6_dev *idev;
2740
2741 ASSERT_RTNL();
2742
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002743 /*
2744 * Configure the tunnel with one of our IPv4
2745 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 * our v4 addrs in the tunnel
2747 */
2748
David S. Miller7eaa48a2013-08-20 23:44:39 -07002749 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002750 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return;
2752 }
2753
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002754 if (dev->priv_flags & IFF_ISATAP) {
2755 struct in6_addr addr;
2756
2757 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002758 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2759 addrconf_add_linklocal(idev, &addr);
2760 return;
2761 }
2762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 sit_add_v4_addrs(idev);
2764
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002765 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002768#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Amerigo Wang07a93622012-10-29 16:23:10 +00002770#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002771static void addrconf_gre_config(struct net_device *dev)
2772{
2773 struct inet6_dev *idev;
2774 struct in6_addr addr;
2775
stephen hemmingeraee80b52011-06-08 10:44:30 +00002776 ASSERT_RTNL();
2777
David S. Miller7eaa48a2013-08-20 23:44:39 -07002778 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002779 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002780 return;
2781 }
2782
2783 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002784 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2785 addrconf_add_linklocal(idev, &addr);
2786}
2787#endif
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789static inline int
2790ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2791{
2792 struct in6_addr lladdr;
2793
Neil Horman95c385b2007-04-25 17:08:10 -07002794 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 addrconf_add_linklocal(idev, &lladdr);
2796 return 0;
2797 }
2798 return -1;
2799}
2800
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002801static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002802 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
Jiri Pirko351638e2013-05-28 01:30:21 +00002804 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002805 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002806 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002807 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002809 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002810 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002811 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002812 idev = ipv6_add_dev(dev);
2813 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002814 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002815 }
2816 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002819 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002820 if (dev->flags & IFF_SLAVE)
2821 break;
2822
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002823 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002824 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002825 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002826 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002827 dev->name);
2828 break;
2829 }
Kristian Slavov99081042006-02-08 16:10:53 -08002830
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002831 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2832 idev = ipv6_add_dev(dev);
2833
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002834 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002835 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002836 run_pending = 1;
2837 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002838 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002839 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002840 /* device is still not ready. */
2841 break;
2842 }
2843
2844 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002845 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002846 /* device is already configured. */
2847 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002848 idev->if_flags |= IF_READY;
2849 }
2850
Joe Perchesf3213832012-05-15 14:11:53 +00002851 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2852 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002853
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002854 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002855 }
2856
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002857 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002858#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 case ARPHRD_SIT:
2860 addrconf_sit_config(dev);
2861 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002862#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002863#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002864 case ARPHRD_IPGRE:
2865 addrconf_gre_config(dev);
2866 break;
2867#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 case ARPHRD_LOOPBACK:
2869 init_loopback(dev);
2870 break;
2871
2872 default:
2873 addrconf_dev_config(dev);
2874 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002875 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002878 if (run_pending)
2879 addrconf_dad_run(idev);
2880
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002881 /*
2882 * If the MTU changed during the interface down,
2883 * when the interface up, the changed MTU must be
2884 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002886 if (idev->cnf.mtu6 != dev->mtu &&
2887 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 rt6_mtu_change(dev, dev->mtu);
2889 idev->cnf.mtu6 = dev->mtu;
2890 }
2891 idev->tstamp = jiffies;
2892 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002893
2894 /*
2895 * If the changed mtu during down is lower than
2896 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 */
2898 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002899 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 }
2901 break;
2902
2903 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002904 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 rt6_mtu_change(dev, dev->mtu);
2906 idev->cnf.mtu6 = dev->mtu;
2907 break;
2908 }
2909
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002910 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2911 idev = ipv6_add_dev(dev);
2912 if (idev)
2913 break;
2914 }
2915
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002916 /*
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08002917 * if MTU under IPV6_MIN_MTU.
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002918 * Stop IPv6 on this interface.
2919 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921 case NETDEV_DOWN:
2922 case NETDEV_UNREGISTER:
2923 /*
2924 * Remove all addresses from this interface.
2925 */
2926 addrconf_ifdown(dev, event != NETDEV_DOWN);
2927 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002931 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002932 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002933 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002934 err = snmp6_register_dev(idev);
2935 if (err)
2936 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002939
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002940 case NETDEV_PRE_TYPE_CHANGE:
2941 case NETDEV_POST_TYPE_CHANGE:
2942 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002943 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946 return NOTIFY_OK;
2947}
2948
2949/*
2950 * addrconf module should be notified of a device going up
2951 */
2952static struct notifier_block ipv6_dev_notf = {
2953 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954};
2955
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002956static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002957{
2958 struct inet6_dev *idev;
2959 ASSERT_RTNL();
2960
2961 idev = __in6_dev_get(dev);
2962
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002963 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002964 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002965 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002966 ipv6_mc_unmap(idev);
2967}
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969static int addrconf_ifdown(struct net_device *dev, int how)
2970{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002971 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002972 struct inet6_dev *idev;
2973 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002974 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 ASSERT_RTNL();
2977
David S. Miller73a8bd72011-01-23 23:27:15 -08002978 rt6_ifdown(net, dev);
2979 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 idev = __in6_dev_get(dev);
2982 if (idev == NULL)
2983 return -ENODEV;
2984
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002985 /*
2986 * Step 1: remove reference to ipv6 device from parent device.
2987 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002989 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002991
2992 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002993 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
2995 /* Step 1.5: remove snmp6 entry */
2996 snmp6_unregister_dev(idev);
2997
2998 }
2999
David S. Miller73a8bd72011-01-23 23:27:15 -08003000 /* Step 2: clear hash table */
3001 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3002 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003003
3004 spin_lock_bh(&addrconf_hash_lock);
3005 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003006 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003007 if (ifa->idev == idev) {
3008 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003009 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003010 goto restart;
3011 }
3012 }
3013 spin_unlock_bh(&addrconf_hash_lock);
3014 }
3015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 write_lock_bh(&idev->lock);
3017
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003018 addrconf_del_rs_timer(idev);
3019
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003020 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003021 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003022 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Denis V. Lunev439e2382008-04-03 13:30:17 -07003024 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 in6_dev_put(idev);
3026
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003027 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003028 while (!list_empty(&idev->tempaddr_list)) {
3029 ifa = list_first_entry(&idev->tempaddr_list,
3030 struct inet6_ifaddr, tmp_list);
3031 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 write_unlock_bh(&idev->lock);
3033 spin_lock_bh(&ifa->lock);
3034
3035 if (ifa->ifpub) {
3036 in6_ifa_put(ifa->ifpub);
3037 ifa->ifpub = NULL;
3038 }
3039 spin_unlock_bh(&ifa->lock);
3040 in6_ifa_put(ifa);
3041 write_lock_bh(&idev->lock);
3042 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003043
stephen hemminger502a2ff2010-03-17 20:31:13 +00003044 while (!list_empty(&idev->addr_list)) {
3045 ifa = list_first_entry(&idev->addr_list,
3046 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003047 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003048
David S. Miller73a8bd72011-01-23 23:27:15 -08003049 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
David S. Miller73a8bd72011-01-23 23:27:15 -08003051 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003052
David S. Miller73a8bd72011-01-23 23:27:15 -08003053 spin_lock_bh(&ifa->state_lock);
3054 state = ifa->state;
3055 ifa->state = INET6_IFADDR_STATE_DEAD;
3056 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003057
David S. Miller73a8bd72011-01-23 23:27:15 -08003058 if (state != INET6_IFADDR_STATE_DEAD) {
3059 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003060 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003061 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003062 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003063
David S. Miller73a8bd72011-01-23 23:27:15 -08003064 write_lock_bh(&idev->lock);
3065 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 write_unlock_bh(&idev->lock);
3068
3069 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003070 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 ipv6_mc_destroy_dev(idev);
3072 else
3073 ipv6_mc_down(idev);
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003076
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003077 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003078 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003079 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 neigh_parms_release(&nd_tbl, idev->nd_parms);
3081 neigh_ifdown(&nd_tbl, dev);
3082 in6_dev_put(idev);
3083 }
3084 return 0;
3085}
3086
3087static void addrconf_rs_timer(unsigned long data)
3088{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003089 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003090 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003091 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003093 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003094 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 goto out;
3096
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003097 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003099
3100 /* Announcement received after solicitation was sent */
3101 if (idev->if_flags & IF_RA_RCVD)
3102 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003104 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003105 write_unlock(&idev->lock);
3106 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3107 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003108 &in6addr_linklocal_allrouters);
3109 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003110 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Cong Wangcaf92bc2013-08-31 13:44:32 +08003112 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003113 /* The wait after the last probe can be shorter */
3114 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3115 idev->cnf.rtr_solicits) ?
3116 idev->cnf.rtr_solicit_delay :
3117 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 /*
3120 * Note: we do not support deprecated "all on-link"
3121 * assumption any longer.
3122 */
Joe Perches91df42b2012-05-15 14:11:54 +00003123 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 }
3125
3126out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003127 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003128put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003129 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130}
3131
3132/*
3133 * Duplicate Address Detection
3134 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003135static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3136{
3137 unsigned long rand_num;
3138 struct inet6_dev *idev = ifp->idev;
3139
Neil Horman95c385b2007-04-25 17:08:10 -07003140 if (ifp->flags & IFA_F_OPTIMISTIC)
3141 rand_num = 0;
3142 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003143 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003144
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003145 ifp->dad_probes = idev->cnf.dad_transmits;
3146 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003147}
3148
David S. Millercf22f9a2012-04-14 21:37:40 -04003149static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150{
3151 struct inet6_dev *idev = ifp->idev;
3152 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154 addrconf_join_solict(dev, &ifp->addr);
3155
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003156 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
3158 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003159 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003160 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
3163 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003164 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003165 !(ifp->flags&IFA_F_TENTATIVE) ||
3166 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003167 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003168 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 read_unlock_bh(&idev->lock);
3170
3171 addrconf_dad_completed(ifp);
3172 return;
3173 }
3174
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003175 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003176 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003177 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003178 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003179 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003180 * - keep it tentative if it is a permanent address.
3181 * - otherwise, kill it.
3182 */
3183 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003184 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003185 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003186 }
Neil Horman95c385b2007-04-25 17:08:10 -07003187
3188 /*
3189 * Optimistic nodes can start receiving
3190 * Frames right away
3191 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003192 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003193 ip6_ins_rt(ifp->rt);
3194
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003195 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003197 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 read_unlock_bh(&idev->lock);
3199}
3200
3201static void addrconf_dad_timer(unsigned long data)
3202{
3203 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3204 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 struct in6_addr mcaddr;
3206
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003207 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003208 goto out;
3209
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003210 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003211 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003212 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 goto out;
3214 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003215
3216 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003217 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3218 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003219 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003220 goto out;
3221 }
3222
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003223 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 /*
3225 * DAD was successful
3226 */
3227
Brian Haleycc411d02009-09-09 14:41:32 +00003228 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003229 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003230 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 addrconf_dad_completed(ifp);
3233
3234 goto out;
3235 }
3236
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003237 ifp->dad_probes--;
Jiri Pirko1f9248e52013-12-07 19:26:53 +01003238 addrconf_mod_dad_timer(ifp,
3239 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00003240 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003241 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
3243 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003245 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246out:
3247 in6_ifa_put(ifp);
3248}
3249
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003250/* ifp->idev must be at least read locked */
3251static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
3252{
3253 struct inet6_ifaddr *ifpiter;
3254 struct inet6_dev *idev = ifp->idev;
3255
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01003256 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
3257 if (ifpiter->scope > IFA_LINK)
3258 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003259 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
3260 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
3261 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
3262 IFA_F_PERMANENT)
3263 return false;
3264 }
3265 return true;
3266}
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3269{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003270 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003271 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003272 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003273
3274 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
3276 /*
3277 * Configure the address for reception. Now it is valid.
3278 */
3279
3280 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3281
Tore Anderson026359b2011-08-28 23:47:33 +00003282 /* If added prefix is link local and we are prepared to process
3283 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 */
3285
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003286 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003287 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003288 send_rs = send_mld &&
3289 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003290 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003291 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003292 read_unlock_bh(&ifp->idev->lock);
3293
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003294 /* While dad is in progress mld report's source address is in6_addrany.
3295 * Resend with proper ll now.
3296 */
3297 if (send_mld)
3298 ipv6_mc_dad_complete(ifp->idev);
3299
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003300 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 /*
3302 * If a host as already performed a random delay
3303 * [...] as part of DAD [...] there is no need
3304 * to delay again before sending the first RS
3305 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003306 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003307 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003308 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003310 write_lock_bh(&ifp->idev->lock);
3311 spin_lock(&ifp->lock);
3312 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003314 addrconf_mod_rs_timer(ifp->idev,
3315 ifp->idev->cnf.rtr_solicit_interval);
3316 spin_unlock(&ifp->lock);
3317 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 }
3319}
3320
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003321static void addrconf_dad_run(struct inet6_dev *idev)
3322{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003323 struct inet6_ifaddr *ifp;
3324
3325 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003326 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003327 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003328 if (ifp->flags & IFA_F_TENTATIVE &&
3329 ifp->state == INET6_IFADDR_STATE_DAD)
3330 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003331 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003332 }
3333 read_unlock_bh(&idev->lock);
3334}
3335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336#ifdef CONFIG_PROC_FS
3337struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003338 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003340 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341};
3342
Mihai Maruseac1d578302012-01-03 23:31:35 +00003343static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344{
3345 struct inet6_ifaddr *ifa = NULL;
3346 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003347 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003348 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
Mihai Maruseac1d578302012-01-03 23:31:35 +00003350 /* initial bucket if pos is 0 */
3351 if (pos == 0) {
3352 state->bucket = 0;
3353 state->offset = 0;
3354 }
3355
3356 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003357 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003358 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003359 if (!net_eq(dev_net(ifa->idev->dev), net))
3360 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003361 /* sync with offset */
3362 if (p < state->offset) {
3363 p++;
3364 continue;
3365 }
3366 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003367 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003368 }
3369
3370 /* prepare for next bucket */
3371 state->offset = 0;
3372 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003374 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375}
3376
stephen hemmingerc2e21292010-03-17 20:31:10 +00003377static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3378 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379{
3380 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003381 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Sasha Levinb67bfe02013-02-27 17:06:00 -08003383 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003384 if (!net_eq(dev_net(ifa->idev->dev), net))
3385 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003386 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003387 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003388 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003389
3390 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003391 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003392 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003393 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003394 if (!net_eq(dev_net(ifa->idev->dev), net))
3395 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003396 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003397 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003398 }
3399 }
3400
stephen hemmingerc2e21292010-03-17 20:31:10 +00003401 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402}
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003405 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003407 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003408 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409}
3410
3411static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3412{
3413 struct inet6_ifaddr *ifa;
3414
3415 ifa = if6_get_next(seq, v);
3416 ++*pos;
3417 return ifa;
3418}
3419
3420static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003421 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003423 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
3426static int if6_seq_show(struct seq_file *seq, void *v)
3427{
3428 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01003429 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003430 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 ifp->idev->dev->ifindex,
3432 ifp->prefix_len,
3433 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01003434 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 ifp->idev->dev->name);
3436 return 0;
3437}
3438
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003439static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 .start = if6_seq_start,
3441 .next = if6_seq_next,
3442 .show = if6_seq_show,
3443 .stop = if6_seq_stop,
3444};
3445
3446static int if6_seq_open(struct inode *inode, struct file *file)
3447{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003448 return seq_open_net(inode, file, &if6_seq_ops,
3449 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450}
3451
Arjan van de Ven9a321442007-02-12 00:55:35 -08003452static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 .owner = THIS_MODULE,
3454 .open = if6_seq_open,
3455 .read = seq_read,
3456 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003457 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458};
3459
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003460static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461{
Gao fengd4beaa62013-02-18 01:34:54 +00003462 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 return -ENOMEM;
3464 return 0;
3465}
3466
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003467static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003468{
Gao fengece31ff2013-02-18 01:34:56 +00003469 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003470}
3471
3472static struct pernet_operations if6_proc_net_ops = {
3473 .init = if6_proc_net_init,
3474 .exit = if6_proc_net_exit,
3475};
3476
3477int __init if6_proc_init(void)
3478{
3479 return register_pernet_subsys(&if6_proc_net_ops);
3480}
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482void if6_proc_exit(void)
3483{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003484 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485}
3486#endif /* CONFIG_PROC_FS */
3487
Amerigo Wang07a93622012-10-29 16:23:10 +00003488#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003489/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003490int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003491{
3492 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003493 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003494 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003495
stephen hemminger5c578ae2010-03-17 20:31:11 +00003496 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003497 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003498 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003499 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003500 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003501 (ifp->flags & IFA_F_HOMEADDRESS)) {
3502 ret = 1;
3503 break;
3504 }
3505 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003506 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003507 return ret;
3508}
3509#endif
3510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511/*
3512 * Periodic address status verification
3513 */
3514
3515static void addrconf_verify(unsigned long foo)
3516{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003517 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 int i;
3520
stephen hemminger5c578ae2010-03-17 20:31:11 +00003521 rcu_read_lock_bh();
3522 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003524 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
3526 del_timer(&addr_chk_timer);
3527
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003528 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003530 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003531 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
Yasushi Asanofad8da32013-12-31 12:04:19 +09003534 /* When setting preferred_lft to a value not zero or
3535 * infinity, while valid_lft is infinity
3536 * IFA_F_PERMANENT has a non-infinity life time.
3537 */
3538 if ((ifp->flags & IFA_F_PERMANENT) &&
3539 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 continue;
3541
3542 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003543 /* We try to batch several events at once. */
3544 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003546 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3547 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 spin_unlock(&ifp->lock);
3549 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 ipv6_del_addr(ifp);
3551 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003552 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3553 spin_unlock(&ifp->lock);
3554 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003556 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 int deprecate = 0;
3558
3559 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3560 deprecate = 1;
3561 ifp->flags |= IFA_F_DEPRECATED;
3562 }
3563
Yasushi Asanofad8da32013-12-31 12:04:19 +09003564 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
3565 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 next = ifp->tstamp + ifp->valid_lft * HZ;
3567
3568 spin_unlock(&ifp->lock);
3569
3570 if (deprecate) {
3571 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573 ipv6_ifa_notify(0, ifp);
3574 in6_ifa_put(ifp);
3575 goto restart;
3576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3578 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003579 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3580 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e52013-12-07 19:26:53 +01003581 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 if (age >= ifp->prefered_lft - regen_advance) {
3584 struct inet6_ifaddr *ifpub = ifp->ifpub;
3585 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3586 next = ifp->tstamp + ifp->prefered_lft * HZ;
3587 if (!ifp->regen_count && ifpub) {
3588 ifp->regen_count++;
3589 in6_ifa_hold(ifp);
3590 in6_ifa_hold(ifpub);
3591 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003592
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003593 spin_lock(&ifpub->lock);
3594 ifpub->regen_count = 0;
3595 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 ipv6_create_tempaddr(ifpub, ifp);
3597 in6_ifa_put(ifpub);
3598 in6_ifa_put(ifp);
3599 goto restart;
3600 }
3601 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3602 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3603 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 } else {
3605 /* ifp->prefered_lft <= ifp->valid_lft */
3606 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3607 next = ifp->tstamp + ifp->prefered_lft * HZ;
3608 spin_unlock(&ifp->lock);
3609 }
3610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 }
3612
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003613 next_sec = round_jiffies_up(next);
3614 next_sched = next;
3615
3616 /* If rounded timeout is accurate enough, accept it. */
3617 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3618 next_sched = next_sec;
3619
3620 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3621 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3622 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3623
dingtianhongba3542e2013-08-17 10:27:04 +08003624 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3625 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003626
3627 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003629 spin_unlock(&addrconf_verify_lock);
3630 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631}
3632
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003633static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3634 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003635{
3636 struct in6_addr *pfx = NULL;
3637
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003638 *peer_pfx = NULL;
3639
Thomas Graf461d8832006-09-18 00:09:49 -07003640 if (addr)
3641 pfx = nla_data(addr);
3642
3643 if (local) {
3644 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003645 *peer_pfx = pfx;
3646 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003647 }
3648
3649 return pfx;
3650}
3651
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003652static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003653 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3654 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3655 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01003656 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07003657};
3658
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659static int
Thomas Graf661d2962013-03-21 07:45:29 +00003660inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003662 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003663 struct ifaddrmsg *ifm;
3664 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003665 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003666 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
Thomas Grafb933f712006-09-18 00:10:19 -07003668 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3669 if (err < 0)
3670 return err;
3671
3672 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003673 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 if (pfx == NULL)
3675 return -EINVAL;
3676
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003677 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678}
3679
Jiri Pirko479840f2013-12-06 09:45:21 +01003680static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003681 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003682{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003683 u32 flags;
3684 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003685 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01003686 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003687 bool had_prefixroute;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003688
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003689 if (!valid_lft || (prefered_lft > valid_lft))
3690 return -EINVAL;
3691
Jiri Pirko53bd6742013-12-06 09:45:22 +01003692 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
3693 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
3694 return -EINVAL;
3695
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003696 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3697 if (addrconf_finite_timeout(timeout)) {
3698 expires = jiffies_to_clock_t(timeout * HZ);
3699 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003700 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003701 } else {
3702 expires = 0;
3703 flags = 0;
3704 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003705 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003706
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003707 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3708 if (addrconf_finite_timeout(timeout)) {
3709 if (timeout == 0)
3710 ifa_flags |= IFA_F_DEPRECATED;
3711 prefered_lft = timeout;
3712 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003713
3714 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003715 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003716 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
3717 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003718 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01003719 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3720 IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003721 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003722 ifp->tstamp = jiffies;
3723 ifp->valid_lft = valid_lft;
3724 ifp->prefered_lft = prefered_lft;
3725
3726 spin_unlock_bh(&ifp->lock);
3727 if (!(ifp->flags&IFA_F_TENTATIVE))
3728 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003729
Thomas Haller761aac72014-01-15 15:36:58 +01003730 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
3731 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3732 expires, flags);
Thomas Haller5b84efe2014-01-15 15:36:59 +01003733 } else if (had_prefixroute) {
3734 enum cleanup_prefix_rt_t action;
3735 unsigned long rt_expires;
3736
3737 write_lock_bh(&ifp->idev->lock);
3738 action = check_cleanup_prefix_route(ifp, &rt_expires);
3739 write_unlock_bh(&ifp->idev->lock);
3740
3741 if (action != CLEANUP_PREFIX_RT_NOP) {
3742 cleanup_prefix_route(ifp, rt_expires,
3743 action == CLEANUP_PREFIX_RT_DEL);
3744 }
Thomas Haller761aac72014-01-15 15:36:58 +01003745 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01003746
3747 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
3748 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
3749 valid_lft = prefered_lft = 0;
3750 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
3751 !was_managetempaddr, jiffies);
3752 }
3753
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003754 addrconf_verify(0);
3755
3756 return 0;
3757}
3758
3759static int
Thomas Graf661d2962013-03-21 07:45:29 +00003760inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003762 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003763 struct ifaddrmsg *ifm;
3764 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003765 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003766 struct inet6_ifaddr *ifa;
3767 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003768 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01003769 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003770 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Thomas Graf461d8832006-09-18 00:09:49 -07003772 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3773 if (err < 0)
3774 return err;
3775
3776 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003777 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 if (pfx == NULL)
3779 return -EINVAL;
3780
Thomas Graf461d8832006-09-18 00:09:49 -07003781 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003782 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003783
3784 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003785 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003786 preferred_lft = ci->ifa_prefered;
3787 } else {
3788 preferred_lft = INFINITY_LIFE_TIME;
3789 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003790 }
3791
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003792 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003793 if (dev == NULL)
3794 return -ENODEV;
3795
Jiri Pirko479840f2013-12-06 09:45:21 +01003796 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3797
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003798 /* We ignore other flags so far. */
Thomas Haller761aac72014-01-15 15:36:58 +01003799 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3800 IFA_F_NOPREFIXROUTE;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003801
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003802 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003803 if (ifa == NULL) {
3804 /*
3805 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08003806 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07003807 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003808 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003809 ifm->ifa_prefixlen, ifa_flags,
3810 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003811 }
3812
Thomas Graf7198f8c2006-09-18 00:13:46 -07003813 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3814 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3815 err = -EEXIST;
3816 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003817 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003818
3819 in6_ifa_put(ifa);
3820
3821 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822}
3823
Jiri Pirko479840f2013-12-06 09:45:21 +01003824static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07003825 u8 scope, int ifindex)
3826{
3827 struct ifaddrmsg *ifm;
3828
3829 ifm = nlmsg_data(nlh);
3830 ifm->ifa_family = AF_INET6;
3831 ifm->ifa_prefixlen = prefixlen;
3832 ifm->ifa_flags = flags;
3833 ifm->ifa_scope = scope;
3834 ifm->ifa_index = ifindex;
3835}
3836
Thomas Graf85486af2006-09-18 00:11:24 -07003837static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3838 unsigned long tstamp, u32 preferred, u32 valid)
3839{
3840 struct ifa_cacheinfo ci;
3841
Thomas Graf18a31e12010-11-17 04:12:02 +00003842 ci.cstamp = cstamp_delta(cstamp);
3843 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003844 ci.ifa_prefered = preferred;
3845 ci.ifa_valid = valid;
3846
3847 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3848}
3849
Thomas Graf101bb222006-09-18 00:11:52 -07003850static inline int rt_scope(int ifa_scope)
3851{
3852 if (ifa_scope & IFA_HOST)
3853 return RT_SCOPE_HOST;
3854 else if (ifa_scope & IFA_LINK)
3855 return RT_SCOPE_LINK;
3856 else if (ifa_scope & IFA_SITE)
3857 return RT_SCOPE_SITE;
3858 else
3859 return RT_SCOPE_UNIVERSE;
3860}
3861
Thomas Graf0ab68032006-09-18 00:12:35 -07003862static inline int inet6_ifaddr_msgsize(void)
3863{
Thomas Graf339bf982006-11-10 14:10:15 -08003864 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003865 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003866 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01003867 + nla_total_size(sizeof(struct ifa_cacheinfo))
3868 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07003869}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003870
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003872 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003875 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Eric W. Biederman15e47302012-09-07 20:12:54 +00003877 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003878 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003879 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003880
Thomas Graf101bb222006-09-18 00:11:52 -07003881 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3882 ifa->idev->dev->ifindex);
3883
Yasushi Asanofad8da32013-12-31 12:04:19 +09003884 if (!((ifa->flags&IFA_F_PERMANENT) &&
3885 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07003886 preferred = ifa->prefered_lft;
3887 valid = ifa->valid_lft;
3888 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003890 if (preferred > tval)
3891 preferred -= tval;
3892 else
3893 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003894 if (valid != INFINITY_LIFE_TIME) {
3895 if (valid > tval)
3896 valid -= tval;
3897 else
3898 valid = 0;
3899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 }
3901 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003902 preferred = INFINITY_LIFE_TIME;
3903 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 }
Thomas Graf85486af2006-09-18 00:11:24 -07003905
Cong Wang7996c792013-05-22 05:41:06 +00003906 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003907 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3908 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3909 goto error;
3910 } else
3911 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3912 goto error;
3913
3914 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3915 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003916
Jiri Pirko479840f2013-12-06 09:45:21 +01003917 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
3918 goto error;
3919
Thomas Graf0ab68032006-09-18 00:12:35 -07003920 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003921
3922error:
3923 nlmsg_cancel(skb, nlh);
3924 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925}
3926
3927static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003928 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003931 u8 scope = RT_SCOPE_UNIVERSE;
3932 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Thomas Graf101bb222006-09-18 00:11:52 -07003934 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3935 scope = RT_SCOPE_SITE;
3936
Eric W. Biederman15e47302012-09-07 20:12:54 +00003937 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003938 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003939 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003940
Thomas Graf101bb222006-09-18 00:11:52 -07003941 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003942 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3943 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003944 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3945 nlmsg_cancel(skb, nlh);
3946 return -EMSGSIZE;
3947 }
Thomas Graf85486af2006-09-18 00:11:24 -07003948
Thomas Graf0ab68032006-09-18 00:12:35 -07003949 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950}
3951
3952static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003953 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003956 u8 scope = RT_SCOPE_UNIVERSE;
3957 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Thomas Graf101bb222006-09-18 00:11:52 -07003959 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3960 scope = RT_SCOPE_SITE;
3961
Eric W. Biederman15e47302012-09-07 20:12:54 +00003962 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003963 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003964 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003965
Thomas Graf101bb222006-09-18 00:11:52 -07003966 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003967 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3968 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003969 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3970 nlmsg_cancel(skb, nlh);
3971 return -EMSGSIZE;
3972 }
Thomas Graf85486af2006-09-18 00:11:24 -07003973
Thomas Graf0ab68032006-09-18 00:12:35 -07003974 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975}
3976
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003977enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 UNICAST_ADDR,
3979 MULTICAST_ADDR,
3980 ANYCAST_ADDR,
3981};
3982
Eric Dumazet234b27c2009-11-12 04:11:50 +00003983/* called with rcu_read_lock() */
3984static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3985 struct netlink_callback *cb, enum addr_type_t type,
3986 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 struct ifmcaddr6 *ifmca;
3989 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003990 int err = 1;
3991 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Eric Dumazet234b27c2009-11-12 04:11:50 +00003993 read_lock_bh(&idev->lock);
3994 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003995 case UNICAST_ADDR: {
3996 struct inet6_ifaddr *ifa;
3997
Eric Dumazet234b27c2009-11-12 04:11:50 +00003998 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003999 list_for_each_entry(ifa, &idev->addr_list, if_list) {
4000 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004001 continue;
4002 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004003 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004004 cb->nlh->nlmsg_seq,
4005 RTM_NEWADDR,
4006 NLM_F_MULTI);
4007 if (err <= 0)
4008 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004009 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004011 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00004012 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004013 case MULTICAST_ADDR:
4014 /* multicast address */
4015 for (ifmca = idev->mc_list; ifmca;
4016 ifmca = ifmca->next, ip_idx++) {
4017 if (ip_idx < s_ip_idx)
4018 continue;
4019 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004020 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004021 cb->nlh->nlmsg_seq,
4022 RTM_GETMULTICAST,
4023 NLM_F_MULTI);
4024 if (err <= 0)
4025 break;
4026 }
4027 break;
4028 case ANYCAST_ADDR:
4029 /* anycast address */
4030 for (ifaca = idev->ac_list; ifaca;
4031 ifaca = ifaca->aca_next, ip_idx++) {
4032 if (ip_idx < s_ip_idx)
4033 continue;
4034 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004035 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004036 cb->nlh->nlmsg_seq,
4037 RTM_GETANYCAST,
4038 NLM_F_MULTI);
4039 if (err <= 0)
4040 break;
4041 }
4042 break;
4043 default:
4044 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004046 read_unlock_bh(&idev->lock);
4047 *p_ip_idx = ip_idx;
4048 return err;
4049}
4050
4051static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4052 enum addr_type_t type)
4053{
4054 struct net *net = sock_net(skb->sk);
4055 int h, s_h;
4056 int idx, ip_idx;
4057 int s_idx, s_ip_idx;
4058 struct net_device *dev;
4059 struct inet6_dev *idev;
4060 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004061
4062 s_h = cb->args[0];
4063 s_idx = idx = cb->args[1];
4064 s_ip_idx = ip_idx = cb->args[2];
4065
4066 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004067 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004068 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4069 idx = 0;
4070 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004071 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004072 if (idx < s_idx)
4073 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004074 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004075 s_ip_idx = 0;
4076 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004077 idev = __in6_dev_get(dev);
4078 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004079 goto cont;
4080
4081 if (in6_dump_addrs(idev, skb, cb, type,
4082 s_ip_idx, &ip_idx) <= 0)
4083 goto done;
4084cont:
4085 idx++;
4086 }
4087 }
4088done:
4089 rcu_read_unlock();
4090 cb->args[0] = h;
4091 cb->args[1] = idx;
4092 cb->args[2] = ip_idx;
4093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 return skb->len;
4095}
4096
4097static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4098{
4099 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004100
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 return inet6_dump_addr(skb, cb, type);
4102}
4103
4104static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4105{
4106 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004107
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 return inet6_dump_addr(skb, cb, type);
4109}
4110
4111
4112static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4113{
4114 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004115
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 return inet6_dump_addr(skb, cb, type);
4117}
4118
Thomas Graf661d2962013-03-21 07:45:29 +00004119static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004120{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004121 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004122 struct ifaddrmsg *ifm;
4123 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004124 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004125 struct net_device *dev = NULL;
4126 struct inet6_ifaddr *ifa;
4127 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004128 int err;
4129
Thomas Graf1b29fc22006-09-18 00:10:50 -07004130 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4131 if (err < 0)
4132 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004133
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004134 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004135 if (addr == NULL) {
4136 err = -EINVAL;
4137 goto errout;
4138 }
4139
4140 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004141 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004142 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004143
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004144 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4145 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004146 err = -EADDRNOTAVAIL;
4147 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004148 }
4149
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004150 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4151 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004152 err = -ENOBUFS;
4153 goto errout_ifa;
4154 }
4155
Eric W. Biederman15e47302012-09-07 20:12:54 +00004156 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004157 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004158 if (err < 0) {
4159 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4160 WARN_ON(err == -EMSGSIZE);
4161 kfree_skb(skb);
4162 goto errout_ifa;
4163 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004164 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004165errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004166 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004167errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004168 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004169}
4170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4172{
4173 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004174 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004175 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Thomas Graf0ab68032006-09-18 00:12:35 -07004177 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004178 if (skb == NULL)
4179 goto errout;
4180
4181 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004182 if (err < 0) {
4183 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4184 WARN_ON(err == -EMSGSIZE);
4185 kfree_skb(skb);
4186 goto errout;
4187 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004188 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4189 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004190errout:
4191 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004192 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193}
4194
Dave Jonesb6f99a22007-03-22 12:27:49 -07004195static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 __s32 *array, int bytes)
4197{
Thomas Graf04561c12006-11-14 19:53:58 -08004198 BUG_ON(bytes < (DEVCONF_MAX * 4));
4199
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 memset(array, 0, bytes);
4201 array[DEVCONF_FORWARDING] = cnf->forwarding;
4202 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4203 array[DEVCONF_MTU6] = cnf->mtu6;
4204 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4205 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4206 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4207 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4208 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004209 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4210 jiffies_to_msecs(cnf->rtr_solicit_interval);
4211 array[DEVCONF_RTR_SOLICIT_DELAY] =
4212 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004214 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4215 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4216 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4217 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4219 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4220 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4221 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4222 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004224 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004225 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004226#ifdef CONFIG_IPV6_ROUTER_PREF
4227 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004228 array[DEVCONF_RTR_PROBE_INTERVAL] =
4229 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004230#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004231 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4232#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004233#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004234 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004235 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004236#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4237 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4238#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004239#ifdef CONFIG_IPV6_MROUTE
4240 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4241#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004242 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004243 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004244 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004245 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004246 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247}
4248
Thomas Grafb382b192010-11-16 04:33:57 +00004249static inline size_t inet6_ifla6_size(void)
4250{
4251 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4252 + nla_total_size(sizeof(struct ifla_cacheinfo))
4253 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4254 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004255 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4256 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004257}
4258
Thomas Graf339bf982006-11-10 14:10:15 -08004259static inline size_t inet6_if_nlmsg_size(void)
4260{
4261 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4262 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4263 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4264 + nla_total_size(4) /* IFLA_MTU */
4265 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004266 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004267}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004268
Eric Dumazetbe281e52011-05-19 01:14:23 +00004269static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004270 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004271{
4272 int i;
4273 int pad = bytes - sizeof(u64) * items;
4274 BUG_ON(pad < 0);
4275
4276 /* Use put_unaligned() because stats may not be aligned for u64. */
4277 put_unaligned(items, &stats[0]);
4278 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004279 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004280
4281 memset(&stats[items], 0, pad);
4282}
4283
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004284static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4285 int items, int bytes, size_t syncpoff)
4286{
4287 int i;
4288 int pad = bytes - sizeof(u64) * items;
4289 BUG_ON(pad < 0);
4290
4291 /* Use put_unaligned() because stats may not be aligned for u64. */
4292 put_unaligned(items, &stats[0]);
4293 for (i = 1; i < items; i++)
4294 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4295
4296 memset(&stats[items], 0, pad);
4297}
4298
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004299static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4300 int bytes)
4301{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004302 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004303 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004304 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4305 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004306 break;
4307 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004308 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004309 break;
4310 }
4311}
4312
Thomas Grafb382b192010-11-16 04:33:57 +00004313static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004315 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004316 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
David S. Millerc78679e2012-04-01 20:27:33 -04004318 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4319 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004321 ci.tstamp = cstamp_delta(idev->tstamp);
4322 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e52013-12-07 19:26:53 +01004323 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04004324 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4325 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004326 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4327 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004328 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004329 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004331 /* XXX - MC not implemented */
4332
4333 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4334 if (nla == NULL)
4335 goto nla_put_failure;
4336 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4337
4338 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4339 if (nla == NULL)
4340 goto nla_put_failure;
4341 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004343 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4344 if (nla == NULL)
4345 goto nla_put_failure;
4346 read_lock_bh(&idev->lock);
4347 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4348 read_unlock_bh(&idev->lock);
4349
Thomas Grafb382b192010-11-16 04:33:57 +00004350 return 0;
4351
4352nla_put_failure:
4353 return -EMSGSIZE;
4354}
4355
4356static size_t inet6_get_link_af_size(const struct net_device *dev)
4357{
4358 if (!__in6_dev_get(dev))
4359 return 0;
4360
4361 return inet6_ifla6_size();
4362}
4363
4364static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4365{
4366 struct inet6_dev *idev = __in6_dev_get(dev);
4367
4368 if (!idev)
4369 return -ENODATA;
4370
4371 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4372 return -EMSGSIZE;
4373
4374 return 0;
4375}
4376
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004377static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4378{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004379 struct inet6_ifaddr *ifp;
4380 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004381 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004382 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004383
4384 if (token == NULL)
4385 return -EINVAL;
4386 if (ipv6_addr_any(token))
4387 return -EINVAL;
4388 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4389 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004390 if (!ipv6_accept_ra(idev))
4391 return -EINVAL;
4392 if (idev->cnf.rtr_solicits <= 0)
4393 return -EINVAL;
4394
4395 write_lock_bh(&idev->lock);
4396
4397 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4398 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4399
4400 write_unlock_bh(&idev->lock);
4401
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004402 if (!idev->dead && (idev->if_flags & IF_READY) &&
4403 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4404 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004405
4406 /* If we're not ready, then normal ifup will take care
4407 * of this. Otherwise, we need to request our rs here.
4408 */
4409 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4410 update_rs = true;
4411 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004412
4413 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004414
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004415 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004416 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004417 idev->rs_probes = 1;
4418 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4419 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004420
4421 /* Well, that's kinda nasty ... */
4422 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4423 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004424 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004425 ifp->valid_lft = 0;
4426 ifp->prefered_lft = 0;
4427 }
4428 spin_unlock(&ifp->lock);
4429 }
4430
4431 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004432 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004433 return 0;
4434}
4435
4436static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4437{
4438 int err = -EINVAL;
4439 struct inet6_dev *idev = __in6_dev_get(dev);
4440 struct nlattr *tb[IFLA_INET6_MAX + 1];
4441
4442 if (!idev)
4443 return -EAFNOSUPPORT;
4444
4445 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4446 BUG();
4447
4448 if (tb[IFLA_INET6_TOKEN])
4449 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4450
4451 return err;
4452}
4453
Thomas Grafb382b192010-11-16 04:33:57 +00004454static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004455 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004456{
4457 struct net_device *dev = idev->dev;
4458 struct ifinfomsg *hdr;
4459 struct nlmsghdr *nlh;
4460 void *protoinfo;
4461
Eric W. Biederman15e47302012-09-07 20:12:54 +00004462 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004463 if (nlh == NULL)
4464 return -EMSGSIZE;
4465
4466 hdr = nlmsg_data(nlh);
4467 hdr->ifi_family = AF_INET6;
4468 hdr->__ifi_pad = 0;
4469 hdr->ifi_type = dev->type;
4470 hdr->ifi_index = dev->ifindex;
4471 hdr->ifi_flags = dev_get_flags(dev);
4472 hdr->ifi_change = 0;
4473
David S. Millerc78679e2012-04-01 20:27:33 -04004474 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4475 (dev->addr_len &&
4476 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4477 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4478 (dev->ifindex != dev->iflink &&
4479 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4480 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004481 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4482 if (protoinfo == NULL)
4483 goto nla_put_failure;
4484
4485 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4486 goto nla_put_failure;
4487
Thomas Graf04561c12006-11-14 19:53:58 -08004488 nla_nest_end(skb, protoinfo);
4489 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Thomas Graf04561c12006-11-14 19:53:58 -08004491nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004492 nlmsg_cancel(skb, nlh);
4493 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494}
4495
4496static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4497{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004498 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004499 int h, s_h;
David S. Miller434a8a582009-11-11 18:53:00 -08004500 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 struct net_device *dev;
4502 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004503 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Eric Dumazet84d26972009-11-09 12:11:28 +00004505 s_h = cb->args[0];
4506 s_idx = cb->args[1];
4507
4508 rcu_read_lock();
4509 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4510 idx = 0;
4511 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004512 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004513 if (idx < s_idx)
4514 goto cont;
4515 idev = __in6_dev_get(dev);
4516 if (!idev)
4517 goto cont;
4518 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004519 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004520 cb->nlh->nlmsg_seq,
4521 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4522 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004523cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004524 idx++;
4525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004527out:
4528 rcu_read_unlock();
4529 cb->args[1] = idx;
4530 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
4532 return skb->len;
4533}
4534
4535void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4536{
4537 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004538 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004539 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004540
Thomas Graf339bf982006-11-10 14:10:15 -08004541 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004542 if (skb == NULL)
4543 goto errout;
4544
4545 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004546 if (err < 0) {
4547 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4548 WARN_ON(err == -EMSGSIZE);
4549 kfree_skb(skb);
4550 goto errout;
4551 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004552 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004553 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004554errout:
4555 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004556 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557}
4558
Thomas Graf339bf982006-11-10 14:10:15 -08004559static inline size_t inet6_prefix_nlmsg_size(void)
4560{
4561 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4562 + nla_total_size(sizeof(struct in6_addr))
4563 + nla_total_size(sizeof(struct prefix_cacheinfo));
4564}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004565
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004567 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004568 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004570 struct prefixmsg *pmsg;
4571 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 struct prefix_cacheinfo ci;
4573
Eric W. Biederman15e47302012-09-07 20:12:54 +00004574 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004575 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004576 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004577
4578 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004580 pmsg->prefix_pad1 = 0;
4581 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 pmsg->prefix_ifindex = idev->dev->ifindex;
4583 pmsg->prefix_len = pinfo->prefix_len;
4584 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004585 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 pmsg->prefix_flags = 0;
4587 if (pinfo->onlink)
4588 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4589 if (pinfo->autoconf)
4590 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4591
David S. Millerc78679e2012-04-01 20:27:33 -04004592 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4593 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 ci.preferred_time = ntohl(pinfo->prefered);
4595 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004596 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4597 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004598 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Thomas Graf6051e2f2006-11-14 19:54:19 -08004600nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004601 nlmsg_cancel(skb, nlh);
4602 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603}
4604
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004605static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 struct prefix_info *pinfo)
4607{
4608 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004609 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004610 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Thomas Graf339bf982006-11-10 14:10:15 -08004612 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004613 if (skb == NULL)
4614 goto errout;
4615
4616 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004617 if (err < 0) {
4618 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4619 WARN_ON(err == -EMSGSIZE);
4620 kfree_skb(skb);
4621 goto errout;
4622 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004623 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4624 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004625errout:
4626 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004627 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628}
4629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4631{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004632 struct net *net = dev_net(ifp->idev->dev);
4633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4635
4636 switch (event) {
4637 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004638 /*
4639 * If the address was optimistic
4640 * we inserted the route at the start of
4641 * our DAD process, so we don't need
4642 * to do it again
4643 */
4644 if (!(ifp->rt->rt6i_node))
4645 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 if (ifp->idev->cnf.forwarding)
4647 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004648 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004649 addrconf_prefix_route(&ifp->peer_addr, 128,
4650 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 break;
4652 case RTM_DELADDR:
4653 if (ifp->idev->cnf.forwarding)
4654 addrconf_leave_anycast(ifp);
4655 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004656 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004657 struct rt6_info *rt;
4658 struct net_device *dev = ifp->idev->dev;
4659
4660 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4661 dev->ifindex, 1);
4662 if (rt) {
4663 dst_hold(&rt->dst);
4664 if (ip6_del_rt(rt))
4665 dst_free(&rt->dst);
4666 }
4667 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004668 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004669
David S. Miller73a8bd72011-01-23 23:27:15 -08004670 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004671 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 break;
4673 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004674 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004675 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676}
4677
4678static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4679{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004680 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 if (likely(ifp->idev->dead == 0))
4682 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004683 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684}
4685
4686#ifdef CONFIG_SYSCTL
4687
4688static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004689int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 void __user *buffer, size_t *lenp, loff_t *ppos)
4691{
4692 int *valp = ctl->data;
4693 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004694 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004695 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 int ret;
4697
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004698 /*
4699 * ctl->data points to idev->cnf.forwarding, we should
4700 * not modify it until we get the rtnl lock.
4701 */
4702 lctl = *ctl;
4703 lctl.data = &val;
4704
4705 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004707 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004708 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004709 if (ret)
4710 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004711 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712}
4713
Brian Haley56d417b2009-06-01 03:07:33 -07004714static void dev_disable_change(struct inet6_dev *idev)
4715{
Cong Wang75538c22013-05-29 11:30:50 +08004716 struct netdev_notifier_info info;
4717
Brian Haley56d417b2009-06-01 03:07:33 -07004718 if (!idev || !idev->dev)
4719 return;
4720
Cong Wang75538c22013-05-29 11:30:50 +08004721 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004722 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004723 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004724 else
Cong Wang75538c22013-05-29 11:30:50 +08004725 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004726}
4727
4728static void addrconf_disable_change(struct net *net, __s32 newf)
4729{
4730 struct net_device *dev;
4731 struct inet6_dev *idev;
4732
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004733 rcu_read_lock();
4734 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004735 idev = __in6_dev_get(dev);
4736 if (idev) {
4737 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4738 idev->cnf.disable_ipv6 = newf;
4739 if (changed)
4740 dev_disable_change(idev);
4741 }
Brian Haley56d417b2009-06-01 03:07:33 -07004742 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004743 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004744}
4745
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004746static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004747{
4748 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004749 int old;
4750
4751 if (!rtnl_trylock())
4752 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004753
4754 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004755 old = *p;
4756 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004757
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004758 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4759 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004760 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004761 }
Brian Haley56d417b2009-06-01 03:07:33 -07004762
4763 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004764 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4765 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004766 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004767 dev_disable_change((struct inet6_dev *)table->extra1);
4768
4769 rtnl_unlock();
4770 return 0;
4771}
4772
4773static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004774int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004775 void __user *buffer, size_t *lenp, loff_t *ppos)
4776{
4777 int *valp = ctl->data;
4778 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004779 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004780 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004781 int ret;
4782
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004783 /*
4784 * ctl->data points to idev->cnf.disable_ipv6, we should
4785 * not modify it until we get the rtnl lock.
4786 */
4787 lctl = *ctl;
4788 lctl.data = &val;
4789
4790 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004791
4792 if (write)
4793 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004794 if (ret)
4795 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004796 return ret;
4797}
4798
stephen hemmingerc92d5492013-12-17 22:37:14 -08004799static
4800int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
4801 void __user *buffer, size_t *lenp, loff_t *ppos)
4802{
4803 int *valp = ctl->data;
4804 int ret;
4805 int old, new;
4806
4807 old = *valp;
4808 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
4809 new = *valp;
4810
4811 if (write && old != new) {
4812 struct net *net = ctl->extra2;
4813
4814 if (!rtnl_trylock())
4815 return restart_syscall();
4816
4817 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
4818 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4819 NETCONFA_IFINDEX_DEFAULT,
4820 net->ipv6.devconf_dflt);
4821 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
4822 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4823 NETCONFA_IFINDEX_ALL,
4824 net->ipv6.devconf_all);
4825 else {
4826 struct inet6_dev *idev = ctl->extra1;
4827
4828 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4829 idev->dev->ifindex,
4830 &idev->cnf);
4831 }
4832 rtnl_unlock();
4833 }
4834
4835 return ret;
4836}
4837
4838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839static struct addrconf_sysctl_table
4840{
4841 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004842 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004843} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 .sysctl_header = NULL,
4845 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004846 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004847 .procname = "forwarding",
4848 .data = &ipv6_devconf.forwarding,
4849 .maxlen = sizeof(int),
4850 .mode = 0644,
4851 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 },
4853 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004854 .procname = "hop_limit",
4855 .data = &ipv6_devconf.hop_limit,
4856 .maxlen = sizeof(int),
4857 .mode = 0644,
4858 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 },
4860 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004861 .procname = "mtu",
4862 .data = &ipv6_devconf.mtu6,
4863 .maxlen = sizeof(int),
4864 .mode = 0644,
4865 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 },
4867 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004868 .procname = "accept_ra",
4869 .data = &ipv6_devconf.accept_ra,
4870 .maxlen = sizeof(int),
4871 .mode = 0644,
4872 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 },
4874 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004875 .procname = "accept_redirects",
4876 .data = &ipv6_devconf.accept_redirects,
4877 .maxlen = sizeof(int),
4878 .mode = 0644,
4879 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 },
4881 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004882 .procname = "autoconf",
4883 .data = &ipv6_devconf.autoconf,
4884 .maxlen = sizeof(int),
4885 .mode = 0644,
4886 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 },
4888 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004889 .procname = "dad_transmits",
4890 .data = &ipv6_devconf.dad_transmits,
4891 .maxlen = sizeof(int),
4892 .mode = 0644,
4893 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 },
4895 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004896 .procname = "router_solicitations",
4897 .data = &ipv6_devconf.rtr_solicits,
4898 .maxlen = sizeof(int),
4899 .mode = 0644,
4900 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 },
4902 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004903 .procname = "router_solicitation_interval",
4904 .data = &ipv6_devconf.rtr_solicit_interval,
4905 .maxlen = sizeof(int),
4906 .mode = 0644,
4907 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 },
4909 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004910 .procname = "router_solicitation_delay",
4911 .data = &ipv6_devconf.rtr_solicit_delay,
4912 .maxlen = sizeof(int),
4913 .mode = 0644,
4914 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 },
4916 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004917 .procname = "force_mld_version",
4918 .data = &ipv6_devconf.force_mld_version,
4919 .maxlen = sizeof(int),
4920 .mode = 0644,
4921 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004923 {
4924 .procname = "mldv1_unsolicited_report_interval",
4925 .data =
4926 &ipv6_devconf.mldv1_unsolicited_report_interval,
4927 .maxlen = sizeof(int),
4928 .mode = 0644,
4929 .proc_handler = proc_dointvec_ms_jiffies,
4930 },
4931 {
4932 .procname = "mldv2_unsolicited_report_interval",
4933 .data =
4934 &ipv6_devconf.mldv2_unsolicited_report_interval,
4935 .maxlen = sizeof(int),
4936 .mode = 0644,
4937 .proc_handler = proc_dointvec_ms_jiffies,
4938 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004940 .procname = "use_tempaddr",
4941 .data = &ipv6_devconf.use_tempaddr,
4942 .maxlen = sizeof(int),
4943 .mode = 0644,
4944 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 },
4946 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004947 .procname = "temp_valid_lft",
4948 .data = &ipv6_devconf.temp_valid_lft,
4949 .maxlen = sizeof(int),
4950 .mode = 0644,
4951 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 },
4953 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004954 .procname = "temp_prefered_lft",
4955 .data = &ipv6_devconf.temp_prefered_lft,
4956 .maxlen = sizeof(int),
4957 .mode = 0644,
4958 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 },
4960 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004961 .procname = "regen_max_retry",
4962 .data = &ipv6_devconf.regen_max_retry,
4963 .maxlen = sizeof(int),
4964 .mode = 0644,
4965 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 },
4967 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004968 .procname = "max_desync_factor",
4969 .data = &ipv6_devconf.max_desync_factor,
4970 .maxlen = sizeof(int),
4971 .mode = 0644,
4972 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004975 .procname = "max_addresses",
4976 .data = &ipv6_devconf.max_addresses,
4977 .maxlen = sizeof(int),
4978 .mode = 0644,
4979 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 },
4981 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004982 .procname = "accept_ra_defrtr",
4983 .data = &ipv6_devconf.accept_ra_defrtr,
4984 .maxlen = sizeof(int),
4985 .mode = 0644,
4986 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004987 },
4988 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004989 .procname = "accept_ra_pinfo",
4990 .data = &ipv6_devconf.accept_ra_pinfo,
4991 .maxlen = sizeof(int),
4992 .mode = 0644,
4993 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004994 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004995#ifdef CONFIG_IPV6_ROUTER_PREF
4996 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004997 .procname = "accept_ra_rtr_pref",
4998 .data = &ipv6_devconf.accept_ra_rtr_pref,
4999 .maxlen = sizeof(int),
5000 .mode = 0644,
5001 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005002 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08005003 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005004 .procname = "router_probe_interval",
5005 .data = &ipv6_devconf.rtr_probe_interval,
5006 .maxlen = sizeof(int),
5007 .mode = 0644,
5008 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08005009 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08005010#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005011 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005012 .procname = "accept_ra_rt_info_max_plen",
5013 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
5014 .maxlen = sizeof(int),
5015 .mode = 0644,
5016 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005017 },
5018#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005019#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005020 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005021 .procname = "proxy_ndp",
5022 .data = &ipv6_devconf.proxy_ndp,
5023 .maxlen = sizeof(int),
5024 .mode = 0644,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005025 .proc_handler = addrconf_sysctl_proxy_ndp,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005026 },
5027 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005028 .procname = "accept_source_route",
5029 .data = &ipv6_devconf.accept_source_route,
5030 .maxlen = sizeof(int),
5031 .mode = 0644,
5032 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005033 },
Neil Horman95c385b2007-04-25 17:08:10 -07005034#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5035 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005036 .procname = "optimistic_dad",
5037 .data = &ipv6_devconf.optimistic_dad,
5038 .maxlen = sizeof(int),
5039 .mode = 0644,
5040 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07005041
5042 },
5043#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005044#ifdef CONFIG_IPV6_MROUTE
5045 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005046 .procname = "mc_forwarding",
5047 .data = &ipv6_devconf.mc_forwarding,
5048 .maxlen = sizeof(int),
5049 .mode = 0444,
5050 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005051 },
5052#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005053 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005054 .procname = "disable_ipv6",
5055 .data = &ipv6_devconf.disable_ipv6,
5056 .maxlen = sizeof(int),
5057 .mode = 0644,
5058 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005059 },
5060 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005061 .procname = "accept_dad",
5062 .data = &ipv6_devconf.accept_dad,
5063 .maxlen = sizeof(int),
5064 .mode = 0644,
5065 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005066 },
5067 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00005068 .procname = "force_tllao",
5069 .data = &ipv6_devconf.force_tllao,
5070 .maxlen = sizeof(int),
5071 .mode = 0644,
5072 .proc_handler = proc_dointvec
5073 },
5074 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005075 .procname = "ndisc_notify",
5076 .data = &ipv6_devconf.ndisc_notify,
5077 .maxlen = sizeof(int),
5078 .mode = 0644,
5079 .proc_handler = proc_dointvec
5080 },
5081 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005082 .procname = "suppress_frag_ndisc",
5083 .data = &ipv6_devconf.suppress_frag_ndisc,
5084 .maxlen = sizeof(int),
5085 .mode = 0644,
5086 .proc_handler = proc_dointvec
5087 },
5088 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005089 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 }
5091 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092};
5093
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005094static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005095 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096{
5097 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005099 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005100
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005101 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005103 goto out;
5104
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005105 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005106 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005108 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110
Eric W. Biederman6105e292012-04-19 13:41:24 +00005111 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112
Eric W. Biederman6105e292012-04-19 13:41:24 +00005113 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005115 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005116
5117 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005120free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005122out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005123 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124}
5125
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005126static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5127{
5128 struct addrconf_sysctl_table *t;
5129
5130 if (p->sysctl == NULL)
5131 return;
5132
5133 t = p->sysctl;
5134 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005135 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005136 kfree(t);
5137}
5138
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005139static void addrconf_sysctl_register(struct inet6_dev *idev)
5140{
Jiri Pirko73af6142013-12-07 19:26:55 +01005141 neigh_sysctl_register(idev->dev, idev->nd_parms,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005142 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005143 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005144 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005145}
5146
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005147static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005149 __addrconf_sysctl_unregister(&idev->cnf);
5150 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151}
5152
5153
5154#endif
5155
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005156static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005157{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005158 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005159 struct ipv6_devconf *all, *dflt;
5160
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005161 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5162 if (all == NULL)
5163 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005164
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005165 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5166 if (dflt == NULL)
5167 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005168
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005169 /* these will be inherited by all namespaces */
5170 dflt->autoconf = ipv6_defaults.autoconf;
5171 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005172
5173 net->ipv6.devconf_all = all;
5174 net->ipv6.devconf_dflt = dflt;
5175
5176#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005177 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005178 if (err < 0)
5179 goto err_reg_all;
5180
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005181 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005182 if (err < 0)
5183 goto err_reg_dflt;
5184#endif
5185 return 0;
5186
5187#ifdef CONFIG_SYSCTL
5188err_reg_dflt:
5189 __addrconf_sysctl_unregister(all);
5190err_reg_all:
5191 kfree(dflt);
5192#endif
5193err_alloc_dflt:
5194 kfree(all);
5195err_alloc_all:
5196 return err;
5197}
5198
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005199static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005200{
5201#ifdef CONFIG_SYSCTL
5202 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5203 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5204#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005205 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005206 kfree(net->ipv6.devconf_dflt);
5207 kfree(net->ipv6.devconf_all);
5208 }
5209}
5210
5211static struct pernet_operations addrconf_ops = {
5212 .init = addrconf_init_net,
5213 .exit = addrconf_exit_net,
5214};
5215
Thomas Grafb382b192010-11-16 04:33:57 +00005216static struct rtnl_af_ops inet6_ops = {
5217 .family = AF_INET6,
5218 .fill_link_af = inet6_fill_link_af,
5219 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005220 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005221};
5222
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223/*
5224 * Init / cleanup code
5225 */
5226
5227int __init addrconf_init(void)
5228{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005229 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005230
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005231 err = ipv6_addr_label_init();
5232 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005233 pr_crit("%s: cannot initialize default policy table: %d\n",
5234 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005235 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005238 err = register_pernet_subsys(&addrconf_ops);
5239 if (err < 0)
5240 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005241
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 /* The addrconf netdev notifier requires that loopback_dev
5243 * has it's ipv6 private information allocated and setup
5244 * before it can bring up and give link-local addresses
5245 * to other devices which are up.
5246 *
5247 * Unfortunately, loopback_dev is not necessarily the first
5248 * entry in the global dev_base list of net devices. In fact,
5249 * it is likely to be the very last entry on that list.
5250 * So this causes the notifier registry below to try and
5251 * give link-local addresses to all devices besides loopback_dev
5252 * first, then loopback_dev, which cases all the non-loopback_dev
5253 * devices to fail to get a link-local address.
5254 *
5255 * So, as a temporary fix, allocate the ipv6 structure for
5256 * loopback_dev first by hand.
5257 * Longer term, all of the dependencies ipv6 has upon the loopback
5258 * device and it being up should be removed.
5259 */
5260 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005261 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 err = -ENOMEM;
5263 rtnl_unlock();
5264 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005265 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266
stephen hemmingerc2e21292010-03-17 20:31:10 +00005267 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5268 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5269
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 register_netdevice_notifier(&ipv6_dev_notf);
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005273
stephen hemminger3678a9d2013-12-30 10:41:32 -08005274 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00005275
Greg Rosec7ac8672011-06-10 01:27:09 +00005276 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5277 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005278 if (err < 0)
5279 goto errout;
5280
5281 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005282 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5283 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5284 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5285 inet6_dump_ifaddr, NULL);
5286 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5287 inet6_dump_ifmcaddr, NULL);
5288 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5289 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005290 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005291 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005292
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005293 ipv6_addr_label_rtnl_register();
5294
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005296errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005297 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07005298 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005299errlo:
5300 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005301out_addrlabel:
5302 ipv6_addr_label_cleanup();
5303out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005304 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305}
5306
Daniel Lezcano09f77092007-12-13 05:34:58 -08005307void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005309 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 int i;
5311
5312 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005313 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005314 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315
5316 rtnl_lock();
5317
Thomas Grafb382b192010-11-16 04:33:57 +00005318 __rtnl_af_unregister(&inet6_ops);
5319
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005320 /* clean dev list */
5321 for_each_netdev(&init_net, dev) {
5322 if (__in6_dev_get(dev) == NULL)
5323 continue;
5324 addrconf_ifdown(dev, 1);
5325 }
5326 addrconf_ifdown(init_net.loopback_dev, 2);
5327
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 * Check hash table.
5330 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005331 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005332 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5333 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005334 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
5336 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338}