blob: 7fd8572bac8090fbfac136718dbfd782dfb98a2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/*
16 * Changes:
17 *
18 * Janos Farkas : delete timer on ifdown
19 * <chexum@bankinf.banki.hu>
20 * Andi Kleen : kill double kfree on module
21 * unload.
22 * Maciej W. Rozycki : FDDI support
23 * sekiya@USAGI : Don't send too many RS
24 * packets.
25 * yoshfuji@USAGI : Fixed interval between DAD
26 * packets.
27 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
28 * address validation timer.
29 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
30 * support.
31 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
32 * address on a same interface.
33 * YOSHIFUJI Hideaki @USAGI : ARCnet support
34 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
35 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080036 * YOSHIFUJI Hideaki @USAGI : improved source address
37 * selection; consider scope,
38 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Joe Perchesf3213832012-05-15 14:11:53 +000041#define pr_fmt(fmt) "IPv6: " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070045#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/socket.h>
47#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/net.h>
49#include <linux/in6.h>
50#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070051#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/if_arp.h>
53#include <linux/if_arcnet.h>
54#include <linux/if_infiniband.h>
55#include <linux/route.h>
56#include <linux/inetdevice.h>
57#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090058#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifdef CONFIG_SYSCTL
60#include <linux/sysctl.h>
61#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/delay.h>
64#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070065#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000066#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020068#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <net/sock.h>
70#include <net/snmp.h>
71
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +000072#include <net/af_ieee802154.h>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000073#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <net/ipv6.h>
75#include <net/protocol.h>
76#include <net/ndisc.h>
77#include <net/ip6_route.h>
78#include <net/addrconf.h>
79#include <net/tcp.h>
80#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070081#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070082#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/if_tunnel.h>
84#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000085#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef CONFIG_IPV6_PRIVACY
88#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
90
Stephen Hemmingere21e8462010-03-20 16:09:01 -070091#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070092#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94#include <linux/proc_fs.h>
95#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040096#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* Set to 3 to get tracing... */
99#define ACONF_DEBUG 2
100
101#if ACONF_DEBUG >= 3
102#define ADBG(x) printk x
103#else
104#define ADBG(x)
105#endif
106
107#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000108
109static inline u32 cstamp_delta(unsigned long cstamp)
110{
111 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100115static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800116static void addrconf_sysctl_unregister(struct inet6_dev *idev);
117#else
118static inline void addrconf_sysctl_register(struct inet6_dev *idev)
119{
120}
121
122static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
123{
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
127#ifdef CONFIG_IPV6_PRIVACY
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000128static void __ipv6_regen_rndid(struct inet6_dev *idev);
129static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900133static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static int ipv6_count_addresses(struct inet6_dev *idev);
135
136/*
137 * Configured unicast address hash table
138 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000139static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578aed2010-03-17 20:31:11 +0000140static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static void addrconf_verify(unsigned long);
143
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700144static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static DEFINE_SPINLOCK(addrconf_verify_lock);
146
147static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
148static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
149
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000150static void addrconf_type_change(struct net_device *dev,
151 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int addrconf_ifdown(struct net_device *dev, int how);
153
Romain Kuntz21caa662013-01-09 21:06:03 +0000154static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
155 int plen,
156 const struct net_device *dev,
157 u32 flags, u32 noflags);
158
David S. Millercf22f9a2012-04-14 21:37:40 -0400159static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static void addrconf_dad_timer(unsigned long data);
161static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900162static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static void addrconf_rs_timer(unsigned long data);
164static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
165static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
166
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900167static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700169static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
170 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Adrian Bunk888c8482008-07-22 14:21:58 -0700172static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .forwarding = 0,
174 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
175 .mtu6 = IPV6_MIN_MTU,
176 .accept_ra = 1,
177 .accept_redirects = 1,
178 .autoconf = 1,
179 .force_mld_version = 0,
180 .dad_transmits = 1,
181 .rtr_solicits = MAX_RTR_SOLICITATIONS,
182 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
183 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
184#ifdef CONFIG_IPV6_PRIVACY
185 .use_tempaddr = 0,
186 .temp_valid_lft = TEMP_VALID_LIFETIME,
187 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
188 .regen_max_retry = REGEN_MAX_RETRY,
189 .max_desync_factor = MAX_DESYNC_FACTOR,
190#endif
191 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800192 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800193 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800194#ifdef CONFIG_IPV6_ROUTER_PREF
195 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800196 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800197#ifdef CONFIG_IPV6_ROUTE_INFO
198 .accept_ra_rt_info_max_plen = 0,
199#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800200#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700201 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700202 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900203 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900204 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Brian Haleyab32ea52006-09-22 14:15:41 -0700207static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .forwarding = 0,
209 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
210 .mtu6 = IPV6_MIN_MTU,
211 .accept_ra = 1,
212 .accept_redirects = 1,
213 .autoconf = 1,
214 .dad_transmits = 1,
215 .rtr_solicits = MAX_RTR_SOLICITATIONS,
216 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
217 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
218#ifdef CONFIG_IPV6_PRIVACY
219 .use_tempaddr = 0,
220 .temp_valid_lft = TEMP_VALID_LIFETIME,
221 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
222 .regen_max_retry = REGEN_MAX_RETRY,
223 .max_desync_factor = MAX_DESYNC_FACTOR,
224#endif
225 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800226 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800227 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800228#ifdef CONFIG_IPV6_ROUTER_PREF
229 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800230 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800231#ifdef CONFIG_IPV6_ROUTE_INFO
232 .accept_ra_rt_info_max_plen = 0,
233#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800234#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700235 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700236 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900237 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900238 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
241/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900244const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
245const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000246const struct in6_addr in6addr_interfacelocal_allnodes = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT;
247const struct in6_addr in6addr_interfacelocal_allrouters = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT;
248const struct in6_addr in6addr_sitelocal_allrouters = IN6ADDR_SITELOCAL_ALLROUTERS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700250/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700251static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700252{
David S. Miller05297942008-07-08 23:01:27 -0700253 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700254}
255
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200256static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200258 if (del_timer(&idev->rs_timer))
259 __in6_dev_put(idev);
260}
261
262static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
263{
264 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 __in6_ifa_put(ifp);
266}
267
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200268static void addrconf_mod_rs_timer(struct inet6_dev *idev,
269 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200271 if (!timer_pending(&idev->rs_timer))
272 in6_dev_hold(idev);
273 mod_timer(&idev->rs_timer, jiffies + when);
274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200276static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
277 unsigned long when)
278{
279 if (!timer_pending(&ifp->dad_timer))
280 in6_ifa_hold(ifp);
281 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700284static int snmp6_alloc_dev(struct inet6_dev *idev)
285{
Tejun Heo7d720c32010-02-16 15:20:26 +0000286 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000287 sizeof(struct ipstats_mib),
288 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700289 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000290 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
291 GFP_KERNEL);
292 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700293 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000294 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
295 GFP_KERNEL);
296 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700297 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700298
299 return 0;
300
David L Stevens14878f72007-09-16 16:52:35 -0700301err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000302 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700303err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000304 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700306 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700307}
308
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700309static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700310{
Eric Dumazetbe281e52011-05-19 01:14:23 +0000311 kfree(idev->stats.icmpv6msgdev);
312 kfree(idev->stats.icmpv6dev);
Tejun Heo7d720c32010-02-16 15:20:26 +0000313 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/* Nobody refers to this device, we may destroy it. */
317
318void in6_dev_finish_destroy(struct inet6_dev *idev)
319{
320 struct net_device *dev = idev->dev;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700321
stephen hemminger502a2ff2010-03-17 20:31:13 +0000322 WARN_ON(!list_empty(&idev->addr_list));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700323 WARN_ON(idev->mc_list != NULL);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200324 WARN_ON(timer_pending(&idev->rs_timer));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000327 pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#endif
329 dev_put(dev);
330 if (!idev->dead) {
Joe Perchesf3213832012-05-15 14:11:53 +0000331 pr_warn("Freeing alive inet6 device %p\n", idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return;
333 }
334 snmp6_free_dev(idev);
Lai Jiangshan38f57d12011-03-15 17:59:14 +0800335 kfree_rcu(idev, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900337EXPORT_SYMBOL(in6_dev_finish_destroy);
338
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000339static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct inet6_dev *ndev;
342
343 ASSERT_RTNL();
344
345 if (dev->mtu < IPV6_MIN_MTU)
346 return NULL;
347
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900348 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900350 if (ndev == NULL)
351 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Ingo Oeser322f74a2006-03-20 23:01:47 -0800353 rwlock_init(&ndev->lock);
354 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000355 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200356 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
357 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900358 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800359 ndev->cnf.mtu6 = dev->mtu;
360 ndev->cnf.sysctl = NULL;
361 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
362 if (ndev->nd_parms == NULL) {
363 kfree(ndev);
364 return NULL;
365 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700366 if (ndev->cnf.forwarding)
367 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800368 /* We refer to the device */
369 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Ingo Oeser322f74a2006-03-20 23:01:47 -0800371 if (snmp6_alloc_dev(ndev) < 0) {
372 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000373 "%s: cannot allocate memory for statistics; dev=%s.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800374 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800375 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400376 dev_put(dev);
377 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800378 return NULL;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Ingo Oeser322f74a2006-03-20 23:01:47 -0800381 if (snmp6_register_dev(ndev) < 0) {
382 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000383 "%s: cannot create /proc/net/dev_snmp6/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800384 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800385 neigh_parms_release(&nd_tbl, ndev->nd_parms);
386 ndev->dead = 1;
387 in6_dev_finish_destroy(ndev);
388 return NULL;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391 /* One reference from device. We must do this before
392 * we invoke __ipv6_regen_rndid().
393 */
394 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900396 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
397 ndev->cnf.accept_dad = -1;
398
Amerigo Wang07a93622012-10-29 16:23:10 +0000399#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700400 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000401 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700402 ndev->cnf.rtr_solicits = 0;
403 }
404#endif
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000407 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800408 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800409 if ((dev->flags&IFF_LOOPBACK) ||
410 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700411 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700412 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700413 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800414 ndev->cnf.use_tempaddr = -1;
415 } else {
416 in6_dev_hold(ndev);
417 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800419#endif
Daniel Borkmann914faa12013-04-09 03:47:14 +0000420 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800421
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700422 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700423 ndev->if_flags |= IF_READY;
424
Ingo Oeser322f74a2006-03-20 23:01:47 -0800425 ipv6_mc_init_dev(ndev);
426 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100427 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800428 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000429 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800430
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000431 /* Join interface-local all-node multicast group */
432 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
433
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800434 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900435 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800436
Li Weid6ddef92012-03-05 14:45:17 +0000437 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000438 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000439 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return ndev;
442}
443
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000444static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct inet6_dev *idev;
447
448 ASSERT_RTNL();
449
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700450 idev = __in6_dev_get(dev);
451 if (!idev) {
452 idev = ipv6_add_dev(dev);
453 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return NULL;
455 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (dev->flags&IFF_UP)
458 ipv6_mc_up(idev);
459 return idev;
460}
461
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000462static int inet6_netconf_msgsize_devconf(int type)
463{
464 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
465 + nla_total_size(4); /* NETCONFA_IFINDEX */
466
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000467 /* type -1 is used for ALL */
468 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000469 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500470#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000471 if (type == -1 || type == NETCONFA_MC_FORWARDING)
472 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500473#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000474
475 return size;
476}
477
478static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
479 struct ipv6_devconf *devconf, u32 portid,
480 u32 seq, int event, unsigned int flags,
481 int type)
482{
483 struct nlmsghdr *nlh;
484 struct netconfmsg *ncm;
485
486 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
487 flags);
488 if (nlh == NULL)
489 return -EMSGSIZE;
490
491 ncm = nlmsg_data(nlh);
492 ncm->ncm_family = AF_INET6;
493
494 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
495 goto nla_put_failure;
496
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000497 /* type -1 is used for ALL */
498 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000499 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
500 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500501#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000502 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
503 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
504 devconf->mc_forwarding) < 0)
505 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500506#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000507 return nlmsg_end(skb, nlh);
508
509nla_put_failure:
510 nlmsg_cancel(skb, nlh);
511 return -EMSGSIZE;
512}
513
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000514void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
515 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000516{
517 struct sk_buff *skb;
518 int err = -ENOBUFS;
519
520 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
521 if (skb == NULL)
522 goto errout;
523
524 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
525 RTM_NEWNETCONF, 0, type);
526 if (err < 0) {
527 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
528 WARN_ON(err == -EMSGSIZE);
529 kfree_skb(skb);
530 goto errout;
531 }
532 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
533 return;
534errout:
Cong Dingbd779022012-12-18 12:08:56 +0000535 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000536}
537
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000538static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
539 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
540 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
541};
542
543static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000544 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000545{
546 struct net *net = sock_net(in_skb->sk);
547 struct nlattr *tb[NETCONFA_MAX+1];
548 struct netconfmsg *ncm;
549 struct sk_buff *skb;
550 struct ipv6_devconf *devconf;
551 struct inet6_dev *in6_dev;
552 struct net_device *dev;
553 int ifindex;
554 int err;
555
556 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
557 devconf_ipv6_policy);
558 if (err < 0)
559 goto errout;
560
561 err = EINVAL;
562 if (!tb[NETCONFA_IFINDEX])
563 goto errout;
564
565 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
566 switch (ifindex) {
567 case NETCONFA_IFINDEX_ALL:
568 devconf = net->ipv6.devconf_all;
569 break;
570 case NETCONFA_IFINDEX_DEFAULT:
571 devconf = net->ipv6.devconf_dflt;
572 break;
573 default:
574 dev = __dev_get_by_index(net, ifindex);
575 if (dev == NULL)
576 goto errout;
577 in6_dev = __in6_dev_get(dev);
578 if (in6_dev == NULL)
579 goto errout;
580 devconf = &in6_dev->cnf;
581 break;
582 }
583
584 err = -ENOBUFS;
585 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
586 if (skb == NULL)
587 goto errout;
588
589 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
590 NETLINK_CB(in_skb).portid,
591 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
592 -1);
593 if (err < 0) {
594 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
595 WARN_ON(err == -EMSGSIZE);
596 kfree_skb(skb);
597 goto errout;
598 }
599 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
600errout:
601 return err;
602}
603
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000604static int inet6_netconf_dump_devconf(struct sk_buff *skb,
605 struct netlink_callback *cb)
606{
607 struct net *net = sock_net(skb->sk);
608 int h, s_h;
609 int idx, s_idx;
610 struct net_device *dev;
611 struct inet6_dev *idev;
612 struct hlist_head *head;
613
614 s_h = cb->args[0];
615 s_idx = idx = cb->args[1];
616
617 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
618 idx = 0;
619 head = &net->dev_index_head[h];
620 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000621 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
622 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000623 hlist_for_each_entry_rcu(dev, head, index_hlist) {
624 if (idx < s_idx)
625 goto cont;
626 idev = __in6_dev_get(dev);
627 if (!idev)
628 goto cont;
629
630 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
631 &idev->cnf,
632 NETLINK_CB(cb->skb).portid,
633 cb->nlh->nlmsg_seq,
634 RTM_NEWNETCONF,
635 NLM_F_MULTI,
636 -1) <= 0) {
637 rcu_read_unlock();
638 goto done;
639 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000640 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000641cont:
642 idx++;
643 }
644 rcu_read_unlock();
645 }
646 if (h == NETDEV_HASHENTRIES) {
647 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
648 net->ipv6.devconf_all,
649 NETLINK_CB(cb->skb).portid,
650 cb->nlh->nlmsg_seq,
651 RTM_NEWNETCONF, NLM_F_MULTI,
652 -1) <= 0)
653 goto done;
654 else
655 h++;
656 }
657 if (h == NETDEV_HASHENTRIES + 1) {
658 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
659 net->ipv6.devconf_dflt,
660 NETLINK_CB(cb->skb).portid,
661 cb->nlh->nlmsg_seq,
662 RTM_NEWNETCONF, NLM_F_MULTI,
663 -1) <= 0)
664 goto done;
665 else
666 h++;
667 }
668done:
669 cb->args[0] = h;
670 cb->args[1] = idx;
671
672 return skb->len;
673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675#ifdef CONFIG_SYSCTL
676static void dev_forward_change(struct inet6_dev *idev)
677{
678 struct net_device *dev;
679 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 if (!idev)
682 return;
683 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700684 if (idev->cnf.forwarding)
685 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000686 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000687 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900688 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000689 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
690 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
691 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900692 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000693 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
694 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000697
698 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800699 if (ifa->flags&IFA_F_TENTATIVE)
700 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (idev->cnf.forwarding)
702 addrconf_join_anycast(ifa);
703 else
704 addrconf_leave_anycast(ifa);
705 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000706 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
707 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710
Pavel Emelyanove1869322008-01-10 17:43:50 -0800711static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct net_device *dev;
714 struct inet6_dev *idev;
715
Ben Hutchings4acd4942012-08-14 08:54:51 +0000716 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 idev = __in6_dev_get(dev);
718 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800719 int changed = (!idev->cnf.forwarding) ^ (!newf);
720 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (changed)
722 dev_forward_change(idev);
723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800726
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000727static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800728{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800729 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000730 int old;
731
732 if (!rtnl_trylock())
733 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800734
735 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000736 old = *p;
737 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800738
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000739 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000740 if ((!newf) ^ (!old))
741 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
742 NETCONFA_IFINDEX_DEFAULT,
743 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000744 rtnl_unlock();
745 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000746 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000747
Pavel Emelyanove1869322008-01-10 17:43:50 -0800748 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800749 net->ipv6.devconf_dflt->forwarding = newf;
750 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000751 if ((!newf) ^ (!old))
752 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
753 NETCONFA_IFINDEX_ALL,
754 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000755 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800756 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700757 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800758
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000759 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800760 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000761 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800762}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763#endif
764
stephen hemminger5c578aed2010-03-17 20:31:11 +0000765/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
767{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000768 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000771 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#endif
773
774 in6_dev_put(ifp->idev);
775
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200776 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700777 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Herbert Xue9d3e082010-05-18 15:36:06 -0700779 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000780 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return;
782 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000783 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Lai Jiangshane5785982011-03-15 18:00:14 +0800785 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Brian Haleye55ffac2006-07-10 15:25:51 -0700788static void
789ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
790{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000791 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700792 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700793
794 /*
795 * Each device address list is sorted in order of scope -
796 * global before linklocal.
797 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000798 list_for_each(p, &idev->addr_list) {
799 struct inet6_ifaddr *ifa
800 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700801 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700802 break;
803 }
804
David S. Millerb54c9b92010-03-25 21:25:30 -0700805 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700806}
807
Eric Dumazetddbe5032012-07-18 08:11:12 +0000808static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900809{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000810 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900811}
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813/* On success it returns ifp with increased reference count */
814
815static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200816ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
817 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200818 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct inet6_ifaddr *ifa = NULL;
821 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000822 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900824 int addr_type = ipv6_addr_type(addr);
825
826 if (addr_type == IPV6_ADDR_ANY ||
827 addr_type & IPV6_ADDR_MULTICAST ||
828 (!(idev->dev->flags & IFF_LOOPBACK) &&
829 addr_type & IPV6_ADDR_LOOPBACK))
830 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700832 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (idev->dead) {
834 err = -ENODEV; /*XXX*/
835 goto out2;
836 }
837
Brian Haley56d417b2009-06-01 03:07:33 -0700838 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700839 err = -EACCES;
840 goto out2;
841 }
842
stephen hemminger5c578aed2010-03-17 20:31:11 +0000843 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900846 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 ADBG(("ipv6_add_addr: already assigned\n"));
848 err = -EEXIST;
849 goto out;
850 }
851
Ingo Oeser322f74a2006-03-20 23:01:47 -0800852 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 if (ifa == NULL) {
855 ADBG(("ipv6_add_addr: malloc failed\n"));
856 err = -ENOBUFS;
857 goto out;
858 }
859
David S. Miller8f031512011-12-06 16:48:14 -0500860 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (IS_ERR(rt)) {
862 err = PTR_ERR(rt);
863 goto out;
864 }
865
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000866 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200867 if (peer_addr)
868 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700871 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200872 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
873 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000874 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 ifa->scope = scope;
876 ifa->prefix_len = pfxlen;
877 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200878 ifa->valid_lft = valid_lft;
879 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000881 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Keir Fraser57f5f542006-08-29 02:43:49 -0700883 ifa->rt = rt;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 ifa->idev = idev;
886 in6_dev_hold(idev);
887 /* For caller */
888 in6_ifa_hold(ifa);
889
890 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000891 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
stephen hemminger5c578aed2010-03-17 20:31:11 +0000893 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000894 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 write_lock(&idev->lock);
897 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700898 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900#ifdef CONFIG_IPV6_PRIVACY
901 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000902 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 in6_ifa_hold(ifa);
904 }
905#endif
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 in6_ifa_hold(ifa);
908 write_unlock(&idev->lock);
909out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700910 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700912 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800913 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 else {
915 kfree(ifa);
916 ifa = ERR_PTR(err);
917 }
918
919 return ifa;
920out:
stephen hemminger5c578aed2010-03-17 20:31:11 +0000921 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 goto out2;
923}
924
925/* This function wants to get referenced ifp and releases it before return */
926
927static void ipv6_del_addr(struct inet6_ifaddr *ifp)
928{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000929 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700931 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 int deleted = 0, onlink = 0;
933 unsigned long expires = jiffies;
934
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700935 spin_lock_bh(&ifp->state_lock);
936 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700937 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700938 spin_unlock_bh(&ifp->state_lock);
939
940 if (state == INET6_IFADDR_STATE_DEAD)
941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
stephen hemminger5c578aed2010-03-17 20:31:11 +0000943 spin_lock_bh(&addrconf_hash_lock);
944 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000945 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 write_lock_bh(&idev->lock);
948#ifdef CONFIG_IPV6_PRIVACY
949 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000950 list_del(&ifp->tmp_list);
951 if (ifp->ifpub) {
952 in6_ifa_put(ifp->ifpub);
953 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000955 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957#endif
958
stephen hemminger502a2ff2010-03-17 20:31:13 +0000959 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000961 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
965 break;
966 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800967 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 } else if (ifp->flags & IFA_F_PERMANENT) {
969 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
970 ifp->prefix_len)) {
971 if (ifa->flags & IFA_F_PERMANENT) {
972 onlink = 1;
973 if (deleted)
974 break;
975 } else {
976 unsigned long lifetime;
977
978 if (!onlink)
979 onlink = -1;
980
981 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900982
983 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
984 /*
985 * Note: Because this address is
986 * not permanent, lifetime <
987 * LONG_MAX / HZ here.
988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (time_before(expires,
990 ifa->tstamp + lifetime * HZ))
991 expires = ifa->tstamp + lifetime * HZ;
992 spin_unlock(&ifa->lock);
993 }
994 }
995 }
996 }
997 write_unlock_bh(&idev->lock);
998
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200999 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 ipv6_ifa_notify(RTM_DELADDR, ifp);
1002
Cong Wangf88c91d2013-04-14 23:18:43 +08001003 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /*
1006 * Purge or update corresponding prefix
1007 *
1008 * 1) we don't purge prefix here if address was not permanent.
1009 * prefix is managed by its own lifetime.
1010 * 2) if there're no addresses, delete prefix.
1011 * 3) if there're still other permanent address(es),
1012 * corresponding prefix is still permanent.
1013 * 4) otherwise, update prefix lifetime to the
1014 * longest valid lifetime among the corresponding
1015 * addresses on the device.
1016 * Note: subsequent RA will update lifetime.
1017 *
1018 * --yoshfuji
1019 */
1020 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1021 struct in6_addr prefix;
1022 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001024 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001025
Romain Kuntz21caa662013-01-09 21:06:03 +00001026 rt = addrconf_get_prefix_route(&prefix,
1027 ifp->prefix_len,
1028 ifp->idev->dev,
1029 0, RTF_GATEWAY | RTF_DEFAULT);
1030
1031 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001033 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 rt = NULL;
1035 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001036 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001039 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041
Daniel Walterc3968a82011-04-13 21:10:57 +00001042 /* clean up prefsrc entries */
1043 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001044out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 in6_ifa_put(ifp);
1046}
1047
1048#ifdef CONFIG_IPV6_PRIVACY
1049static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1050{
1051 struct inet6_dev *idev = ifp->idev;
1052 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001053 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001054 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 int tmp_plen;
1056 int ret = 0;
1057 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001058 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001059 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 write_lock(&idev->lock);
1062 if (ift) {
1063 spin_lock_bh(&ift->lock);
1064 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1065 spin_unlock_bh(&ift->lock);
1066 tmpaddr = &addr;
1067 } else {
1068 tmpaddr = NULL;
1069 }
1070retry:
1071 in6_dev_hold(idev);
1072 if (idev->cnf.use_tempaddr <= 0) {
1073 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001074 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 in6_dev_put(idev);
1076 ret = -1;
1077 goto out;
1078 }
1079 spin_lock_bh(&ifp->lock);
1080 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1081 idev->cnf.use_tempaddr = -1; /*XXX*/
1082 spin_unlock_bh(&ifp->lock);
1083 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001084 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1085 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 in6_dev_put(idev);
1087 ret = -1;
1088 goto out;
1089 }
1090 in6_ifa_hold(ifp);
1091 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001092 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001094 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 tmp_valid_lft = min_t(__u32,
1096 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001097 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001098 tmp_prefered_lft = min_t(__u32,
1099 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001100 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001101 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 tmp_plen = ifp->prefix_len;
1103 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 tmp_tstamp = ifp->tstamp;
1105 spin_unlock_bh(&ifp->lock);
1106
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001107 regen_advance = idev->cnf.regen_max_retry *
1108 idev->cnf.dad_transmits *
1109 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001111
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001112 /* A temporary address is created only if this calculated Preferred
1113 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1114 * an implementation must not create a temporary address with a zero
1115 * Preferred Lifetime.
1116 */
1117 if (tmp_prefered_lft <= regen_advance) {
1118 in6_ifa_put(ifp);
1119 in6_dev_put(idev);
1120 ret = -1;
1121 goto out;
1122 }
1123
Neil Horman95c385b2007-04-25 17:08:10 -07001124 addr_flags = IFA_F_TEMPORARY;
1125 /* set in addrconf_prefix_rcv() */
1126 if (ifp->flags & IFA_F_OPTIMISTIC)
1127 addr_flags |= IFA_F_OPTIMISTIC;
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001130 ipv6_count_addresses(idev) < max_addresses ?
Jiri Pirko3f8f5292013-08-01 10:41:27 +02001131 ipv6_add_addr(idev, &addr, NULL, tmp_plen,
Jiri Benc8a226b22013-08-01 10:41:28 +02001132 ipv6_addr_scope(&addr), addr_flags,
1133 tmp_valid_lft, tmp_prefered_lft) : NULL;
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00001134 if (IS_ERR_OR_NULL(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 in6_ifa_put(ifp);
1136 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001137 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 tmpaddr = &addr;
1139 write_lock(&idev->lock);
1140 goto retry;
1141 }
1142
1143 spin_lock_bh(&ift->lock);
1144 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001145 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 ift->tstamp = tmp_tstamp;
1147 spin_unlock_bh(&ift->lock);
1148
David S. Millercf22f9a2012-04-14 21:37:40 -04001149 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 in6_ifa_put(ift);
1151 in6_dev_put(idev);
1152out:
1153 return ret;
1154}
1155#endif
1156
1157/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001158 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001160enum {
1161 IPV6_SADDR_RULE_INIT = 0,
1162 IPV6_SADDR_RULE_LOCAL,
1163 IPV6_SADDR_RULE_SCOPE,
1164 IPV6_SADDR_RULE_PREFERRED,
1165#ifdef CONFIG_IPV6_MIP6
1166 IPV6_SADDR_RULE_HOA,
1167#endif
1168 IPV6_SADDR_RULE_OIF,
1169 IPV6_SADDR_RULE_LABEL,
1170#ifdef CONFIG_IPV6_PRIVACY
1171 IPV6_SADDR_RULE_PRIVACY,
1172#endif
1173 IPV6_SADDR_RULE_ORCHID,
1174 IPV6_SADDR_RULE_PREFIX,
1175 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001176};
1177
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001178struct ipv6_saddr_score {
1179 int rule;
1180 int addr_type;
1181 struct inet6_ifaddr *ifa;
1182 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1183 int scopedist;
1184 int matchlen;
1185};
1186
1187struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001188 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001189 int ifindex;
1190 int scope;
1191 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001192 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001193};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001194
Dave Jonesb6f99a22007-03-22 12:27:49 -07001195static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001197 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001198 return 1;
1199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Benjamin Thery3de23252008-05-28 14:51:24 +02001202static int ipv6_get_saddr_eval(struct net *net,
1203 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001204 struct ipv6_saddr_dst *dst,
1205 int i)
1206{
1207 int ret;
1208
1209 if (i <= score->rule) {
1210 switch (i) {
1211 case IPV6_SADDR_RULE_SCOPE:
1212 ret = score->scopedist;
1213 break;
1214 case IPV6_SADDR_RULE_PREFIX:
1215 ret = score->matchlen;
1216 break;
1217 default:
1218 ret = !!test_bit(i, score->scorebits);
1219 }
1220 goto out;
1221 }
1222
1223 switch (i) {
1224 case IPV6_SADDR_RULE_INIT:
1225 /* Rule 0: remember if hiscore is not ready yet */
1226 ret = !!score->ifa;
1227 break;
1228 case IPV6_SADDR_RULE_LOCAL:
1229 /* Rule 1: Prefer same address */
1230 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1231 break;
1232 case IPV6_SADDR_RULE_SCOPE:
1233 /* Rule 2: Prefer appropriate scope
1234 *
1235 * ret
1236 * ^
1237 * -1 | d 15
1238 * ---+--+-+---> scope
1239 * |
1240 * | d is scope of the destination.
1241 * B-d | \
1242 * | \ <- smaller scope is better if
1243 * B-15 | \ if scope is enough for destinaion.
1244 * | ret = B - scope (-1 <= scope >= d <= 15).
1245 * d-C-1 | /
1246 * |/ <- greater is better
1247 * -C / if scope is not enough for destination.
1248 * /| ret = scope - C (-1 <= d < scope <= 15).
1249 *
1250 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1251 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1252 * Assume B = 0 and we get C > 29.
1253 */
1254 ret = __ipv6_addr_src_scope(score->addr_type);
1255 if (ret >= dst->scope)
1256 ret = -ret;
1257 else
1258 ret -= 128; /* 30 is enough */
1259 score->scopedist = ret;
1260 break;
1261 case IPV6_SADDR_RULE_PREFERRED:
1262 /* Rule 3: Avoid deprecated and optimistic addresses */
1263 ret = ipv6_saddr_preferred(score->addr_type) ||
1264 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1265 break;
1266#ifdef CONFIG_IPV6_MIP6
1267 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001268 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001269 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001270 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1271 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001272 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001273 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001274#endif
1275 case IPV6_SADDR_RULE_OIF:
1276 /* Rule 5: Prefer outgoing interface */
1277 ret = (!dst->ifindex ||
1278 dst->ifindex == score->ifa->idev->dev->ifindex);
1279 break;
1280 case IPV6_SADDR_RULE_LABEL:
1281 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001282 ret = ipv6_addr_label(net,
1283 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001284 score->ifa->idev->dev->ifindex) == dst->label;
1285 break;
1286#ifdef CONFIG_IPV6_PRIVACY
1287 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001288 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001289 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001290 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001291 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001292 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1293 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1294 score->ifa->idev->cnf.use_tempaddr >= 2;
1295 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001296 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001297 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001298#endif
1299 case IPV6_SADDR_RULE_ORCHID:
1300 /* Rule 8-: Prefer ORCHID vs ORCHID or
1301 * non-ORCHID vs non-ORCHID
1302 */
1303 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1304 ipv6_addr_orchid(dst->addr));
1305 break;
1306 case IPV6_SADDR_RULE_PREFIX:
1307 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001308 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1309 if (ret > score->ifa->prefix_len)
1310 ret = score->ifa->prefix_len;
1311 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001312 break;
1313 default:
1314 ret = 0;
1315 }
1316
1317 if (ret)
1318 __set_bit(i, score->scorebits);
1319 score->rule = i;
1320out:
1321 return ret;
1322}
1323
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001324int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001325 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001326 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001328 struct ipv6_saddr_score scores[2],
1329 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001330 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001331 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001332 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001334 dst_type = __ipv6_addr_type(daddr);
1335 dst.addr = daddr;
1336 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1337 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001338 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001339 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001340
1341 hiscore->rule = -1;
1342 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001344 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001345
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001346 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001347 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001348
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001349 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001350 * - multicast and link-local destination address,
1351 * the set of candidate source address MUST only
1352 * include addresses assigned to interfaces
1353 * belonging to the same link as the outgoing
1354 * interface.
1355 * (- For site-local destination addresses, the
1356 * set of candidate source addresses MUST only
1357 * include addresses assigned to interfaces
1358 * belonging to the same site as the outgoing
1359 * interface.)
1360 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001361 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1362 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1363 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001364 continue;
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001367 if (!idev)
1368 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001370 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001371 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001372 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001374 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001375 * - Tentative Address (RFC2462 section 5.4)
1376 * - A tentative address is not considered
1377 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001378 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001379 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001380 * - In any case, anycast addresses, multicast
1381 * addresses, and the unspecified address MUST
1382 * NOT be included in a candidate set.
1383 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001384 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1385 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001386 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001387
1388 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1389
1390 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1391 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001392 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001393 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001394 "assigned as unicast address on %s",
1395 dev->name);
1396 continue;
1397 }
1398
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001399 score->rule = -1;
1400 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001401
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001402 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1403 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001404
Benjamin Thery3de23252008-05-28 14:51:24 +02001405 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1406 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001407
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001408 if (minihiscore > miniscore) {
1409 if (i == IPV6_SADDR_RULE_SCOPE &&
1410 score->scopedist > 0) {
1411 /*
1412 * special case:
1413 * each remaining entry
1414 * has too small (not enough)
1415 * scope, because ifa entries
1416 * are sorted by their scope
1417 * values.
1418 */
1419 goto try_nextdev;
1420 }
1421 break;
1422 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001423 if (hiscore->ifa)
1424 in6_ifa_put(hiscore->ifa);
1425
1426 in6_ifa_hold(score->ifa);
1427
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001428 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001429
1430 /* restore our iterator */
1431 score->ifa = hiscore->ifa;
1432
1433 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001436 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001437try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001438 read_unlock_bh(&idev->lock);
1439 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001440 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001442 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001443 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001444
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001445 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001446 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001449EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Amerigo Wang89657792013-06-29 21:30:49 +08001451int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1452 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001453{
1454 struct inet6_ifaddr *ifp;
1455 int err = -EADDRNOTAVAIL;
1456
1457 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1458 if (ifp->scope == IFA_LINK &&
1459 !(ifp->flags & banned_flags)) {
1460 *addr = ifp->addr;
1461 err = 0;
1462 break;
1463 }
1464 }
1465 return err;
1466}
1467
Neil Horman95c385b2007-04-25 17:08:10 -07001468int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1469 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 struct inet6_dev *idev;
1472 int err = -EADDRNOTAVAIL;
1473
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001474 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001475 idev = __in6_dev_get(dev);
1476 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001478 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 read_unlock_bh(&idev->lock);
1480 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001481 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return err;
1483}
1484
1485static int ipv6_count_addresses(struct inet6_dev *idev)
1486{
1487 int cnt = 0;
1488 struct inet6_ifaddr *ifp;
1489
1490 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001491 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 cnt++;
1493 read_unlock_bh(&idev->lock);
1494 return cnt;
1495}
1496
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001497int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001498 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001500 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001501 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
stephen hemminger5c578aed2010-03-17 20:31:11 +00001503 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001504 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001505 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001506 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001508 !(ifp->flags&IFA_F_TENTATIVE) &&
1509 (dev == NULL || ifp->idev->dev == dev ||
1510 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1511 rcu_read_unlock_bh();
1512 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001515
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001516 rcu_read_unlock_bh();
1517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001519EXPORT_SYMBOL(ipv6_chk_addr);
1520
David S. Miller3e81c6d2010-03-20 16:18:00 -07001521static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1522 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001524 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001525 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Sasha Levinb67bfe02013-02-27 17:06:00 -08001527 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001528 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001529 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (ipv6_addr_equal(&ifp->addr, addr)) {
1531 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001532 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001535 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001538int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001539{
1540 struct inet6_dev *idev;
1541 struct inet6_ifaddr *ifa;
1542 int onlink;
1543
1544 onlink = 0;
1545 rcu_read_lock();
1546 idev = __in6_dev_get(dev);
1547 if (idev) {
1548 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001549 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001550 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1551 ifa->prefix_len);
1552 if (onlink)
1553 break;
1554 }
1555 read_unlock_bh(&idev->lock);
1556 }
1557 rcu_read_unlock();
1558 return onlink;
1559}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001560EXPORT_SYMBOL(ipv6_chk_prefix);
1561
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001562struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001563 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
David S. Millerb79d1d52010-03-25 21:39:21 -07001565 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001566 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
stephen hemminger5c578aed2010-03-17 20:31:11 +00001568 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001569 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001570 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001571 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (ipv6_addr_equal(&ifp->addr, addr)) {
1573 if (dev == NULL || ifp->idev->dev == dev ||
1574 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001575 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 in6_ifa_hold(ifp);
1577 break;
1578 }
1579 }
1580 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001581 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
David S. Millerb79d1d52010-03-25 21:39:21 -07001583 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586/* Gets referenced address, destroys ifaddr */
1587
Brian Haleycc411d02009-09-09 14:41:32 +00001588static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (ifp->flags&IFA_F_PERMANENT) {
1591 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001592 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001594 if (dad_failed)
1595 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001597 if (dad_failed)
1598 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 in6_ifa_put(ifp);
1600#ifdef CONFIG_IPV6_PRIVACY
1601 } else if (ifp->flags&IFA_F_TEMPORARY) {
1602 struct inet6_ifaddr *ifpub;
1603 spin_lock_bh(&ifp->lock);
1604 ifpub = ifp->ifpub;
1605 if (ifpub) {
1606 in6_ifa_hold(ifpub);
1607 spin_unlock_bh(&ifp->lock);
1608 ipv6_create_tempaddr(ifpub, ifp);
1609 in6_ifa_put(ifpub);
1610 } else {
1611 spin_unlock_bh(&ifp->lock);
1612 }
1613 ipv6_del_addr(ifp);
1614#endif
1615 } else
1616 ipv6_del_addr(ifp);
1617}
1618
Herbert Xuf2344a12010-05-18 15:55:27 -07001619static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1620{
1621 int err = -ENOENT;
1622
1623 spin_lock(&ifp->state_lock);
1624 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1625 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1626 err = 0;
1627 }
1628 spin_unlock(&ifp->state_lock);
1629
1630 return err;
1631}
1632
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001633void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1634{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001635 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001636
Ursula Braun853dc2e2010-10-24 23:06:43 +00001637 if (addrconf_dad_end(ifp)) {
1638 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001639 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001640 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001641
Joe Perchese87cc472012-05-13 21:56:26 +00001642 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1643 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001644
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001645 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1646 struct in6_addr addr;
1647
1648 addr.s6_addr32[0] = htonl(0xfe800000);
1649 addr.s6_addr32[1] = 0;
1650
1651 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1652 ipv6_addr_equal(&ifp->addr, &addr)) {
1653 /* DAD failed for link-local based on MAC address */
1654 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001655
Joe Perchesf3213832012-05-15 14:11:53 +00001656 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001657 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001658 }
1659 }
1660
Brian Haleycc411d02009-09-09 14:41:32 +00001661 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664/* Join to solicited addr multicast group. */
1665
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001666void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct in6_addr maddr;
1669
1670 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1671 return;
1672
1673 addrconf_addr_solict_mult(addr, &maddr);
1674 ipv6_dev_mc_inc(dev, &maddr);
1675}
1676
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001677void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 struct in6_addr maddr;
1680
1681 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1682 return;
1683
1684 addrconf_addr_solict_mult(addr, &maddr);
1685 __ipv6_dev_mc_dec(idev, &maddr);
1686}
1687
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001688static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
1690 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001691 if (ifp->prefix_len == 127) /* RFC 6164 */
1692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1694 if (ipv6_addr_any(&addr))
1695 return;
1696 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1697}
1698
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001699static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
1701 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001702 if (ifp->prefix_len == 127) /* RFC 6164 */
1703 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1705 if (ipv6_addr_any(&addr))
1706 return;
1707 __ipv6_dev_ac_dec(ifp->idev, &addr);
1708}
1709
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001710static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1711{
1712 if (dev->addr_len != ETH_ALEN)
1713 return -1;
1714 memcpy(eui, dev->dev_addr, 3);
1715 memcpy(eui + 5, dev->dev_addr + 3, 3);
1716
1717 /*
1718 * The zSeries OSA network cards can be shared among various
1719 * OS instances, but the OSA cards have only one MAC address.
1720 * This leads to duplicate address conflicts in conjunction
1721 * with IPv6 if more than one instance uses the same card.
1722 *
1723 * The driver for these cards can deliver a unique 16-bit
1724 * identifier for each instance sharing the same card. It is
1725 * placed instead of 0xFFFE in the interface identifier. The
1726 * "u" bit of the interface identifier is not inverted in this
1727 * case. Hence the resulting interface identifier has local
1728 * scope according to RFC2373.
1729 */
1730 if (dev->dev_id) {
1731 eui[3] = (dev->dev_id >> 8) & 0xFF;
1732 eui[4] = dev->dev_id & 0xFF;
1733 } else {
1734 eui[3] = 0xFF;
1735 eui[4] = 0xFE;
1736 eui[0] ^= 2;
1737 }
1738 return 0;
1739}
1740
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001741static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1742{
1743 if (dev->addr_len != IEEE802154_ADDR_LEN)
1744 return -1;
1745 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001746 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001747 return 0;
1748}
1749
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001750static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1751{
1752 union fwnet_hwaddr *ha;
1753
1754 if (dev->addr_len != FWNET_ALEN)
1755 return -1;
1756
1757 ha = (union fwnet_hwaddr *)dev->dev_addr;
1758
1759 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1760 eui[0] ^= 2;
1761 return 0;
1762}
1763
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001764static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1765{
1766 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1767 if (dev->addr_len != ARCNET_ALEN)
1768 return -1;
1769 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001770 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001771 return 0;
1772}
1773
1774static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1775{
1776 if (dev->addr_len != INFINIBAND_ALEN)
1777 return -1;
1778 memcpy(eui, dev->dev_addr + 12, 8);
1779 eui[0] |= 2;
1780 return 0;
1781}
1782
stephen hemmingerc61393e2010-10-04 20:17:53 +00001783static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001784{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001785 if (addr == 0)
1786 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001787 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1788 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1789 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1790 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1791 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1792 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1793 eui[1] = 0;
1794 eui[2] = 0x5E;
1795 eui[3] = 0xFE;
1796 memcpy(eui + 4, &addr, 4);
1797 return 0;
1798}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001799
1800static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1801{
1802 if (dev->priv_flags & IFF_ISATAP)
1803 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1804 return -1;
1805}
1806
stephen hemmingeraee80b52011-06-08 10:44:30 +00001807static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1808{
1809 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1810}
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1813{
1814 switch (dev->type) {
1815 case ARPHRD_ETHER:
1816 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001817 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001819 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001821 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001822 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001823 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001824 case ARPHRD_IPGRE:
1825 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001826 case ARPHRD_IEEE802154:
1827 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001828 case ARPHRD_IEEE1394:
1829 return addrconf_ifid_ieee1394(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 return -1;
1832}
1833
1834static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1835{
1836 int err = -1;
1837 struct inet6_ifaddr *ifp;
1838
1839 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001840 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1842 memcpy(eui, ifp->addr.s6_addr+8, 8);
1843 err = 0;
1844 break;
1845 }
1846 }
1847 read_unlock_bh(&idev->lock);
1848 return err;
1849}
1850
1851#ifdef CONFIG_IPV6_PRIVACY
1852/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001853static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001856 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 /*
1860 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1861 * check if generated address is not inappropriate
1862 *
1863 * - Reserved subnet anycast (RFC 2526)
1864 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001865 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 * 00-00-5E-FE-xx-xx-xx-xx
1867 * - value 0
1868 * - XXX: already assigned to an address on the device
1869 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001870 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1872 (idev->rndid[7]&0x80))
1873 goto regen;
1874 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1875 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1876 goto regen;
1877 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1878 goto regen;
1879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
1882static void ipv6_regen_rndid(unsigned long data)
1883{
1884 struct inet6_dev *idev = (struct inet6_dev *) data;
1885 unsigned long expires;
1886
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001887 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 write_lock_bh(&idev->lock);
1889
1890 if (idev->dead)
1891 goto out;
1892
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001893 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001896 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001897 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1898 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001900 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1901 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 goto out;
1903 }
1904
1905 if (!mod_timer(&idev->regen_timer, expires))
1906 in6_dev_hold(idev);
1907
1908out:
1909 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001910 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 in6_dev_put(idev);
1912}
1913
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001914static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001915{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001917 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919#endif
1920
1921/*
1922 * Add prefix route.
1923 */
1924
1925static void
1926addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001927 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Thomas Graf86872cb2006-08-22 00:01:08 -07001929 struct fib6_config cfg = {
1930 .fc_table = RT6_TABLE_PREFIX,
1931 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1932 .fc_ifindex = dev->ifindex,
1933 .fc_expires = expires,
1934 .fc_dst_len = plen,
1935 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001936 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001937 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001938 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001940 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942 /* Prevent useless cloning on PtP SIT.
1943 This thing is done here expecting that the whole
1944 class of non-broadcast devices need not cloning.
1945 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001946#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001947 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1948 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001949#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Thomas Graf86872cb2006-08-22 00:01:08 -07001951 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001954
1955static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1956 int plen,
1957 const struct net_device *dev,
1958 u32 flags, u32 noflags)
1959{
1960 struct fib6_node *fn;
1961 struct rt6_info *rt = NULL;
1962 struct fib6_table *table;
1963
1964 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1965 if (table == NULL)
1966 return NULL;
1967
Li RongQing5744dd92012-09-11 21:59:01 +00001968 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001969 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1970 if (!fn)
1971 goto out;
1972 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001973 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001974 continue;
1975 if ((rt->rt6i_flags & flags) != flags)
1976 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001977 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001978 continue;
1979 dst_hold(&rt->dst);
1980 break;
1981 }
1982out:
Li RongQing5744dd92012-09-11 21:59:01 +00001983 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001984 return rt;
1985}
1986
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988/* Create "default" multicast route to the interface */
1989
1990static void addrconf_add_mroute(struct net_device *dev)
1991{
Thomas Graf86872cb2006-08-22 00:01:08 -07001992 struct fib6_config cfg = {
1993 .fc_table = RT6_TABLE_LOCAL,
1994 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1995 .fc_ifindex = dev->ifindex,
1996 .fc_dst_len = 8,
1997 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001998 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001999 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Thomas Graf86872cb2006-08-22 00:01:08 -07002001 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2002
2003 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004}
2005
Amerigo Wang07a93622012-10-29 16:23:10 +00002006#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007static void sit_route_add(struct net_device *dev)
2008{
Thomas Graf86872cb2006-08-22 00:01:08 -07002009 struct fib6_config cfg = {
2010 .fc_table = RT6_TABLE_MAIN,
2011 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2012 .fc_ifindex = dev->ifindex,
2013 .fc_dst_len = 96,
2014 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002015 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002016 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002019 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002021#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2024{
2025 struct inet6_dev *idev;
2026
2027 ASSERT_RTNL();
2028
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002029 idev = ipv6_find_idev(dev);
2030 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002031 return ERR_PTR(-ENOBUFS);
2032
2033 if (idev->cnf.disable_ipv6)
2034 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002037 if (!(dev->flags & IFF_LOOPBACK))
2038 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return idev;
2041}
2042
Neil Hormane6bff992012-01-04 10:49:15 +00002043void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 struct prefix_info *pinfo;
2046 __u32 valid_lft;
2047 __u32 prefered_lft;
2048 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002050 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (len < sizeof(struct prefix_info)) {
2055 ADBG(("addrconf: prefix option too short\n"));
2056 return;
2057 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /*
2060 * Validation checks ([ADDRCONF], page 19)
2061 */
2062
2063 addr_type = ipv6_addr_type(&pinfo->prefix);
2064
2065 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2066 return;
2067
2068 valid_lft = ntohl(pinfo->valid);
2069 prefered_lft = ntohl(pinfo->prefered);
2070
2071 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002072 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return;
2074 }
2075
2076 in6_dev = in6_dev_get(dev);
2077
2078 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002079 net_dbg_ratelimited("addrconf: device %s not configured\n",
2080 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return;
2082 }
2083
2084 /*
2085 * Two things going on here:
2086 * 1) Add routes for on-link prefixes
2087 * 2) Configure prefixes with the auto flag set
2088 */
2089
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002090 if (pinfo->onlink) {
2091 struct rt6_info *rt;
2092 unsigned long rt_expires;
2093
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002094 /* Avoid arithmetic overflow. Really, we could
2095 * save rt_expires in seconds, likely valid_lft,
2096 * but it would require division in fib gc, that it
2097 * not good.
2098 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002099 if (HZ > USER_HZ)
2100 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2101 else
2102 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002103
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002104 if (addrconf_finite_timeout(rt_expires))
2105 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002107 rt = addrconf_get_prefix_route(&pinfo->prefix,
2108 pinfo->prefix_len,
2109 dev,
2110 RTF_ADDRCONF | RTF_PREFIX_RT,
2111 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002113 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002114 /* Autoconf prefix route */
2115 if (valid_lft == 0) {
2116 ip6_del_rt(rt);
2117 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002118 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002119 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002120 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002121 } else {
Gao feng1716a962012-04-06 00:13:10 +00002122 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002125 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002126 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2127 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002128 /* not infinity */
2129 flags |= RTF_EXPIRES;
2130 expires = jiffies_to_clock_t(rt_expires);
2131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002133 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002135 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137
2138 /* Try to figure out our local address for this prefix */
2139
2140 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002141 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 struct in6_addr addr;
2143 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002144 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 if (pinfo->prefix_len == 64) {
2147 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002148
2149 if (!ipv6_addr_any(&in6_dev->token)) {
2150 read_lock_bh(&in6_dev->lock);
2151 memcpy(addr.s6_addr + 8,
2152 in6_dev->token.s6_addr + 8, 8);
2153 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002154 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002155 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2156 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 in6_dev_put(in6_dev);
2158 return;
2159 }
2160 goto ok;
2161 }
Joe Perchese87cc472012-05-13 21:56:26 +00002162 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2163 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 in6_dev_put(in6_dev);
2165 return;
2166
2167ok:
2168
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002169 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 if (ifp == NULL && valid_lft) {
2172 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002173 u32 addr_flags = 0;
2174
2175#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2176 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002177 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002178 addr_flags = IFA_F_OPTIMISTIC;
2179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* Do not allow to create too much of autoconfigured
2182 * addresses; this would be too easy way to crash kernel.
2183 */
2184 if (!max_addresses ||
2185 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002186 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2187 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002188 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002189 addr_flags, valid_lft,
2190 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002192 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 in6_dev_put(in6_dev);
2194 return;
2195 }
2196
Jiri Benc8a226b22013-08-01 10:41:28 +02002197 update_lft = 0;
2198 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002200 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002201 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203
2204 if (ifp) {
2205 int flags;
2206 unsigned long now;
2207#ifdef CONFIG_IPV6_PRIVACY
2208 struct inet6_ifaddr *ift;
2209#endif
2210 u32 stored_lft;
2211
2212 /* update lifetime (RFC2462 5.5.3 e) */
2213 spin_lock(&ifp->lock);
2214 now = jiffies;
2215 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2216 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2217 else
2218 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002219 if (!update_lft && !create && stored_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 if (valid_lft > MIN_VALID_LIFETIME ||
2221 valid_lft > stored_lft)
2222 update_lft = 1;
2223 else if (stored_lft <= MIN_VALID_LIFETIME) {
2224 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002225 /*
2226 * RFC 4862 Section 5.5.3e:
2227 * "Note that the preferred lifetime of
2228 * the corresponding address is always
2229 * reset to the Preferred Lifetime in
2230 * the received Prefix Information
2231 * option, regardless of whether the
2232 * valid lifetime is also reset or
2233 * ignored."
2234 *
2235 * So if the preferred lifetime in
2236 * this advertisement is different
2237 * than what we have stored, but the
2238 * valid lifetime is invalid, just
2239 * reset prefered_lft.
2240 *
2241 * We must set the valid lifetime
2242 * to the stored lifetime since we'll
2243 * be updating the timestamp below,
2244 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002245 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002246 */
2247 if (prefered_lft != ifp->prefered_lft) {
2248 valid_lft = stored_lft;
2249 update_lft = 1;
2250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 } else {
2252 valid_lft = MIN_VALID_LIFETIME;
2253 if (valid_lft < prefered_lft)
2254 prefered_lft = valid_lft;
2255 update_lft = 1;
2256 }
2257 }
2258
2259 if (update_lft) {
2260 ifp->valid_lft = valid_lft;
2261 ifp->prefered_lft = prefered_lft;
2262 ifp->tstamp = now;
2263 flags = ifp->flags;
2264 ifp->flags &= ~IFA_F_DEPRECATED;
2265 spin_unlock(&ifp->lock);
2266
2267 if (!(flags&IFA_F_TENTATIVE))
2268 ipv6_ifa_notify(0, ifp);
2269 } else
2270 spin_unlock(&ifp->lock);
2271
2272#ifdef CONFIG_IPV6_PRIVACY
2273 read_lock_bh(&in6_dev->lock);
2274 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002275 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2276 tmp_list) {
2277 int age, max_valid, max_prefered;
2278
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002279 if (ifp != ift->ifpub)
2280 continue;
2281
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002282 /*
2283 * RFC 4941 section 3.3:
2284 * If a received option will extend the lifetime
2285 * of a public address, the lifetimes of
2286 * temporary addresses should be extended,
2287 * subject to the overall constraint that no
2288 * temporary addresses should ever remain
2289 * "valid" or "preferred" for a time longer than
2290 * (TEMP_VALID_LIFETIME) or
2291 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2292 * respectively.
2293 */
2294 age = (now - ift->cstamp) / HZ;
2295 max_valid = in6_dev->cnf.temp_valid_lft - age;
2296 if (max_valid < 0)
2297 max_valid = 0;
2298
2299 max_prefered = in6_dev->cnf.temp_prefered_lft -
2300 in6_dev->cnf.max_desync_factor -
2301 age;
2302 if (max_prefered < 0)
2303 max_prefered = 0;
2304
2305 if (valid_lft > max_valid)
2306 valid_lft = max_valid;
2307
2308 if (prefered_lft > max_prefered)
2309 prefered_lft = max_prefered;
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 spin_lock(&ift->lock);
2312 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002313 ift->valid_lft = valid_lft;
2314 ift->prefered_lft = prefered_lft;
2315 ift->tstamp = now;
2316 if (prefered_lft > 0)
2317 ift->flags &= ~IFA_F_DEPRECATED;
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 spin_unlock(&ift->lock);
2320 if (!(flags&IFA_F_TENTATIVE))
2321 ipv6_ifa_notify(0, ift);
2322 }
2323
Glenn Wursteraed65502010-09-27 07:04:30 +00002324 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002326 * When a new public address is created as
2327 * described in [ADDRCONF], also create a new
2328 * temporary address. Also create a temporary
2329 * address if it's enabled but no temporary
2330 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002332 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 ipv6_create_tempaddr(ifp, NULL);
2334 } else {
2335 read_unlock_bh(&in6_dev->lock);
2336 }
2337#endif
2338 in6_ifa_put(ifp);
2339 addrconf_verify(0);
2340 }
2341 }
2342 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2343 in6_dev_put(in6_dev);
2344}
2345
2346/*
2347 * Set destination address.
2348 * Special case for SIT interfaces where we create a new "virtual"
2349 * device.
2350 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002351int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352{
2353 struct in6_ifreq ireq;
2354 struct net_device *dev;
2355 int err = -EINVAL;
2356
2357 rtnl_lock();
2358
2359 err = -EFAULT;
2360 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2361 goto err_exit;
2362
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002363 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 err = -ENODEV;
2366 if (dev == NULL)
2367 goto err_exit;
2368
Amerigo Wang07a93622012-10-29 16:23:10 +00002369#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002371 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 struct ip_tunnel_parm p;
2374
2375 err = -EADDRNOTAVAIL;
2376 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2377 goto err_exit;
2378
2379 memset(&p, 0, sizeof(p));
2380 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2381 p.iph.saddr = 0;
2382 p.iph.version = 4;
2383 p.iph.ihl = 5;
2384 p.iph.protocol = IPPROTO_IPV6;
2385 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002386 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002388 if (ops->ndo_do_ioctl) {
2389 mm_segment_t oldfs = get_fs();
2390
2391 set_fs(KERNEL_DS);
2392 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2393 set_fs(oldfs);
2394 } else
2395 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 if (err == 0) {
2398 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002399 dev = __dev_get_by_name(net, p.name);
2400 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 goto err_exit;
2402 err = dev_open(dev);
2403 }
2404 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407err_exit:
2408 rtnl_unlock();
2409 return err;
2410}
2411
2412/*
2413 * Manual configuration of address on an interface
2414 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002415static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002416 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002417 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002418 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
2420 struct inet6_ifaddr *ifp;
2421 struct inet6_dev *idev;
2422 struct net_device *dev;
2423 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002424 u32 flags;
2425 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002426 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002429
Thomas Graf24ef0da2008-05-28 16:54:22 +02002430 if (plen > 128)
2431 return -EINVAL;
2432
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002433 /* check the lifetime */
2434 if (!valid_lft || prefered_lft > valid_lft)
2435 return -EINVAL;
2436
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002437 dev = __dev_get_by_index(net, ifindex);
2438 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002440
Brian Haley64e724f2010-07-20 10:34:30 +00002441 idev = addrconf_add_dev(dev);
2442 if (IS_ERR(idev))
2443 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 scope = ipv6_addr_scope(pfx);
2446
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002447 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2448 if (addrconf_finite_timeout(timeout)) {
2449 expires = jiffies_to_clock_t(timeout * HZ);
2450 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002451 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002452 } else {
2453 expires = 0;
2454 flags = 0;
2455 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002456 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002457
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002458 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2459 if (addrconf_finite_timeout(timeout)) {
2460 if (timeout == 0)
2461 ifa_flags |= IFA_F_DEPRECATED;
2462 prefered_lft = timeout;
2463 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002464
Jiri Benc8a226b22013-08-01 10:41:28 +02002465 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2466 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002469 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002470 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002471 /*
2472 * Note that section 3.1 of RFC 4429 indicates
2473 * that the Optimistic flag should not be set for
2474 * manually configured addresses
2475 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002476 addrconf_dad_start(ifp);
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
2499 if ((idev = __in6_dev_get(dev)) == NULL)
2500 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,
2561 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002562 if (!IS_ERR(ifp)) {
2563 spin_lock_bh(&ifp->lock);
2564 ifp->flags &= ~IFA_F_TENTATIVE;
2565 spin_unlock_bh(&ifp->lock);
2566 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2567 in6_ifa_put(ifp);
2568 }
2569}
2570
Amerigo Wang07a93622012-10-29 16:23:10 +00002571#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572static void sit_add_v4_addrs(struct inet6_dev *idev)
2573{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 struct in6_addr addr;
2575 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002576 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 int scope;
2578
2579 ASSERT_RTNL();
2580
2581 memset(&addr, 0, sizeof(struct in6_addr));
2582 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2583
2584 if (idev->dev->flags&IFF_POINTOPOINT) {
2585 addr.s6_addr32[0] = htonl(0xfe800000);
2586 scope = IFA_LINK;
2587 } else {
2588 scope = IPV6_ADDR_COMPATv4;
2589 }
2590
2591 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002592 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 return;
2594 }
2595
Benjamin Thery6fda7352008-03-05 10:47:47 -08002596 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002597 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002599 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
2601 int flag = scope;
2602
2603 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2604 int plen;
2605
2606 addr.s6_addr32[3] = ifa->ifa_local;
2607
2608 if (ifa->ifa_scope == RT_SCOPE_LINK)
2609 continue;
2610 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2611 if (idev->dev->flags&IFF_POINTOPOINT)
2612 continue;
2613 flag |= IFA_HOST;
2614 }
2615 if (idev->dev->flags&IFF_POINTOPOINT)
2616 plen = 64;
2617 else
2618 plen = 96;
2619
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002620 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
2622 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002625#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
2627static void init_loopback(struct net_device *dev)
2628{
2629 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302630 struct net_device *sp_dev;
2631 struct inet6_ifaddr *sp_ifa;
2632 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 /* ::1 */
2635
2636 ASSERT_RTNL();
2637
2638 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002639 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 return;
2641 }
2642
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002643 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302644
2645 /* Add routes to other interface's IPv6 addresses */
2646 for_each_netdev(dev_net(dev), sp_dev) {
2647 if (!strcmp(sp_dev->name, dev->name))
2648 continue;
2649
2650 idev = __in6_dev_get(sp_dev);
2651 if (!idev)
2652 continue;
2653
2654 read_lock_bh(&idev->lock);
2655 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2656
2657 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2658 continue;
2659
Gao fenga881ae12013-06-16 11:14:30 +08002660 if (sp_ifa->rt)
2661 continue;
2662
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302663 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2664
2665 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002666 if (!IS_ERR(sp_rt)) {
2667 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302668 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002669 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302670 }
2671 read_unlock_bh(&idev->lock);
2672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673}
2674
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002675static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002677 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002678 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Neil Horman95c385b2007-04-25 17:08:10 -07002680#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2681 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002682 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002683 addr_flags |= IFA_F_OPTIMISTIC;
2684#endif
2685
2686
Jiri Benc8a226b22013-08-01 10:41:28 +02002687 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002689 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002690 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 in6_ifa_put(ifp);
2692 }
2693}
2694
2695static void addrconf_dev_config(struct net_device *dev)
2696{
2697 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002698 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700 ASSERT_RTNL();
2701
Herbert Xu74235a22007-06-14 13:02:55 -07002702 if ((dev->type != ARPHRD_ETHER) &&
2703 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002704 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002705 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002706 (dev->type != ARPHRD_IEEE802154) &&
2707 (dev->type != ARPHRD_IEEE1394)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002708 /* Alas, we support only Ethernet autoconfiguration. */
2709 return;
2710 }
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002713 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 return;
2715
2716 memset(&addr, 0, sizeof(struct in6_addr));
2717 addr.s6_addr32[0] = htonl(0xFE800000);
2718
2719 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2720 addrconf_add_linklocal(idev, &addr);
2721}
2722
Amerigo Wang07a93622012-10-29 16:23:10 +00002723#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724static void addrconf_sit_config(struct net_device *dev)
2725{
2726 struct inet6_dev *idev;
2727
2728 ASSERT_RTNL();
2729
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002730 /*
2731 * Configure the tunnel with one of our IPv4
2732 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 * our v4 addrs in the tunnel
2734 */
2735
2736 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002737 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 return;
2739 }
2740
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002741 if (dev->priv_flags & IFF_ISATAP) {
2742 struct in6_addr addr;
2743
2744 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2745 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2746 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2747 addrconf_add_linklocal(idev, &addr);
2748 return;
2749 }
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 sit_add_v4_addrs(idev);
2752
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002753 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002755 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 sit_route_add(dev);
2757}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002758#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Amerigo Wang07a93622012-10-29 16:23:10 +00002760#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002761static void addrconf_gre_config(struct net_device *dev)
2762{
2763 struct inet6_dev *idev;
2764 struct in6_addr addr;
2765
stephen hemmingeraee80b52011-06-08 10:44:30 +00002766 ASSERT_RTNL();
2767
2768 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002769 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002770 return;
2771 }
2772
2773 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2774 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2775
2776 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2777 addrconf_add_linklocal(idev, &addr);
2778}
2779#endif
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781static inline int
2782ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2783{
2784 struct in6_addr lladdr;
2785
Neil Horman95c385b2007-04-25 17:08:10 -07002786 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 addrconf_add_linklocal(idev, &lladdr);
2788 return 0;
2789 }
2790 return -1;
2791}
2792
2793static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2794{
2795 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002796 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 /* first try to inherit the link-local address from the link device */
2799 if (idev->dev->iflink &&
Benjamin Thery6fda7352008-03-05 10:47:47 -08002800 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 if (!ipv6_inherit_linklocal(idev, link_dev))
2802 return;
2803 }
2804 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002805 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (!ipv6_inherit_linklocal(idev, link_dev))
2807 return;
2808 }
Joe Perches91df42b2012-05-15 14:11:54 +00002809 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
2812/*
2813 * Autoconfigure tunnel with a link-local address so routing protocols,
2814 * DHCPv6, MLD etc. can be run over the virtual link
2815 */
2816
2817static void addrconf_ip6_tnl_config(struct net_device *dev)
2818{
2819 struct inet6_dev *idev;
2820
2821 ASSERT_RTNL();
2822
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002823 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002824 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002825 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return;
2827 }
2828 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829}
2830
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002831static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002832 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
Jiri Pirko351638e2013-05-28 01:30:21 +00002834 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002835 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002836 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002837 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002839 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002840 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002841 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002842 idev = ipv6_add_dev(dev);
2843 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002844 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002845 }
2846 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002849 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002850 if (dev->flags & IFF_SLAVE)
2851 break;
2852
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002853 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002854 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002855 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002856 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002857 dev->name);
2858 break;
2859 }
Kristian Slavov99081042006-02-08 16:10:53 -08002860
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002861 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2862 idev = ipv6_add_dev(dev);
2863
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002864 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002865 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002866 run_pending = 1;
2867 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002868 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002869 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002870 /* device is still not ready. */
2871 break;
2872 }
2873
2874 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002875 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002876 /* device is already configured. */
2877 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002878 idev->if_flags |= IF_READY;
2879 }
2880
Joe Perchesf3213832012-05-15 14:11:53 +00002881 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2882 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002883
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002884 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002885 }
2886
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002887 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002888#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 case ARPHRD_SIT:
2890 addrconf_sit_config(dev);
2891 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002892#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002893#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002894 case ARPHRD_IPGRE:
2895 addrconf_gre_config(dev);
2896 break;
2897#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 case ARPHRD_TUNNEL6:
2899 addrconf_ip6_tnl_config(dev);
2900 break;
2901 case ARPHRD_LOOPBACK:
2902 init_loopback(dev);
2903 break;
2904
2905 default:
2906 addrconf_dev_config(dev);
2907 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002908 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002911 if (run_pending)
2912 addrconf_dad_run(idev);
2913
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002914 /*
2915 * If the MTU changed during the interface down,
2916 * when the interface up, the changed MTU must be
2917 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002919 if (idev->cnf.mtu6 != dev->mtu &&
2920 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 rt6_mtu_change(dev, dev->mtu);
2922 idev->cnf.mtu6 = dev->mtu;
2923 }
2924 idev->tstamp = jiffies;
2925 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002926
2927 /*
2928 * If the changed mtu during down is lower than
2929 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 */
2931 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002932 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 }
2934 break;
2935
2936 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002937 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 rt6_mtu_change(dev, dev->mtu);
2939 idev->cnf.mtu6 = dev->mtu;
2940 break;
2941 }
2942
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002943 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2944 idev = ipv6_add_dev(dev);
2945 if (idev)
2946 break;
2947 }
2948
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002949 /*
2950 * MTU falled under IPV6_MIN_MTU.
2951 * Stop IPv6 on this interface.
2952 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 case NETDEV_DOWN:
2955 case NETDEV_UNREGISTER:
2956 /*
2957 * Remove all addresses from this interface.
2958 */
2959 addrconf_ifdown(dev, event != NETDEV_DOWN);
2960 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002964 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002965 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002966 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002967 err = snmp6_register_dev(idev);
2968 if (err)
2969 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002972
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002973 case NETDEV_PRE_TYPE_CHANGE:
2974 case NETDEV_POST_TYPE_CHANGE:
2975 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002976 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
2979 return NOTIFY_OK;
2980}
2981
2982/*
2983 * addrconf module should be notified of a device going up
2984 */
2985static struct notifier_block ipv6_dev_notf = {
2986 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987};
2988
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002989static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002990{
2991 struct inet6_dev *idev;
2992 ASSERT_RTNL();
2993
2994 idev = __in6_dev_get(dev);
2995
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002996 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002997 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002998 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002999 ipv6_mc_unmap(idev);
3000}
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002static int addrconf_ifdown(struct net_device *dev, int how)
3003{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003004 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003005 struct inet6_dev *idev;
3006 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08003007 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
3009 ASSERT_RTNL();
3010
David S. Miller73a8bd72011-01-23 23:27:15 -08003011 rt6_ifdown(net, dev);
3012 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014 idev = __in6_dev_get(dev);
3015 if (idev == NULL)
3016 return -ENODEV;
3017
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003018 /*
3019 * Step 1: remove reference to ipv6 device from parent device.
3020 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003022 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003024
3025 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003026 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028 /* Step 1.5: remove snmp6 entry */
3029 snmp6_unregister_dev(idev);
3030
3031 }
3032
David S. Miller73a8bd72011-01-23 23:27:15 -08003033 /* Step 2: clear hash table */
3034 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3035 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003036
3037 spin_lock_bh(&addrconf_hash_lock);
3038 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003039 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003040 if (ifa->idev == idev) {
3041 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003042 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003043 goto restart;
3044 }
3045 }
3046 spin_unlock_bh(&addrconf_hash_lock);
3047 }
3048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 write_lock_bh(&idev->lock);
3050
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003051 addrconf_del_rs_timer(idev);
3052
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003053 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003054 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003055 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003058 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 in6_dev_put(idev);
3060
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003061 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003062 while (!list_empty(&idev->tempaddr_list)) {
3063 ifa = list_first_entry(&idev->tempaddr_list,
3064 struct inet6_ifaddr, tmp_list);
3065 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 write_unlock_bh(&idev->lock);
3067 spin_lock_bh(&ifa->lock);
3068
3069 if (ifa->ifpub) {
3070 in6_ifa_put(ifa->ifpub);
3071 ifa->ifpub = NULL;
3072 }
3073 spin_unlock_bh(&ifa->lock);
3074 in6_ifa_put(ifa);
3075 write_lock_bh(&idev->lock);
3076 }
3077#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003078
stephen hemminger502a2ff2010-03-17 20:31:13 +00003079 while (!list_empty(&idev->addr_list)) {
3080 ifa = list_first_entry(&idev->addr_list,
3081 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003082 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003083
David S. Miller73a8bd72011-01-23 23:27:15 -08003084 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
David S. Miller73a8bd72011-01-23 23:27:15 -08003086 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003087
David S. Miller73a8bd72011-01-23 23:27:15 -08003088 spin_lock_bh(&ifa->state_lock);
3089 state = ifa->state;
3090 ifa->state = INET6_IFADDR_STATE_DEAD;
3091 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003092
David S. Miller73a8bd72011-01-23 23:27:15 -08003093 if (state != INET6_IFADDR_STATE_DEAD) {
3094 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003095 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003096 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003097 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003098
David S. Miller73a8bd72011-01-23 23:27:15 -08003099 write_lock_bh(&idev->lock);
3100 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 write_unlock_bh(&idev->lock);
3103
3104 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003105 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 ipv6_mc_destroy_dev(idev);
3107 else
3108 ipv6_mc_down(idev);
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003111
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003112 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003113 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003114 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 neigh_parms_release(&nd_tbl, idev->nd_parms);
3116 neigh_ifdown(&nd_tbl, dev);
3117 in6_dev_put(idev);
3118 }
3119 return 0;
3120}
3121
3122static void addrconf_rs_timer(unsigned long data)
3123{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003124 struct inet6_dev *idev = (struct inet6_dev *)data;
3125 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003127 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003128 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 goto out;
3130
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003131 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003133
3134 /* Announcement received after solicitation was sent */
3135 if (idev->if_flags & IF_RA_RCVD)
3136 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003138 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
3139 if (!__ipv6_get_lladdr(idev, &lladdr, IFA_F_TENTATIVE))
3140 ndisc_send_rs(idev->dev, &lladdr,
3141 &in6addr_linklocal_allrouters);
3142 else
3143 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003145 /* The wait after the last probe can be shorter */
3146 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3147 idev->cnf.rtr_solicits) ?
3148 idev->cnf.rtr_solicit_delay :
3149 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 /*
3152 * Note: we do not support deprecated "all on-link"
3153 * assumption any longer.
3154 */
Joe Perches91df42b2012-05-15 14:11:54 +00003155 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 }
3157
3158out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003159 write_unlock(&idev->lock);
3160 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161}
3162
3163/*
3164 * Duplicate Address Detection
3165 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003166static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3167{
3168 unsigned long rand_num;
3169 struct inet6_dev *idev = ifp->idev;
3170
Neil Horman95c385b2007-04-25 17:08:10 -07003171 if (ifp->flags & IFA_F_OPTIMISTIC)
3172 rand_num = 0;
3173 else
3174 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3175
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003176 ifp->dad_probes = idev->cnf.dad_transmits;
3177 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003178}
3179
David S. Millercf22f9a2012-04-14 21:37:40 -04003180static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
3182 struct inet6_dev *idev = ifp->idev;
3183 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
3185 addrconf_join_solict(dev, &ifp->addr);
3186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
3189 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003190 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003191 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
3194 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003195 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003196 !(ifp->flags&IFA_F_TENTATIVE) ||
3197 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003198 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003199 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 read_unlock_bh(&idev->lock);
3201
3202 addrconf_dad_completed(ifp);
3203 return;
3204 }
3205
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003206 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003207 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003208 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003209 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003210 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003211 * - keep it tentative if it is a permanent address.
3212 * - otherwise, kill it.
3213 */
3214 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003215 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003216 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003217 }
Neil Horman95c385b2007-04-25 17:08:10 -07003218
3219 /*
3220 * Optimistic nodes can start receiving
3221 * Frames right away
3222 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003223 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003224 ip6_ins_rt(ifp->rt);
3225
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003226 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003228 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 read_unlock_bh(&idev->lock);
3230}
3231
3232static void addrconf_dad_timer(unsigned long data)
3233{
3234 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3235 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 struct in6_addr mcaddr;
3237
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003238 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003239 goto out;
3240
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003241 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003242 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003243 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 goto out;
3245 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003246
3247 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003248 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3249 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003250 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003251 goto out;
3252 }
3253
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003254 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 /*
3256 * DAD was successful
3257 */
3258
Brian Haleycc411d02009-09-09 14:41:32 +00003259 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003260 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003261 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 addrconf_dad_completed(ifp);
3264
3265 goto out;
3266 }
3267
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003268 ifp->dad_probes--;
3269 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003270 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003271 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
3273 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003275 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276out:
3277 in6_ifa_put(ifp);
3278}
3279
3280static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3281{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003282 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003283 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003284 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003285
3286 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 /*
3289 * Configure the address for reception. Now it is valid.
3290 */
3291
3292 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3293
Tore Anderson026359b2011-08-28 23:47:33 +00003294 /* If added prefix is link local and we are prepared to process
3295 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 */
3297
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003298 read_lock_bh(&ifp->idev->lock);
3299 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003300 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3301 ifp->idev->valid_ll_addr_cnt == 1;
3302 send_rs = send_mld &&
3303 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003304 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003305 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003306 spin_unlock(&ifp->lock);
3307 read_unlock_bh(&ifp->idev->lock);
3308
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003309 /* While dad is in progress mld report's source address is in6_addrany.
3310 * Resend with proper ll now.
3311 */
3312 if (send_mld)
3313 ipv6_mc_dad_complete(ifp->idev);
3314
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003315 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 /*
3317 * If a host as already performed a random delay
3318 * [...] as part of DAD [...] there is no need
3319 * to delay again before sending the first RS
3320 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003321 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003322 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003323 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003325 write_lock_bh(&ifp->idev->lock);
3326 spin_lock(&ifp->lock);
3327 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003329 addrconf_mod_rs_timer(ifp->idev,
3330 ifp->idev->cnf.rtr_solicit_interval);
3331 spin_unlock(&ifp->lock);
3332 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 }
3334}
3335
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003336static void addrconf_dad_run(struct inet6_dev *idev)
3337{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003338 struct inet6_ifaddr *ifp;
3339
3340 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003341 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003342 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003343 if (ifp->flags & IFA_F_TENTATIVE &&
3344 ifp->state == INET6_IFADDR_STATE_DAD)
3345 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003346 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003347 }
3348 read_unlock_bh(&idev->lock);
3349}
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351#ifdef CONFIG_PROC_FS
3352struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003353 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003355 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356};
3357
Mihai Maruseac1d578302012-01-03 23:31:35 +00003358static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359{
3360 struct inet6_ifaddr *ifa = NULL;
3361 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003362 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003363 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Mihai Maruseac1d578302012-01-03 23:31:35 +00003365 /* initial bucket if pos is 0 */
3366 if (pos == 0) {
3367 state->bucket = 0;
3368 state->offset = 0;
3369 }
3370
3371 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003372 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003373 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003374 if (!net_eq(dev_net(ifa->idev->dev), net))
3375 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003376 /* sync with offset */
3377 if (p < state->offset) {
3378 p++;
3379 continue;
3380 }
3381 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003382 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003383 }
3384
3385 /* prepare for next bucket */
3386 state->offset = 0;
3387 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003389 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390}
3391
stephen hemmingerc2e21292010-03-17 20:31:10 +00003392static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3393 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394{
3395 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003396 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Sasha Levinb67bfe02013-02-27 17:06:00 -08003398 hlist_for_each_entry_continue_rcu_bh(ifa, 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;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003403 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003404
3405 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003406 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003407 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003408 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003409 if (!net_eq(dev_net(ifa->idev->dev), net))
3410 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003411 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003412 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003413 }
3414 }
3415
stephen hemmingerc2e21292010-03-17 20:31:10 +00003416 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417}
3418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003420 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003422 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003423 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
3426static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3427{
3428 struct inet6_ifaddr *ifa;
3429
3430 ifa = if6_get_next(seq, v);
3431 ++*pos;
3432 return ifa;
3433}
3434
3435static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003436 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003438 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439}
3440
3441static int if6_seq_show(struct seq_file *seq, void *v)
3442{
3443 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003444 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003445 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 ifp->idev->dev->ifindex,
3447 ifp->prefix_len,
3448 ifp->scope,
3449 ifp->flags,
3450 ifp->idev->dev->name);
3451 return 0;
3452}
3453
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003454static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 .start = if6_seq_start,
3456 .next = if6_seq_next,
3457 .show = if6_seq_show,
3458 .stop = if6_seq_stop,
3459};
3460
3461static int if6_seq_open(struct inode *inode, struct file *file)
3462{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003463 return seq_open_net(inode, file, &if6_seq_ops,
3464 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
Arjan van de Ven9a321442007-02-12 00:55:35 -08003467static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 .owner = THIS_MODULE,
3469 .open = if6_seq_open,
3470 .read = seq_read,
3471 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003472 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473};
3474
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003475static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
Gao fengd4beaa62013-02-18 01:34:54 +00003477 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 return -ENOMEM;
3479 return 0;
3480}
3481
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003482static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003483{
Gao fengece31ff2013-02-18 01:34:56 +00003484 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003485}
3486
3487static struct pernet_operations if6_proc_net_ops = {
3488 .init = if6_proc_net_init,
3489 .exit = if6_proc_net_exit,
3490};
3491
3492int __init if6_proc_init(void)
3493{
3494 return register_pernet_subsys(&if6_proc_net_ops);
3495}
3496
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497void if6_proc_exit(void)
3498{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003499 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500}
3501#endif /* CONFIG_PROC_FS */
3502
Amerigo Wang07a93622012-10-29 16:23:10 +00003503#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003504/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003505int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003506{
3507 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003508 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003509 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003510
stephen hemminger5c578aed2010-03-17 20:31:11 +00003511 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003512 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003513 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003514 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003515 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003516 (ifp->flags & IFA_F_HOMEADDRESS)) {
3517 ret = 1;
3518 break;
3519 }
3520 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00003521 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003522 return ret;
3523}
3524#endif
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526/*
3527 * Periodic address status verification
3528 */
3529
3530static void addrconf_verify(unsigned long foo)
3531{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003532 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 int i;
3535
stephen hemminger5c578aed2010-03-17 20:31:11 +00003536 rcu_read_lock_bh();
3537 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003539 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
3541 del_timer(&addr_chk_timer);
3542
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003543 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003545 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578aed2010-03-17 20:31:11 +00003546 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
3549 if (ifp->flags & IFA_F_PERMANENT)
3550 continue;
3551
3552 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003553 /* We try to batch several events at once. */
3554 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003556 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3557 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 spin_unlock(&ifp->lock);
3559 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 ipv6_del_addr(ifp);
3561 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003562 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3563 spin_unlock(&ifp->lock);
3564 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003566 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 int deprecate = 0;
3568
3569 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3570 deprecate = 1;
3571 ifp->flags |= IFA_F_DEPRECATED;
3572 }
3573
3574 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3575 next = ifp->tstamp + ifp->valid_lft * HZ;
3576
3577 spin_unlock(&ifp->lock);
3578
3579 if (deprecate) {
3580 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
3582 ipv6_ifa_notify(0, ifp);
3583 in6_ifa_put(ifp);
3584 goto restart;
3585 }
3586#ifdef CONFIG_IPV6_PRIVACY
3587 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3588 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003589 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3590 ifp->idev->cnf.dad_transmits *
3591 ifp->idev->nd_parms->retrans_time / HZ;
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 if (age >= ifp->prefered_lft - regen_advance) {
3594 struct inet6_ifaddr *ifpub = ifp->ifpub;
3595 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3596 next = ifp->tstamp + ifp->prefered_lft * HZ;
3597 if (!ifp->regen_count && ifpub) {
3598 ifp->regen_count++;
3599 in6_ifa_hold(ifp);
3600 in6_ifa_hold(ifpub);
3601 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003602
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003603 spin_lock(&ifpub->lock);
3604 ifpub->regen_count = 0;
3605 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 ipv6_create_tempaddr(ifpub, ifp);
3607 in6_ifa_put(ifpub);
3608 in6_ifa_put(ifp);
3609 goto restart;
3610 }
3611 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3612 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3613 spin_unlock(&ifp->lock);
3614#endif
3615 } else {
3616 /* ifp->prefered_lft <= ifp->valid_lft */
3617 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3618 next = ifp->tstamp + ifp->prefered_lft * HZ;
3619 spin_unlock(&ifp->lock);
3620 }
3621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 }
3623
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003624 next_sec = round_jiffies_up(next);
3625 next_sched = next;
3626
3627 /* If rounded timeout is accurate enough, accept it. */
3628 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3629 next_sched = next_sec;
3630
3631 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3632 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3633 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3634
3635 ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3636 now, next, next_sec, next_sched));
3637
3638 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 add_timer(&addr_chk_timer);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003640 spin_unlock(&addrconf_verify_lock);
3641 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642}
3643
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003644static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3645 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003646{
3647 struct in6_addr *pfx = NULL;
3648
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003649 *peer_pfx = NULL;
3650
Thomas Graf461d8832006-09-18 00:09:49 -07003651 if (addr)
3652 pfx = nla_data(addr);
3653
3654 if (local) {
3655 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003656 *peer_pfx = pfx;
3657 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003658 }
3659
3660 return pfx;
3661}
3662
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003663static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003664 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3665 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3666 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3667};
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669static int
Thomas Graf661d2962013-03-21 07:45:29 +00003670inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003672 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003673 struct ifaddrmsg *ifm;
3674 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003675 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003676 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Thomas Grafb933f712006-09-18 00:10:19 -07003678 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3679 if (err < 0)
3680 return err;
3681
3682 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003683 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 if (pfx == NULL)
3685 return -EINVAL;
3686
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003687 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688}
3689
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003690static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3691 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003692{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003693 u32 flags;
3694 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003695 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003696
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003697 if (!valid_lft || (prefered_lft > valid_lft))
3698 return -EINVAL;
3699
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003700 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3701 if (addrconf_finite_timeout(timeout)) {
3702 expires = jiffies_to_clock_t(timeout * HZ);
3703 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003704 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003705 } else {
3706 expires = 0;
3707 flags = 0;
3708 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003709 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003710
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003711 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3712 if (addrconf_finite_timeout(timeout)) {
3713 if (timeout == 0)
3714 ifa_flags |= IFA_F_DEPRECATED;
3715 prefered_lft = timeout;
3716 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003717
3718 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003719 ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003720 ifp->tstamp = jiffies;
3721 ifp->valid_lft = valid_lft;
3722 ifp->prefered_lft = prefered_lft;
3723
3724 spin_unlock_bh(&ifp->lock);
3725 if (!(ifp->flags&IFA_F_TENTATIVE))
3726 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003727
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003728 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003729 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003730 addrconf_verify(0);
3731
3732 return 0;
3733}
3734
3735static int
Thomas Graf661d2962013-03-21 07:45:29 +00003736inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003738 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003739 struct ifaddrmsg *ifm;
3740 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003741 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003742 struct inet6_ifaddr *ifa;
3743 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003744 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3745 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003746 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Thomas Graf461d8832006-09-18 00:09:49 -07003748 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3749 if (err < 0)
3750 return err;
3751
3752 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003753 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 if (pfx == NULL)
3755 return -EINVAL;
3756
Thomas Graf461d8832006-09-18 00:09:49 -07003757 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003758 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003759
3760 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003761 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003762 preferred_lft = ci->ifa_prefered;
3763 } else {
3764 preferred_lft = INFINITY_LIFE_TIME;
3765 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003766 }
3767
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003768 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003769 if (dev == NULL)
3770 return -ENODEV;
3771
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003772 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003773 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003774
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003775 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003776 if (ifa == NULL) {
3777 /*
3778 * It would be best to check for !NLM_F_CREATE here but
3779 * userspace alreay relies on not having to provide this.
3780 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003781 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003782 ifm->ifa_prefixlen, ifa_flags,
3783 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003784 }
3785
Thomas Graf7198f8c2006-09-18 00:13:46 -07003786 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3787 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3788 err = -EEXIST;
3789 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003790 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003791
3792 in6_ifa_put(ifa);
3793
3794 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795}
3796
Thomas Graf101bb222006-09-18 00:11:52 -07003797static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3798 u8 scope, int ifindex)
3799{
3800 struct ifaddrmsg *ifm;
3801
3802 ifm = nlmsg_data(nlh);
3803 ifm->ifa_family = AF_INET6;
3804 ifm->ifa_prefixlen = prefixlen;
3805 ifm->ifa_flags = flags;
3806 ifm->ifa_scope = scope;
3807 ifm->ifa_index = ifindex;
3808}
3809
Thomas Graf85486af2006-09-18 00:11:24 -07003810static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3811 unsigned long tstamp, u32 preferred, u32 valid)
3812{
3813 struct ifa_cacheinfo ci;
3814
Thomas Graf18a31e12010-11-17 04:12:02 +00003815 ci.cstamp = cstamp_delta(cstamp);
3816 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003817 ci.ifa_prefered = preferred;
3818 ci.ifa_valid = valid;
3819
3820 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3821}
3822
Thomas Graf101bb222006-09-18 00:11:52 -07003823static inline int rt_scope(int ifa_scope)
3824{
3825 if (ifa_scope & IFA_HOST)
3826 return RT_SCOPE_HOST;
3827 else if (ifa_scope & IFA_LINK)
3828 return RT_SCOPE_LINK;
3829 else if (ifa_scope & IFA_SITE)
3830 return RT_SCOPE_SITE;
3831 else
3832 return RT_SCOPE_UNIVERSE;
3833}
3834
Thomas Graf0ab68032006-09-18 00:12:35 -07003835static inline int inet6_ifaddr_msgsize(void)
3836{
Thomas Graf339bf982006-11-10 14:10:15 -08003837 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003838 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003839 + nla_total_size(16) /* IFA_ADDRESS */
3840 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003841}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003844 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003847 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
Eric W. Biederman15e47302012-09-07 20:12:54 +00003849 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003850 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003851 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003852
Thomas Graf101bb222006-09-18 00:11:52 -07003853 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3854 ifa->idev->dev->ifindex);
3855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003857 preferred = ifa->prefered_lft;
3858 valid = ifa->valid_lft;
3859 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003861 if (preferred > tval)
3862 preferred -= tval;
3863 else
3864 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003865 if (valid != INFINITY_LIFE_TIME) {
3866 if (valid > tval)
3867 valid -= tval;
3868 else
3869 valid = 0;
3870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 }
3872 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003873 preferred = INFINITY_LIFE_TIME;
3874 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 }
Thomas Graf85486af2006-09-18 00:11:24 -07003876
Cong Wang7996c792013-05-22 05:41:06 +00003877 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003878 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3879 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3880 goto error;
3881 } else
3882 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3883 goto error;
3884
3885 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3886 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003887
Thomas Graf0ab68032006-09-18 00:12:35 -07003888 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003889
3890error:
3891 nlmsg_cancel(skb, nlh);
3892 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893}
3894
3895static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003896 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003899 u8 scope = RT_SCOPE_UNIVERSE;
3900 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Thomas Graf101bb222006-09-18 00:11:52 -07003902 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3903 scope = RT_SCOPE_SITE;
3904
Eric W. Biederman15e47302012-09-07 20:12:54 +00003905 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003906 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003907 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003908
Thomas Graf101bb222006-09-18 00:11:52 -07003909 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003910 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3911 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003912 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3913 nlmsg_cancel(skb, nlh);
3914 return -EMSGSIZE;
3915 }
Thomas Graf85486af2006-09-18 00:11:24 -07003916
Thomas Graf0ab68032006-09-18 00:12:35 -07003917 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
3920static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003921 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003924 u8 scope = RT_SCOPE_UNIVERSE;
3925 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Thomas Graf101bb222006-09-18 00:11:52 -07003927 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3928 scope = RT_SCOPE_SITE;
3929
Eric W. Biederman15e47302012-09-07 20:12:54 +00003930 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003931 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003932 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003933
Thomas Graf101bb222006-09-18 00:11:52 -07003934 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003935 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3936 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003937 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3938 nlmsg_cancel(skb, nlh);
3939 return -EMSGSIZE;
3940 }
Thomas Graf85486af2006-09-18 00:11:24 -07003941
Thomas Graf0ab68032006-09-18 00:12:35 -07003942 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943}
3944
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003945enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 UNICAST_ADDR,
3947 MULTICAST_ADDR,
3948 ANYCAST_ADDR,
3949};
3950
Eric Dumazet234b27c2009-11-12 04:11:50 +00003951/* called with rcu_read_lock() */
3952static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3953 struct netlink_callback *cb, enum addr_type_t type,
3954 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 struct ifmcaddr6 *ifmca;
3957 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003958 int err = 1;
3959 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
Eric Dumazet234b27c2009-11-12 04:11:50 +00003961 read_lock_bh(&idev->lock);
3962 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003963 case UNICAST_ADDR: {
3964 struct inet6_ifaddr *ifa;
3965
Eric Dumazet234b27c2009-11-12 04:11:50 +00003966 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003967 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3968 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003969 continue;
3970 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003971 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003972 cb->nlh->nlmsg_seq,
3973 RTM_NEWADDR,
3974 NLM_F_MULTI);
3975 if (err <= 0)
3976 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003977 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003979 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003980 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003981 case MULTICAST_ADDR:
3982 /* multicast address */
3983 for (ifmca = idev->mc_list; ifmca;
3984 ifmca = ifmca->next, ip_idx++) {
3985 if (ip_idx < s_ip_idx)
3986 continue;
3987 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003988 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003989 cb->nlh->nlmsg_seq,
3990 RTM_GETMULTICAST,
3991 NLM_F_MULTI);
3992 if (err <= 0)
3993 break;
3994 }
3995 break;
3996 case ANYCAST_ADDR:
3997 /* anycast address */
3998 for (ifaca = idev->ac_list; ifaca;
3999 ifaca = ifaca->aca_next, ip_idx++) {
4000 if (ip_idx < s_ip_idx)
4001 continue;
4002 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004003 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004004 cb->nlh->nlmsg_seq,
4005 RTM_GETANYCAST,
4006 NLM_F_MULTI);
4007 if (err <= 0)
4008 break;
4009 }
4010 break;
4011 default:
4012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004014 read_unlock_bh(&idev->lock);
4015 *p_ip_idx = ip_idx;
4016 return err;
4017}
4018
4019static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4020 enum addr_type_t type)
4021{
4022 struct net *net = sock_net(skb->sk);
4023 int h, s_h;
4024 int idx, ip_idx;
4025 int s_idx, s_ip_idx;
4026 struct net_device *dev;
4027 struct inet6_dev *idev;
4028 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004029
4030 s_h = cb->args[0];
4031 s_idx = idx = cb->args[1];
4032 s_ip_idx = ip_idx = cb->args[2];
4033
4034 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004035 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004036 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4037 idx = 0;
4038 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004039 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004040 if (idx < s_idx)
4041 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004042 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004043 s_ip_idx = 0;
4044 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004045 idev = __in6_dev_get(dev);
4046 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004047 goto cont;
4048
4049 if (in6_dump_addrs(idev, skb, cb, type,
4050 s_ip_idx, &ip_idx) <= 0)
4051 goto done;
4052cont:
4053 idx++;
4054 }
4055 }
4056done:
4057 rcu_read_unlock();
4058 cb->args[0] = h;
4059 cb->args[1] = idx;
4060 cb->args[2] = ip_idx;
4061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 return skb->len;
4063}
4064
4065static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4066{
4067 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004068
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 return inet6_dump_addr(skb, cb, type);
4070}
4071
4072static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4073{
4074 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004075
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 return inet6_dump_addr(skb, cb, type);
4077}
4078
4079
4080static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4081{
4082 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004083
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 return inet6_dump_addr(skb, cb, type);
4085}
4086
Thomas Graf661d2962013-03-21 07:45:29 +00004087static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004088{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004089 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004090 struct ifaddrmsg *ifm;
4091 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004092 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004093 struct net_device *dev = NULL;
4094 struct inet6_ifaddr *ifa;
4095 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004096 int err;
4097
Thomas Graf1b29fc22006-09-18 00:10:50 -07004098 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4099 if (err < 0)
4100 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004101
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004102 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004103 if (addr == NULL) {
4104 err = -EINVAL;
4105 goto errout;
4106 }
4107
4108 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004109 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004110 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004111
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004112 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4113 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004114 err = -EADDRNOTAVAIL;
4115 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004116 }
4117
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004118 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4119 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004120 err = -ENOBUFS;
4121 goto errout_ifa;
4122 }
4123
Eric W. Biederman15e47302012-09-07 20:12:54 +00004124 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004125 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004126 if (err < 0) {
4127 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4128 WARN_ON(err == -EMSGSIZE);
4129 kfree_skb(skb);
4130 goto errout_ifa;
4131 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004132 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004133errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004134 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004135errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004136 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004137}
4138
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4140{
4141 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004142 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004143 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Thomas Graf0ab68032006-09-18 00:12:35 -07004145 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004146 if (skb == NULL)
4147 goto errout;
4148
4149 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004150 if (err < 0) {
4151 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4152 WARN_ON(err == -EMSGSIZE);
4153 kfree_skb(skb);
4154 goto errout;
4155 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004156 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4157 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004158errout:
4159 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004160 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161}
4162
Dave Jonesb6f99a22007-03-22 12:27:49 -07004163static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 __s32 *array, int bytes)
4165{
Thomas Graf04561c12006-11-14 19:53:58 -08004166 BUG_ON(bytes < (DEVCONF_MAX * 4));
4167
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 memset(array, 0, bytes);
4169 array[DEVCONF_FORWARDING] = cnf->forwarding;
4170 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4171 array[DEVCONF_MTU6] = cnf->mtu6;
4172 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4173 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4174 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4175 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4176 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004177 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4178 jiffies_to_msecs(cnf->rtr_solicit_interval);
4179 array[DEVCONF_RTR_SOLICIT_DELAY] =
4180 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
4182#ifdef CONFIG_IPV6_PRIVACY
4183 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4184 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4185 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4186 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4187 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4188#endif
4189 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004190 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004191 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004192#ifdef CONFIG_IPV6_ROUTER_PREF
4193 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004194 array[DEVCONF_RTR_PROBE_INTERVAL] =
4195 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004196#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004197 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4198#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004199#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004200 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004201 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004202#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4203 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4204#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004205#ifdef CONFIG_IPV6_MROUTE
4206 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4207#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004208 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004209 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004210 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004211 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212}
4213
Thomas Grafb382b192010-11-16 04:33:57 +00004214static inline size_t inet6_ifla6_size(void)
4215{
4216 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4217 + nla_total_size(sizeof(struct ifla_cacheinfo))
4218 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4219 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004220 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4221 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004222}
4223
Thomas Graf339bf982006-11-10 14:10:15 -08004224static inline size_t inet6_if_nlmsg_size(void)
4225{
4226 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4227 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4228 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4229 + nla_total_size(4) /* IFLA_MTU */
4230 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004231 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004232}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004233
Eric Dumazetbe281e52011-05-19 01:14:23 +00004234static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004235 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004236{
4237 int i;
4238 int pad = bytes - sizeof(u64) * items;
4239 BUG_ON(pad < 0);
4240
4241 /* Use put_unaligned() because stats may not be aligned for u64. */
4242 put_unaligned(items, &stats[0]);
4243 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004244 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004245
4246 memset(&stats[items], 0, pad);
4247}
4248
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004249static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4250 int items, int bytes, size_t syncpoff)
4251{
4252 int i;
4253 int pad = bytes - sizeof(u64) * items;
4254 BUG_ON(pad < 0);
4255
4256 /* Use put_unaligned() because stats may not be aligned for u64. */
4257 put_unaligned(items, &stats[0]);
4258 for (i = 1; i < items; i++)
4259 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4260
4261 memset(&stats[items], 0, pad);
4262}
4263
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004264static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4265 int bytes)
4266{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004267 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004268 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004269 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4270 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004271 break;
4272 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004273 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004274 break;
4275 }
4276}
4277
Thomas Grafb382b192010-11-16 04:33:57 +00004278static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004280 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004281 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
David S. Millerc78679e2012-04-01 20:27:33 -04004283 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4284 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004286 ci.tstamp = cstamp_delta(idev->tstamp);
4287 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4288 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004289 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4290 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004291 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4292 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004293 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004294 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004296 /* XXX - MC not implemented */
4297
4298 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4299 if (nla == NULL)
4300 goto nla_put_failure;
4301 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4302
4303 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4304 if (nla == NULL)
4305 goto nla_put_failure;
4306 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004308 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4309 if (nla == NULL)
4310 goto nla_put_failure;
4311 read_lock_bh(&idev->lock);
4312 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4313 read_unlock_bh(&idev->lock);
4314
Thomas Grafb382b192010-11-16 04:33:57 +00004315 return 0;
4316
4317nla_put_failure:
4318 return -EMSGSIZE;
4319}
4320
4321static size_t inet6_get_link_af_size(const struct net_device *dev)
4322{
4323 if (!__in6_dev_get(dev))
4324 return 0;
4325
4326 return inet6_ifla6_size();
4327}
4328
4329static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4330{
4331 struct inet6_dev *idev = __in6_dev_get(dev);
4332
4333 if (!idev)
4334 return -ENODATA;
4335
4336 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4337 return -EMSGSIZE;
4338
4339 return 0;
4340}
4341
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004342static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4343{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004344 struct inet6_ifaddr *ifp;
4345 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004346 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004347 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004348
4349 if (token == NULL)
4350 return -EINVAL;
4351 if (ipv6_addr_any(token))
4352 return -EINVAL;
4353 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4354 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004355 if (!ipv6_accept_ra(idev))
4356 return -EINVAL;
4357 if (idev->cnf.rtr_solicits <= 0)
4358 return -EINVAL;
4359
4360 write_lock_bh(&idev->lock);
4361
4362 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4363 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4364
4365 write_unlock_bh(&idev->lock);
4366
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004367 if (!idev->dead && (idev->if_flags & IF_READY) &&
4368 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4369 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004370
4371 /* If we're not ready, then normal ifup will take care
4372 * of this. Otherwise, we need to request our rs here.
4373 */
4374 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4375 update_rs = true;
4376 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004377
4378 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004379
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004380 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004381 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004382 idev->rs_probes = 1;
4383 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4384 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004385
4386 /* Well, that's kinda nasty ... */
4387 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4388 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004389 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004390 ifp->valid_lft = 0;
4391 ifp->prefered_lft = 0;
4392 }
4393 spin_unlock(&ifp->lock);
4394 }
4395
4396 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004397 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004398 return 0;
4399}
4400
4401static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4402{
4403 int err = -EINVAL;
4404 struct inet6_dev *idev = __in6_dev_get(dev);
4405 struct nlattr *tb[IFLA_INET6_MAX + 1];
4406
4407 if (!idev)
4408 return -EAFNOSUPPORT;
4409
4410 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4411 BUG();
4412
4413 if (tb[IFLA_INET6_TOKEN])
4414 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4415
4416 return err;
4417}
4418
Thomas Grafb382b192010-11-16 04:33:57 +00004419static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004420 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004421{
4422 struct net_device *dev = idev->dev;
4423 struct ifinfomsg *hdr;
4424 struct nlmsghdr *nlh;
4425 void *protoinfo;
4426
Eric W. Biederman15e47302012-09-07 20:12:54 +00004427 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004428 if (nlh == NULL)
4429 return -EMSGSIZE;
4430
4431 hdr = nlmsg_data(nlh);
4432 hdr->ifi_family = AF_INET6;
4433 hdr->__ifi_pad = 0;
4434 hdr->ifi_type = dev->type;
4435 hdr->ifi_index = dev->ifindex;
4436 hdr->ifi_flags = dev_get_flags(dev);
4437 hdr->ifi_change = 0;
4438
David S. Millerc78679e2012-04-01 20:27:33 -04004439 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4440 (dev->addr_len &&
4441 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4442 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4443 (dev->ifindex != dev->iflink &&
4444 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4445 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004446 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4447 if (protoinfo == NULL)
4448 goto nla_put_failure;
4449
4450 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4451 goto nla_put_failure;
4452
Thomas Graf04561c12006-11-14 19:53:58 -08004453 nla_nest_end(skb, protoinfo);
4454 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
Thomas Graf04561c12006-11-14 19:53:58 -08004456nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004457 nlmsg_cancel(skb, nlh);
4458 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459}
4460
4461static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4462{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004463 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004464 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004465 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 struct net_device *dev;
4467 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004468 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Eric Dumazet84d26972009-11-09 12:11:28 +00004470 s_h = cb->args[0];
4471 s_idx = cb->args[1];
4472
4473 rcu_read_lock();
4474 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4475 idx = 0;
4476 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004477 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004478 if (idx < s_idx)
4479 goto cont;
4480 idev = __in6_dev_get(dev);
4481 if (!idev)
4482 goto cont;
4483 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004484 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004485 cb->nlh->nlmsg_seq,
4486 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4487 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004488cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004489 idx++;
4490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004492out:
4493 rcu_read_unlock();
4494 cb->args[1] = idx;
4495 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
4497 return skb->len;
4498}
4499
4500void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4501{
4502 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004503 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004504 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004505
Thomas Graf339bf982006-11-10 14:10:15 -08004506 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004507 if (skb == NULL)
4508 goto errout;
4509
4510 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004511 if (err < 0) {
4512 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4513 WARN_ON(err == -EMSGSIZE);
4514 kfree_skb(skb);
4515 goto errout;
4516 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004517 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004518 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004519errout:
4520 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004521 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522}
4523
Thomas Graf339bf982006-11-10 14:10:15 -08004524static inline size_t inet6_prefix_nlmsg_size(void)
4525{
4526 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4527 + nla_total_size(sizeof(struct in6_addr))
4528 + nla_total_size(sizeof(struct prefix_cacheinfo));
4529}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004530
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004532 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004533 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004535 struct prefixmsg *pmsg;
4536 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 struct prefix_cacheinfo ci;
4538
Eric W. Biederman15e47302012-09-07 20:12:54 +00004539 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004540 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004541 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004542
4543 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004545 pmsg->prefix_pad1 = 0;
4546 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 pmsg->prefix_ifindex = idev->dev->ifindex;
4548 pmsg->prefix_len = pinfo->prefix_len;
4549 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004550 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 pmsg->prefix_flags = 0;
4552 if (pinfo->onlink)
4553 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4554 if (pinfo->autoconf)
4555 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4556
David S. Millerc78679e2012-04-01 20:27:33 -04004557 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4558 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 ci.preferred_time = ntohl(pinfo->prefered);
4560 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004561 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4562 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004563 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Thomas Graf6051e2f2006-11-14 19:54:19 -08004565nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004566 nlmsg_cancel(skb, nlh);
4567 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568}
4569
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004570static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 struct prefix_info *pinfo)
4572{
4573 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004574 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004575 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576
Thomas Graf339bf982006-11-10 14:10:15 -08004577 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004578 if (skb == NULL)
4579 goto errout;
4580
4581 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004582 if (err < 0) {
4583 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4584 WARN_ON(err == -EMSGSIZE);
4585 kfree_skb(skb);
4586 goto errout;
4587 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004588 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4589 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004590errout:
4591 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004592 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593}
4594
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004595static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4596{
4597 write_lock_bh(&ifp->idev->lock);
4598 spin_lock(&ifp->lock);
4599 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4600 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4601 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4602 ifp->idev->valid_ll_addr_cnt += count;
4603 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4604 spin_unlock(&ifp->lock);
4605 write_unlock_bh(&ifp->idev->lock);
4606}
4607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4609{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004610 struct net *net = dev_net(ifp->idev->dev);
4611
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4613
4614 switch (event) {
4615 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004616 update_valid_ll_addr_cnt(ifp, 1);
4617
Neil Horman95c385b2007-04-25 17:08:10 -07004618 /*
4619 * If the address was optimistic
4620 * we inserted the route at the start of
4621 * our DAD process, so we don't need
4622 * to do it again
4623 */
4624 if (!(ifp->rt->rt6i_node))
4625 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 if (ifp->idev->cnf.forwarding)
4627 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004628 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004629 addrconf_prefix_route(&ifp->peer_addr, 128,
4630 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 break;
4632 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004633 update_valid_ll_addr_cnt(ifp, -1);
4634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 if (ifp->idev->cnf.forwarding)
4636 addrconf_leave_anycast(ifp);
4637 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004638 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004639 struct rt6_info *rt;
4640 struct net_device *dev = ifp->idev->dev;
4641
4642 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4643 dev->ifindex, 1);
4644 if (rt) {
4645 dst_hold(&rt->dst);
4646 if (ip6_del_rt(rt))
4647 dst_free(&rt->dst);
4648 }
4649 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004650 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004651
David S. Miller73a8bd72011-01-23 23:27:15 -08004652 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004653 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 break;
4655 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004656 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004657 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658}
4659
4660static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4661{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004662 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 if (likely(ifp->idev->dead == 0))
4664 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004665 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666}
4667
4668#ifdef CONFIG_SYSCTL
4669
4670static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004671int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 void __user *buffer, size_t *lenp, loff_t *ppos)
4673{
4674 int *valp = ctl->data;
4675 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004676 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004677 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 int ret;
4679
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004680 /*
4681 * ctl->data points to idev->cnf.forwarding, we should
4682 * not modify it until we get the rtnl lock.
4683 */
4684 lctl = *ctl;
4685 lctl.data = &val;
4686
4687 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004689 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004690 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004691 if (ret)
4692 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004693 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694}
4695
Brian Haley56d417b2009-06-01 03:07:33 -07004696static void dev_disable_change(struct inet6_dev *idev)
4697{
Cong Wang75538c22013-05-29 11:30:50 +08004698 struct netdev_notifier_info info;
4699
Brian Haley56d417b2009-06-01 03:07:33 -07004700 if (!idev || !idev->dev)
4701 return;
4702
Cong Wang75538c22013-05-29 11:30:50 +08004703 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004704 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004705 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004706 else
Cong Wang75538c22013-05-29 11:30:50 +08004707 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004708}
4709
4710static void addrconf_disable_change(struct net *net, __s32 newf)
4711{
4712 struct net_device *dev;
4713 struct inet6_dev *idev;
4714
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004715 rcu_read_lock();
4716 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004717 idev = __in6_dev_get(dev);
4718 if (idev) {
4719 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4720 idev->cnf.disable_ipv6 = newf;
4721 if (changed)
4722 dev_disable_change(idev);
4723 }
Brian Haley56d417b2009-06-01 03:07:33 -07004724 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004725 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004726}
4727
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004728static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004729{
4730 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004731 int old;
4732
4733 if (!rtnl_trylock())
4734 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004735
4736 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004737 old = *p;
4738 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004739
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004740 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4741 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004742 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004743 }
Brian Haley56d417b2009-06-01 03:07:33 -07004744
4745 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004746 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4747 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004748 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004749 dev_disable_change((struct inet6_dev *)table->extra1);
4750
4751 rtnl_unlock();
4752 return 0;
4753}
4754
4755static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004756int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004757 void __user *buffer, size_t *lenp, loff_t *ppos)
4758{
4759 int *valp = ctl->data;
4760 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004761 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004762 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004763 int ret;
4764
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004765 /*
4766 * ctl->data points to idev->cnf.disable_ipv6, we should
4767 * not modify it until we get the rtnl lock.
4768 */
4769 lctl = *ctl;
4770 lctl.data = &val;
4771
4772 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004773
4774 if (write)
4775 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004776 if (ret)
4777 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004778 return ret;
4779}
4780
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781static struct addrconf_sysctl_table
4782{
4783 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004784 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004785} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 .sysctl_header = NULL,
4787 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004788 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004789 .procname = "forwarding",
4790 .data = &ipv6_devconf.forwarding,
4791 .maxlen = sizeof(int),
4792 .mode = 0644,
4793 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 },
4795 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004796 .procname = "hop_limit",
4797 .data = &ipv6_devconf.hop_limit,
4798 .maxlen = sizeof(int),
4799 .mode = 0644,
4800 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 },
4802 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004803 .procname = "mtu",
4804 .data = &ipv6_devconf.mtu6,
4805 .maxlen = sizeof(int),
4806 .mode = 0644,
4807 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 },
4809 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004810 .procname = "accept_ra",
4811 .data = &ipv6_devconf.accept_ra,
4812 .maxlen = sizeof(int),
4813 .mode = 0644,
4814 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 },
4816 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004817 .procname = "accept_redirects",
4818 .data = &ipv6_devconf.accept_redirects,
4819 .maxlen = sizeof(int),
4820 .mode = 0644,
4821 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 },
4823 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004824 .procname = "autoconf",
4825 .data = &ipv6_devconf.autoconf,
4826 .maxlen = sizeof(int),
4827 .mode = 0644,
4828 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 },
4830 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004831 .procname = "dad_transmits",
4832 .data = &ipv6_devconf.dad_transmits,
4833 .maxlen = sizeof(int),
4834 .mode = 0644,
4835 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 },
4837 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004838 .procname = "router_solicitations",
4839 .data = &ipv6_devconf.rtr_solicits,
4840 .maxlen = sizeof(int),
4841 .mode = 0644,
4842 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 },
4844 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004845 .procname = "router_solicitation_interval",
4846 .data = &ipv6_devconf.rtr_solicit_interval,
4847 .maxlen = sizeof(int),
4848 .mode = 0644,
4849 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 },
4851 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004852 .procname = "router_solicitation_delay",
4853 .data = &ipv6_devconf.rtr_solicit_delay,
4854 .maxlen = sizeof(int),
4855 .mode = 0644,
4856 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 },
4858 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004859 .procname = "force_mld_version",
4860 .data = &ipv6_devconf.force_mld_version,
4861 .maxlen = sizeof(int),
4862 .mode = 0644,
4863 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 },
4865#ifdef CONFIG_IPV6_PRIVACY
4866 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004867 .procname = "use_tempaddr",
4868 .data = &ipv6_devconf.use_tempaddr,
4869 .maxlen = sizeof(int),
4870 .mode = 0644,
4871 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 },
4873 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004874 .procname = "temp_valid_lft",
4875 .data = &ipv6_devconf.temp_valid_lft,
4876 .maxlen = sizeof(int),
4877 .mode = 0644,
4878 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 },
4880 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004881 .procname = "temp_prefered_lft",
4882 .data = &ipv6_devconf.temp_prefered_lft,
4883 .maxlen = sizeof(int),
4884 .mode = 0644,
4885 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 },
4887 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004888 .procname = "regen_max_retry",
4889 .data = &ipv6_devconf.regen_max_retry,
4890 .maxlen = sizeof(int),
4891 .mode = 0644,
4892 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 },
4894 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004895 .procname = "max_desync_factor",
4896 .data = &ipv6_devconf.max_desync_factor,
4897 .maxlen = sizeof(int),
4898 .mode = 0644,
4899 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 },
4901#endif
4902 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004903 .procname = "max_addresses",
4904 .data = &ipv6_devconf.max_addresses,
4905 .maxlen = sizeof(int),
4906 .mode = 0644,
4907 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 },
4909 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004910 .procname = "accept_ra_defrtr",
4911 .data = &ipv6_devconf.accept_ra_defrtr,
4912 .maxlen = sizeof(int),
4913 .mode = 0644,
4914 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004915 },
4916 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004917 .procname = "accept_ra_pinfo",
4918 .data = &ipv6_devconf.accept_ra_pinfo,
4919 .maxlen = sizeof(int),
4920 .mode = 0644,
4921 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004922 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004923#ifdef CONFIG_IPV6_ROUTER_PREF
4924 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004925 .procname = "accept_ra_rtr_pref",
4926 .data = &ipv6_devconf.accept_ra_rtr_pref,
4927 .maxlen = sizeof(int),
4928 .mode = 0644,
4929 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004930 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004931 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004932 .procname = "router_probe_interval",
4933 .data = &ipv6_devconf.rtr_probe_interval,
4934 .maxlen = sizeof(int),
4935 .mode = 0644,
4936 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004937 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004938#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004939 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004940 .procname = "accept_ra_rt_info_max_plen",
4941 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4942 .maxlen = sizeof(int),
4943 .mode = 0644,
4944 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004945 },
4946#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004947#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004948 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004949 .procname = "proxy_ndp",
4950 .data = &ipv6_devconf.proxy_ndp,
4951 .maxlen = sizeof(int),
4952 .mode = 0644,
4953 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004954 },
4955 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004956 .procname = "accept_source_route",
4957 .data = &ipv6_devconf.accept_source_route,
4958 .maxlen = sizeof(int),
4959 .mode = 0644,
4960 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004961 },
Neil Horman95c385b2007-04-25 17:08:10 -07004962#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4963 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004964 .procname = "optimistic_dad",
4965 .data = &ipv6_devconf.optimistic_dad,
4966 .maxlen = sizeof(int),
4967 .mode = 0644,
4968 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004969
4970 },
4971#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004972#ifdef CONFIG_IPV6_MROUTE
4973 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004974 .procname = "mc_forwarding",
4975 .data = &ipv6_devconf.mc_forwarding,
4976 .maxlen = sizeof(int),
4977 .mode = 0444,
4978 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004979 },
4980#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004981 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004982 .procname = "disable_ipv6",
4983 .data = &ipv6_devconf.disable_ipv6,
4984 .maxlen = sizeof(int),
4985 .mode = 0644,
4986 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004987 },
4988 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004989 .procname = "accept_dad",
4990 .data = &ipv6_devconf.accept_dad,
4991 .maxlen = sizeof(int),
4992 .mode = 0644,
4993 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004994 },
4995 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004996 .procname = "force_tllao",
4997 .data = &ipv6_devconf.force_tllao,
4998 .maxlen = sizeof(int),
4999 .mode = 0644,
5000 .proc_handler = proc_dointvec
5001 },
5002 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005003 .procname = "ndisc_notify",
5004 .data = &ipv6_devconf.ndisc_notify,
5005 .maxlen = sizeof(int),
5006 .mode = 0644,
5007 .proc_handler = proc_dointvec
5008 },
5009 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005010 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 }
5012 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013};
5014
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005015static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005016 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017{
5018 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005020 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005021
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005022 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005024 goto out;
5025
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005026 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005027 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005029 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Eric W. Biederman6105e292012-04-19 13:41:24 +00005032 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
Eric W. Biederman6105e292012-04-19 13:41:24 +00005034 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005036 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005037
5038 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005039 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005041free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005043out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005044 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045}
5046
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005047static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5048{
5049 struct addrconf_sysctl_table *t;
5050
5051 if (p->sysctl == NULL)
5052 return;
5053
5054 t = p->sysctl;
5055 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005056 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005057 kfree(t);
5058}
5059
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005060static void addrconf_sysctl_register(struct inet6_dev *idev)
5061{
Eric W. Biederman54716e32010-02-14 03:27:03 +00005062 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005063 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005064 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005065 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005066}
5067
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005068static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005070 __addrconf_sysctl_unregister(&idev->cnf);
5071 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072}
5073
5074
5075#endif
5076
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005077static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005078{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005079 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005080 struct ipv6_devconf *all, *dflt;
5081
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005082 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5083 if (all == NULL)
5084 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005085
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005086 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5087 if (dflt == NULL)
5088 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005089
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005090 /* these will be inherited by all namespaces */
5091 dflt->autoconf = ipv6_defaults.autoconf;
5092 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005093
5094 net->ipv6.devconf_all = all;
5095 net->ipv6.devconf_dflt = dflt;
5096
5097#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005098 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005099 if (err < 0)
5100 goto err_reg_all;
5101
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005102 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005103 if (err < 0)
5104 goto err_reg_dflt;
5105#endif
5106 return 0;
5107
5108#ifdef CONFIG_SYSCTL
5109err_reg_dflt:
5110 __addrconf_sysctl_unregister(all);
5111err_reg_all:
5112 kfree(dflt);
5113#endif
5114err_alloc_dflt:
5115 kfree(all);
5116err_alloc_all:
5117 return err;
5118}
5119
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005120static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005121{
5122#ifdef CONFIG_SYSCTL
5123 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5124 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5125#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005126 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005127 kfree(net->ipv6.devconf_dflt);
5128 kfree(net->ipv6.devconf_all);
5129 }
5130}
5131
5132static struct pernet_operations addrconf_ops = {
5133 .init = addrconf_init_net,
5134 .exit = addrconf_exit_net,
5135};
5136
Thomas Grafb382b192010-11-16 04:33:57 +00005137static struct rtnl_af_ops inet6_ops = {
5138 .family = AF_INET6,
5139 .fill_link_af = inet6_fill_link_af,
5140 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005141 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005142};
5143
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144/*
5145 * Init / cleanup code
5146 */
5147
5148int __init addrconf_init(void)
5149{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005150 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005151
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005152 err = ipv6_addr_label_init();
5153 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005154 pr_crit("%s: cannot initialize default policy table: %d\n",
5155 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005156 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005159 err = register_pernet_subsys(&addrconf_ops);
5160 if (err < 0)
5161 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005162
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 /* The addrconf netdev notifier requires that loopback_dev
5164 * has it's ipv6 private information allocated and setup
5165 * before it can bring up and give link-local addresses
5166 * to other devices which are up.
5167 *
5168 * Unfortunately, loopback_dev is not necessarily the first
5169 * entry in the global dev_base list of net devices. In fact,
5170 * it is likely to be the very last entry on that list.
5171 * So this causes the notifier registry below to try and
5172 * give link-local addresses to all devices besides loopback_dev
5173 * first, then loopback_dev, which cases all the non-loopback_dev
5174 * devices to fail to get a link-local address.
5175 *
5176 * So, as a temporary fix, allocate the ipv6 structure for
5177 * loopback_dev first by hand.
5178 * Longer term, all of the dependencies ipv6 has upon the loopback
5179 * device and it being up should be removed.
5180 */
5181 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005182 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 err = -ENOMEM;
5184 rtnl_unlock();
5185 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005186 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
stephen hemmingerc2e21292010-03-17 20:31:10 +00005188 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5189 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5190
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 register_netdevice_notifier(&ipv6_dev_notf);
5192
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005194
Thomas Grafb382b192010-11-16 04:33:57 +00005195 err = rtnl_af_register(&inet6_ops);
5196 if (err < 0)
5197 goto errout_af;
5198
Greg Rosec7ac8672011-06-10 01:27:09 +00005199 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5200 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005201 if (err < 0)
5202 goto errout;
5203
5204 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005205 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5206 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5207 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5208 inet6_dump_ifaddr, NULL);
5209 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5210 inet6_dump_ifmcaddr, NULL);
5211 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5212 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005213 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005214 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005215
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005216 ipv6_addr_label_rtnl_register();
5217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005219errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005220 rtnl_af_unregister(&inet6_ops);
5221errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005222 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005223errlo:
5224 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005225out_addrlabel:
5226 ipv6_addr_label_cleanup();
5227out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005228 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229}
5230
Daniel Lezcano09f77092007-12-13 05:34:58 -08005231void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005233 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 int i;
5235
5236 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005237 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005238 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239
5240 rtnl_lock();
5241
Thomas Grafb382b192010-11-16 04:33:57 +00005242 __rtnl_af_unregister(&inet6_ops);
5243
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005244 /* clean dev list */
5245 for_each_netdev(&init_net, dev) {
5246 if (__in6_dev_get(dev) == NULL)
5247 continue;
5248 addrconf_ifdown(dev, 1);
5249 }
5250 addrconf_ifdown(init_net.loopback_dev, 2);
5251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 * Check hash table.
5254 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00005255 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005256 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5257 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00005258 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
5260 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262}