blob: 344e972426df847a6f6b87414c37ef29e2ddd127 [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.
Heiner Kallweitecab6702014-03-12 22:13:19 +01001106 * Use age calculation as in addrconf_verify to avoid unnecessary
1107 * temporary addresses being generated.
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001108 */
Heiner Kallweitecab6702014-03-12 22:13:19 +01001109 age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
1110 if (tmp_prefered_lft <= regen_advance + age) {
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001111 in6_ifa_put(ifp);
1112 in6_dev_put(idev);
1113 ret = -1;
1114 goto out;
1115 }
1116
Neil Horman95c385b2007-04-25 17:08:10 -07001117 addr_flags = IFA_F_TEMPORARY;
1118 /* set in addrconf_prefix_rcv() */
1119 if (ifp->flags & IFA_F_OPTIMISTIC)
1120 addr_flags |= IFA_F_OPTIMISTIC;
1121
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001122 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1123 ipv6_addr_scope(&addr), addr_flags,
1124 tmp_valid_lft, tmp_prefered_lft);
1125 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 in6_ifa_put(ifp);
1127 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001128 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 tmpaddr = &addr;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001130 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 goto retry;
1132 }
1133
1134 spin_lock_bh(&ift->lock);
1135 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001136 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 ift->tstamp = tmp_tstamp;
1138 spin_unlock_bh(&ift->lock);
1139
David S. Millercf22f9a2012-04-14 21:37:40 -04001140 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 in6_ifa_put(ift);
1142 in6_dev_put(idev);
1143out:
1144 return ret;
1145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001148 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001150enum {
1151 IPV6_SADDR_RULE_INIT = 0,
1152 IPV6_SADDR_RULE_LOCAL,
1153 IPV6_SADDR_RULE_SCOPE,
1154 IPV6_SADDR_RULE_PREFERRED,
1155#ifdef CONFIG_IPV6_MIP6
1156 IPV6_SADDR_RULE_HOA,
1157#endif
1158 IPV6_SADDR_RULE_OIF,
1159 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001160 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001161 IPV6_SADDR_RULE_ORCHID,
1162 IPV6_SADDR_RULE_PREFIX,
1163 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001164};
1165
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001166struct ipv6_saddr_score {
1167 int rule;
1168 int addr_type;
1169 struct inet6_ifaddr *ifa;
1170 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1171 int scopedist;
1172 int matchlen;
1173};
1174
1175struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001176 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001177 int ifindex;
1178 int scope;
1179 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001180 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001181};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001182
Dave Jonesb6f99a22007-03-22 12:27:49 -07001183static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001185 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001186 return 1;
1187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Benjamin Thery3de23252008-05-28 14:51:24 +02001190static int ipv6_get_saddr_eval(struct net *net,
1191 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001192 struct ipv6_saddr_dst *dst,
1193 int i)
1194{
1195 int ret;
1196
1197 if (i <= score->rule) {
1198 switch (i) {
1199 case IPV6_SADDR_RULE_SCOPE:
1200 ret = score->scopedist;
1201 break;
1202 case IPV6_SADDR_RULE_PREFIX:
1203 ret = score->matchlen;
1204 break;
1205 default:
1206 ret = !!test_bit(i, score->scorebits);
1207 }
1208 goto out;
1209 }
1210
1211 switch (i) {
1212 case IPV6_SADDR_RULE_INIT:
1213 /* Rule 0: remember if hiscore is not ready yet */
1214 ret = !!score->ifa;
1215 break;
1216 case IPV6_SADDR_RULE_LOCAL:
1217 /* Rule 1: Prefer same address */
1218 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1219 break;
1220 case IPV6_SADDR_RULE_SCOPE:
1221 /* Rule 2: Prefer appropriate scope
1222 *
1223 * ret
1224 * ^
1225 * -1 | d 15
1226 * ---+--+-+---> scope
1227 * |
1228 * | d is scope of the destination.
1229 * B-d | \
1230 * | \ <- smaller scope is better if
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08001231 * B-15 | \ if scope is enough for destination.
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001232 * | ret = B - scope (-1 <= scope >= d <= 15).
1233 * d-C-1 | /
1234 * |/ <- greater is better
1235 * -C / if scope is not enough for destination.
1236 * /| ret = scope - C (-1 <= d < scope <= 15).
1237 *
1238 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1239 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1240 * Assume B = 0 and we get C > 29.
1241 */
1242 ret = __ipv6_addr_src_scope(score->addr_type);
1243 if (ret >= dst->scope)
1244 ret = -ret;
1245 else
1246 ret -= 128; /* 30 is enough */
1247 score->scopedist = ret;
1248 break;
1249 case IPV6_SADDR_RULE_PREFERRED:
1250 /* Rule 3: Avoid deprecated and optimistic addresses */
1251 ret = ipv6_saddr_preferred(score->addr_type) ||
1252 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1253 break;
1254#ifdef CONFIG_IPV6_MIP6
1255 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001256 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001257 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001258 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1259 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001260 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001261 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001262#endif
1263 case IPV6_SADDR_RULE_OIF:
1264 /* Rule 5: Prefer outgoing interface */
1265 ret = (!dst->ifindex ||
1266 dst->ifindex == score->ifa->idev->dev->ifindex);
1267 break;
1268 case IPV6_SADDR_RULE_LABEL:
1269 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001270 ret = ipv6_addr_label(net,
1271 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001272 score->ifa->idev->dev->ifindex) == dst->label;
1273 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001274 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001275 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001276 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001277 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001278 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001279 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1280 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1281 score->ifa->idev->cnf.use_tempaddr >= 2;
1282 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001283 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001284 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001285 case IPV6_SADDR_RULE_ORCHID:
1286 /* Rule 8-: Prefer ORCHID vs ORCHID or
1287 * non-ORCHID vs non-ORCHID
1288 */
1289 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1290 ipv6_addr_orchid(dst->addr));
1291 break;
1292 case IPV6_SADDR_RULE_PREFIX:
1293 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001294 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1295 if (ret > score->ifa->prefix_len)
1296 ret = score->ifa->prefix_len;
1297 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001298 break;
1299 default:
1300 ret = 0;
1301 }
1302
1303 if (ret)
1304 __set_bit(i, score->scorebits);
1305 score->rule = i;
1306out:
1307 return ret;
1308}
1309
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001310int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001311 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001312 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001314 struct ipv6_saddr_score scores[2],
1315 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001316 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001317 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001318 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001320 dst_type = __ipv6_addr_type(daddr);
1321 dst.addr = daddr;
1322 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1323 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001324 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001325 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001326
1327 hiscore->rule = -1;
1328 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001330 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001331
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001332 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001333 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001334
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001335 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001336 * - multicast and link-local destination address,
1337 * the set of candidate source address MUST only
1338 * include addresses assigned to interfaces
1339 * belonging to the same link as the outgoing
1340 * interface.
1341 * (- For site-local destination addresses, the
1342 * set of candidate source addresses MUST only
1343 * include addresses assigned to interfaces
1344 * belonging to the same site as the outgoing
1345 * interface.)
1346 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001347 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1348 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1349 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001350 continue;
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001353 if (!idev)
1354 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001356 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001357 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001358 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001360 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001361 * - Tentative Address (RFC2462 section 5.4)
1362 * - A tentative address is not considered
1363 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001364 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001365 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001366 * - In any case, anycast addresses, multicast
1367 * addresses, and the unspecified address MUST
1368 * NOT be included in a candidate set.
1369 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001370 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1371 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001372 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001373
1374 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1375
1376 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1377 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001378 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001379 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001380 "assigned as unicast address on %s",
1381 dev->name);
1382 continue;
1383 }
1384
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001385 score->rule = -1;
1386 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001387
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001388 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1389 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001390
Benjamin Thery3de23252008-05-28 14:51:24 +02001391 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1392 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001393
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001394 if (minihiscore > miniscore) {
1395 if (i == IPV6_SADDR_RULE_SCOPE &&
1396 score->scopedist > 0) {
1397 /*
1398 * special case:
1399 * each remaining entry
1400 * has too small (not enough)
1401 * scope, because ifa entries
1402 * are sorted by their scope
1403 * values.
1404 */
1405 goto try_nextdev;
1406 }
1407 break;
1408 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001409 if (hiscore->ifa)
1410 in6_ifa_put(hiscore->ifa);
1411
1412 in6_ifa_hold(score->ifa);
1413
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001414 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001415
1416 /* restore our iterator */
1417 score->ifa = hiscore->ifa;
1418
1419 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
1421 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001422 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001423try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001424 read_unlock_bh(&idev->lock);
1425 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001426 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001428 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001429 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001430
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001431 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001432 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001435EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Amerigo Wang89657792013-06-29 21:30:49 +08001437int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001438 u32 banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001439{
1440 struct inet6_ifaddr *ifp;
1441 int err = -EADDRNOTAVAIL;
1442
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001443 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1444 if (ifp->scope > IFA_LINK)
1445 break;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001446 if (ifp->scope == IFA_LINK &&
1447 !(ifp->flags & banned_flags)) {
1448 *addr = ifp->addr;
1449 err = 0;
1450 break;
1451 }
1452 }
1453 return err;
1454}
1455
Neil Horman95c385b2007-04-25 17:08:10 -07001456int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001457 u32 banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 struct inet6_dev *idev;
1460 int err = -EADDRNOTAVAIL;
1461
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001462 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001463 idev = __in6_dev_get(dev);
1464 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001466 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 read_unlock_bh(&idev->lock);
1468 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001469 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return err;
1471}
1472
1473static int ipv6_count_addresses(struct inet6_dev *idev)
1474{
1475 int cnt = 0;
1476 struct inet6_ifaddr *ifp;
1477
1478 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001479 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 cnt++;
1481 read_unlock_bh(&idev->lock);
1482 return cnt;
1483}
1484
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001485int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001486 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001488 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001489 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
stephen hemminger5c578ae2010-03-17 20:31:11 +00001491 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001492 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001493 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001494 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001496 !(ifp->flags&IFA_F_TENTATIVE) &&
1497 (dev == NULL || ifp->idev->dev == dev ||
1498 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1499 rcu_read_unlock_bh();
1500 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001503
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001504 rcu_read_unlock_bh();
1505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001507EXPORT_SYMBOL(ipv6_chk_addr);
1508
David S. Miller3e81c6d2010-03-20 16:18:00 -07001509static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1510 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001512 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001513 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Sasha Levinb67bfe02013-02-27 17:06:00 -08001515 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001516 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001517 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (ipv6_addr_equal(&ifp->addr, addr)) {
1519 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001520 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001523 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524}
1525
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001526/* Compares an address/prefix_len with addresses on device @dev.
1527 * If one is found it returns true.
1528 */
1529bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1530 const unsigned int prefix_len, struct net_device *dev)
1531{
1532 struct inet6_dev *idev;
1533 struct inet6_ifaddr *ifa;
1534 bool ret = false;
1535
1536 rcu_read_lock();
1537 idev = __in6_dev_get(dev);
1538 if (idev) {
1539 read_lock_bh(&idev->lock);
1540 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1541 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1542 if (ret)
1543 break;
1544 }
1545 read_unlock_bh(&idev->lock);
1546 }
1547 rcu_read_unlock();
1548
1549 return ret;
1550}
1551EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1552
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001553int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001554{
1555 struct inet6_dev *idev;
1556 struct inet6_ifaddr *ifa;
1557 int onlink;
1558
1559 onlink = 0;
1560 rcu_read_lock();
1561 idev = __in6_dev_get(dev);
1562 if (idev) {
1563 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001564 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001565 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1566 ifa->prefix_len);
1567 if (onlink)
1568 break;
1569 }
1570 read_unlock_bh(&idev->lock);
1571 }
1572 rcu_read_unlock();
1573 return onlink;
1574}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001575EXPORT_SYMBOL(ipv6_chk_prefix);
1576
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001577struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001578 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
David S. Millerb79d1d52010-03-25 21:39:21 -07001580 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001581 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
stephen hemminger5c578ae2010-03-17 20:31:11 +00001583 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001584 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001585 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001586 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (ipv6_addr_equal(&ifp->addr, addr)) {
1588 if (dev == NULL || ifp->idev->dev == dev ||
1589 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001590 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 in6_ifa_hold(ifp);
1592 break;
1593 }
1594 }
1595 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001596 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
David S. Millerb79d1d52010-03-25 21:39:21 -07001598 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601/* Gets referenced address, destroys ifaddr */
1602
Brian Haleycc411d02009-09-09 14:41:32 +00001603static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (ifp->flags&IFA_F_PERMANENT) {
1606 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001607 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001609 if (dad_failed)
1610 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001612 if (dad_failed)
1613 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 } else if (ifp->flags&IFA_F_TEMPORARY) {
1616 struct inet6_ifaddr *ifpub;
1617 spin_lock_bh(&ifp->lock);
1618 ifpub = ifp->ifpub;
1619 if (ifpub) {
1620 in6_ifa_hold(ifpub);
1621 spin_unlock_bh(&ifp->lock);
1622 ipv6_create_tempaddr(ifpub, ifp);
1623 in6_ifa_put(ifpub);
1624 } else {
1625 spin_unlock_bh(&ifp->lock);
1626 }
1627 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 } else
1629 ipv6_del_addr(ifp);
1630}
1631
Herbert Xuf2344a12010-05-18 15:55:27 -07001632static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1633{
1634 int err = -ENOENT;
1635
1636 spin_lock(&ifp->state_lock);
1637 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1638 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1639 err = 0;
1640 }
1641 spin_unlock(&ifp->state_lock);
1642
1643 return err;
1644}
1645
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001646void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1647{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001648 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001649
Ursula Braun853dc2e2010-10-24 23:06:43 +00001650 if (addrconf_dad_end(ifp)) {
1651 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001652 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001653 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001654
Joe Perchese87cc472012-05-13 21:56:26 +00001655 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1656 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001657
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001658 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1659 struct in6_addr addr;
1660
1661 addr.s6_addr32[0] = htonl(0xfe800000);
1662 addr.s6_addr32[1] = 0;
1663
1664 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1665 ipv6_addr_equal(&ifp->addr, &addr)) {
1666 /* DAD failed for link-local based on MAC address */
1667 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001668
Joe Perchesf3213832012-05-15 14:11:53 +00001669 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001670 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001671 }
1672 }
1673
Brian Haleycc411d02009-09-09 14:41:32 +00001674 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001675}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677/* Join to solicited addr multicast group. */
1678
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001679void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 struct in6_addr maddr;
1682
1683 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1684 return;
1685
1686 addrconf_addr_solict_mult(addr, &maddr);
1687 ipv6_dev_mc_inc(dev, &maddr);
1688}
1689
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001690void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 struct in6_addr maddr;
1693
1694 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1695 return;
1696
1697 addrconf_addr_solict_mult(addr, &maddr);
1698 __ipv6_dev_mc_dec(idev, &maddr);
1699}
1700
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001701static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 struct in6_addr addr;
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001704 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001705 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1707 if (ipv6_addr_any(&addr))
1708 return;
1709 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1710}
1711
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001712static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 struct in6_addr addr;
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001715 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001716 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1718 if (ipv6_addr_any(&addr))
1719 return;
1720 __ipv6_dev_ac_dec(ifp->idev, &addr);
1721}
1722
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001723static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1724{
1725 if (dev->addr_len != ETH_ALEN)
1726 return -1;
1727 memcpy(eui, dev->dev_addr, 3);
1728 memcpy(eui + 5, dev->dev_addr + 3, 3);
1729
1730 /*
1731 * The zSeries OSA network cards can be shared among various
1732 * OS instances, but the OSA cards have only one MAC address.
1733 * This leads to duplicate address conflicts in conjunction
1734 * with IPv6 if more than one instance uses the same card.
1735 *
1736 * The driver for these cards can deliver a unique 16-bit
1737 * identifier for each instance sharing the same card. It is
1738 * placed instead of 0xFFFE in the interface identifier. The
1739 * "u" bit of the interface identifier is not inverted in this
1740 * case. Hence the resulting interface identifier has local
1741 * scope according to RFC2373.
1742 */
1743 if (dev->dev_id) {
1744 eui[3] = (dev->dev_id >> 8) & 0xFF;
1745 eui[4] = dev->dev_id & 0xFF;
1746 } else {
1747 eui[3] = 0xFF;
1748 eui[4] = 0xFE;
1749 eui[0] ^= 2;
1750 }
1751 return 0;
1752}
1753
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001754static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1755{
1756 if (dev->addr_len != IEEE802154_ADDR_LEN)
1757 return -1;
1758 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001759 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001760 return 0;
1761}
1762
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001763static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1764{
1765 union fwnet_hwaddr *ha;
1766
1767 if (dev->addr_len != FWNET_ALEN)
1768 return -1;
1769
1770 ha = (union fwnet_hwaddr *)dev->dev_addr;
1771
1772 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1773 eui[0] ^= 2;
1774 return 0;
1775}
1776
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001777static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1778{
1779 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1780 if (dev->addr_len != ARCNET_ALEN)
1781 return -1;
1782 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001783 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001784 return 0;
1785}
1786
1787static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1788{
1789 if (dev->addr_len != INFINIBAND_ALEN)
1790 return -1;
1791 memcpy(eui, dev->dev_addr + 12, 8);
1792 eui[0] |= 2;
1793 return 0;
1794}
1795
stephen hemmingerc61393e2010-10-04 20:17:53 +00001796static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001797{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001798 if (addr == 0)
1799 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001800 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1801 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1802 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1803 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1804 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1805 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1806 eui[1] = 0;
1807 eui[2] = 0x5E;
1808 eui[3] = 0xFE;
1809 memcpy(eui + 4, &addr, 4);
1810 return 0;
1811}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001812
1813static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1814{
1815 if (dev->priv_flags & IFF_ISATAP)
1816 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1817 return -1;
1818}
1819
stephen hemmingeraee80b52011-06-08 10:44:30 +00001820static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1821{
1822 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1823}
1824
Nicolas Dichtele8377352013-08-20 12:16:06 +02001825static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1826{
1827 memcpy(eui, dev->perm_addr, 3);
1828 memcpy(eui + 5, dev->perm_addr + 3, 3);
1829 eui[3] = 0xFF;
1830 eui[4] = 0xFE;
1831 eui[0] ^= 2;
1832 return 0;
1833}
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1836{
1837 switch (dev->type) {
1838 case ARPHRD_ETHER:
1839 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001840 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001842 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001844 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001845 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001846 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001847 case ARPHRD_IPGRE:
1848 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb2013-12-11 17:05:36 +02001849 case ARPHRD_6LOWPAN:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001850 case ARPHRD_IEEE802154:
1851 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001852 case ARPHRD_IEEE1394:
1853 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001854 case ARPHRD_TUNNEL6:
1855 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857 return -1;
1858}
1859
1860static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1861{
1862 int err = -1;
1863 struct inet6_ifaddr *ifp;
1864
1865 read_lock_bh(&idev->lock);
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001866 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1867 if (ifp->scope > IFA_LINK)
1868 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1870 memcpy(eui, ifp->addr.s6_addr+8, 8);
1871 err = 0;
1872 break;
1873 }
1874 }
1875 read_unlock_bh(&idev->lock);
1876 return err;
1877}
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001880static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001883 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 /*
1887 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1888 * check if generated address is not inappropriate
1889 *
1890 * - Reserved subnet anycast (RFC 2526)
1891 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001892 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 * 00-00-5E-FE-xx-xx-xx-xx
1894 * - value 0
1895 * - XXX: already assigned to an address on the device
1896 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001897 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1899 (idev->rndid[7]&0x80))
1900 goto regen;
1901 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1902 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1903 goto regen;
1904 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1905 goto regen;
1906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
1909static void ipv6_regen_rndid(unsigned long data)
1910{
1911 struct inet6_dev *idev = (struct inet6_dev *) data;
1912 unsigned long expires;
1913
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001914 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 write_lock_bh(&idev->lock);
1916
1917 if (idev->dead)
1918 goto out;
1919
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001920 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001923 idev->cnf.temp_prefered_lft * HZ -
Jiri Pirko1f9248e52013-12-07 19:26:53 +01001924 idev->cnf.regen_max_retry * idev->cnf.dad_transmits *
1925 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) -
Ben Hutchings784e2712010-06-26 11:42:55 +00001926 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001928 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1929 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 goto out;
1931 }
1932
1933 if (!mod_timer(&idev->regen_timer, expires))
1934 in6_dev_hold(idev);
1935
1936out:
1937 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001938 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 in6_dev_put(idev);
1940}
1941
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001942static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001943{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001945 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948/*
1949 * Add prefix route.
1950 */
1951
1952static void
1953addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001954 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Thomas Graf86872cb2006-08-22 00:01:08 -07001956 struct fib6_config cfg = {
1957 .fc_table = RT6_TABLE_PREFIX,
1958 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1959 .fc_ifindex = dev->ifindex,
1960 .fc_expires = expires,
1961 .fc_dst_len = plen,
1962 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001963 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001964 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001965 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001967 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 /* Prevent useless cloning on PtP SIT.
1970 This thing is done here expecting that the whole
1971 class of non-broadcast devices need not cloning.
1972 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001973#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001974 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1975 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001976#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Thomas Graf86872cb2006-08-22 00:01:08 -07001978 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
1980
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001981
1982static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1983 int plen,
1984 const struct net_device *dev,
1985 u32 flags, u32 noflags)
1986{
1987 struct fib6_node *fn;
1988 struct rt6_info *rt = NULL;
1989 struct fib6_table *table;
1990
1991 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1992 if (table == NULL)
1993 return NULL;
1994
Li RongQing5744dd92012-09-11 21:59:01 +00001995 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001996 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1997 if (!fn)
1998 goto out;
1999 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002000 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002001 continue;
2002 if ((rt->rt6i_flags & flags) != flags)
2003 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01002004 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002005 continue;
2006 dst_hold(&rt->dst);
2007 break;
2008 }
2009out:
Li RongQing5744dd92012-09-11 21:59:01 +00002010 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002011 return rt;
2012}
2013
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015/* Create "default" multicast route to the interface */
2016
2017static void addrconf_add_mroute(struct net_device *dev)
2018{
Thomas Graf86872cb2006-08-22 00:01:08 -07002019 struct fib6_config cfg = {
2020 .fc_table = RT6_TABLE_LOCAL,
2021 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2022 .fc_ifindex = dev->ifindex,
2023 .fc_dst_len = 8,
2024 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002025 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002026 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Thomas Graf86872cb2006-08-22 00:01:08 -07002028 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2029
2030 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031}
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2034{
2035 struct inet6_dev *idev;
2036
2037 ASSERT_RTNL();
2038
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002039 idev = ipv6_find_idev(dev);
2040 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002041 return ERR_PTR(-ENOBUFS);
2042
2043 if (idev->cnf.disable_ipv6)
2044 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002047 if (!(dev->flags & IFF_LOOPBACK))
2048 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return idev;
2051}
2052
Jiri Pirko53bd6742013-12-06 09:45:22 +01002053static void manage_tempaddrs(struct inet6_dev *idev,
2054 struct inet6_ifaddr *ifp,
2055 __u32 valid_lft, __u32 prefered_lft,
2056 bool create, unsigned long now)
2057{
2058 u32 flags;
2059 struct inet6_ifaddr *ift;
2060
2061 read_lock_bh(&idev->lock);
2062 /* update all temporary addresses in the list */
2063 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2064 int age, max_valid, max_prefered;
2065
2066 if (ifp != ift->ifpub)
2067 continue;
2068
2069 /* RFC 4941 section 3.3:
2070 * If a received option will extend the lifetime of a public
2071 * address, the lifetimes of temporary addresses should
2072 * be extended, subject to the overall constraint that no
2073 * temporary addresses should ever remain "valid" or "preferred"
2074 * for a time longer than (TEMP_VALID_LIFETIME) or
2075 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2076 */
2077 age = (now - ift->cstamp) / HZ;
2078 max_valid = idev->cnf.temp_valid_lft - age;
2079 if (max_valid < 0)
2080 max_valid = 0;
2081
2082 max_prefered = idev->cnf.temp_prefered_lft -
2083 idev->cnf.max_desync_factor - age;
2084 if (max_prefered < 0)
2085 max_prefered = 0;
2086
2087 if (valid_lft > max_valid)
2088 valid_lft = max_valid;
2089
2090 if (prefered_lft > max_prefered)
2091 prefered_lft = max_prefered;
2092
2093 spin_lock(&ift->lock);
2094 flags = ift->flags;
2095 ift->valid_lft = valid_lft;
2096 ift->prefered_lft = prefered_lft;
2097 ift->tstamp = now;
2098 if (prefered_lft > 0)
2099 ift->flags &= ~IFA_F_DEPRECATED;
2100
2101 spin_unlock(&ift->lock);
2102 if (!(flags&IFA_F_TENTATIVE))
2103 ipv6_ifa_notify(0, ift);
2104 }
2105
2106 if ((create || list_empty(&idev->tempaddr_list)) &&
2107 idev->cnf.use_tempaddr > 0) {
2108 /* When a new public address is created as described
2109 * in [ADDRCONF], also create a new temporary address.
2110 * Also create a temporary address if it's enabled but
2111 * no temporary address currently exists.
2112 */
2113 read_unlock_bh(&idev->lock);
2114 ipv6_create_tempaddr(ifp, NULL);
2115 } else {
2116 read_unlock_bh(&idev->lock);
2117 }
2118}
2119
Neil Hormane6bff992012-01-04 10:49:15 +00002120void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
2122 struct prefix_info *pinfo;
2123 __u32 valid_lft;
2124 __u32 prefered_lft;
2125 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002127 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002132 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return;
2134 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /*
2137 * Validation checks ([ADDRCONF], page 19)
2138 */
2139
2140 addr_type = ipv6_addr_type(&pinfo->prefix);
2141
2142 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2143 return;
2144
2145 valid_lft = ntohl(pinfo->valid);
2146 prefered_lft = ntohl(pinfo->prefered);
2147
2148 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002149 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return;
2151 }
2152
2153 in6_dev = in6_dev_get(dev);
2154
2155 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002156 net_dbg_ratelimited("addrconf: device %s not configured\n",
2157 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return;
2159 }
2160
2161 /*
2162 * Two things going on here:
2163 * 1) Add routes for on-link prefixes
2164 * 2) Configure prefixes with the auto flag set
2165 */
2166
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002167 if (pinfo->onlink) {
2168 struct rt6_info *rt;
2169 unsigned long rt_expires;
2170
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002171 /* Avoid arithmetic overflow. Really, we could
2172 * save rt_expires in seconds, likely valid_lft,
2173 * but it would require division in fib gc, that it
2174 * not good.
2175 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002176 if (HZ > USER_HZ)
2177 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2178 else
2179 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002180
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002181 if (addrconf_finite_timeout(rt_expires))
2182 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002184 rt = addrconf_get_prefix_route(&pinfo->prefix,
2185 pinfo->prefix_len,
2186 dev,
2187 RTF_ADDRCONF | RTF_PREFIX_RT,
2188 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002190 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002191 /* Autoconf prefix route */
2192 if (valid_lft == 0) {
2193 ip6_del_rt(rt);
2194 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002195 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002196 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002197 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002198 } else {
Gao feng1716a962012-04-06 00:13:10 +00002199 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
2201 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002202 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002203 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2204 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002205 /* not infinity */
2206 flags |= RTF_EXPIRES;
2207 expires = jiffies_to_clock_t(rt_expires);
2208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002210 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002212 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
2214
2215 /* Try to figure out our local address for this prefix */
2216
2217 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002218 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 struct in6_addr addr;
2220 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002221 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 if (pinfo->prefix_len == 64) {
2224 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002225
2226 if (!ipv6_addr_any(&in6_dev->token)) {
2227 read_lock_bh(&in6_dev->lock);
2228 memcpy(addr.s6_addr + 8,
2229 in6_dev->token.s6_addr + 8, 8);
2230 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002231 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002232 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2233 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 in6_dev_put(in6_dev);
2235 return;
2236 }
2237 goto ok;
2238 }
Joe Perchese87cc472012-05-13 21:56:26 +00002239 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2240 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 in6_dev_put(in6_dev);
2242 return;
2243
2244ok:
2245
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002246 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 if (ifp == NULL && valid_lft) {
2249 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002250 u32 addr_flags = 0;
2251
2252#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2253 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002254 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002255 addr_flags = IFA_F_OPTIMISTIC;
2256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 /* Do not allow to create too much of autoconfigured
2259 * addresses; this would be too easy way to crash kernel.
2260 */
2261 if (!max_addresses ||
2262 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002263 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2264 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002265 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002266 addr_flags, valid_lft,
2267 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002269 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 in6_dev_put(in6_dev);
2271 return;
2272 }
2273
Jiri Pirko53bd6742013-12-06 09:45:22 +01002274 ifp->flags |= IFA_F_MANAGETEMPADDR;
Jiri Benc8a226b22013-08-01 10:41:28 +02002275 update_lft = 0;
2276 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002278 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002279 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281
2282 if (ifp) {
Jiri Pirko479840f2013-12-06 09:45:21 +01002283 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 u32 stored_lft;
2286
2287 /* update lifetime (RFC2462 5.5.3 e) */
2288 spin_lock(&ifp->lock);
2289 now = jiffies;
2290 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2291 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2292 else
2293 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002294 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002295 const u32 minimum_lft = min(
2296 stored_lft, (u32)MIN_VALID_LIFETIME);
2297 valid_lft = max(valid_lft, minimum_lft);
2298
2299 /* RFC4862 Section 5.5.3e:
2300 * "Note that the preferred lifetime of the
2301 * corresponding address is always reset to
2302 * the Preferred Lifetime in the received
2303 * Prefix Information option, regardless of
2304 * whether the valid lifetime is also reset or
2305 * ignored."
2306 *
2307 * So we should always update prefered_lft here.
2308 */
2309 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311
2312 if (update_lft) {
2313 ifp->valid_lft = valid_lft;
2314 ifp->prefered_lft = prefered_lft;
2315 ifp->tstamp = now;
2316 flags = ifp->flags;
2317 ifp->flags &= ~IFA_F_DEPRECATED;
2318 spin_unlock(&ifp->lock);
2319
2320 if (!(flags&IFA_F_TENTATIVE))
2321 ipv6_ifa_notify(0, ifp);
2322 } else
2323 spin_unlock(&ifp->lock);
2324
Jiri Pirko53bd6742013-12-06 09:45:22 +01002325 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2326 create, now);
David S. Miller5d9efa72013-10-28 20:07:50 -04002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 in6_ifa_put(ifp);
2329 addrconf_verify(0);
2330 }
2331 }
2332 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2333 in6_dev_put(in6_dev);
2334}
2335
2336/*
2337 * Set destination address.
2338 * Special case for SIT interfaces where we create a new "virtual"
2339 * device.
2340 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002341int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
2343 struct in6_ifreq ireq;
2344 struct net_device *dev;
2345 int err = -EINVAL;
2346
2347 rtnl_lock();
2348
2349 err = -EFAULT;
2350 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2351 goto err_exit;
2352
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002353 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 err = -ENODEV;
2356 if (dev == NULL)
2357 goto err_exit;
2358
Amerigo Wang07a93622012-10-29 16:23:10 +00002359#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002361 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 struct ip_tunnel_parm p;
2364
2365 err = -EADDRNOTAVAIL;
2366 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2367 goto err_exit;
2368
2369 memset(&p, 0, sizeof(p));
2370 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2371 p.iph.saddr = 0;
2372 p.iph.version = 4;
2373 p.iph.ihl = 5;
2374 p.iph.protocol = IPPROTO_IPV6;
2375 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002376 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002378 if (ops->ndo_do_ioctl) {
2379 mm_segment_t oldfs = get_fs();
2380
2381 set_fs(KERNEL_DS);
2382 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2383 set_fs(oldfs);
2384 } else
2385 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 if (err == 0) {
2388 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002389 dev = __dev_get_by_name(net, p.name);
2390 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 goto err_exit;
2392 err = dev_open(dev);
2393 }
2394 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002395#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397err_exit:
2398 rtnl_unlock();
2399 return err;
2400}
2401
2402/*
2403 * Manual configuration of address on an interface
2404 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002405static int inet6_addr_add(struct net *net, int ifindex,
2406 const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002407 const struct in6_addr *peer_pfx,
Jiri Pirko479840f2013-12-06 09:45:21 +01002408 unsigned int plen, __u32 ifa_flags,
2409 __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
2411 struct inet6_ifaddr *ifp;
2412 struct inet6_dev *idev;
2413 struct net_device *dev;
2414 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002415 u32 flags;
2416 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002417 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002420
Thomas Graf24ef0da2008-05-28 16:54:22 +02002421 if (plen > 128)
2422 return -EINVAL;
2423
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002424 /* check the lifetime */
2425 if (!valid_lft || prefered_lft > valid_lft)
2426 return -EINVAL;
2427
Jiri Pirko53bd6742013-12-06 09:45:22 +01002428 if (ifa_flags & IFA_F_MANAGETEMPADDR && plen != 64)
2429 return -EINVAL;
2430
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002431 dev = __dev_get_by_index(net, ifindex);
2432 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002434
Brian Haley64e724f2010-07-20 10:34:30 +00002435 idev = addrconf_add_dev(dev);
2436 if (IS_ERR(idev))
2437 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 scope = ipv6_addr_scope(pfx);
2440
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002441 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2442 if (addrconf_finite_timeout(timeout)) {
2443 expires = jiffies_to_clock_t(timeout * HZ);
2444 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002445 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002446 } else {
2447 expires = 0;
2448 flags = 0;
2449 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002450 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002451
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002452 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2453 if (addrconf_finite_timeout(timeout)) {
2454 if (timeout == 0)
2455 ifa_flags |= IFA_F_DEPRECATED;
2456 prefered_lft = timeout;
2457 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002458
Jiri Benc8a226b22013-08-01 10:41:28 +02002459 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2460 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (!IS_ERR(ifp)) {
Thomas Haller761aac72014-01-15 15:36:58 +01002463 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
2464 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2465 expires, flags);
2466 }
2467
Neil Horman95c385b2007-04-25 17:08:10 -07002468 /*
2469 * Note that section 3.1 of RFC 4429 indicates
2470 * that the Optimistic flag should not be set for
2471 * manually configured addresses
2472 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002473 addrconf_dad_start(ifp);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002474 if (ifa_flags & IFA_F_MANAGETEMPADDR)
2475 manage_tempaddrs(idev, ifp, valid_lft, prefered_lft,
2476 true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002478 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 return 0;
2480 }
2481
2482 return PTR_ERR(ifp);
2483}
2484
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002485static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002486 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
2488 struct inet6_ifaddr *ifp;
2489 struct inet6_dev *idev;
2490 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002491
Thomas Graf24ef0da2008-05-28 16:54:22 +02002492 if (plen > 128)
2493 return -EINVAL;
2494
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002495 dev = __dev_get_by_index(net, ifindex);
2496 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 return -ENODEV;
2498
David S. Miller7eaa48a2013-08-20 23:44:39 -07002499 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return -ENXIO;
2501
2502 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002503 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 if (ifp->prefix_len == plen &&
2505 ipv6_addr_equal(pfx, &ifp->addr)) {
2506 in6_ifa_hold(ifp);
2507 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 return 0;
2511 }
2512 }
2513 read_unlock_bh(&idev->lock);
2514 return -EADDRNOTAVAIL;
2515}
2516
2517
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002518int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
2520 struct in6_ifreq ireq;
2521 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002522
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002523 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2527 return -EFAULT;
2528
2529 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002530 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002531 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2532 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 rtnl_unlock();
2534 return err;
2535}
2536
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002537int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
2539 struct in6_ifreq ireq;
2540 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002541
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002542 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 return -EPERM;
2544
2545 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2546 return -EFAULT;
2547
2548 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002549 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2550 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 rtnl_unlock();
2552 return err;
2553}
2554
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002555static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2556 int plen, int scope)
2557{
2558 struct inet6_ifaddr *ifp;
2559
Jiri Benc8a226b22013-08-01 10:41:28 +02002560 ifp = ipv6_add_addr(idev, addr, NULL, plen,
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002561 scope, IFA_F_PERMANENT,
2562 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002563 if (!IS_ERR(ifp)) {
2564 spin_lock_bh(&ifp->lock);
2565 ifp->flags &= ~IFA_F_TENTATIVE;
2566 spin_unlock_bh(&ifp->lock);
2567 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2568 in6_ifa_put(ifp);
2569 }
2570}
2571
Amerigo Wang07a93622012-10-29 16:23:10 +00002572#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573static void sit_add_v4_addrs(struct inet6_dev *idev)
2574{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 struct in6_addr addr;
2576 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002577 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002578 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002579 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 ASSERT_RTNL();
2582
2583 memset(&addr, 0, sizeof(struct in6_addr));
2584 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2585
2586 if (idev->dev->flags&IFF_POINTOPOINT) {
2587 addr.s6_addr32[0] = htonl(0xfe800000);
2588 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002589 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 } else {
2591 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002592 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002593 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 }
2595
2596 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002597 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002598 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return;
2600 }
2601
Benjamin Thery6fda7352008-03-05 10:47:47 -08002602 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002603 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002605 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 int flag = scope;
2608
2609 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611 addr.s6_addr32[3] = ifa->ifa_local;
2612
2613 if (ifa->ifa_scope == RT_SCOPE_LINK)
2614 continue;
2615 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2616 if (idev->dev->flags&IFF_POINTOPOINT)
2617 continue;
2618 flag |= IFA_HOST;
2619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002621 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002622 addrconf_prefix_route(&addr, plen, idev->dev, 0,
2623 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
2625 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002628#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630static void init_loopback(struct net_device *dev)
2631{
2632 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302633 struct net_device *sp_dev;
2634 struct inet6_ifaddr *sp_ifa;
2635 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 /* ::1 */
2638
2639 ASSERT_RTNL();
2640
David S. Miller7eaa48a2013-08-20 23:44:39 -07002641 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002642 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 return;
2644 }
2645
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002646 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302647
2648 /* Add routes to other interface's IPv6 addresses */
2649 for_each_netdev(dev_net(dev), sp_dev) {
2650 if (!strcmp(sp_dev->name, dev->name))
2651 continue;
2652
2653 idev = __in6_dev_get(sp_dev);
2654 if (!idev)
2655 continue;
2656
2657 read_lock_bh(&idev->lock);
2658 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2659
2660 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2661 continue;
2662
Gao feng33d99112014-01-24 16:29:11 +08002663 if (sp_ifa->rt) {
2664 /* This dst has been added to garbage list when
2665 * lo device down, release this obsolete dst and
2666 * reallocate a new router for ifa.
2667 */
2668 if (sp_ifa->rt->dst.obsolete > 0) {
2669 ip6_rt_put(sp_ifa->rt);
2670 sp_ifa->rt = NULL;
2671 } else {
2672 continue;
2673 }
2674 }
Gao fenga881ae12013-06-16 11:14:30 +08002675
François-Xavier Le Bail57ec0af2013-12-02 11:28:49 +01002676 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302677
2678 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002679 if (!IS_ERR(sp_rt)) {
2680 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302681 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002682 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302683 }
2684 read_unlock_bh(&idev->lock);
2685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686}
2687
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002688static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002690 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002691 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Neil Horman95c385b2007-04-25 17:08:10 -07002693#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2694 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002695 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002696 addr_flags |= IFA_F_OPTIMISTIC;
2697#endif
2698
2699
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002700 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags,
2701 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002703 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002704 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 in6_ifa_put(ifp);
2706 }
2707}
2708
2709static void addrconf_dev_config(struct net_device *dev)
2710{
2711 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002712 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
2714 ASSERT_RTNL();
2715
Herbert Xu74235a22007-06-14 13:02:55 -07002716 if ((dev->type != ARPHRD_ETHER) &&
2717 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002718 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002719 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002720 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002721 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb2013-12-11 17:05:36 +02002722 (dev->type != ARPHRD_TUNNEL6) &&
2723 (dev->type != ARPHRD_6LOWPAN)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002724 /* Alas, we support only Ethernet autoconfiguration. */
2725 return;
2726 }
2727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002729 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 return;
2731
2732 memset(&addr, 0, sizeof(struct in6_addr));
2733 addr.s6_addr32[0] = htonl(0xFE800000);
2734
2735 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2736 addrconf_add_linklocal(idev, &addr);
2737}
2738
Amerigo Wang07a93622012-10-29 16:23:10 +00002739#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740static void addrconf_sit_config(struct net_device *dev)
2741{
2742 struct inet6_dev *idev;
2743
2744 ASSERT_RTNL();
2745
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002746 /*
2747 * Configure the tunnel with one of our IPv4
2748 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 * our v4 addrs in the tunnel
2750 */
2751
David S. Miller7eaa48a2013-08-20 23:44:39 -07002752 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002753 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return;
2755 }
2756
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002757 if (dev->priv_flags & IFF_ISATAP) {
2758 struct in6_addr addr;
2759
2760 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002761 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2762 addrconf_add_linklocal(idev, &addr);
2763 return;
2764 }
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 sit_add_v4_addrs(idev);
2767
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002768 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002771#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Amerigo Wang07a93622012-10-29 16:23:10 +00002773#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002774static void addrconf_gre_config(struct net_device *dev)
2775{
2776 struct inet6_dev *idev;
2777 struct in6_addr addr;
2778
stephen hemmingeraee80b52011-06-08 10:44:30 +00002779 ASSERT_RTNL();
2780
David S. Miller7eaa48a2013-08-20 23:44:39 -07002781 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002782 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002783 return;
2784 }
2785
2786 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002787 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2788 addrconf_add_linklocal(idev, &addr);
Nicolas Dichtel08b44652014-02-17 14:22:21 +01002789 else
2790 addrconf_prefix_route(&addr, 64, dev, 0, 0);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002791}
2792#endif
2793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794static inline int
2795ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2796{
2797 struct in6_addr lladdr;
2798
Neil Horman95c385b2007-04-25 17:08:10 -07002799 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 addrconf_add_linklocal(idev, &lladdr);
2801 return 0;
2802 }
2803 return -1;
2804}
2805
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002806static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002807 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808{
Jiri Pirko351638e2013-05-28 01:30:21 +00002809 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002810 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002811 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002812 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002814 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002815 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002816 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002817 idev = ipv6_add_dev(dev);
2818 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002819 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002820 }
2821 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002824 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002825 if (dev->flags & IFF_SLAVE)
2826 break;
2827
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002828 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002829 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002830 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002831 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002832 dev->name);
2833 break;
2834 }
Kristian Slavov99081042006-02-08 16:10:53 -08002835
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002836 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2837 idev = ipv6_add_dev(dev);
2838
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002839 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002840 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002841 run_pending = 1;
2842 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002843 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002844 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002845 /* device is still not ready. */
2846 break;
2847 }
2848
2849 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002850 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002851 /* device is already configured. */
2852 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002853 idev->if_flags |= IF_READY;
2854 }
2855
Joe Perchesf3213832012-05-15 14:11:53 +00002856 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2857 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002858
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002859 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002860 }
2861
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002862 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002863#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 case ARPHRD_SIT:
2865 addrconf_sit_config(dev);
2866 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002867#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002868#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002869 case ARPHRD_IPGRE:
2870 addrconf_gre_config(dev);
2871 break;
2872#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 case ARPHRD_LOOPBACK:
2874 init_loopback(dev);
2875 break;
2876
2877 default:
2878 addrconf_dev_config(dev);
2879 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002880 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002883 if (run_pending)
2884 addrconf_dad_run(idev);
2885
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002886 /*
2887 * If the MTU changed during the interface down,
2888 * when the interface up, the changed MTU must be
2889 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002891 if (idev->cnf.mtu6 != dev->mtu &&
2892 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 rt6_mtu_change(dev, dev->mtu);
2894 idev->cnf.mtu6 = dev->mtu;
2895 }
2896 idev->tstamp = jiffies;
2897 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002898
2899 /*
2900 * If the changed mtu during down is lower than
2901 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 */
2903 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002904 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
2906 break;
2907
2908 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002909 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 rt6_mtu_change(dev, dev->mtu);
2911 idev->cnf.mtu6 = dev->mtu;
2912 break;
2913 }
2914
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002915 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2916 idev = ipv6_add_dev(dev);
2917 if (idev)
2918 break;
2919 }
2920
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002921 /*
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08002922 * if MTU under IPV6_MIN_MTU.
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002923 * Stop IPv6 on this interface.
2924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926 case NETDEV_DOWN:
2927 case NETDEV_UNREGISTER:
2928 /*
2929 * Remove all addresses from this interface.
2930 */
2931 addrconf_ifdown(dev, event != NETDEV_DOWN);
2932 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002936 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002937 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002938 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002939 err = snmp6_register_dev(idev);
2940 if (err)
2941 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002944
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002945 case NETDEV_PRE_TYPE_CHANGE:
2946 case NETDEV_POST_TYPE_CHANGE:
2947 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002948 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
2951 return NOTIFY_OK;
2952}
2953
2954/*
2955 * addrconf module should be notified of a device going up
2956 */
2957static struct notifier_block ipv6_dev_notf = {
2958 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959};
2960
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002961static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002962{
2963 struct inet6_dev *idev;
2964 ASSERT_RTNL();
2965
2966 idev = __in6_dev_get(dev);
2967
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002968 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002969 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002970 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002971 ipv6_mc_unmap(idev);
2972}
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974static int addrconf_ifdown(struct net_device *dev, int how)
2975{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002976 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002977 struct inet6_dev *idev;
2978 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002979 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 ASSERT_RTNL();
2982
David S. Miller73a8bd72011-01-23 23:27:15 -08002983 rt6_ifdown(net, dev);
2984 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
2986 idev = __in6_dev_get(dev);
2987 if (idev == NULL)
2988 return -ENODEV;
2989
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002990 /*
2991 * Step 1: remove reference to ipv6 device from parent device.
2992 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002994 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002996
2997 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002998 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000 /* Step 1.5: remove snmp6 entry */
3001 snmp6_unregister_dev(idev);
3002
3003 }
3004
David S. Miller73a8bd72011-01-23 23:27:15 -08003005 /* Step 2: clear hash table */
3006 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3007 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003008
3009 spin_lock_bh(&addrconf_hash_lock);
3010 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003011 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003012 if (ifa->idev == idev) {
3013 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003014 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003015 goto restart;
3016 }
3017 }
3018 spin_unlock_bh(&addrconf_hash_lock);
3019 }
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 write_lock_bh(&idev->lock);
3022
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003023 addrconf_del_rs_timer(idev);
3024
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003025 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003026 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003027 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Denis V. Lunev439e2382008-04-03 13:30:17 -07003029 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 in6_dev_put(idev);
3031
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003032 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003033 while (!list_empty(&idev->tempaddr_list)) {
3034 ifa = list_first_entry(&idev->tempaddr_list,
3035 struct inet6_ifaddr, tmp_list);
3036 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 write_unlock_bh(&idev->lock);
3038 spin_lock_bh(&ifa->lock);
3039
3040 if (ifa->ifpub) {
3041 in6_ifa_put(ifa->ifpub);
3042 ifa->ifpub = NULL;
3043 }
3044 spin_unlock_bh(&ifa->lock);
3045 in6_ifa_put(ifa);
3046 write_lock_bh(&idev->lock);
3047 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003048
stephen hemminger502a2ff2010-03-17 20:31:13 +00003049 while (!list_empty(&idev->addr_list)) {
3050 ifa = list_first_entry(&idev->addr_list,
3051 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003052 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003053
David S. Miller73a8bd72011-01-23 23:27:15 -08003054 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
David S. Miller73a8bd72011-01-23 23:27:15 -08003056 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003057
David S. Miller73a8bd72011-01-23 23:27:15 -08003058 spin_lock_bh(&ifa->state_lock);
3059 state = ifa->state;
3060 ifa->state = INET6_IFADDR_STATE_DEAD;
3061 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003062
David S. Miller73a8bd72011-01-23 23:27:15 -08003063 if (state != INET6_IFADDR_STATE_DEAD) {
3064 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003065 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003066 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003067 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003068
David S. Miller73a8bd72011-01-23 23:27:15 -08003069 write_lock_bh(&idev->lock);
3070 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 write_unlock_bh(&idev->lock);
3073
3074 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003075 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 ipv6_mc_destroy_dev(idev);
3077 else
3078 ipv6_mc_down(idev);
3079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003081
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003082 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003083 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003084 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 neigh_parms_release(&nd_tbl, idev->nd_parms);
3086 neigh_ifdown(&nd_tbl, dev);
3087 in6_dev_put(idev);
3088 }
3089 return 0;
3090}
3091
3092static void addrconf_rs_timer(unsigned long data)
3093{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003094 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003095 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003096 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003098 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003099 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 goto out;
3101
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003102 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003104
3105 /* Announcement received after solicitation was sent */
3106 if (idev->if_flags & IF_RA_RCVD)
3107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003109 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003110 write_unlock(&idev->lock);
3111 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3112 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003113 &in6addr_linklocal_allrouters);
3114 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003115 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Cong Wangcaf92bc2013-08-31 13:44:32 +08003117 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003118 /* The wait after the last probe can be shorter */
3119 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3120 idev->cnf.rtr_solicits) ?
3121 idev->cnf.rtr_solicit_delay :
3122 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 /*
3125 * Note: we do not support deprecated "all on-link"
3126 * assumption any longer.
3127 */
Joe Perches91df42b2012-05-15 14:11:54 +00003128 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
3130
3131out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003132 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003133put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003134 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135}
3136
3137/*
3138 * Duplicate Address Detection
3139 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003140static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3141{
3142 unsigned long rand_num;
3143 struct inet6_dev *idev = ifp->idev;
3144
Neil Horman95c385b2007-04-25 17:08:10 -07003145 if (ifp->flags & IFA_F_OPTIMISTIC)
3146 rand_num = 0;
3147 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003148 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003149
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003150 ifp->dad_probes = idev->cnf.dad_transmits;
3151 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003152}
3153
David S. Millercf22f9a2012-04-14 21:37:40 -04003154static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155{
3156 struct inet6_dev *idev = ifp->idev;
3157 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
3159 addrconf_join_solict(dev, &ifp->addr);
3160
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003161 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
3163 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003164 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003165 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
3168 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003169 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003170 !(ifp->flags&IFA_F_TENTATIVE) ||
3171 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003172 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003173 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 read_unlock_bh(&idev->lock);
3175
3176 addrconf_dad_completed(ifp);
3177 return;
3178 }
3179
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003180 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003181 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003182 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003183 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003184 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003185 * - keep it tentative if it is a permanent address.
3186 * - otherwise, kill it.
3187 */
3188 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003189 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003190 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003191 }
Neil Horman95c385b2007-04-25 17:08:10 -07003192
3193 /*
3194 * Optimistic nodes can start receiving
3195 * Frames right away
3196 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003197 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003198 ip6_ins_rt(ifp->rt);
3199
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003200 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003202 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 read_unlock_bh(&idev->lock);
3204}
3205
3206static void addrconf_dad_timer(unsigned long data)
3207{
3208 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3209 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 struct in6_addr mcaddr;
3211
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003212 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003213 goto out;
3214
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003215 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003216 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003217 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 goto out;
3219 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003220
3221 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003222 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3223 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003224 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003225 goto out;
3226 }
3227
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003228 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 /*
3230 * DAD was successful
3231 */
3232
Brian Haleycc411d02009-09-09 14:41:32 +00003233 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003234 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003235 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 addrconf_dad_completed(ifp);
3238
3239 goto out;
3240 }
3241
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003242 ifp->dad_probes--;
Jiri Pirko1f9248e52013-12-07 19:26:53 +01003243 addrconf_mod_dad_timer(ifp,
3244 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00003245 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003246 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
3248 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003250 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251out:
3252 in6_ifa_put(ifp);
3253}
3254
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003255/* ifp->idev must be at least read locked */
3256static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
3257{
3258 struct inet6_ifaddr *ifpiter;
3259 struct inet6_dev *idev = ifp->idev;
3260
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01003261 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
3262 if (ifpiter->scope > IFA_LINK)
3263 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003264 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
3265 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
3266 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
3267 IFA_F_PERMANENT)
3268 return false;
3269 }
3270 return true;
3271}
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3274{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003275 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003276 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003277 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003278
3279 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 /*
3282 * Configure the address for reception. Now it is valid.
3283 */
3284
3285 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3286
Tore Anderson026359b2011-08-28 23:47:33 +00003287 /* If added prefix is link local and we are prepared to process
3288 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 */
3290
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003291 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003292 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003293 send_rs = send_mld &&
3294 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003295 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003296 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003297 read_unlock_bh(&ifp->idev->lock);
3298
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003299 /* While dad is in progress mld report's source address is in6_addrany.
3300 * Resend with proper ll now.
3301 */
3302 if (send_mld)
3303 ipv6_mc_dad_complete(ifp->idev);
3304
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003305 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 /*
3307 * If a host as already performed a random delay
3308 * [...] as part of DAD [...] there is no need
3309 * to delay again before sending the first RS
3310 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003311 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003312 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003313 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003315 write_lock_bh(&ifp->idev->lock);
3316 spin_lock(&ifp->lock);
3317 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003319 addrconf_mod_rs_timer(ifp->idev,
3320 ifp->idev->cnf.rtr_solicit_interval);
3321 spin_unlock(&ifp->lock);
3322 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 }
3324}
3325
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003326static void addrconf_dad_run(struct inet6_dev *idev)
3327{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003328 struct inet6_ifaddr *ifp;
3329
3330 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003331 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003332 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003333 if (ifp->flags & IFA_F_TENTATIVE &&
3334 ifp->state == INET6_IFADDR_STATE_DAD)
3335 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003336 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003337 }
3338 read_unlock_bh(&idev->lock);
3339}
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341#ifdef CONFIG_PROC_FS
3342struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003343 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003345 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346};
3347
Mihai Maruseac1d578302012-01-03 23:31:35 +00003348static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349{
3350 struct inet6_ifaddr *ifa = NULL;
3351 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003352 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003353 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Mihai Maruseac1d578302012-01-03 23:31:35 +00003355 /* initial bucket if pos is 0 */
3356 if (pos == 0) {
3357 state->bucket = 0;
3358 state->offset = 0;
3359 }
3360
3361 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003362 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003363 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003364 if (!net_eq(dev_net(ifa->idev->dev), net))
3365 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003366 /* sync with offset */
3367 if (p < state->offset) {
3368 p++;
3369 continue;
3370 }
3371 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003372 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003373 }
3374
3375 /* prepare for next bucket */
3376 state->offset = 0;
3377 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003379 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381
stephen hemmingerc2e21292010-03-17 20:31:10 +00003382static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3383 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384{
3385 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003386 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
Sasha Levinb67bfe02013-02-27 17:06:00 -08003388 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003389 if (!net_eq(dev_net(ifa->idev->dev), net))
3390 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003391 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003392 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003393 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003394
3395 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003396 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003397 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003398 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003399 if (!net_eq(dev_net(ifa->idev->dev), net))
3400 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003401 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003402 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003403 }
3404 }
3405
stephen hemmingerc2e21292010-03-17 20:31:10 +00003406 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407}
3408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003410 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003412 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003413 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414}
3415
3416static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3417{
3418 struct inet6_ifaddr *ifa;
3419
3420 ifa = if6_get_next(seq, v);
3421 ++*pos;
3422 return ifa;
3423}
3424
3425static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003426 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003428 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429}
3430
3431static int if6_seq_show(struct seq_file *seq, void *v)
3432{
3433 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01003434 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003435 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 ifp->idev->dev->ifindex,
3437 ifp->prefix_len,
3438 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01003439 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 ifp->idev->dev->name);
3441 return 0;
3442}
3443
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003444static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 .start = if6_seq_start,
3446 .next = if6_seq_next,
3447 .show = if6_seq_show,
3448 .stop = if6_seq_stop,
3449};
3450
3451static int if6_seq_open(struct inode *inode, struct file *file)
3452{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003453 return seq_open_net(inode, file, &if6_seq_ops,
3454 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}
3456
Arjan van de Ven9a321442007-02-12 00:55:35 -08003457static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 .owner = THIS_MODULE,
3459 .open = if6_seq_open,
3460 .read = seq_read,
3461 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003462 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463};
3464
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003465static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466{
Gao fengd4beaa62013-02-18 01:34:54 +00003467 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 return -ENOMEM;
3469 return 0;
3470}
3471
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003472static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003473{
Gao fengece31ff2013-02-18 01:34:56 +00003474 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003475}
3476
3477static struct pernet_operations if6_proc_net_ops = {
3478 .init = if6_proc_net_init,
3479 .exit = if6_proc_net_exit,
3480};
3481
3482int __init if6_proc_init(void)
3483{
3484 return register_pernet_subsys(&if6_proc_net_ops);
3485}
3486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487void if6_proc_exit(void)
3488{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003489 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491#endif /* CONFIG_PROC_FS */
3492
Amerigo Wang07a93622012-10-29 16:23:10 +00003493#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003494/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003495int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003496{
3497 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003498 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003499 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003500
stephen hemminger5c578ae2010-03-17 20:31:11 +00003501 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003502 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003503 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003504 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003505 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003506 (ifp->flags & IFA_F_HOMEADDRESS)) {
3507 ret = 1;
3508 break;
3509 }
3510 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003511 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003512 return ret;
3513}
3514#endif
3515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516/*
3517 * Periodic address status verification
3518 */
3519
3520static void addrconf_verify(unsigned long foo)
3521{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003522 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 int i;
3525
stephen hemminger5c578ae2010-03-17 20:31:11 +00003526 rcu_read_lock_bh();
3527 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003529 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
3531 del_timer(&addr_chk_timer);
3532
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003533 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003535 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003536 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538
Yasushi Asanofad8da32013-12-31 12:04:19 +09003539 /* When setting preferred_lft to a value not zero or
3540 * infinity, while valid_lft is infinity
3541 * IFA_F_PERMANENT has a non-infinity life time.
3542 */
3543 if ((ifp->flags & IFA_F_PERMANENT) &&
3544 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 continue;
3546
3547 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003548 /* We try to batch several events at once. */
3549 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003551 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3552 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 spin_unlock(&ifp->lock);
3554 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 ipv6_del_addr(ifp);
3556 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003557 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3558 spin_unlock(&ifp->lock);
3559 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003561 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 int deprecate = 0;
3563
3564 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3565 deprecate = 1;
3566 ifp->flags |= IFA_F_DEPRECATED;
3567 }
3568
Yasushi Asanofad8da32013-12-31 12:04:19 +09003569 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
3570 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 next = ifp->tstamp + ifp->valid_lft * HZ;
3572
3573 spin_unlock(&ifp->lock);
3574
3575 if (deprecate) {
3576 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
3578 ipv6_ifa_notify(0, ifp);
3579 in6_ifa_put(ifp);
3580 goto restart;
3581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3583 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003584 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3585 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e52013-12-07 19:26:53 +01003586 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00003587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 if (age >= ifp->prefered_lft - regen_advance) {
3589 struct inet6_ifaddr *ifpub = ifp->ifpub;
3590 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3591 next = ifp->tstamp + ifp->prefered_lft * HZ;
3592 if (!ifp->regen_count && ifpub) {
3593 ifp->regen_count++;
3594 in6_ifa_hold(ifp);
3595 in6_ifa_hold(ifpub);
3596 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003597
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003598 spin_lock(&ifpub->lock);
3599 ifpub->regen_count = 0;
3600 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 ipv6_create_tempaddr(ifpub, ifp);
3602 in6_ifa_put(ifpub);
3603 in6_ifa_put(ifp);
3604 goto restart;
3605 }
3606 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3607 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3608 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 } else {
3610 /* ifp->prefered_lft <= ifp->valid_lft */
3611 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3612 next = ifp->tstamp + ifp->prefered_lft * HZ;
3613 spin_unlock(&ifp->lock);
3614 }
3615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 }
3617
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003618 next_sec = round_jiffies_up(next);
3619 next_sched = next;
3620
3621 /* If rounded timeout is accurate enough, accept it. */
3622 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3623 next_sched = next_sec;
3624
3625 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3626 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3627 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3628
dingtianhongba3542e2013-08-17 10:27:04 +08003629 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3630 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003631
3632 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003634 spin_unlock(&addrconf_verify_lock);
3635 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636}
3637
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003638static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3639 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003640{
3641 struct in6_addr *pfx = NULL;
3642
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003643 *peer_pfx = NULL;
3644
Thomas Graf461d8832006-09-18 00:09:49 -07003645 if (addr)
3646 pfx = nla_data(addr);
3647
3648 if (local) {
3649 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003650 *peer_pfx = pfx;
3651 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003652 }
3653
3654 return pfx;
3655}
3656
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003657static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003658 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3659 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3660 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01003661 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07003662};
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664static int
Thomas Graf661d2962013-03-21 07:45:29 +00003665inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003667 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003668 struct ifaddrmsg *ifm;
3669 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003670 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003671 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
Thomas Grafb933f712006-09-18 00:10:19 -07003673 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3674 if (err < 0)
3675 return err;
3676
3677 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003678 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 if (pfx == NULL)
3680 return -EINVAL;
3681
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003682 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683}
3684
Jiri Pirko479840f2013-12-06 09:45:21 +01003685static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003686 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003687{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003688 u32 flags;
3689 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003690 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01003691 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003692 bool had_prefixroute;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003693
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003694 if (!valid_lft || (prefered_lft > valid_lft))
3695 return -EINVAL;
3696
Jiri Pirko53bd6742013-12-06 09:45:22 +01003697 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
3698 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
3699 return -EINVAL;
3700
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003701 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3702 if (addrconf_finite_timeout(timeout)) {
3703 expires = jiffies_to_clock_t(timeout * HZ);
3704 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003705 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003706 } else {
3707 expires = 0;
3708 flags = 0;
3709 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003710 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003711
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003712 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3713 if (addrconf_finite_timeout(timeout)) {
3714 if (timeout == 0)
3715 ifa_flags |= IFA_F_DEPRECATED;
3716 prefered_lft = timeout;
3717 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003718
3719 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003720 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003721 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
3722 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003723 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01003724 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3725 IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003726 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003727 ifp->tstamp = jiffies;
3728 ifp->valid_lft = valid_lft;
3729 ifp->prefered_lft = prefered_lft;
3730
3731 spin_unlock_bh(&ifp->lock);
3732 if (!(ifp->flags&IFA_F_TENTATIVE))
3733 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003734
Thomas Haller761aac72014-01-15 15:36:58 +01003735 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
3736 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3737 expires, flags);
Thomas Haller5b84efe2014-01-15 15:36:59 +01003738 } else if (had_prefixroute) {
3739 enum cleanup_prefix_rt_t action;
3740 unsigned long rt_expires;
3741
3742 write_lock_bh(&ifp->idev->lock);
3743 action = check_cleanup_prefix_route(ifp, &rt_expires);
3744 write_unlock_bh(&ifp->idev->lock);
3745
3746 if (action != CLEANUP_PREFIX_RT_NOP) {
3747 cleanup_prefix_route(ifp, rt_expires,
3748 action == CLEANUP_PREFIX_RT_DEL);
3749 }
Thomas Haller761aac72014-01-15 15:36:58 +01003750 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01003751
3752 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
3753 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
3754 valid_lft = prefered_lft = 0;
3755 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
3756 !was_managetempaddr, jiffies);
3757 }
3758
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003759 addrconf_verify(0);
3760
3761 return 0;
3762}
3763
3764static int
Thomas Graf661d2962013-03-21 07:45:29 +00003765inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003767 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003768 struct ifaddrmsg *ifm;
3769 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003770 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003771 struct inet6_ifaddr *ifa;
3772 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003773 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01003774 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003775 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Thomas Graf461d8832006-09-18 00:09:49 -07003777 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3778 if (err < 0)
3779 return err;
3780
3781 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003782 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 if (pfx == NULL)
3784 return -EINVAL;
3785
Thomas Graf461d8832006-09-18 00:09:49 -07003786 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003787 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003788
3789 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003790 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003791 preferred_lft = ci->ifa_prefered;
3792 } else {
3793 preferred_lft = INFINITY_LIFE_TIME;
3794 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003795 }
3796
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003797 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003798 if (dev == NULL)
3799 return -ENODEV;
3800
Jiri Pirko479840f2013-12-06 09:45:21 +01003801 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3802
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003803 /* We ignore other flags so far. */
Thomas Haller761aac72014-01-15 15:36:58 +01003804 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3805 IFA_F_NOPREFIXROUTE;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003806
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003807 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003808 if (ifa == NULL) {
3809 /*
3810 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08003811 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07003812 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003813 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003814 ifm->ifa_prefixlen, ifa_flags,
3815 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003816 }
3817
Thomas Graf7198f8c2006-09-18 00:13:46 -07003818 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3819 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3820 err = -EEXIST;
3821 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003822 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003823
3824 in6_ifa_put(ifa);
3825
3826 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827}
3828
Jiri Pirko479840f2013-12-06 09:45:21 +01003829static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07003830 u8 scope, int ifindex)
3831{
3832 struct ifaddrmsg *ifm;
3833
3834 ifm = nlmsg_data(nlh);
3835 ifm->ifa_family = AF_INET6;
3836 ifm->ifa_prefixlen = prefixlen;
3837 ifm->ifa_flags = flags;
3838 ifm->ifa_scope = scope;
3839 ifm->ifa_index = ifindex;
3840}
3841
Thomas Graf85486af2006-09-18 00:11:24 -07003842static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3843 unsigned long tstamp, u32 preferred, u32 valid)
3844{
3845 struct ifa_cacheinfo ci;
3846
Thomas Graf18a31e12010-11-17 04:12:02 +00003847 ci.cstamp = cstamp_delta(cstamp);
3848 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003849 ci.ifa_prefered = preferred;
3850 ci.ifa_valid = valid;
3851
3852 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3853}
3854
Thomas Graf101bb222006-09-18 00:11:52 -07003855static inline int rt_scope(int ifa_scope)
3856{
3857 if (ifa_scope & IFA_HOST)
3858 return RT_SCOPE_HOST;
3859 else if (ifa_scope & IFA_LINK)
3860 return RT_SCOPE_LINK;
3861 else if (ifa_scope & IFA_SITE)
3862 return RT_SCOPE_SITE;
3863 else
3864 return RT_SCOPE_UNIVERSE;
3865}
3866
Thomas Graf0ab68032006-09-18 00:12:35 -07003867static inline int inet6_ifaddr_msgsize(void)
3868{
Thomas Graf339bf982006-11-10 14:10:15 -08003869 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003870 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003871 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01003872 + nla_total_size(sizeof(struct ifa_cacheinfo))
3873 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07003874}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003875
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003877 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003880 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Eric W. Biederman15e47302012-09-07 20:12:54 +00003882 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003883 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003884 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003885
Thomas Graf101bb222006-09-18 00:11:52 -07003886 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3887 ifa->idev->dev->ifindex);
3888
Yasushi Asanofad8da32013-12-31 12:04:19 +09003889 if (!((ifa->flags&IFA_F_PERMANENT) &&
3890 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07003891 preferred = ifa->prefered_lft;
3892 valid = ifa->valid_lft;
3893 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003895 if (preferred > tval)
3896 preferred -= tval;
3897 else
3898 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003899 if (valid != INFINITY_LIFE_TIME) {
3900 if (valid > tval)
3901 valid -= tval;
3902 else
3903 valid = 0;
3904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 }
3906 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003907 preferred = INFINITY_LIFE_TIME;
3908 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 }
Thomas Graf85486af2006-09-18 00:11:24 -07003910
Cong Wang7996c792013-05-22 05:41:06 +00003911 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003912 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3913 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3914 goto error;
3915 } else
3916 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3917 goto error;
3918
3919 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3920 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003921
Jiri Pirko479840f2013-12-06 09:45:21 +01003922 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
3923 goto error;
3924
Thomas Graf0ab68032006-09-18 00:12:35 -07003925 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003926
3927error:
3928 nlmsg_cancel(skb, nlh);
3929 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930}
3931
3932static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003933 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003936 u8 scope = RT_SCOPE_UNIVERSE;
3937 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Thomas Graf101bb222006-09-18 00:11:52 -07003939 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3940 scope = RT_SCOPE_SITE;
3941
Eric W. Biederman15e47302012-09-07 20:12:54 +00003942 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003943 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003944 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003945
Thomas Graf101bb222006-09-18 00:11:52 -07003946 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003947 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3948 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003949 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3950 nlmsg_cancel(skb, nlh);
3951 return -EMSGSIZE;
3952 }
Thomas Graf85486af2006-09-18 00:11:24 -07003953
Thomas Graf0ab68032006-09-18 00:12:35 -07003954 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955}
3956
3957static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003958 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003961 u8 scope = RT_SCOPE_UNIVERSE;
3962 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Thomas Graf101bb222006-09-18 00:11:52 -07003964 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3965 scope = RT_SCOPE_SITE;
3966
Eric W. Biederman15e47302012-09-07 20:12:54 +00003967 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003968 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003969 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003970
Thomas Graf101bb222006-09-18 00:11:52 -07003971 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003972 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3973 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003974 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3975 nlmsg_cancel(skb, nlh);
3976 return -EMSGSIZE;
3977 }
Thomas Graf85486af2006-09-18 00:11:24 -07003978
Thomas Graf0ab68032006-09-18 00:12:35 -07003979 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980}
3981
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003982enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 UNICAST_ADDR,
3984 MULTICAST_ADDR,
3985 ANYCAST_ADDR,
3986};
3987
Eric Dumazet234b27c2009-11-12 04:11:50 +00003988/* called with rcu_read_lock() */
3989static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3990 struct netlink_callback *cb, enum addr_type_t type,
3991 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 struct ifmcaddr6 *ifmca;
3994 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003995 int err = 1;
3996 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Eric Dumazet234b27c2009-11-12 04:11:50 +00003998 read_lock_bh(&idev->lock);
3999 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00004000 case UNICAST_ADDR: {
4001 struct inet6_ifaddr *ifa;
4002
Eric Dumazet234b27c2009-11-12 04:11:50 +00004003 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00004004 list_for_each_entry(ifa, &idev->addr_list, if_list) {
4005 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004006 continue;
4007 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004008 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004009 cb->nlh->nlmsg_seq,
4010 RTM_NEWADDR,
4011 NLM_F_MULTI);
4012 if (err <= 0)
4013 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004014 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004016 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00004017 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004018 case MULTICAST_ADDR:
4019 /* multicast address */
4020 for (ifmca = idev->mc_list; ifmca;
4021 ifmca = ifmca->next, ip_idx++) {
4022 if (ip_idx < s_ip_idx)
4023 continue;
4024 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004025 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004026 cb->nlh->nlmsg_seq,
4027 RTM_GETMULTICAST,
4028 NLM_F_MULTI);
4029 if (err <= 0)
4030 break;
4031 }
4032 break;
4033 case ANYCAST_ADDR:
4034 /* anycast address */
4035 for (ifaca = idev->ac_list; ifaca;
4036 ifaca = ifaca->aca_next, ip_idx++) {
4037 if (ip_idx < s_ip_idx)
4038 continue;
4039 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004040 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004041 cb->nlh->nlmsg_seq,
4042 RTM_GETANYCAST,
4043 NLM_F_MULTI);
4044 if (err <= 0)
4045 break;
4046 }
4047 break;
4048 default:
4049 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004051 read_unlock_bh(&idev->lock);
4052 *p_ip_idx = ip_idx;
4053 return err;
4054}
4055
4056static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4057 enum addr_type_t type)
4058{
4059 struct net *net = sock_net(skb->sk);
4060 int h, s_h;
4061 int idx, ip_idx;
4062 int s_idx, s_ip_idx;
4063 struct net_device *dev;
4064 struct inet6_dev *idev;
4065 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004066
4067 s_h = cb->args[0];
4068 s_idx = idx = cb->args[1];
4069 s_ip_idx = ip_idx = cb->args[2];
4070
4071 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004072 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004073 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4074 idx = 0;
4075 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004076 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004077 if (idx < s_idx)
4078 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004079 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004080 s_ip_idx = 0;
4081 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004082 idev = __in6_dev_get(dev);
4083 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004084 goto cont;
4085
4086 if (in6_dump_addrs(idev, skb, cb, type,
4087 s_ip_idx, &ip_idx) <= 0)
4088 goto done;
4089cont:
4090 idx++;
4091 }
4092 }
4093done:
4094 rcu_read_unlock();
4095 cb->args[0] = h;
4096 cb->args[1] = idx;
4097 cb->args[2] = ip_idx;
4098
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 return skb->len;
4100}
4101
4102static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4103{
4104 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 return inet6_dump_addr(skb, cb, type);
4107}
4108
4109static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4110{
4111 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004112
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 return inet6_dump_addr(skb, cb, type);
4114}
4115
4116
4117static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4118{
4119 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 return inet6_dump_addr(skb, cb, type);
4122}
4123
Thomas Graf661d2962013-03-21 07:45:29 +00004124static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004125{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004126 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004127 struct ifaddrmsg *ifm;
4128 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004129 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004130 struct net_device *dev = NULL;
4131 struct inet6_ifaddr *ifa;
4132 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004133 int err;
4134
Thomas Graf1b29fc22006-09-18 00:10:50 -07004135 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4136 if (err < 0)
4137 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004138
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004139 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004140 if (addr == NULL) {
4141 err = -EINVAL;
4142 goto errout;
4143 }
4144
4145 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004146 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004147 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004148
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004149 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4150 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004151 err = -EADDRNOTAVAIL;
4152 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004153 }
4154
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004155 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4156 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004157 err = -ENOBUFS;
4158 goto errout_ifa;
4159 }
4160
Eric W. Biederman15e47302012-09-07 20:12:54 +00004161 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004162 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004163 if (err < 0) {
4164 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4165 WARN_ON(err == -EMSGSIZE);
4166 kfree_skb(skb);
4167 goto errout_ifa;
4168 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004169 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004170errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004171 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004172errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004173 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004174}
4175
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4177{
4178 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004179 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004180 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Thomas Graf0ab68032006-09-18 00:12:35 -07004182 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004183 if (skb == NULL)
4184 goto errout;
4185
4186 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004187 if (err < 0) {
4188 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4189 WARN_ON(err == -EMSGSIZE);
4190 kfree_skb(skb);
4191 goto errout;
4192 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004193 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4194 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004195errout:
4196 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004197 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198}
4199
Dave Jonesb6f99a22007-03-22 12:27:49 -07004200static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 __s32 *array, int bytes)
4202{
Thomas Graf04561c12006-11-14 19:53:58 -08004203 BUG_ON(bytes < (DEVCONF_MAX * 4));
4204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 memset(array, 0, bytes);
4206 array[DEVCONF_FORWARDING] = cnf->forwarding;
4207 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4208 array[DEVCONF_MTU6] = cnf->mtu6;
4209 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4210 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4211 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4212 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4213 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004214 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4215 jiffies_to_msecs(cnf->rtr_solicit_interval);
4216 array[DEVCONF_RTR_SOLICIT_DELAY] =
4217 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004219 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4220 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4221 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4222 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4224 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4225 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4226 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4227 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004229 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004230 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004231#ifdef CONFIG_IPV6_ROUTER_PREF
4232 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004233 array[DEVCONF_RTR_PROBE_INTERVAL] =
4234 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004235#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004236 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4237#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004238#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004239 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004240 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004241#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4242 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4243#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004244#ifdef CONFIG_IPV6_MROUTE
4245 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4246#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004247 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004248 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004249 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004250 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004251 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252}
4253
Thomas Grafb382b192010-11-16 04:33:57 +00004254static inline size_t inet6_ifla6_size(void)
4255{
4256 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4257 + nla_total_size(sizeof(struct ifla_cacheinfo))
4258 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4259 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004260 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4261 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004262}
4263
Thomas Graf339bf982006-11-10 14:10:15 -08004264static inline size_t inet6_if_nlmsg_size(void)
4265{
4266 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4267 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4268 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4269 + nla_total_size(4) /* IFLA_MTU */
4270 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004271 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004272}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004273
Eric Dumazetbe281e52011-05-19 01:14:23 +00004274static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004275 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004276{
4277 int i;
4278 int pad = bytes - sizeof(u64) * items;
4279 BUG_ON(pad < 0);
4280
4281 /* Use put_unaligned() because stats may not be aligned for u64. */
4282 put_unaligned(items, &stats[0]);
4283 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004284 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004285
4286 memset(&stats[items], 0, pad);
4287}
4288
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004289static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4290 int items, int bytes, size_t syncpoff)
4291{
4292 int i;
4293 int pad = bytes - sizeof(u64) * items;
4294 BUG_ON(pad < 0);
4295
4296 /* Use put_unaligned() because stats may not be aligned for u64. */
4297 put_unaligned(items, &stats[0]);
4298 for (i = 1; i < items; i++)
4299 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4300
4301 memset(&stats[items], 0, pad);
4302}
4303
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004304static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4305 int bytes)
4306{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004307 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004308 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004309 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4310 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004311 break;
4312 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004313 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004314 break;
4315 }
4316}
4317
Thomas Grafb382b192010-11-16 04:33:57 +00004318static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004320 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004321 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
David S. Millerc78679e2012-04-01 20:27:33 -04004323 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4324 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004326 ci.tstamp = cstamp_delta(idev->tstamp);
4327 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e52013-12-07 19:26:53 +01004328 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04004329 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4330 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004331 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4332 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004333 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004334 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004336 /* XXX - MC not implemented */
4337
4338 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4339 if (nla == NULL)
4340 goto nla_put_failure;
4341 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4342
4343 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4344 if (nla == NULL)
4345 goto nla_put_failure;
4346 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004348 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4349 if (nla == NULL)
4350 goto nla_put_failure;
4351 read_lock_bh(&idev->lock);
4352 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4353 read_unlock_bh(&idev->lock);
4354
Thomas Grafb382b192010-11-16 04:33:57 +00004355 return 0;
4356
4357nla_put_failure:
4358 return -EMSGSIZE;
4359}
4360
4361static size_t inet6_get_link_af_size(const struct net_device *dev)
4362{
4363 if (!__in6_dev_get(dev))
4364 return 0;
4365
4366 return inet6_ifla6_size();
4367}
4368
4369static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4370{
4371 struct inet6_dev *idev = __in6_dev_get(dev);
4372
4373 if (!idev)
4374 return -ENODATA;
4375
4376 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4377 return -EMSGSIZE;
4378
4379 return 0;
4380}
4381
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004382static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4383{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004384 struct inet6_ifaddr *ifp;
4385 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004386 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004387 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004388
4389 if (token == NULL)
4390 return -EINVAL;
4391 if (ipv6_addr_any(token))
4392 return -EINVAL;
4393 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4394 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004395 if (!ipv6_accept_ra(idev))
4396 return -EINVAL;
4397 if (idev->cnf.rtr_solicits <= 0)
4398 return -EINVAL;
4399
4400 write_lock_bh(&idev->lock);
4401
4402 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4403 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4404
4405 write_unlock_bh(&idev->lock);
4406
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004407 if (!idev->dead && (idev->if_flags & IF_READY) &&
4408 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4409 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004410
4411 /* If we're not ready, then normal ifup will take care
4412 * of this. Otherwise, we need to request our rs here.
4413 */
4414 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4415 update_rs = true;
4416 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004417
4418 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004419
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004420 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004421 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004422 idev->rs_probes = 1;
4423 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4424 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004425
4426 /* Well, that's kinda nasty ... */
4427 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4428 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004429 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004430 ifp->valid_lft = 0;
4431 ifp->prefered_lft = 0;
4432 }
4433 spin_unlock(&ifp->lock);
4434 }
4435
4436 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004437 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004438 return 0;
4439}
4440
4441static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4442{
4443 int err = -EINVAL;
4444 struct inet6_dev *idev = __in6_dev_get(dev);
4445 struct nlattr *tb[IFLA_INET6_MAX + 1];
4446
4447 if (!idev)
4448 return -EAFNOSUPPORT;
4449
4450 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4451 BUG();
4452
4453 if (tb[IFLA_INET6_TOKEN])
4454 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4455
4456 return err;
4457}
4458
Thomas Grafb382b192010-11-16 04:33:57 +00004459static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004460 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004461{
4462 struct net_device *dev = idev->dev;
4463 struct ifinfomsg *hdr;
4464 struct nlmsghdr *nlh;
4465 void *protoinfo;
4466
Eric W. Biederman15e47302012-09-07 20:12:54 +00004467 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004468 if (nlh == NULL)
4469 return -EMSGSIZE;
4470
4471 hdr = nlmsg_data(nlh);
4472 hdr->ifi_family = AF_INET6;
4473 hdr->__ifi_pad = 0;
4474 hdr->ifi_type = dev->type;
4475 hdr->ifi_index = dev->ifindex;
4476 hdr->ifi_flags = dev_get_flags(dev);
4477 hdr->ifi_change = 0;
4478
David S. Millerc78679e2012-04-01 20:27:33 -04004479 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4480 (dev->addr_len &&
4481 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4482 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4483 (dev->ifindex != dev->iflink &&
4484 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4485 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004486 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4487 if (protoinfo == NULL)
4488 goto nla_put_failure;
4489
4490 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4491 goto nla_put_failure;
4492
Thomas Graf04561c12006-11-14 19:53:58 -08004493 nla_nest_end(skb, protoinfo);
4494 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
Thomas Graf04561c12006-11-14 19:53:58 -08004496nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004497 nlmsg_cancel(skb, nlh);
4498 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499}
4500
4501static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4502{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004503 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004504 int h, s_h;
David S. Miller434a8a582009-11-11 18:53:00 -08004505 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 struct net_device *dev;
4507 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004508 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509
Eric Dumazet84d26972009-11-09 12:11:28 +00004510 s_h = cb->args[0];
4511 s_idx = cb->args[1];
4512
4513 rcu_read_lock();
4514 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4515 idx = 0;
4516 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004517 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004518 if (idx < s_idx)
4519 goto cont;
4520 idev = __in6_dev_get(dev);
4521 if (!idev)
4522 goto cont;
4523 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004524 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004525 cb->nlh->nlmsg_seq,
4526 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4527 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004528cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004529 idx++;
4530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004532out:
4533 rcu_read_unlock();
4534 cb->args[1] = idx;
4535 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
4537 return skb->len;
4538}
4539
4540void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4541{
4542 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004543 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004544 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004545
Thomas Graf339bf982006-11-10 14:10:15 -08004546 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004547 if (skb == NULL)
4548 goto errout;
4549
4550 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004551 if (err < 0) {
4552 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4553 WARN_ON(err == -EMSGSIZE);
4554 kfree_skb(skb);
4555 goto errout;
4556 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004557 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004558 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004559errout:
4560 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004561 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562}
4563
Thomas Graf339bf982006-11-10 14:10:15 -08004564static inline size_t inet6_prefix_nlmsg_size(void)
4565{
4566 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4567 + nla_total_size(sizeof(struct in6_addr))
4568 + nla_total_size(sizeof(struct prefix_cacheinfo));
4569}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004572 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004573 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004575 struct prefixmsg *pmsg;
4576 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 struct prefix_cacheinfo ci;
4578
Eric W. Biederman15e47302012-09-07 20:12:54 +00004579 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004580 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004581 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004582
4583 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004585 pmsg->prefix_pad1 = 0;
4586 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 pmsg->prefix_ifindex = idev->dev->ifindex;
4588 pmsg->prefix_len = pinfo->prefix_len;
4589 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004590 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 pmsg->prefix_flags = 0;
4592 if (pinfo->onlink)
4593 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4594 if (pinfo->autoconf)
4595 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4596
David S. Millerc78679e2012-04-01 20:27:33 -04004597 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4598 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 ci.preferred_time = ntohl(pinfo->prefered);
4600 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004601 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4602 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004603 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
Thomas Graf6051e2f2006-11-14 19:54:19 -08004605nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004606 nlmsg_cancel(skb, nlh);
4607 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608}
4609
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004610static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 struct prefix_info *pinfo)
4612{
4613 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004614 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004615 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Thomas Graf339bf982006-11-10 14:10:15 -08004617 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004618 if (skb == NULL)
4619 goto errout;
4620
4621 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004622 if (err < 0) {
4623 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4624 WARN_ON(err == -EMSGSIZE);
4625 kfree_skb(skb);
4626 goto errout;
4627 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004628 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4629 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004630errout:
4631 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004632 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633}
4634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4636{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004637 struct net *net = dev_net(ifp->idev->dev);
4638
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4640
4641 switch (event) {
4642 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004643 /*
4644 * If the address was optimistic
4645 * we inserted the route at the start of
4646 * our DAD process, so we don't need
4647 * to do it again
4648 */
4649 if (!(ifp->rt->rt6i_node))
4650 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 if (ifp->idev->cnf.forwarding)
4652 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004653 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004654 addrconf_prefix_route(&ifp->peer_addr, 128,
4655 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 break;
4657 case RTM_DELADDR:
4658 if (ifp->idev->cnf.forwarding)
4659 addrconf_leave_anycast(ifp);
4660 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004661 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004662 struct rt6_info *rt;
4663 struct net_device *dev = ifp->idev->dev;
4664
4665 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4666 dev->ifindex, 1);
4667 if (rt) {
4668 dst_hold(&rt->dst);
4669 if (ip6_del_rt(rt))
4670 dst_free(&rt->dst);
4671 }
4672 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004673 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004674
David S. Miller73a8bd72011-01-23 23:27:15 -08004675 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004676 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 break;
4678 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004679 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004680 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681}
4682
4683static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4684{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004685 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 if (likely(ifp->idev->dead == 0))
4687 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004688 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689}
4690
4691#ifdef CONFIG_SYSCTL
4692
4693static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004694int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 void __user *buffer, size_t *lenp, loff_t *ppos)
4696{
4697 int *valp = ctl->data;
4698 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004699 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004700 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 int ret;
4702
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004703 /*
4704 * ctl->data points to idev->cnf.forwarding, we should
4705 * not modify it until we get the rtnl lock.
4706 */
4707 lctl = *ctl;
4708 lctl.data = &val;
4709
4710 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004712 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004713 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004714 if (ret)
4715 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004716 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717}
4718
Brian Haley56d417b2009-06-01 03:07:33 -07004719static void dev_disable_change(struct inet6_dev *idev)
4720{
Cong Wang75538c22013-05-29 11:30:50 +08004721 struct netdev_notifier_info info;
4722
Brian Haley56d417b2009-06-01 03:07:33 -07004723 if (!idev || !idev->dev)
4724 return;
4725
Cong Wang75538c22013-05-29 11:30:50 +08004726 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004727 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004728 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004729 else
Cong Wang75538c22013-05-29 11:30:50 +08004730 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004731}
4732
4733static void addrconf_disable_change(struct net *net, __s32 newf)
4734{
4735 struct net_device *dev;
4736 struct inet6_dev *idev;
4737
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004738 rcu_read_lock();
4739 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004740 idev = __in6_dev_get(dev);
4741 if (idev) {
4742 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4743 idev->cnf.disable_ipv6 = newf;
4744 if (changed)
4745 dev_disable_change(idev);
4746 }
Brian Haley56d417b2009-06-01 03:07:33 -07004747 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004748 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004749}
4750
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004751static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004752{
4753 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004754 int old;
4755
4756 if (!rtnl_trylock())
4757 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004758
4759 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004760 old = *p;
4761 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004762
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004763 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4764 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004765 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004766 }
Brian Haley56d417b2009-06-01 03:07:33 -07004767
4768 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004769 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4770 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004771 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004772 dev_disable_change((struct inet6_dev *)table->extra1);
4773
4774 rtnl_unlock();
4775 return 0;
4776}
4777
4778static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004779int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004780 void __user *buffer, size_t *lenp, loff_t *ppos)
4781{
4782 int *valp = ctl->data;
4783 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004784 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004785 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004786 int ret;
4787
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004788 /*
4789 * ctl->data points to idev->cnf.disable_ipv6, we should
4790 * not modify it until we get the rtnl lock.
4791 */
4792 lctl = *ctl;
4793 lctl.data = &val;
4794
4795 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004796
4797 if (write)
4798 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004799 if (ret)
4800 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004801 return ret;
4802}
4803
stephen hemmingerc92d5492013-12-17 22:37:14 -08004804static
4805int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
4806 void __user *buffer, size_t *lenp, loff_t *ppos)
4807{
4808 int *valp = ctl->data;
4809 int ret;
4810 int old, new;
4811
4812 old = *valp;
4813 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
4814 new = *valp;
4815
4816 if (write && old != new) {
4817 struct net *net = ctl->extra2;
4818
4819 if (!rtnl_trylock())
4820 return restart_syscall();
4821
4822 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
4823 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4824 NETCONFA_IFINDEX_DEFAULT,
4825 net->ipv6.devconf_dflt);
4826 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
4827 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4828 NETCONFA_IFINDEX_ALL,
4829 net->ipv6.devconf_all);
4830 else {
4831 struct inet6_dev *idev = ctl->extra1;
4832
4833 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4834 idev->dev->ifindex,
4835 &idev->cnf);
4836 }
4837 rtnl_unlock();
4838 }
4839
4840 return ret;
4841}
4842
4843
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844static struct addrconf_sysctl_table
4845{
4846 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004847 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004848} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 .sysctl_header = NULL,
4850 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004851 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004852 .procname = "forwarding",
4853 .data = &ipv6_devconf.forwarding,
4854 .maxlen = sizeof(int),
4855 .mode = 0644,
4856 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 },
4858 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004859 .procname = "hop_limit",
4860 .data = &ipv6_devconf.hop_limit,
4861 .maxlen = sizeof(int),
4862 .mode = 0644,
4863 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 },
4865 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004866 .procname = "mtu",
4867 .data = &ipv6_devconf.mtu6,
4868 .maxlen = sizeof(int),
4869 .mode = 0644,
4870 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 },
4872 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004873 .procname = "accept_ra",
4874 .data = &ipv6_devconf.accept_ra,
4875 .maxlen = sizeof(int),
4876 .mode = 0644,
4877 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 },
4879 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004880 .procname = "accept_redirects",
4881 .data = &ipv6_devconf.accept_redirects,
4882 .maxlen = sizeof(int),
4883 .mode = 0644,
4884 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 },
4886 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004887 .procname = "autoconf",
4888 .data = &ipv6_devconf.autoconf,
4889 .maxlen = sizeof(int),
4890 .mode = 0644,
4891 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 },
4893 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004894 .procname = "dad_transmits",
4895 .data = &ipv6_devconf.dad_transmits,
4896 .maxlen = sizeof(int),
4897 .mode = 0644,
4898 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 },
4900 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004901 .procname = "router_solicitations",
4902 .data = &ipv6_devconf.rtr_solicits,
4903 .maxlen = sizeof(int),
4904 .mode = 0644,
4905 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 },
4907 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004908 .procname = "router_solicitation_interval",
4909 .data = &ipv6_devconf.rtr_solicit_interval,
4910 .maxlen = sizeof(int),
4911 .mode = 0644,
4912 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 },
4914 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004915 .procname = "router_solicitation_delay",
4916 .data = &ipv6_devconf.rtr_solicit_delay,
4917 .maxlen = sizeof(int),
4918 .mode = 0644,
4919 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 },
4921 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004922 .procname = "force_mld_version",
4923 .data = &ipv6_devconf.force_mld_version,
4924 .maxlen = sizeof(int),
4925 .mode = 0644,
4926 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004928 {
4929 .procname = "mldv1_unsolicited_report_interval",
4930 .data =
4931 &ipv6_devconf.mldv1_unsolicited_report_interval,
4932 .maxlen = sizeof(int),
4933 .mode = 0644,
4934 .proc_handler = proc_dointvec_ms_jiffies,
4935 },
4936 {
4937 .procname = "mldv2_unsolicited_report_interval",
4938 .data =
4939 &ipv6_devconf.mldv2_unsolicited_report_interval,
4940 .maxlen = sizeof(int),
4941 .mode = 0644,
4942 .proc_handler = proc_dointvec_ms_jiffies,
4943 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004945 .procname = "use_tempaddr",
4946 .data = &ipv6_devconf.use_tempaddr,
4947 .maxlen = sizeof(int),
4948 .mode = 0644,
4949 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 },
4951 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004952 .procname = "temp_valid_lft",
4953 .data = &ipv6_devconf.temp_valid_lft,
4954 .maxlen = sizeof(int),
4955 .mode = 0644,
4956 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 },
4958 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004959 .procname = "temp_prefered_lft",
4960 .data = &ipv6_devconf.temp_prefered_lft,
4961 .maxlen = sizeof(int),
4962 .mode = 0644,
4963 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 },
4965 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004966 .procname = "regen_max_retry",
4967 .data = &ipv6_devconf.regen_max_retry,
4968 .maxlen = sizeof(int),
4969 .mode = 0644,
4970 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 },
4972 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004973 .procname = "max_desync_factor",
4974 .data = &ipv6_devconf.max_desync_factor,
4975 .maxlen = sizeof(int),
4976 .mode = 0644,
4977 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004980 .procname = "max_addresses",
4981 .data = &ipv6_devconf.max_addresses,
4982 .maxlen = sizeof(int),
4983 .mode = 0644,
4984 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 },
4986 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004987 .procname = "accept_ra_defrtr",
4988 .data = &ipv6_devconf.accept_ra_defrtr,
4989 .maxlen = sizeof(int),
4990 .mode = 0644,
4991 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004992 },
4993 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004994 .procname = "accept_ra_pinfo",
4995 .data = &ipv6_devconf.accept_ra_pinfo,
4996 .maxlen = sizeof(int),
4997 .mode = 0644,
4998 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004999 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005000#ifdef CONFIG_IPV6_ROUTER_PREF
5001 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005002 .procname = "accept_ra_rtr_pref",
5003 .data = &ipv6_devconf.accept_ra_rtr_pref,
5004 .maxlen = sizeof(int),
5005 .mode = 0644,
5006 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005007 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08005008 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005009 .procname = "router_probe_interval",
5010 .data = &ipv6_devconf.rtr_probe_interval,
5011 .maxlen = sizeof(int),
5012 .mode = 0644,
5013 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08005014 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08005015#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005016 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005017 .procname = "accept_ra_rt_info_max_plen",
5018 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
5019 .maxlen = sizeof(int),
5020 .mode = 0644,
5021 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005022 },
5023#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005024#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005025 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005026 .procname = "proxy_ndp",
5027 .data = &ipv6_devconf.proxy_ndp,
5028 .maxlen = sizeof(int),
5029 .mode = 0644,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005030 .proc_handler = addrconf_sysctl_proxy_ndp,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005031 },
5032 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005033 .procname = "accept_source_route",
5034 .data = &ipv6_devconf.accept_source_route,
5035 .maxlen = sizeof(int),
5036 .mode = 0644,
5037 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005038 },
Neil Horman95c385b2007-04-25 17:08:10 -07005039#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5040 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005041 .procname = "optimistic_dad",
5042 .data = &ipv6_devconf.optimistic_dad,
5043 .maxlen = sizeof(int),
5044 .mode = 0644,
5045 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07005046
5047 },
5048#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005049#ifdef CONFIG_IPV6_MROUTE
5050 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005051 .procname = "mc_forwarding",
5052 .data = &ipv6_devconf.mc_forwarding,
5053 .maxlen = sizeof(int),
5054 .mode = 0444,
5055 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005056 },
5057#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005058 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005059 .procname = "disable_ipv6",
5060 .data = &ipv6_devconf.disable_ipv6,
5061 .maxlen = sizeof(int),
5062 .mode = 0644,
5063 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005064 },
5065 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005066 .procname = "accept_dad",
5067 .data = &ipv6_devconf.accept_dad,
5068 .maxlen = sizeof(int),
5069 .mode = 0644,
5070 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005071 },
5072 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00005073 .procname = "force_tllao",
5074 .data = &ipv6_devconf.force_tllao,
5075 .maxlen = sizeof(int),
5076 .mode = 0644,
5077 .proc_handler = proc_dointvec
5078 },
5079 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005080 .procname = "ndisc_notify",
5081 .data = &ipv6_devconf.ndisc_notify,
5082 .maxlen = sizeof(int),
5083 .mode = 0644,
5084 .proc_handler = proc_dointvec
5085 },
5086 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005087 .procname = "suppress_frag_ndisc",
5088 .data = &ipv6_devconf.suppress_frag_ndisc,
5089 .maxlen = sizeof(int),
5090 .mode = 0644,
5091 .proc_handler = proc_dointvec
5092 },
5093 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005094 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 }
5096 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097};
5098
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005099static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005100 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101{
5102 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005104 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005105
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005106 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005108 goto out;
5109
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005110 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005111 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005113 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115
Eric W. Biederman6105e292012-04-19 13:41:24 +00005116 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Eric W. Biederman6105e292012-04-19 13:41:24 +00005118 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005120 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005121
5122 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005125free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005127out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005128 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129}
5130
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005131static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5132{
5133 struct addrconf_sysctl_table *t;
5134
5135 if (p->sysctl == NULL)
5136 return;
5137
5138 t = p->sysctl;
5139 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005140 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005141 kfree(t);
5142}
5143
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005144static void addrconf_sysctl_register(struct inet6_dev *idev)
5145{
Jiri Pirko73af6142013-12-07 19:26:55 +01005146 neigh_sysctl_register(idev->dev, idev->nd_parms,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005147 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005148 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005149 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005150}
5151
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005152static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005154 __addrconf_sysctl_unregister(&idev->cnf);
5155 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156}
5157
5158
5159#endif
5160
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005161static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005162{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005163 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005164 struct ipv6_devconf *all, *dflt;
5165
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005166 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5167 if (all == NULL)
5168 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005169
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005170 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5171 if (dflt == NULL)
5172 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005173
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005174 /* these will be inherited by all namespaces */
5175 dflt->autoconf = ipv6_defaults.autoconf;
5176 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005177
5178 net->ipv6.devconf_all = all;
5179 net->ipv6.devconf_dflt = dflt;
5180
5181#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005182 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005183 if (err < 0)
5184 goto err_reg_all;
5185
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005186 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005187 if (err < 0)
5188 goto err_reg_dflt;
5189#endif
5190 return 0;
5191
5192#ifdef CONFIG_SYSCTL
5193err_reg_dflt:
5194 __addrconf_sysctl_unregister(all);
5195err_reg_all:
5196 kfree(dflt);
5197#endif
5198err_alloc_dflt:
5199 kfree(all);
5200err_alloc_all:
5201 return err;
5202}
5203
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005204static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005205{
5206#ifdef CONFIG_SYSCTL
5207 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5208 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5209#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005210 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005211 kfree(net->ipv6.devconf_dflt);
5212 kfree(net->ipv6.devconf_all);
5213 }
5214}
5215
5216static struct pernet_operations addrconf_ops = {
5217 .init = addrconf_init_net,
5218 .exit = addrconf_exit_net,
5219};
5220
Thomas Grafb382b192010-11-16 04:33:57 +00005221static struct rtnl_af_ops inet6_ops = {
5222 .family = AF_INET6,
5223 .fill_link_af = inet6_fill_link_af,
5224 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005225 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005226};
5227
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228/*
5229 * Init / cleanup code
5230 */
5231
5232int __init addrconf_init(void)
5233{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005234 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005235
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005236 err = ipv6_addr_label_init();
5237 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005238 pr_crit("%s: cannot initialize default policy table: %d\n",
5239 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005240 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005243 err = register_pernet_subsys(&addrconf_ops);
5244 if (err < 0)
5245 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 /* The addrconf netdev notifier requires that loopback_dev
5248 * has it's ipv6 private information allocated and setup
5249 * before it can bring up and give link-local addresses
5250 * to other devices which are up.
5251 *
5252 * Unfortunately, loopback_dev is not necessarily the first
5253 * entry in the global dev_base list of net devices. In fact,
5254 * it is likely to be the very last entry on that list.
5255 * So this causes the notifier registry below to try and
5256 * give link-local addresses to all devices besides loopback_dev
5257 * first, then loopback_dev, which cases all the non-loopback_dev
5258 * devices to fail to get a link-local address.
5259 *
5260 * So, as a temporary fix, allocate the ipv6 structure for
5261 * loopback_dev first by hand.
5262 * Longer term, all of the dependencies ipv6 has upon the loopback
5263 * device and it being up should be removed.
5264 */
5265 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005266 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 err = -ENOMEM;
5268 rtnl_unlock();
5269 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005270 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271
stephen hemmingerc2e21292010-03-17 20:31:10 +00005272 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5273 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 register_netdevice_notifier(&ipv6_dev_notf);
5276
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005278
stephen hemminger3678a9d2013-12-30 10:41:32 -08005279 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00005280
Greg Rosec7ac8672011-06-10 01:27:09 +00005281 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5282 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005283 if (err < 0)
5284 goto errout;
5285
5286 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005287 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5288 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5289 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5290 inet6_dump_ifaddr, NULL);
5291 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5292 inet6_dump_ifmcaddr, NULL);
5293 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5294 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005295 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005296 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005297
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005298 ipv6_addr_label_rtnl_register();
5299
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005301errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005302 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07005303 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005304errlo:
5305 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005306out_addrlabel:
5307 ipv6_addr_label_cleanup();
5308out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005309 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310}
5311
Daniel Lezcano09f77092007-12-13 05:34:58 -08005312void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005314 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 int i;
5316
5317 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005318 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005319 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
5321 rtnl_lock();
5322
Thomas Grafb382b192010-11-16 04:33:57 +00005323 __rtnl_af_unregister(&inet6_ops);
5324
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005325 /* clean dev list */
5326 for_each_netdev(&init_net, dev) {
5327 if (__in6_dev_get(dev) == NULL)
5328 continue;
5329 addrconf_ifdown(dev, 1);
5330 }
5331 addrconf_ifdown(init_net.loopback_dev, 2);
5332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 * Check hash table.
5335 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005336 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005337 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5338 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005339 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
5341 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343}