blob: fdbfeca36d6344c22db31886c3661796eb9e8f86 [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);
Nicolas Dichtel08b44652014-02-17 14:22:21 +01002786 else
2787 addrconf_prefix_route(&addr, 64, dev, 0, 0);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002788}
2789#endif
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791static inline int
2792ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2793{
2794 struct in6_addr lladdr;
2795
Neil Horman95c385b2007-04-25 17:08:10 -07002796 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 addrconf_add_linklocal(idev, &lladdr);
2798 return 0;
2799 }
2800 return -1;
2801}
2802
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002803static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002804 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805{
Jiri Pirko351638e2013-05-28 01:30:21 +00002806 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002807 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002808 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002809 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002811 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002812 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002813 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002814 idev = ipv6_add_dev(dev);
2815 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002816 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002817 }
2818 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002821 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002822 if (dev->flags & IFF_SLAVE)
2823 break;
2824
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002825 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002826 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002827 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002828 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002829 dev->name);
2830 break;
2831 }
Kristian Slavov99081042006-02-08 16:10:53 -08002832
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002833 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2834 idev = ipv6_add_dev(dev);
2835
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002836 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002837 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002838 run_pending = 1;
2839 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002840 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002841 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002842 /* device is still not ready. */
2843 break;
2844 }
2845
2846 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002847 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002848 /* device is already configured. */
2849 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002850 idev->if_flags |= IF_READY;
2851 }
2852
Joe Perchesf3213832012-05-15 14:11:53 +00002853 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2854 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002855
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002856 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002857 }
2858
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002859 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002860#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 case ARPHRD_SIT:
2862 addrconf_sit_config(dev);
2863 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002864#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002865#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002866 case ARPHRD_IPGRE:
2867 addrconf_gre_config(dev);
2868 break;
2869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 case ARPHRD_LOOPBACK:
2871 init_loopback(dev);
2872 break;
2873
2874 default:
2875 addrconf_dev_config(dev);
2876 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002877 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002880 if (run_pending)
2881 addrconf_dad_run(idev);
2882
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002883 /*
2884 * If the MTU changed during the interface down,
2885 * when the interface up, the changed MTU must be
2886 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002888 if (idev->cnf.mtu6 != dev->mtu &&
2889 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 rt6_mtu_change(dev, dev->mtu);
2891 idev->cnf.mtu6 = dev->mtu;
2892 }
2893 idev->tstamp = jiffies;
2894 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002895
2896 /*
2897 * If the changed mtu during down is lower than
2898 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 */
2900 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002901 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 }
2903 break;
2904
2905 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002906 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 rt6_mtu_change(dev, dev->mtu);
2908 idev->cnf.mtu6 = dev->mtu;
2909 break;
2910 }
2911
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002912 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2913 idev = ipv6_add_dev(dev);
2914 if (idev)
2915 break;
2916 }
2917
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002918 /*
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08002919 * if MTU under IPV6_MIN_MTU.
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002920 * Stop IPv6 on this interface.
2921 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 case NETDEV_DOWN:
2924 case NETDEV_UNREGISTER:
2925 /*
2926 * Remove all addresses from this interface.
2927 */
2928 addrconf_ifdown(dev, event != NETDEV_DOWN);
2929 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002933 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002934 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002935 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002936 err = snmp6_register_dev(idev);
2937 if (err)
2938 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002941
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002942 case NETDEV_PRE_TYPE_CHANGE:
2943 case NETDEV_POST_TYPE_CHANGE:
2944 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002945 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 return NOTIFY_OK;
2949}
2950
2951/*
2952 * addrconf module should be notified of a device going up
2953 */
2954static struct notifier_block ipv6_dev_notf = {
2955 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956};
2957
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002958static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002959{
2960 struct inet6_dev *idev;
2961 ASSERT_RTNL();
2962
2963 idev = __in6_dev_get(dev);
2964
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002965 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002966 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002967 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002968 ipv6_mc_unmap(idev);
2969}
2970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971static int addrconf_ifdown(struct net_device *dev, int how)
2972{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002973 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002974 struct inet6_dev *idev;
2975 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002976 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 ASSERT_RTNL();
2979
David S. Miller73a8bd72011-01-23 23:27:15 -08002980 rt6_ifdown(net, dev);
2981 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983 idev = __in6_dev_get(dev);
2984 if (idev == NULL)
2985 return -ENODEV;
2986
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002987 /*
2988 * Step 1: remove reference to ipv6 device from parent device.
2989 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002991 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002993
2994 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002995 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
2997 /* Step 1.5: remove snmp6 entry */
2998 snmp6_unregister_dev(idev);
2999
3000 }
3001
David S. Miller73a8bd72011-01-23 23:27:15 -08003002 /* Step 2: clear hash table */
3003 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3004 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003005
3006 spin_lock_bh(&addrconf_hash_lock);
3007 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003008 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003009 if (ifa->idev == idev) {
3010 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003011 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003012 goto restart;
3013 }
3014 }
3015 spin_unlock_bh(&addrconf_hash_lock);
3016 }
3017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 write_lock_bh(&idev->lock);
3019
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003020 addrconf_del_rs_timer(idev);
3021
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003022 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003023 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003024 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Denis V. Lunev439e2382008-04-03 13:30:17 -07003026 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 in6_dev_put(idev);
3028
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003029 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003030 while (!list_empty(&idev->tempaddr_list)) {
3031 ifa = list_first_entry(&idev->tempaddr_list,
3032 struct inet6_ifaddr, tmp_list);
3033 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 write_unlock_bh(&idev->lock);
3035 spin_lock_bh(&ifa->lock);
3036
3037 if (ifa->ifpub) {
3038 in6_ifa_put(ifa->ifpub);
3039 ifa->ifpub = NULL;
3040 }
3041 spin_unlock_bh(&ifa->lock);
3042 in6_ifa_put(ifa);
3043 write_lock_bh(&idev->lock);
3044 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003045
stephen hemminger502a2ff2010-03-17 20:31:13 +00003046 while (!list_empty(&idev->addr_list)) {
3047 ifa = list_first_entry(&idev->addr_list,
3048 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003049 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003050
David S. Miller73a8bd72011-01-23 23:27:15 -08003051 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
David S. Miller73a8bd72011-01-23 23:27:15 -08003053 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003054
David S. Miller73a8bd72011-01-23 23:27:15 -08003055 spin_lock_bh(&ifa->state_lock);
3056 state = ifa->state;
3057 ifa->state = INET6_IFADDR_STATE_DEAD;
3058 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003059
David S. Miller73a8bd72011-01-23 23:27:15 -08003060 if (state != INET6_IFADDR_STATE_DEAD) {
3061 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003062 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003063 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003064 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003065
David S. Miller73a8bd72011-01-23 23:27:15 -08003066 write_lock_bh(&idev->lock);
3067 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 write_unlock_bh(&idev->lock);
3070
3071 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003072 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 ipv6_mc_destroy_dev(idev);
3074 else
3075 ipv6_mc_down(idev);
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003078
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003079 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003080 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003081 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 neigh_parms_release(&nd_tbl, idev->nd_parms);
3083 neigh_ifdown(&nd_tbl, dev);
3084 in6_dev_put(idev);
3085 }
3086 return 0;
3087}
3088
3089static void addrconf_rs_timer(unsigned long data)
3090{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003091 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003092 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003093 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003095 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003096 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 goto out;
3098
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003099 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003101
3102 /* Announcement received after solicitation was sent */
3103 if (idev->if_flags & IF_RA_RCVD)
3104 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003106 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003107 write_unlock(&idev->lock);
3108 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3109 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003110 &in6addr_linklocal_allrouters);
3111 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003112 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Cong Wangcaf92bc2013-08-31 13:44:32 +08003114 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003115 /* The wait after the last probe can be shorter */
3116 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3117 idev->cnf.rtr_solicits) ?
3118 idev->cnf.rtr_solicit_delay :
3119 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 /*
3122 * Note: we do not support deprecated "all on-link"
3123 * assumption any longer.
3124 */
Joe Perches91df42b2012-05-15 14:11:54 +00003125 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 }
3127
3128out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003129 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003130put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003131 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132}
3133
3134/*
3135 * Duplicate Address Detection
3136 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003137static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3138{
3139 unsigned long rand_num;
3140 struct inet6_dev *idev = ifp->idev;
3141
Neil Horman95c385b2007-04-25 17:08:10 -07003142 if (ifp->flags & IFA_F_OPTIMISTIC)
3143 rand_num = 0;
3144 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003145 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003146
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003147 ifp->dad_probes = idev->cnf.dad_transmits;
3148 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003149}
3150
David S. Millercf22f9a2012-04-14 21:37:40 -04003151static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
3153 struct inet6_dev *idev = ifp->idev;
3154 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
3156 addrconf_join_solict(dev, &ifp->addr);
3157
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003158 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
3160 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003161 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003162 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
3165 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003166 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003167 !(ifp->flags&IFA_F_TENTATIVE) ||
3168 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003169 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003170 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 read_unlock_bh(&idev->lock);
3172
3173 addrconf_dad_completed(ifp);
3174 return;
3175 }
3176
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003177 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003178 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003179 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003180 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003181 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003182 * - keep it tentative if it is a permanent address.
3183 * - otherwise, kill it.
3184 */
3185 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003186 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003187 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003188 }
Neil Horman95c385b2007-04-25 17:08:10 -07003189
3190 /*
3191 * Optimistic nodes can start receiving
3192 * Frames right away
3193 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003194 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003195 ip6_ins_rt(ifp->rt);
3196
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003197 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003199 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 read_unlock_bh(&idev->lock);
3201}
3202
3203static void addrconf_dad_timer(unsigned long data)
3204{
3205 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3206 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 struct in6_addr mcaddr;
3208
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003209 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003210 goto out;
3211
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003212 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003213 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003214 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 goto out;
3216 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003217
3218 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003219 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3220 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003221 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003222 goto out;
3223 }
3224
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003225 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 /*
3227 * DAD was successful
3228 */
3229
Brian Haleycc411d02009-09-09 14:41:32 +00003230 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003231 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003232 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234 addrconf_dad_completed(ifp);
3235
3236 goto out;
3237 }
3238
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003239 ifp->dad_probes--;
Jiri Pirko1f9248e52013-12-07 19:26:53 +01003240 addrconf_mod_dad_timer(ifp,
3241 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00003242 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003243 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003247 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248out:
3249 in6_ifa_put(ifp);
3250}
3251
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003252/* ifp->idev must be at least read locked */
3253static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
3254{
3255 struct inet6_ifaddr *ifpiter;
3256 struct inet6_dev *idev = ifp->idev;
3257
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01003258 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
3259 if (ifpiter->scope > IFA_LINK)
3260 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003261 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
3262 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
3263 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
3264 IFA_F_PERMANENT)
3265 return false;
3266 }
3267 return true;
3268}
3269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3271{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003272 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003273 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003274 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003275
3276 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 /*
3279 * Configure the address for reception. Now it is valid.
3280 */
3281
3282 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3283
Tore Anderson026359b2011-08-28 23:47:33 +00003284 /* If added prefix is link local and we are prepared to process
3285 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 */
3287
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003288 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003289 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003290 send_rs = send_mld &&
3291 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003292 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003293 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003294 read_unlock_bh(&ifp->idev->lock);
3295
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003296 /* While dad is in progress mld report's source address is in6_addrany.
3297 * Resend with proper ll now.
3298 */
3299 if (send_mld)
3300 ipv6_mc_dad_complete(ifp->idev);
3301
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003302 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 /*
3304 * If a host as already performed a random delay
3305 * [...] as part of DAD [...] there is no need
3306 * to delay again before sending the first RS
3307 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003308 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003309 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003310 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003312 write_lock_bh(&ifp->idev->lock);
3313 spin_lock(&ifp->lock);
3314 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003316 addrconf_mod_rs_timer(ifp->idev,
3317 ifp->idev->cnf.rtr_solicit_interval);
3318 spin_unlock(&ifp->lock);
3319 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 }
3321}
3322
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003323static void addrconf_dad_run(struct inet6_dev *idev)
3324{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003325 struct inet6_ifaddr *ifp;
3326
3327 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003328 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003329 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003330 if (ifp->flags & IFA_F_TENTATIVE &&
3331 ifp->state == INET6_IFADDR_STATE_DAD)
3332 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003333 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003334 }
3335 read_unlock_bh(&idev->lock);
3336}
3337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338#ifdef CONFIG_PROC_FS
3339struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003340 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003342 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343};
3344
Mihai Maruseac1d578302012-01-03 23:31:35 +00003345static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346{
3347 struct inet6_ifaddr *ifa = NULL;
3348 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003349 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003350 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Mihai Maruseac1d578302012-01-03 23:31:35 +00003352 /* initial bucket if pos is 0 */
3353 if (pos == 0) {
3354 state->bucket = 0;
3355 state->offset = 0;
3356 }
3357
3358 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003359 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003360 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003361 if (!net_eq(dev_net(ifa->idev->dev), net))
3362 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003363 /* sync with offset */
3364 if (p < state->offset) {
3365 p++;
3366 continue;
3367 }
3368 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003369 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003370 }
3371
3372 /* prepare for next bucket */
3373 state->offset = 0;
3374 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003376 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377}
3378
stephen hemmingerc2e21292010-03-17 20:31:10 +00003379static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3380 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381{
3382 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003383 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Sasha Levinb67bfe02013-02-27 17:06:00 -08003385 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003386 if (!net_eq(dev_net(ifa->idev->dev), net))
3387 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003388 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003389 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003390 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003391
3392 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003393 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003394 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003395 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003396 if (!net_eq(dev_net(ifa->idev->dev), net))
3397 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003398 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003399 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003400 }
3401 }
3402
stephen hemmingerc2e21292010-03-17 20:31:10 +00003403 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404}
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003407 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003409 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003410 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411}
3412
3413static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3414{
3415 struct inet6_ifaddr *ifa;
3416
3417 ifa = if6_get_next(seq, v);
3418 ++*pos;
3419 return ifa;
3420}
3421
3422static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003423 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003425 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
3428static int if6_seq_show(struct seq_file *seq, void *v)
3429{
3430 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01003431 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003432 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 ifp->idev->dev->ifindex,
3434 ifp->prefix_len,
3435 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01003436 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 ifp->idev->dev->name);
3438 return 0;
3439}
3440
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003441static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 .start = if6_seq_start,
3443 .next = if6_seq_next,
3444 .show = if6_seq_show,
3445 .stop = if6_seq_stop,
3446};
3447
3448static int if6_seq_open(struct inode *inode, struct file *file)
3449{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003450 return seq_open_net(inode, file, &if6_seq_ops,
3451 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452}
3453
Arjan van de Ven9a321442007-02-12 00:55:35 -08003454static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 .owner = THIS_MODULE,
3456 .open = if6_seq_open,
3457 .read = seq_read,
3458 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003459 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460};
3461
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003462static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463{
Gao fengd4beaa62013-02-18 01:34:54 +00003464 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 return -ENOMEM;
3466 return 0;
3467}
3468
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003469static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003470{
Gao fengece31ff2013-02-18 01:34:56 +00003471 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003472}
3473
3474static struct pernet_operations if6_proc_net_ops = {
3475 .init = if6_proc_net_init,
3476 .exit = if6_proc_net_exit,
3477};
3478
3479int __init if6_proc_init(void)
3480{
3481 return register_pernet_subsys(&if6_proc_net_ops);
3482}
3483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484void if6_proc_exit(void)
3485{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003486 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487}
3488#endif /* CONFIG_PROC_FS */
3489
Amerigo Wang07a93622012-10-29 16:23:10 +00003490#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003491/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003492int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003493{
3494 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003495 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003496 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003497
stephen hemminger5c578ae2010-03-17 20:31:11 +00003498 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003499 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003500 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003501 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003502 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003503 (ifp->flags & IFA_F_HOMEADDRESS)) {
3504 ret = 1;
3505 break;
3506 }
3507 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003508 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003509 return ret;
3510}
3511#endif
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513/*
3514 * Periodic address status verification
3515 */
3516
3517static void addrconf_verify(unsigned long foo)
3518{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003519 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 int i;
3522
stephen hemminger5c578ae2010-03-17 20:31:11 +00003523 rcu_read_lock_bh();
3524 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003526 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
3528 del_timer(&addr_chk_timer);
3529
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003530 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003532 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003533 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
Yasushi Asanofad8da32013-12-31 12:04:19 +09003536 /* When setting preferred_lft to a value not zero or
3537 * infinity, while valid_lft is infinity
3538 * IFA_F_PERMANENT has a non-infinity life time.
3539 */
3540 if ((ifp->flags & IFA_F_PERMANENT) &&
3541 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 continue;
3543
3544 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003545 /* We try to batch several events at once. */
3546 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003548 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3549 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 spin_unlock(&ifp->lock);
3551 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 ipv6_del_addr(ifp);
3553 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003554 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3555 spin_unlock(&ifp->lock);
3556 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003558 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 int deprecate = 0;
3560
3561 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3562 deprecate = 1;
3563 ifp->flags |= IFA_F_DEPRECATED;
3564 }
3565
Yasushi Asanofad8da32013-12-31 12:04:19 +09003566 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
3567 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 next = ifp->tstamp + ifp->valid_lft * HZ;
3569
3570 spin_unlock(&ifp->lock);
3571
3572 if (deprecate) {
3573 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
3575 ipv6_ifa_notify(0, ifp);
3576 in6_ifa_put(ifp);
3577 goto restart;
3578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3580 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003581 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3582 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e52013-12-07 19:26:53 +01003583 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00003584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 if (age >= ifp->prefered_lft - regen_advance) {
3586 struct inet6_ifaddr *ifpub = ifp->ifpub;
3587 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3588 next = ifp->tstamp + ifp->prefered_lft * HZ;
3589 if (!ifp->regen_count && ifpub) {
3590 ifp->regen_count++;
3591 in6_ifa_hold(ifp);
3592 in6_ifa_hold(ifpub);
3593 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003594
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003595 spin_lock(&ifpub->lock);
3596 ifpub->regen_count = 0;
3597 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 ipv6_create_tempaddr(ifpub, ifp);
3599 in6_ifa_put(ifpub);
3600 in6_ifa_put(ifp);
3601 goto restart;
3602 }
3603 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3604 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3605 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 } else {
3607 /* ifp->prefered_lft <= ifp->valid_lft */
3608 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3609 next = ifp->tstamp + ifp->prefered_lft * HZ;
3610 spin_unlock(&ifp->lock);
3611 }
3612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
3614
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003615 next_sec = round_jiffies_up(next);
3616 next_sched = next;
3617
3618 /* If rounded timeout is accurate enough, accept it. */
3619 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3620 next_sched = next_sec;
3621
3622 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3623 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3624 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3625
dingtianhongba3542e2013-08-17 10:27:04 +08003626 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3627 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003628
3629 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003631 spin_unlock(&addrconf_verify_lock);
3632 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633}
3634
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003635static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3636 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003637{
3638 struct in6_addr *pfx = NULL;
3639
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003640 *peer_pfx = NULL;
3641
Thomas Graf461d8832006-09-18 00:09:49 -07003642 if (addr)
3643 pfx = nla_data(addr);
3644
3645 if (local) {
3646 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003647 *peer_pfx = pfx;
3648 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003649 }
3650
3651 return pfx;
3652}
3653
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003654static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003655 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3656 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3657 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01003658 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07003659};
3660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661static int
Thomas Graf661d2962013-03-21 07:45:29 +00003662inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003664 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003665 struct ifaddrmsg *ifm;
3666 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003667 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003668 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
Thomas Grafb933f712006-09-18 00:10:19 -07003670 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3671 if (err < 0)
3672 return err;
3673
3674 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003675 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 if (pfx == NULL)
3677 return -EINVAL;
3678
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003679 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
Jiri Pirko479840f2013-12-06 09:45:21 +01003682static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003683 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003684{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003685 u32 flags;
3686 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003687 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01003688 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003689 bool had_prefixroute;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003690
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003691 if (!valid_lft || (prefered_lft > valid_lft))
3692 return -EINVAL;
3693
Jiri Pirko53bd6742013-12-06 09:45:22 +01003694 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
3695 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
3696 return -EINVAL;
3697
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003698 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3699 if (addrconf_finite_timeout(timeout)) {
3700 expires = jiffies_to_clock_t(timeout * HZ);
3701 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003702 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003703 } else {
3704 expires = 0;
3705 flags = 0;
3706 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003707 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003708
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003709 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3710 if (addrconf_finite_timeout(timeout)) {
3711 if (timeout == 0)
3712 ifa_flags |= IFA_F_DEPRECATED;
3713 prefered_lft = timeout;
3714 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003715
3716 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003717 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003718 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
3719 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003720 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01003721 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3722 IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003723 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003724 ifp->tstamp = jiffies;
3725 ifp->valid_lft = valid_lft;
3726 ifp->prefered_lft = prefered_lft;
3727
3728 spin_unlock_bh(&ifp->lock);
3729 if (!(ifp->flags&IFA_F_TENTATIVE))
3730 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003731
Thomas Haller761aac72014-01-15 15:36:58 +01003732 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
3733 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3734 expires, flags);
Thomas Haller5b84efe2014-01-15 15:36:59 +01003735 } else if (had_prefixroute) {
3736 enum cleanup_prefix_rt_t action;
3737 unsigned long rt_expires;
3738
3739 write_lock_bh(&ifp->idev->lock);
3740 action = check_cleanup_prefix_route(ifp, &rt_expires);
3741 write_unlock_bh(&ifp->idev->lock);
3742
3743 if (action != CLEANUP_PREFIX_RT_NOP) {
3744 cleanup_prefix_route(ifp, rt_expires,
3745 action == CLEANUP_PREFIX_RT_DEL);
3746 }
Thomas Haller761aac72014-01-15 15:36:58 +01003747 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01003748
3749 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
3750 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
3751 valid_lft = prefered_lft = 0;
3752 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
3753 !was_managetempaddr, jiffies);
3754 }
3755
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003756 addrconf_verify(0);
3757
3758 return 0;
3759}
3760
3761static int
Thomas Graf661d2962013-03-21 07:45:29 +00003762inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003764 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003765 struct ifaddrmsg *ifm;
3766 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003767 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003768 struct inet6_ifaddr *ifa;
3769 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003770 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01003771 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003772 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Thomas Graf461d8832006-09-18 00:09:49 -07003774 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3775 if (err < 0)
3776 return err;
3777
3778 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003779 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 if (pfx == NULL)
3781 return -EINVAL;
3782
Thomas Graf461d8832006-09-18 00:09:49 -07003783 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003784 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003785
3786 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003787 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003788 preferred_lft = ci->ifa_prefered;
3789 } else {
3790 preferred_lft = INFINITY_LIFE_TIME;
3791 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003792 }
3793
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003794 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003795 if (dev == NULL)
3796 return -ENODEV;
3797
Jiri Pirko479840f2013-12-06 09:45:21 +01003798 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3799
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003800 /* We ignore other flags so far. */
Thomas Haller761aac72014-01-15 15:36:58 +01003801 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3802 IFA_F_NOPREFIXROUTE;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003803
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003804 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003805 if (ifa == NULL) {
3806 /*
3807 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08003808 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07003809 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003810 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003811 ifm->ifa_prefixlen, ifa_flags,
3812 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003813 }
3814
Thomas Graf7198f8c2006-09-18 00:13:46 -07003815 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3816 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3817 err = -EEXIST;
3818 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003819 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003820
3821 in6_ifa_put(ifa);
3822
3823 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824}
3825
Jiri Pirko479840f2013-12-06 09:45:21 +01003826static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07003827 u8 scope, int ifindex)
3828{
3829 struct ifaddrmsg *ifm;
3830
3831 ifm = nlmsg_data(nlh);
3832 ifm->ifa_family = AF_INET6;
3833 ifm->ifa_prefixlen = prefixlen;
3834 ifm->ifa_flags = flags;
3835 ifm->ifa_scope = scope;
3836 ifm->ifa_index = ifindex;
3837}
3838
Thomas Graf85486af2006-09-18 00:11:24 -07003839static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3840 unsigned long tstamp, u32 preferred, u32 valid)
3841{
3842 struct ifa_cacheinfo ci;
3843
Thomas Graf18a31e12010-11-17 04:12:02 +00003844 ci.cstamp = cstamp_delta(cstamp);
3845 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003846 ci.ifa_prefered = preferred;
3847 ci.ifa_valid = valid;
3848
3849 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3850}
3851
Thomas Graf101bb222006-09-18 00:11:52 -07003852static inline int rt_scope(int ifa_scope)
3853{
3854 if (ifa_scope & IFA_HOST)
3855 return RT_SCOPE_HOST;
3856 else if (ifa_scope & IFA_LINK)
3857 return RT_SCOPE_LINK;
3858 else if (ifa_scope & IFA_SITE)
3859 return RT_SCOPE_SITE;
3860 else
3861 return RT_SCOPE_UNIVERSE;
3862}
3863
Thomas Graf0ab68032006-09-18 00:12:35 -07003864static inline int inet6_ifaddr_msgsize(void)
3865{
Thomas Graf339bf982006-11-10 14:10:15 -08003866 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003867 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003868 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01003869 + nla_total_size(sizeof(struct ifa_cacheinfo))
3870 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07003871}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003872
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003874 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003877 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Eric W. Biederman15e47302012-09-07 20:12:54 +00003879 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003880 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003881 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003882
Thomas Graf101bb222006-09-18 00:11:52 -07003883 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3884 ifa->idev->dev->ifindex);
3885
Yasushi Asanofad8da32013-12-31 12:04:19 +09003886 if (!((ifa->flags&IFA_F_PERMANENT) &&
3887 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07003888 preferred = ifa->prefered_lft;
3889 valid = ifa->valid_lft;
3890 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003892 if (preferred > tval)
3893 preferred -= tval;
3894 else
3895 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003896 if (valid != INFINITY_LIFE_TIME) {
3897 if (valid > tval)
3898 valid -= tval;
3899 else
3900 valid = 0;
3901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 }
3903 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003904 preferred = INFINITY_LIFE_TIME;
3905 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 }
Thomas Graf85486af2006-09-18 00:11:24 -07003907
Cong Wang7996c792013-05-22 05:41:06 +00003908 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003909 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3910 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3911 goto error;
3912 } else
3913 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3914 goto error;
3915
3916 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3917 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003918
Jiri Pirko479840f2013-12-06 09:45:21 +01003919 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
3920 goto error;
3921
Thomas Graf0ab68032006-09-18 00:12:35 -07003922 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003923
3924error:
3925 nlmsg_cancel(skb, nlh);
3926 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927}
3928
3929static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003930 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003933 u8 scope = RT_SCOPE_UNIVERSE;
3934 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Thomas Graf101bb222006-09-18 00:11:52 -07003936 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3937 scope = RT_SCOPE_SITE;
3938
Eric W. Biederman15e47302012-09-07 20:12:54 +00003939 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003940 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003941 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003942
Thomas Graf101bb222006-09-18 00:11:52 -07003943 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003944 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3945 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003946 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3947 nlmsg_cancel(skb, nlh);
3948 return -EMSGSIZE;
3949 }
Thomas Graf85486af2006-09-18 00:11:24 -07003950
Thomas Graf0ab68032006-09-18 00:12:35 -07003951 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952}
3953
3954static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003955 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003958 u8 scope = RT_SCOPE_UNIVERSE;
3959 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
Thomas Graf101bb222006-09-18 00:11:52 -07003961 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3962 scope = RT_SCOPE_SITE;
3963
Eric W. Biederman15e47302012-09-07 20:12:54 +00003964 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003965 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003966 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003967
Thomas Graf101bb222006-09-18 00:11:52 -07003968 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003969 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3970 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003971 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3972 nlmsg_cancel(skb, nlh);
3973 return -EMSGSIZE;
3974 }
Thomas Graf85486af2006-09-18 00:11:24 -07003975
Thomas Graf0ab68032006-09-18 00:12:35 -07003976 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977}
3978
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003979enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 UNICAST_ADDR,
3981 MULTICAST_ADDR,
3982 ANYCAST_ADDR,
3983};
3984
Eric Dumazet234b27c2009-11-12 04:11:50 +00003985/* called with rcu_read_lock() */
3986static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3987 struct netlink_callback *cb, enum addr_type_t type,
3988 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 struct ifmcaddr6 *ifmca;
3991 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003992 int err = 1;
3993 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Eric Dumazet234b27c2009-11-12 04:11:50 +00003995 read_lock_bh(&idev->lock);
3996 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003997 case UNICAST_ADDR: {
3998 struct inet6_ifaddr *ifa;
3999
Eric Dumazet234b27c2009-11-12 04:11:50 +00004000 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00004001 list_for_each_entry(ifa, &idev->addr_list, if_list) {
4002 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004003 continue;
4004 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004005 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004006 cb->nlh->nlmsg_seq,
4007 RTM_NEWADDR,
4008 NLM_F_MULTI);
4009 if (err <= 0)
4010 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004011 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004013 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00004014 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004015 case MULTICAST_ADDR:
4016 /* multicast address */
4017 for (ifmca = idev->mc_list; ifmca;
4018 ifmca = ifmca->next, ip_idx++) {
4019 if (ip_idx < s_ip_idx)
4020 continue;
4021 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004022 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004023 cb->nlh->nlmsg_seq,
4024 RTM_GETMULTICAST,
4025 NLM_F_MULTI);
4026 if (err <= 0)
4027 break;
4028 }
4029 break;
4030 case ANYCAST_ADDR:
4031 /* anycast address */
4032 for (ifaca = idev->ac_list; ifaca;
4033 ifaca = ifaca->aca_next, ip_idx++) {
4034 if (ip_idx < s_ip_idx)
4035 continue;
4036 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004037 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004038 cb->nlh->nlmsg_seq,
4039 RTM_GETANYCAST,
4040 NLM_F_MULTI);
4041 if (err <= 0)
4042 break;
4043 }
4044 break;
4045 default:
4046 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004048 read_unlock_bh(&idev->lock);
4049 *p_ip_idx = ip_idx;
4050 return err;
4051}
4052
4053static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4054 enum addr_type_t type)
4055{
4056 struct net *net = sock_net(skb->sk);
4057 int h, s_h;
4058 int idx, ip_idx;
4059 int s_idx, s_ip_idx;
4060 struct net_device *dev;
4061 struct inet6_dev *idev;
4062 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004063
4064 s_h = cb->args[0];
4065 s_idx = idx = cb->args[1];
4066 s_ip_idx = ip_idx = cb->args[2];
4067
4068 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004069 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004070 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4071 idx = 0;
4072 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004073 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004074 if (idx < s_idx)
4075 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004076 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004077 s_ip_idx = 0;
4078 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004079 idev = __in6_dev_get(dev);
4080 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004081 goto cont;
4082
4083 if (in6_dump_addrs(idev, skb, cb, type,
4084 s_ip_idx, &ip_idx) <= 0)
4085 goto done;
4086cont:
4087 idx++;
4088 }
4089 }
4090done:
4091 rcu_read_unlock();
4092 cb->args[0] = h;
4093 cb->args[1] = idx;
4094 cb->args[2] = ip_idx;
4095
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 return skb->len;
4097}
4098
4099static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4100{
4101 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004102
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 return inet6_dump_addr(skb, cb, type);
4104}
4105
4106static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4107{
4108 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004109
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 return inet6_dump_addr(skb, cb, type);
4111}
4112
4113
4114static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4115{
4116 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004117
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 return inet6_dump_addr(skb, cb, type);
4119}
4120
Thomas Graf661d2962013-03-21 07:45:29 +00004121static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004122{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004123 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004124 struct ifaddrmsg *ifm;
4125 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004126 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004127 struct net_device *dev = NULL;
4128 struct inet6_ifaddr *ifa;
4129 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004130 int err;
4131
Thomas Graf1b29fc22006-09-18 00:10:50 -07004132 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4133 if (err < 0)
4134 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004135
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004136 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004137 if (addr == NULL) {
4138 err = -EINVAL;
4139 goto errout;
4140 }
4141
4142 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004143 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004144 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004145
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004146 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4147 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004148 err = -EADDRNOTAVAIL;
4149 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004150 }
4151
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004152 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4153 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004154 err = -ENOBUFS;
4155 goto errout_ifa;
4156 }
4157
Eric W. Biederman15e47302012-09-07 20:12:54 +00004158 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004159 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004160 if (err < 0) {
4161 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4162 WARN_ON(err == -EMSGSIZE);
4163 kfree_skb(skb);
4164 goto errout_ifa;
4165 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004166 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004167errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004168 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004169errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004170 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004171}
4172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4174{
4175 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004176 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004177 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
Thomas Graf0ab68032006-09-18 00:12:35 -07004179 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004180 if (skb == NULL)
4181 goto errout;
4182
4183 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004184 if (err < 0) {
4185 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4186 WARN_ON(err == -EMSGSIZE);
4187 kfree_skb(skb);
4188 goto errout;
4189 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004190 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4191 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004192errout:
4193 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004194 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195}
4196
Dave Jonesb6f99a22007-03-22 12:27:49 -07004197static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 __s32 *array, int bytes)
4199{
Thomas Graf04561c12006-11-14 19:53:58 -08004200 BUG_ON(bytes < (DEVCONF_MAX * 4));
4201
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 memset(array, 0, bytes);
4203 array[DEVCONF_FORWARDING] = cnf->forwarding;
4204 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4205 array[DEVCONF_MTU6] = cnf->mtu6;
4206 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4207 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4208 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4209 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4210 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004211 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4212 jiffies_to_msecs(cnf->rtr_solicit_interval);
4213 array[DEVCONF_RTR_SOLICIT_DELAY] =
4214 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004216 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4217 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4218 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4219 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4221 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4222 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4223 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4224 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004226 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004227 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004228#ifdef CONFIG_IPV6_ROUTER_PREF
4229 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004230 array[DEVCONF_RTR_PROBE_INTERVAL] =
4231 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004232#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004233 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4234#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004235#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004236 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004237 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004238#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4239 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4240#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004241#ifdef CONFIG_IPV6_MROUTE
4242 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4243#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004244 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004245 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004246 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004247 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004248 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249}
4250
Thomas Grafb382b192010-11-16 04:33:57 +00004251static inline size_t inet6_ifla6_size(void)
4252{
4253 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4254 + nla_total_size(sizeof(struct ifla_cacheinfo))
4255 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4256 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004257 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4258 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004259}
4260
Thomas Graf339bf982006-11-10 14:10:15 -08004261static inline size_t inet6_if_nlmsg_size(void)
4262{
4263 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4264 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4265 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4266 + nla_total_size(4) /* IFLA_MTU */
4267 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004268 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004269}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004270
Eric Dumazetbe281e52011-05-19 01:14:23 +00004271static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004272 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004273{
4274 int i;
4275 int pad = bytes - sizeof(u64) * items;
4276 BUG_ON(pad < 0);
4277
4278 /* Use put_unaligned() because stats may not be aligned for u64. */
4279 put_unaligned(items, &stats[0]);
4280 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004281 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004282
4283 memset(&stats[items], 0, pad);
4284}
4285
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004286static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4287 int items, int bytes, size_t syncpoff)
4288{
4289 int i;
4290 int pad = bytes - sizeof(u64) * items;
4291 BUG_ON(pad < 0);
4292
4293 /* Use put_unaligned() because stats may not be aligned for u64. */
4294 put_unaligned(items, &stats[0]);
4295 for (i = 1; i < items; i++)
4296 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4297
4298 memset(&stats[items], 0, pad);
4299}
4300
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004301static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4302 int bytes)
4303{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004304 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004305 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004306 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4307 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004308 break;
4309 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004310 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004311 break;
4312 }
4313}
4314
Thomas Grafb382b192010-11-16 04:33:57 +00004315static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004317 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004318 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
David S. Millerc78679e2012-04-01 20:27:33 -04004320 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4321 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004323 ci.tstamp = cstamp_delta(idev->tstamp);
4324 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e52013-12-07 19:26:53 +01004325 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04004326 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4327 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004328 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4329 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004330 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004331 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004333 /* XXX - MC not implemented */
4334
4335 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4336 if (nla == NULL)
4337 goto nla_put_failure;
4338 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4339
4340 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4341 if (nla == NULL)
4342 goto nla_put_failure;
4343 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004345 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4346 if (nla == NULL)
4347 goto nla_put_failure;
4348 read_lock_bh(&idev->lock);
4349 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4350 read_unlock_bh(&idev->lock);
4351
Thomas Grafb382b192010-11-16 04:33:57 +00004352 return 0;
4353
4354nla_put_failure:
4355 return -EMSGSIZE;
4356}
4357
4358static size_t inet6_get_link_af_size(const struct net_device *dev)
4359{
4360 if (!__in6_dev_get(dev))
4361 return 0;
4362
4363 return inet6_ifla6_size();
4364}
4365
4366static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4367{
4368 struct inet6_dev *idev = __in6_dev_get(dev);
4369
4370 if (!idev)
4371 return -ENODATA;
4372
4373 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4374 return -EMSGSIZE;
4375
4376 return 0;
4377}
4378
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004379static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4380{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004381 struct inet6_ifaddr *ifp;
4382 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004383 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004384 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004385
4386 if (token == NULL)
4387 return -EINVAL;
4388 if (ipv6_addr_any(token))
4389 return -EINVAL;
4390 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4391 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004392 if (!ipv6_accept_ra(idev))
4393 return -EINVAL;
4394 if (idev->cnf.rtr_solicits <= 0)
4395 return -EINVAL;
4396
4397 write_lock_bh(&idev->lock);
4398
4399 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4400 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4401
4402 write_unlock_bh(&idev->lock);
4403
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004404 if (!idev->dead && (idev->if_flags & IF_READY) &&
4405 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4406 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004407
4408 /* If we're not ready, then normal ifup will take care
4409 * of this. Otherwise, we need to request our rs here.
4410 */
4411 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4412 update_rs = true;
4413 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004414
4415 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004416
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004417 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004418 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004419 idev->rs_probes = 1;
4420 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4421 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004422
4423 /* Well, that's kinda nasty ... */
4424 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4425 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004426 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004427 ifp->valid_lft = 0;
4428 ifp->prefered_lft = 0;
4429 }
4430 spin_unlock(&ifp->lock);
4431 }
4432
4433 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004434 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004435 return 0;
4436}
4437
4438static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4439{
4440 int err = -EINVAL;
4441 struct inet6_dev *idev = __in6_dev_get(dev);
4442 struct nlattr *tb[IFLA_INET6_MAX + 1];
4443
4444 if (!idev)
4445 return -EAFNOSUPPORT;
4446
4447 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4448 BUG();
4449
4450 if (tb[IFLA_INET6_TOKEN])
4451 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4452
4453 return err;
4454}
4455
Thomas Grafb382b192010-11-16 04:33:57 +00004456static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004457 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004458{
4459 struct net_device *dev = idev->dev;
4460 struct ifinfomsg *hdr;
4461 struct nlmsghdr *nlh;
4462 void *protoinfo;
4463
Eric W. Biederman15e47302012-09-07 20:12:54 +00004464 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004465 if (nlh == NULL)
4466 return -EMSGSIZE;
4467
4468 hdr = nlmsg_data(nlh);
4469 hdr->ifi_family = AF_INET6;
4470 hdr->__ifi_pad = 0;
4471 hdr->ifi_type = dev->type;
4472 hdr->ifi_index = dev->ifindex;
4473 hdr->ifi_flags = dev_get_flags(dev);
4474 hdr->ifi_change = 0;
4475
David S. Millerc78679e2012-04-01 20:27:33 -04004476 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4477 (dev->addr_len &&
4478 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4479 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4480 (dev->ifindex != dev->iflink &&
4481 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4482 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004483 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4484 if (protoinfo == NULL)
4485 goto nla_put_failure;
4486
4487 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4488 goto nla_put_failure;
4489
Thomas Graf04561c12006-11-14 19:53:58 -08004490 nla_nest_end(skb, protoinfo);
4491 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Thomas Graf04561c12006-11-14 19:53:58 -08004493nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004494 nlmsg_cancel(skb, nlh);
4495 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496}
4497
4498static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4499{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004500 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004501 int h, s_h;
David S. Miller434a8a582009-11-11 18:53:00 -08004502 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 struct net_device *dev;
4504 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004505 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
Eric Dumazet84d26972009-11-09 12:11:28 +00004507 s_h = cb->args[0];
4508 s_idx = cb->args[1];
4509
4510 rcu_read_lock();
4511 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4512 idx = 0;
4513 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004514 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004515 if (idx < s_idx)
4516 goto cont;
4517 idev = __in6_dev_get(dev);
4518 if (!idev)
4519 goto cont;
4520 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004521 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004522 cb->nlh->nlmsg_seq,
4523 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4524 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004525cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004526 idx++;
4527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004529out:
4530 rcu_read_unlock();
4531 cb->args[1] = idx;
4532 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
4534 return skb->len;
4535}
4536
4537void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4538{
4539 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004540 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004541 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004542
Thomas Graf339bf982006-11-10 14:10:15 -08004543 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004544 if (skb == NULL)
4545 goto errout;
4546
4547 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004548 if (err < 0) {
4549 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4550 WARN_ON(err == -EMSGSIZE);
4551 kfree_skb(skb);
4552 goto errout;
4553 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004554 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004555 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004556errout:
4557 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004558 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559}
4560
Thomas Graf339bf982006-11-10 14:10:15 -08004561static inline size_t inet6_prefix_nlmsg_size(void)
4562{
4563 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4564 + nla_total_size(sizeof(struct in6_addr))
4565 + nla_total_size(sizeof(struct prefix_cacheinfo));
4566}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004569 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004570 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004572 struct prefixmsg *pmsg;
4573 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 struct prefix_cacheinfo ci;
4575
Eric W. Biederman15e47302012-09-07 20:12:54 +00004576 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004577 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004578 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004579
4580 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004582 pmsg->prefix_pad1 = 0;
4583 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 pmsg->prefix_ifindex = idev->dev->ifindex;
4585 pmsg->prefix_len = pinfo->prefix_len;
4586 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004587 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 pmsg->prefix_flags = 0;
4589 if (pinfo->onlink)
4590 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4591 if (pinfo->autoconf)
4592 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4593
David S. Millerc78679e2012-04-01 20:27:33 -04004594 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4595 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 ci.preferred_time = ntohl(pinfo->prefered);
4597 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004598 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4599 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004600 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Thomas Graf6051e2f2006-11-14 19:54:19 -08004602nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004603 nlmsg_cancel(skb, nlh);
4604 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605}
4606
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004607static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 struct prefix_info *pinfo)
4609{
4610 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004611 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004612 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
Thomas Graf339bf982006-11-10 14:10:15 -08004614 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004615 if (skb == NULL)
4616 goto errout;
4617
4618 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004619 if (err < 0) {
4620 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4621 WARN_ON(err == -EMSGSIZE);
4622 kfree_skb(skb);
4623 goto errout;
4624 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004625 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4626 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004627errout:
4628 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004629 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630}
4631
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4633{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004634 struct net *net = dev_net(ifp->idev->dev);
4635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4637
4638 switch (event) {
4639 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004640 /*
4641 * If the address was optimistic
4642 * we inserted the route at the start of
4643 * our DAD process, so we don't need
4644 * to do it again
4645 */
4646 if (!(ifp->rt->rt6i_node))
4647 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 if (ifp->idev->cnf.forwarding)
4649 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004650 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004651 addrconf_prefix_route(&ifp->peer_addr, 128,
4652 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 break;
4654 case RTM_DELADDR:
4655 if (ifp->idev->cnf.forwarding)
4656 addrconf_leave_anycast(ifp);
4657 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004658 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004659 struct rt6_info *rt;
4660 struct net_device *dev = ifp->idev->dev;
4661
4662 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4663 dev->ifindex, 1);
4664 if (rt) {
4665 dst_hold(&rt->dst);
4666 if (ip6_del_rt(rt))
4667 dst_free(&rt->dst);
4668 }
4669 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004670 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004671
David S. Miller73a8bd72011-01-23 23:27:15 -08004672 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004673 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 break;
4675 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004676 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004677 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678}
4679
4680static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4681{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004682 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 if (likely(ifp->idev->dead == 0))
4684 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004685 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686}
4687
4688#ifdef CONFIG_SYSCTL
4689
4690static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004691int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 void __user *buffer, size_t *lenp, loff_t *ppos)
4693{
4694 int *valp = ctl->data;
4695 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004696 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004697 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 int ret;
4699
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004700 /*
4701 * ctl->data points to idev->cnf.forwarding, we should
4702 * not modify it until we get the rtnl lock.
4703 */
4704 lctl = *ctl;
4705 lctl.data = &val;
4706
4707 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004709 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004710 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004711 if (ret)
4712 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004713 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714}
4715
Brian Haley56d417b2009-06-01 03:07:33 -07004716static void dev_disable_change(struct inet6_dev *idev)
4717{
Cong Wang75538c22013-05-29 11:30:50 +08004718 struct netdev_notifier_info info;
4719
Brian Haley56d417b2009-06-01 03:07:33 -07004720 if (!idev || !idev->dev)
4721 return;
4722
Cong Wang75538c22013-05-29 11:30:50 +08004723 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004724 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004725 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004726 else
Cong Wang75538c22013-05-29 11:30:50 +08004727 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004728}
4729
4730static void addrconf_disable_change(struct net *net, __s32 newf)
4731{
4732 struct net_device *dev;
4733 struct inet6_dev *idev;
4734
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004735 rcu_read_lock();
4736 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004737 idev = __in6_dev_get(dev);
4738 if (idev) {
4739 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4740 idev->cnf.disable_ipv6 = newf;
4741 if (changed)
4742 dev_disable_change(idev);
4743 }
Brian Haley56d417b2009-06-01 03:07:33 -07004744 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004745 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004746}
4747
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004748static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004749{
4750 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004751 int old;
4752
4753 if (!rtnl_trylock())
4754 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004755
4756 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004757 old = *p;
4758 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004759
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004760 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4761 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004762 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004763 }
Brian Haley56d417b2009-06-01 03:07:33 -07004764
4765 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004766 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4767 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004768 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004769 dev_disable_change((struct inet6_dev *)table->extra1);
4770
4771 rtnl_unlock();
4772 return 0;
4773}
4774
4775static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004776int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004777 void __user *buffer, size_t *lenp, loff_t *ppos)
4778{
4779 int *valp = ctl->data;
4780 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004781 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004782 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004783 int ret;
4784
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004785 /*
4786 * ctl->data points to idev->cnf.disable_ipv6, we should
4787 * not modify it until we get the rtnl lock.
4788 */
4789 lctl = *ctl;
4790 lctl.data = &val;
4791
4792 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004793
4794 if (write)
4795 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004796 if (ret)
4797 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004798 return ret;
4799}
4800
stephen hemmingerc92d5492013-12-17 22:37:14 -08004801static
4802int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
4803 void __user *buffer, size_t *lenp, loff_t *ppos)
4804{
4805 int *valp = ctl->data;
4806 int ret;
4807 int old, new;
4808
4809 old = *valp;
4810 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
4811 new = *valp;
4812
4813 if (write && old != new) {
4814 struct net *net = ctl->extra2;
4815
4816 if (!rtnl_trylock())
4817 return restart_syscall();
4818
4819 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
4820 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4821 NETCONFA_IFINDEX_DEFAULT,
4822 net->ipv6.devconf_dflt);
4823 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
4824 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4825 NETCONFA_IFINDEX_ALL,
4826 net->ipv6.devconf_all);
4827 else {
4828 struct inet6_dev *idev = ctl->extra1;
4829
4830 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4831 idev->dev->ifindex,
4832 &idev->cnf);
4833 }
4834 rtnl_unlock();
4835 }
4836
4837 return ret;
4838}
4839
4840
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841static struct addrconf_sysctl_table
4842{
4843 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004844 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004845} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 .sysctl_header = NULL,
4847 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004848 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004849 .procname = "forwarding",
4850 .data = &ipv6_devconf.forwarding,
4851 .maxlen = sizeof(int),
4852 .mode = 0644,
4853 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 },
4855 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004856 .procname = "hop_limit",
4857 .data = &ipv6_devconf.hop_limit,
4858 .maxlen = sizeof(int),
4859 .mode = 0644,
4860 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 },
4862 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004863 .procname = "mtu",
4864 .data = &ipv6_devconf.mtu6,
4865 .maxlen = sizeof(int),
4866 .mode = 0644,
4867 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 },
4869 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004870 .procname = "accept_ra",
4871 .data = &ipv6_devconf.accept_ra,
4872 .maxlen = sizeof(int),
4873 .mode = 0644,
4874 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 },
4876 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004877 .procname = "accept_redirects",
4878 .data = &ipv6_devconf.accept_redirects,
4879 .maxlen = sizeof(int),
4880 .mode = 0644,
4881 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 },
4883 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004884 .procname = "autoconf",
4885 .data = &ipv6_devconf.autoconf,
4886 .maxlen = sizeof(int),
4887 .mode = 0644,
4888 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 },
4890 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004891 .procname = "dad_transmits",
4892 .data = &ipv6_devconf.dad_transmits,
4893 .maxlen = sizeof(int),
4894 .mode = 0644,
4895 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 },
4897 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004898 .procname = "router_solicitations",
4899 .data = &ipv6_devconf.rtr_solicits,
4900 .maxlen = sizeof(int),
4901 .mode = 0644,
4902 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 },
4904 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004905 .procname = "router_solicitation_interval",
4906 .data = &ipv6_devconf.rtr_solicit_interval,
4907 .maxlen = sizeof(int),
4908 .mode = 0644,
4909 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 },
4911 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004912 .procname = "router_solicitation_delay",
4913 .data = &ipv6_devconf.rtr_solicit_delay,
4914 .maxlen = sizeof(int),
4915 .mode = 0644,
4916 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 },
4918 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004919 .procname = "force_mld_version",
4920 .data = &ipv6_devconf.force_mld_version,
4921 .maxlen = sizeof(int),
4922 .mode = 0644,
4923 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004925 {
4926 .procname = "mldv1_unsolicited_report_interval",
4927 .data =
4928 &ipv6_devconf.mldv1_unsolicited_report_interval,
4929 .maxlen = sizeof(int),
4930 .mode = 0644,
4931 .proc_handler = proc_dointvec_ms_jiffies,
4932 },
4933 {
4934 .procname = "mldv2_unsolicited_report_interval",
4935 .data =
4936 &ipv6_devconf.mldv2_unsolicited_report_interval,
4937 .maxlen = sizeof(int),
4938 .mode = 0644,
4939 .proc_handler = proc_dointvec_ms_jiffies,
4940 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004942 .procname = "use_tempaddr",
4943 .data = &ipv6_devconf.use_tempaddr,
4944 .maxlen = sizeof(int),
4945 .mode = 0644,
4946 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 },
4948 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004949 .procname = "temp_valid_lft",
4950 .data = &ipv6_devconf.temp_valid_lft,
4951 .maxlen = sizeof(int),
4952 .mode = 0644,
4953 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 },
4955 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004956 .procname = "temp_prefered_lft",
4957 .data = &ipv6_devconf.temp_prefered_lft,
4958 .maxlen = sizeof(int),
4959 .mode = 0644,
4960 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 },
4962 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004963 .procname = "regen_max_retry",
4964 .data = &ipv6_devconf.regen_max_retry,
4965 .maxlen = sizeof(int),
4966 .mode = 0644,
4967 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 },
4969 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004970 .procname = "max_desync_factor",
4971 .data = &ipv6_devconf.max_desync_factor,
4972 .maxlen = sizeof(int),
4973 .mode = 0644,
4974 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004977 .procname = "max_addresses",
4978 .data = &ipv6_devconf.max_addresses,
4979 .maxlen = sizeof(int),
4980 .mode = 0644,
4981 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 },
4983 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004984 .procname = "accept_ra_defrtr",
4985 .data = &ipv6_devconf.accept_ra_defrtr,
4986 .maxlen = sizeof(int),
4987 .mode = 0644,
4988 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004989 },
4990 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004991 .procname = "accept_ra_pinfo",
4992 .data = &ipv6_devconf.accept_ra_pinfo,
4993 .maxlen = sizeof(int),
4994 .mode = 0644,
4995 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004996 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004997#ifdef CONFIG_IPV6_ROUTER_PREF
4998 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004999 .procname = "accept_ra_rtr_pref",
5000 .data = &ipv6_devconf.accept_ra_rtr_pref,
5001 .maxlen = sizeof(int),
5002 .mode = 0644,
5003 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005004 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08005005 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005006 .procname = "router_probe_interval",
5007 .data = &ipv6_devconf.rtr_probe_interval,
5008 .maxlen = sizeof(int),
5009 .mode = 0644,
5010 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08005011 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08005012#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005013 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005014 .procname = "accept_ra_rt_info_max_plen",
5015 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
5016 .maxlen = sizeof(int),
5017 .mode = 0644,
5018 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005019 },
5020#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005021#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005022 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005023 .procname = "proxy_ndp",
5024 .data = &ipv6_devconf.proxy_ndp,
5025 .maxlen = sizeof(int),
5026 .mode = 0644,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005027 .proc_handler = addrconf_sysctl_proxy_ndp,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005028 },
5029 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005030 .procname = "accept_source_route",
5031 .data = &ipv6_devconf.accept_source_route,
5032 .maxlen = sizeof(int),
5033 .mode = 0644,
5034 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005035 },
Neil Horman95c385b2007-04-25 17:08:10 -07005036#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5037 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005038 .procname = "optimistic_dad",
5039 .data = &ipv6_devconf.optimistic_dad,
5040 .maxlen = sizeof(int),
5041 .mode = 0644,
5042 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07005043
5044 },
5045#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005046#ifdef CONFIG_IPV6_MROUTE
5047 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005048 .procname = "mc_forwarding",
5049 .data = &ipv6_devconf.mc_forwarding,
5050 .maxlen = sizeof(int),
5051 .mode = 0444,
5052 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005053 },
5054#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005055 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005056 .procname = "disable_ipv6",
5057 .data = &ipv6_devconf.disable_ipv6,
5058 .maxlen = sizeof(int),
5059 .mode = 0644,
5060 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005061 },
5062 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005063 .procname = "accept_dad",
5064 .data = &ipv6_devconf.accept_dad,
5065 .maxlen = sizeof(int),
5066 .mode = 0644,
5067 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005068 },
5069 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00005070 .procname = "force_tllao",
5071 .data = &ipv6_devconf.force_tllao,
5072 .maxlen = sizeof(int),
5073 .mode = 0644,
5074 .proc_handler = proc_dointvec
5075 },
5076 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005077 .procname = "ndisc_notify",
5078 .data = &ipv6_devconf.ndisc_notify,
5079 .maxlen = sizeof(int),
5080 .mode = 0644,
5081 .proc_handler = proc_dointvec
5082 },
5083 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005084 .procname = "suppress_frag_ndisc",
5085 .data = &ipv6_devconf.suppress_frag_ndisc,
5086 .maxlen = sizeof(int),
5087 .mode = 0644,
5088 .proc_handler = proc_dointvec
5089 },
5090 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005091 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 }
5093 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094};
5095
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005096static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005097 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098{
5099 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005101 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005102
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005103 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005105 goto out;
5106
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005107 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005108 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005110 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112
Eric W. Biederman6105e292012-04-19 13:41:24 +00005113 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
Eric W. Biederman6105e292012-04-19 13:41:24 +00005115 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005117 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005118
5119 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005122free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005124out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005125 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126}
5127
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005128static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5129{
5130 struct addrconf_sysctl_table *t;
5131
5132 if (p->sysctl == NULL)
5133 return;
5134
5135 t = p->sysctl;
5136 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005137 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005138 kfree(t);
5139}
5140
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005141static void addrconf_sysctl_register(struct inet6_dev *idev)
5142{
Jiri Pirko73af6142013-12-07 19:26:55 +01005143 neigh_sysctl_register(idev->dev, idev->nd_parms,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005144 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005145 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005146 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005147}
5148
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005149static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005151 __addrconf_sysctl_unregister(&idev->cnf);
5152 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153}
5154
5155
5156#endif
5157
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005158static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005159{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005160 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005161 struct ipv6_devconf *all, *dflt;
5162
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005163 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5164 if (all == NULL)
5165 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005166
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005167 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5168 if (dflt == NULL)
5169 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005170
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005171 /* these will be inherited by all namespaces */
5172 dflt->autoconf = ipv6_defaults.autoconf;
5173 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005174
5175 net->ipv6.devconf_all = all;
5176 net->ipv6.devconf_dflt = dflt;
5177
5178#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005179 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005180 if (err < 0)
5181 goto err_reg_all;
5182
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005183 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005184 if (err < 0)
5185 goto err_reg_dflt;
5186#endif
5187 return 0;
5188
5189#ifdef CONFIG_SYSCTL
5190err_reg_dflt:
5191 __addrconf_sysctl_unregister(all);
5192err_reg_all:
5193 kfree(dflt);
5194#endif
5195err_alloc_dflt:
5196 kfree(all);
5197err_alloc_all:
5198 return err;
5199}
5200
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005201static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005202{
5203#ifdef CONFIG_SYSCTL
5204 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5205 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5206#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005207 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005208 kfree(net->ipv6.devconf_dflt);
5209 kfree(net->ipv6.devconf_all);
5210 }
5211}
5212
5213static struct pernet_operations addrconf_ops = {
5214 .init = addrconf_init_net,
5215 .exit = addrconf_exit_net,
5216};
5217
Thomas Grafb382b192010-11-16 04:33:57 +00005218static struct rtnl_af_ops inet6_ops = {
5219 .family = AF_INET6,
5220 .fill_link_af = inet6_fill_link_af,
5221 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005222 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005223};
5224
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225/*
5226 * Init / cleanup code
5227 */
5228
5229int __init addrconf_init(void)
5230{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005231 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005232
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005233 err = ipv6_addr_label_init();
5234 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005235 pr_crit("%s: cannot initialize default policy table: %d\n",
5236 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005237 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005240 err = register_pernet_subsys(&addrconf_ops);
5241 if (err < 0)
5242 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005243
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 /* The addrconf netdev notifier requires that loopback_dev
5245 * has it's ipv6 private information allocated and setup
5246 * before it can bring up and give link-local addresses
5247 * to other devices which are up.
5248 *
5249 * Unfortunately, loopback_dev is not necessarily the first
5250 * entry in the global dev_base list of net devices. In fact,
5251 * it is likely to be the very last entry on that list.
5252 * So this causes the notifier registry below to try and
5253 * give link-local addresses to all devices besides loopback_dev
5254 * first, then loopback_dev, which cases all the non-loopback_dev
5255 * devices to fail to get a link-local address.
5256 *
5257 * So, as a temporary fix, allocate the ipv6 structure for
5258 * loopback_dev first by hand.
5259 * Longer term, all of the dependencies ipv6 has upon the loopback
5260 * device and it being up should be removed.
5261 */
5262 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005263 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 err = -ENOMEM;
5265 rtnl_unlock();
5266 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005267 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
stephen hemmingerc2e21292010-03-17 20:31:10 +00005269 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5270 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 register_netdevice_notifier(&ipv6_dev_notf);
5273
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005275
stephen hemminger3678a9d2013-12-30 10:41:32 -08005276 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00005277
Greg Rosec7ac8672011-06-10 01:27:09 +00005278 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5279 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005280 if (err < 0)
5281 goto errout;
5282
5283 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005284 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5285 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5286 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5287 inet6_dump_ifaddr, NULL);
5288 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5289 inet6_dump_ifmcaddr, NULL);
5290 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5291 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005292 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005293 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005294
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005295 ipv6_addr_label_rtnl_register();
5296
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005298errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005299 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07005300 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005301errlo:
5302 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005303out_addrlabel:
5304 ipv6_addr_label_cleanup();
5305out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005306 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307}
5308
Daniel Lezcano09f77092007-12-13 05:34:58 -08005309void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005311 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 int i;
5313
5314 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005315 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005316 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317
5318 rtnl_lock();
5319
Thomas Grafb382b192010-11-16 04:33:57 +00005320 __rtnl_af_unregister(&inet6_ops);
5321
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005322 /* clean dev list */
5323 for_each_netdev(&init_net, dev) {
5324 if (__in6_dev_get(dev) == NULL)
5325 continue;
5326 addrconf_ifdown(dev, 1);
5327 }
5328 addrconf_ifdown(init_net.loopback_dev, 2);
5329
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 * Check hash table.
5332 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005333 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005334 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5335 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005336 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
5338 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340}