blob: 1b9f4f25212e0b066293a7f2b71688cc89053536 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <net/ipv6.h>
74#include <net/protocol.h>
75#include <net/ndisc.h>
76#include <net/ip6_route.h>
77#include <net/addrconf.h>
78#include <net/tcp.h>
79#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070080#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070081#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/if_tunnel.h>
83#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000084#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#ifdef CONFIG_IPV6_PRIVACY
87#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif
89
Stephen Hemmingere21e8462010-03-20 16:09:01 -070090#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070091#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#include <linux/proc_fs.h>
94#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040095#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* Set to 3 to get tracing... */
98#define ACONF_DEBUG 2
99
100#if ACONF_DEBUG >= 3
101#define ADBG(x) printk x
102#else
103#define ADBG(x)
104#endif
105
106#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000107
108static inline u32 cstamp_delta(unsigned long cstamp)
109{
110 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100114static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800115static void addrconf_sysctl_unregister(struct inet6_dev *idev);
116#else
117static inline void addrconf_sysctl_register(struct inet6_dev *idev)
118{
119}
120
121static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
122{
123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#endif
125
126#ifdef CONFIG_IPV6_PRIVACY
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000127static void __ipv6_regen_rndid(struct inet6_dev *idev);
128static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif
131
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900132static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static int ipv6_count_addresses(struct inet6_dev *idev);
134
135/*
136 * Configured unicast address hash table
137 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000138static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578ae2010-03-17 20:31:11 +0000139static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static void addrconf_verify(unsigned long);
142
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700143static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static DEFINE_SPINLOCK(addrconf_verify_lock);
145
146static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
147static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
148
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000149static void addrconf_type_change(struct net_device *dev,
150 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int addrconf_ifdown(struct net_device *dev, int how);
152
Romain Kuntz21caa662013-01-09 21:06:03 +0000153static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
154 int plen,
155 const struct net_device *dev,
156 u32 flags, u32 noflags);
157
David S. Millercf22f9a2012-04-14 21:37:40 -0400158static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void addrconf_dad_timer(unsigned long data);
160static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900161static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static void addrconf_rs_timer(unsigned long data);
163static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
164static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
165
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900166static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700168static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
169 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Alan Sterne041c682006-03-27 01:16:30 -0800171static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Adrian Bunk888c8482008-07-22 14:21:58 -0700173static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 .forwarding = 0,
175 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
176 .mtu6 = IPV6_MIN_MTU,
177 .accept_ra = 1,
178 .accept_redirects = 1,
179 .autoconf = 1,
180 .force_mld_version = 0,
181 .dad_transmits = 1,
182 .rtr_solicits = MAX_RTR_SOLICITATIONS,
183 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
184 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
185#ifdef CONFIG_IPV6_PRIVACY
186 .use_tempaddr = 0,
187 .temp_valid_lft = TEMP_VALID_LIFETIME,
188 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
189 .regen_max_retry = REGEN_MAX_RETRY,
190 .max_desync_factor = MAX_DESYNC_FACTOR,
191#endif
192 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800193 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800194 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800195#ifdef CONFIG_IPV6_ROUTER_PREF
196 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800197 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800198#ifdef CONFIG_IPV6_ROUTE_INFO
199 .accept_ra_rt_info_max_plen = 0,
200#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800201#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700202 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700203 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900204 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900205 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
Brian Haleyab32ea52006-09-22 14:15:41 -0700208static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .forwarding = 0,
210 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
211 .mtu6 = IPV6_MIN_MTU,
212 .accept_ra = 1,
213 .accept_redirects = 1,
214 .autoconf = 1,
215 .dad_transmits = 1,
216 .rtr_solicits = MAX_RTR_SOLICITATIONS,
217 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
218 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
219#ifdef CONFIG_IPV6_PRIVACY
220 .use_tempaddr = 0,
221 .temp_valid_lft = TEMP_VALID_LIFETIME,
222 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
223 .regen_max_retry = REGEN_MAX_RETRY,
224 .max_desync_factor = MAX_DESYNC_FACTOR,
225#endif
226 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800227 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800228 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800229#ifdef CONFIG_IPV6_ROUTER_PREF
230 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800231 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800232#ifdef CONFIG_IPV6_ROUTE_INFO
233 .accept_ra_rt_info_max_plen = 0,
234#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800235#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700236 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700237 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900238 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900239 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
242/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900245const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
246const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000247const struct in6_addr in6addr_interfacelocal_allnodes = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT;
248const struct in6_addr in6addr_interfacelocal_allrouters = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT;
249const struct in6_addr in6addr_sitelocal_allrouters = IN6ADDR_SITELOCAL_ALLROUTERS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700251/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700252static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700253{
David S. Miller05297942008-07-08 23:01:27 -0700254 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257static void addrconf_del_timer(struct inet6_ifaddr *ifp)
258{
259 if (del_timer(&ifp->timer))
260 __in6_ifa_put(ifp);
261}
262
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700263enum addrconf_timer_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 AC_NONE,
265 AC_DAD,
266 AC_RS,
267};
268
269static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
270 enum addrconf_timer_t what,
271 unsigned long when)
272{
273 if (!del_timer(&ifp->timer))
274 in6_ifa_hold(ifp);
275
276 switch (what) {
277 case AC_DAD:
278 ifp->timer.function = addrconf_dad_timer;
279 break;
280 case AC_RS:
281 ifp->timer.function = addrconf_rs_timer;
282 break;
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700283 default:
284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286 ifp->timer.expires = jiffies + when;
287 add_timer(&ifp->timer);
288}
289
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700290static int snmp6_alloc_dev(struct inet6_dev *idev)
291{
Tejun Heo7d720c32010-02-16 15:20:26 +0000292 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000293 sizeof(struct ipstats_mib),
294 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700295 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000296 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
297 GFP_KERNEL);
298 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700299 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000300 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
301 GFP_KERNEL);
302 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700303 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700304
305 return 0;
306
David L Stevens14878f72007-09-16 16:52:35 -0700307err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000308 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700309err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000310 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700311err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700312 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700313}
314
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700315static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700316{
Eric Dumazetbe281e52011-05-19 01:14:23 +0000317 kfree(idev->stats.icmpv6msgdev);
318 kfree(idev->stats.icmpv6dev);
Tejun Heo7d720c32010-02-16 15:20:26 +0000319 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/* Nobody refers to this device, we may destroy it. */
323
324void in6_dev_finish_destroy(struct inet6_dev *idev)
325{
326 struct net_device *dev = idev->dev;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700327
stephen hemminger502a2ff2010-03-17 20:31:13 +0000328 WARN_ON(!list_empty(&idev->addr_list));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700329 WARN_ON(idev->mc_list != NULL);
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000332 pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#endif
334 dev_put(dev);
335 if (!idev->dead) {
Joe Perchesf3213832012-05-15 14:11:53 +0000336 pr_warn("Freeing alive inet6 device %p\n", idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return;
338 }
339 snmp6_free_dev(idev);
Lai Jiangshan38f57d12011-03-15 17:59:14 +0800340 kfree_rcu(idev, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900342EXPORT_SYMBOL(in6_dev_finish_destroy);
343
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000344static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 struct inet6_dev *ndev;
347
348 ASSERT_RTNL();
349
350 if (dev->mtu < IPV6_MIN_MTU)
351 return NULL;
352
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900353 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900355 if (ndev == NULL)
356 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Ingo Oeser322f74a2006-03-20 23:01:47 -0800358 rwlock_init(&ndev->lock);
359 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000360 INIT_LIST_HEAD(&ndev->addr_list);
361
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900362 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800363 ndev->cnf.mtu6 = dev->mtu;
364 ndev->cnf.sysctl = NULL;
365 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
366 if (ndev->nd_parms == NULL) {
367 kfree(ndev);
368 return NULL;
369 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700370 if (ndev->cnf.forwarding)
371 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800372 /* We refer to the device */
373 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Ingo Oeser322f74a2006-03-20 23:01:47 -0800375 if (snmp6_alloc_dev(ndev) < 0) {
376 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000377 "%s: cannot allocate memory for statistics; dev=%s.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800378 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800379 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400380 dev_put(dev);
381 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800382 return NULL;
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Ingo Oeser322f74a2006-03-20 23:01:47 -0800385 if (snmp6_register_dev(ndev) < 0) {
386 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000387 "%s: cannot create /proc/net/dev_snmp6/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800388 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800389 neigh_parms_release(&nd_tbl, ndev->nd_parms);
390 ndev->dead = 1;
391 in6_dev_finish_destroy(ndev);
392 return NULL;
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Ingo Oeser322f74a2006-03-20 23:01:47 -0800395 /* One reference from device. We must do this before
396 * we invoke __ipv6_regen_rndid().
397 */
398 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900400 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
401 ndev->cnf.accept_dad = -1;
402
Amerigo Wang07a93622012-10-29 16:23:10 +0000403#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700404 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000405 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700406 ndev->cnf.rtr_solicits = 0;
407 }
408#endif
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000411 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800412 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800413 if ((dev->flags&IFF_LOOPBACK) ||
414 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700415 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700416 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700417 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800418 ndev->cnf.use_tempaddr = -1;
419 } else {
420 in6_dev_hold(ndev);
421 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800423#endif
424
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700425 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700426 ndev->if_flags |= IF_READY;
427
Ingo Oeser322f74a2006-03-20 23:01:47 -0800428 ipv6_mc_init_dev(ndev);
429 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100430 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800431 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000432 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800433
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000434 /* Join interface-local all-node multicast group */
435 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
436
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800437 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900438 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800439
Li Weid6ddef92012-03-05 14:45:17 +0000440 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000441 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000442 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return ndev;
445}
446
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000447static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct inet6_dev *idev;
450
451 ASSERT_RTNL();
452
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700453 idev = __in6_dev_get(dev);
454 if (!idev) {
455 idev = ipv6_add_dev(dev);
456 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return NULL;
458 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (dev->flags&IFF_UP)
461 ipv6_mc_up(idev);
462 return idev;
463}
464
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000465static int inet6_netconf_msgsize_devconf(int type)
466{
467 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
468 + nla_total_size(4); /* NETCONFA_IFINDEX */
469
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000470 /* type -1 is used for ALL */
471 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000472 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500473#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000474 if (type == -1 || type == NETCONFA_MC_FORWARDING)
475 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500476#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000477
478 return size;
479}
480
481static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
482 struct ipv6_devconf *devconf, u32 portid,
483 u32 seq, int event, unsigned int flags,
484 int type)
485{
486 struct nlmsghdr *nlh;
487 struct netconfmsg *ncm;
488
489 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
490 flags);
491 if (nlh == NULL)
492 return -EMSGSIZE;
493
494 ncm = nlmsg_data(nlh);
495 ncm->ncm_family = AF_INET6;
496
497 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
498 goto nla_put_failure;
499
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000500 /* type -1 is used for ALL */
501 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000502 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
503 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500504#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000505 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
506 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
507 devconf->mc_forwarding) < 0)
508 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500509#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000510 return nlmsg_end(skb, nlh);
511
512nla_put_failure:
513 nlmsg_cancel(skb, nlh);
514 return -EMSGSIZE;
515}
516
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000517void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
518 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000519{
520 struct sk_buff *skb;
521 int err = -ENOBUFS;
522
523 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
524 if (skb == NULL)
525 goto errout;
526
527 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
528 RTM_NEWNETCONF, 0, type);
529 if (err < 0) {
530 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
531 WARN_ON(err == -EMSGSIZE);
532 kfree_skb(skb);
533 goto errout;
534 }
535 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
536 return;
537errout:
Cong Dingbd779022012-12-18 12:08:56 +0000538 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000539}
540
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000541static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
542 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
543 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
544};
545
546static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000547 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000548{
549 struct net *net = sock_net(in_skb->sk);
550 struct nlattr *tb[NETCONFA_MAX+1];
551 struct netconfmsg *ncm;
552 struct sk_buff *skb;
553 struct ipv6_devconf *devconf;
554 struct inet6_dev *in6_dev;
555 struct net_device *dev;
556 int ifindex;
557 int err;
558
559 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
560 devconf_ipv6_policy);
561 if (err < 0)
562 goto errout;
563
564 err = EINVAL;
565 if (!tb[NETCONFA_IFINDEX])
566 goto errout;
567
568 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
569 switch (ifindex) {
570 case NETCONFA_IFINDEX_ALL:
571 devconf = net->ipv6.devconf_all;
572 break;
573 case NETCONFA_IFINDEX_DEFAULT:
574 devconf = net->ipv6.devconf_dflt;
575 break;
576 default:
577 dev = __dev_get_by_index(net, ifindex);
578 if (dev == NULL)
579 goto errout;
580 in6_dev = __in6_dev_get(dev);
581 if (in6_dev == NULL)
582 goto errout;
583 devconf = &in6_dev->cnf;
584 break;
585 }
586
587 err = -ENOBUFS;
588 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
589 if (skb == NULL)
590 goto errout;
591
592 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
593 NETLINK_CB(in_skb).portid,
594 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
595 -1);
596 if (err < 0) {
597 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
598 WARN_ON(err == -EMSGSIZE);
599 kfree_skb(skb);
600 goto errout;
601 }
602 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
603errout:
604 return err;
605}
606
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000607static int inet6_netconf_dump_devconf(struct sk_buff *skb,
608 struct netlink_callback *cb)
609{
610 struct net *net = sock_net(skb->sk);
611 int h, s_h;
612 int idx, s_idx;
613 struct net_device *dev;
614 struct inet6_dev *idev;
615 struct hlist_head *head;
616
617 s_h = cb->args[0];
618 s_idx = idx = cb->args[1];
619
620 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
621 idx = 0;
622 head = &net->dev_index_head[h];
623 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000624 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
625 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000626 hlist_for_each_entry_rcu(dev, head, index_hlist) {
627 if (idx < s_idx)
628 goto cont;
629 idev = __in6_dev_get(dev);
630 if (!idev)
631 goto cont;
632
633 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
634 &idev->cnf,
635 NETLINK_CB(cb->skb).portid,
636 cb->nlh->nlmsg_seq,
637 RTM_NEWNETCONF,
638 NLM_F_MULTI,
639 -1) <= 0) {
640 rcu_read_unlock();
641 goto done;
642 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000643 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000644cont:
645 idx++;
646 }
647 rcu_read_unlock();
648 }
649 if (h == NETDEV_HASHENTRIES) {
650 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
651 net->ipv6.devconf_all,
652 NETLINK_CB(cb->skb).portid,
653 cb->nlh->nlmsg_seq,
654 RTM_NEWNETCONF, NLM_F_MULTI,
655 -1) <= 0)
656 goto done;
657 else
658 h++;
659 }
660 if (h == NETDEV_HASHENTRIES + 1) {
661 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
662 net->ipv6.devconf_dflt,
663 NETLINK_CB(cb->skb).portid,
664 cb->nlh->nlmsg_seq,
665 RTM_NEWNETCONF, NLM_F_MULTI,
666 -1) <= 0)
667 goto done;
668 else
669 h++;
670 }
671done:
672 cb->args[0] = h;
673 cb->args[1] = idx;
674
675 return skb->len;
676}
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678#ifdef CONFIG_SYSCTL
679static void dev_forward_change(struct inet6_dev *idev)
680{
681 struct net_device *dev;
682 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 if (!idev)
685 return;
686 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700687 if (idev->cnf.forwarding)
688 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000689 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000690 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900691 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000692 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
693 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
694 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900695 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000696 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
697 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000700
701 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800702 if (ifa->flags&IFA_F_TENTATIVE)
703 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (idev->cnf.forwarding)
705 addrconf_join_anycast(ifa);
706 else
707 addrconf_leave_anycast(ifa);
708 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000709 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
710 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713
Pavel Emelyanove1869322008-01-10 17:43:50 -0800714static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct net_device *dev;
717 struct inet6_dev *idev;
718
Ben Hutchings4acd4942012-08-14 08:54:51 +0000719 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 idev = __in6_dev_get(dev);
721 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800722 int changed = (!idev->cnf.forwarding) ^ (!newf);
723 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (changed)
725 dev_forward_change(idev);
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800729
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000730static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800731{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800732 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000733 int old;
734
735 if (!rtnl_trylock())
736 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800737
738 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000739 old = *p;
740 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800741
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000742 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000743 if ((!newf) ^ (!old))
744 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
745 NETCONFA_IFINDEX_DEFAULT,
746 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000747 rtnl_unlock();
748 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000749 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000750
Pavel Emelyanove1869322008-01-10 17:43:50 -0800751 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800752 net->ipv6.devconf_dflt->forwarding = newf;
753 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000754 if ((!newf) ^ (!old))
755 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
756 NETCONFA_IFINDEX_ALL,
757 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000758 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800759 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700760 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800761
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000762 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800763 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000764 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800765}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766#endif
767
stephen hemminger5c578ae2010-03-17 20:31:11 +0000768/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
770{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000771 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000774 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#endif
776
777 in6_dev_put(ifp->idev);
778
779 if (del_timer(&ifp->timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700780 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Herbert Xue9d3e082010-05-18 15:36:06 -0700782 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000783 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return;
785 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000786 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Lai Jiangshane5785982011-03-15 18:00:14 +0800788 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
Brian Haleye55ffac2006-07-10 15:25:51 -0700791static void
792ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
793{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000794 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700795 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700796
797 /*
798 * Each device address list is sorted in order of scope -
799 * global before linklocal.
800 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000801 list_for_each(p, &idev->addr_list) {
802 struct inet6_ifaddr *ifa
803 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700804 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700805 break;
806 }
807
David S. Millerb54c9b92010-03-25 21:25:30 -0700808 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700809}
810
Eric Dumazetddbe5032012-07-18 08:11:12 +0000811static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900812{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000813 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900814}
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816/* On success it returns ifp with increased reference count */
817
818static struct inet6_ifaddr *
819ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700820 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 struct inet6_ifaddr *ifa = NULL;
823 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000824 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900826 int addr_type = ipv6_addr_type(addr);
827
828 if (addr_type == IPV6_ADDR_ANY ||
829 addr_type & IPV6_ADDR_MULTICAST ||
830 (!(idev->dev->flags & IFF_LOOPBACK) &&
831 addr_type & IPV6_ADDR_LOOPBACK))
832 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700834 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (idev->dead) {
836 err = -ENODEV; /*XXX*/
837 goto out2;
838 }
839
Brian Haley56d417b2009-06-01 03:07:33 -0700840 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700841 err = -EACCES;
842 goto out2;
843 }
844
stephen hemminger5c578ae2010-03-17 20:31:11 +0000845 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900848 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 ADBG(("ipv6_add_addr: already assigned\n"));
850 err = -EEXIST;
851 goto out;
852 }
853
Ingo Oeser322f74a2006-03-20 23:01:47 -0800854 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (ifa == NULL) {
857 ADBG(("ipv6_add_addr: malloc failed\n"));
858 err = -ENOBUFS;
859 goto out;
860 }
861
David S. Miller8f031512011-12-06 16:48:14 -0500862 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (IS_ERR(rt)) {
864 err = PTR_ERR(rt);
865 goto out;
866 }
867
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000868 ifa->addr = *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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 init_timer(&ifa->timer);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000873 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 ifa->timer.data = (unsigned long) ifa;
875 ifa->scope = scope;
876 ifa->prefix_len = pfxlen;
877 ifa->flags = flags | IFA_F_TENTATIVE;
878 ifa->cstamp = ifa->tstamp = jiffies;
879
Keir Fraser57f5f542006-08-29 02:43:49 -0700880 ifa->rt = rt;
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 ifa->idev = idev;
883 in6_dev_hold(idev);
884 /* For caller */
885 in6_ifa_hold(ifa);
886
887 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000888 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
stephen hemminger5c578ae2010-03-17 20:31:11 +0000890 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000891 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 write_lock(&idev->lock);
894 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700895 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897#ifdef CONFIG_IPV6_PRIVACY
898 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000899 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 in6_ifa_hold(ifa);
901 }
902#endif
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 in6_ifa_hold(ifa);
905 write_unlock(&idev->lock);
906out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700907 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700909 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800910 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 else {
912 kfree(ifa);
913 ifa = ERR_PTR(err);
914 }
915
916 return ifa;
917out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000918 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto out2;
920}
921
922/* This function wants to get referenced ifp and releases it before return */
923
924static void ipv6_del_addr(struct inet6_ifaddr *ifp)
925{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000926 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700928 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int deleted = 0, onlink = 0;
930 unsigned long expires = jiffies;
931
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700932 spin_lock_bh(&ifp->state_lock);
933 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700934 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700935 spin_unlock_bh(&ifp->state_lock);
936
937 if (state == INET6_IFADDR_STATE_DEAD)
938 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
stephen hemminger5c578ae2010-03-17 20:31:11 +0000940 spin_lock_bh(&addrconf_hash_lock);
941 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000942 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 write_lock_bh(&idev->lock);
945#ifdef CONFIG_IPV6_PRIVACY
946 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000947 list_del(&ifp->tmp_list);
948 if (ifp->ifpub) {
949 in6_ifa_put(ifp->ifpub);
950 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000952 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954#endif
955
stephen hemminger502a2ff2010-03-17 20:31:13 +0000956 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000958 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
962 break;
963 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800964 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 } else if (ifp->flags & IFA_F_PERMANENT) {
966 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
967 ifp->prefix_len)) {
968 if (ifa->flags & IFA_F_PERMANENT) {
969 onlink = 1;
970 if (deleted)
971 break;
972 } else {
973 unsigned long lifetime;
974
975 if (!onlink)
976 onlink = -1;
977
978 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900979
980 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
981 /*
982 * Note: Because this address is
983 * not permanent, lifetime <
984 * LONG_MAX / HZ here.
985 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (time_before(expires,
987 ifa->tstamp + lifetime * HZ))
988 expires = ifa->tstamp + lifetime * HZ;
989 spin_unlock(&ifa->lock);
990 }
991 }
992 }
993 }
994 write_unlock_bh(&idev->lock);
995
Andrey Vaginb2238562008-07-08 15:13:31 -0700996 addrconf_del_timer(ifp);
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 ipv6_ifa_notify(RTM_DELADDR, ifp);
999
Alan Sterne041c682006-03-27 01:16:30 -08001000 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /*
1003 * Purge or update corresponding prefix
1004 *
1005 * 1) we don't purge prefix here if address was not permanent.
1006 * prefix is managed by its own lifetime.
1007 * 2) if there're no addresses, delete prefix.
1008 * 3) if there're still other permanent address(es),
1009 * corresponding prefix is still permanent.
1010 * 4) otherwise, update prefix lifetime to the
1011 * longest valid lifetime among the corresponding
1012 * addresses on the device.
1013 * Note: subsequent RA will update lifetime.
1014 *
1015 * --yoshfuji
1016 */
1017 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1018 struct in6_addr prefix;
1019 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001021 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001022
Romain Kuntz21caa662013-01-09 21:06:03 +00001023 rt = addrconf_get_prefix_route(&prefix,
1024 ifp->prefix_len,
1025 ifp->idev->dev,
1026 0, RTF_GATEWAY | RTF_DEFAULT);
1027
1028 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001030 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 rt = NULL;
1032 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001033 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001036 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038
Daniel Walterc3968a82011-04-13 21:10:57 +00001039 /* clean up prefsrc entries */
1040 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001041out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 in6_ifa_put(ifp);
1043}
1044
1045#ifdef CONFIG_IPV6_PRIVACY
1046static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1047{
1048 struct inet6_dev *idev = ifp->idev;
1049 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001050 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001051 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 int tmp_plen;
1053 int ret = 0;
1054 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001055 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001056 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 write_lock(&idev->lock);
1059 if (ift) {
1060 spin_lock_bh(&ift->lock);
1061 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1062 spin_unlock_bh(&ift->lock);
1063 tmpaddr = &addr;
1064 } else {
1065 tmpaddr = NULL;
1066 }
1067retry:
1068 in6_dev_hold(idev);
1069 if (idev->cnf.use_tempaddr <= 0) {
1070 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001071 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 in6_dev_put(idev);
1073 ret = -1;
1074 goto out;
1075 }
1076 spin_lock_bh(&ifp->lock);
1077 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1078 idev->cnf.use_tempaddr = -1; /*XXX*/
1079 spin_unlock_bh(&ifp->lock);
1080 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001081 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1082 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 in6_dev_put(idev);
1084 ret = -1;
1085 goto out;
1086 }
1087 in6_ifa_hold(ifp);
1088 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001089 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001091 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 tmp_valid_lft = min_t(__u32,
1093 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001094 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001095 tmp_prefered_lft = min_t(__u32,
1096 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001097 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001098 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 tmp_plen = ifp->prefix_len;
1100 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 tmp_tstamp = ifp->tstamp;
1102 spin_unlock_bh(&ifp->lock);
1103
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001104 regen_advance = idev->cnf.regen_max_retry *
1105 idev->cnf.dad_transmits *
1106 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001108
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001109 /* A temporary address is created only if this calculated Preferred
1110 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1111 * an implementation must not create a temporary address with a zero
1112 * Preferred Lifetime.
1113 */
1114 if (tmp_prefered_lft <= regen_advance) {
1115 in6_ifa_put(ifp);
1116 in6_dev_put(idev);
1117 ret = -1;
1118 goto out;
1119 }
1120
Neil Horman95c385b2007-04-25 17:08:10 -07001121 addr_flags = IFA_F_TEMPORARY;
1122 /* set in addrconf_prefix_rcv() */
1123 if (ifp->flags & IFA_F_OPTIMISTIC)
1124 addr_flags |= IFA_F_OPTIMISTIC;
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001127 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -07001129 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
1130 addr_flags) : NULL;
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00001131 if (IS_ERR_OR_NULL(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 in6_ifa_put(ifp);
1133 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001134 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 tmpaddr = &addr;
1136 write_lock(&idev->lock);
1137 goto retry;
1138 }
1139
1140 spin_lock_bh(&ift->lock);
1141 ift->ifpub = ifp;
1142 ift->valid_lft = tmp_valid_lft;
1143 ift->prefered_lft = tmp_prefered_lft;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001144 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 ift->tstamp = tmp_tstamp;
1146 spin_unlock_bh(&ift->lock);
1147
David S. Millercf22f9a2012-04-14 21:37:40 -04001148 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 in6_ifa_put(ift);
1150 in6_dev_put(idev);
1151out:
1152 return ret;
1153}
1154#endif
1155
1156/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001157 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001159enum {
1160 IPV6_SADDR_RULE_INIT = 0,
1161 IPV6_SADDR_RULE_LOCAL,
1162 IPV6_SADDR_RULE_SCOPE,
1163 IPV6_SADDR_RULE_PREFERRED,
1164#ifdef CONFIG_IPV6_MIP6
1165 IPV6_SADDR_RULE_HOA,
1166#endif
1167 IPV6_SADDR_RULE_OIF,
1168 IPV6_SADDR_RULE_LABEL,
1169#ifdef CONFIG_IPV6_PRIVACY
1170 IPV6_SADDR_RULE_PRIVACY,
1171#endif
1172 IPV6_SADDR_RULE_ORCHID,
1173 IPV6_SADDR_RULE_PREFIX,
1174 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001175};
1176
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001177struct ipv6_saddr_score {
1178 int rule;
1179 int addr_type;
1180 struct inet6_ifaddr *ifa;
1181 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1182 int scopedist;
1183 int matchlen;
1184};
1185
1186struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001187 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001188 int ifindex;
1189 int scope;
1190 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001191 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001192};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001193
Dave Jonesb6f99a22007-03-22 12:27:49 -07001194static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001196 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001197 return 1;
1198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Benjamin Thery3de23252008-05-28 14:51:24 +02001201static int ipv6_get_saddr_eval(struct net *net,
1202 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001203 struct ipv6_saddr_dst *dst,
1204 int i)
1205{
1206 int ret;
1207
1208 if (i <= score->rule) {
1209 switch (i) {
1210 case IPV6_SADDR_RULE_SCOPE:
1211 ret = score->scopedist;
1212 break;
1213 case IPV6_SADDR_RULE_PREFIX:
1214 ret = score->matchlen;
1215 break;
1216 default:
1217 ret = !!test_bit(i, score->scorebits);
1218 }
1219 goto out;
1220 }
1221
1222 switch (i) {
1223 case IPV6_SADDR_RULE_INIT:
1224 /* Rule 0: remember if hiscore is not ready yet */
1225 ret = !!score->ifa;
1226 break;
1227 case IPV6_SADDR_RULE_LOCAL:
1228 /* Rule 1: Prefer same address */
1229 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1230 break;
1231 case IPV6_SADDR_RULE_SCOPE:
1232 /* Rule 2: Prefer appropriate scope
1233 *
1234 * ret
1235 * ^
1236 * -1 | d 15
1237 * ---+--+-+---> scope
1238 * |
1239 * | d is scope of the destination.
1240 * B-d | \
1241 * | \ <- smaller scope is better if
1242 * B-15 | \ if scope is enough for destinaion.
1243 * | ret = B - scope (-1 <= scope >= d <= 15).
1244 * d-C-1 | /
1245 * |/ <- greater is better
1246 * -C / if scope is not enough for destination.
1247 * /| ret = scope - C (-1 <= d < scope <= 15).
1248 *
1249 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1250 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1251 * Assume B = 0 and we get C > 29.
1252 */
1253 ret = __ipv6_addr_src_scope(score->addr_type);
1254 if (ret >= dst->scope)
1255 ret = -ret;
1256 else
1257 ret -= 128; /* 30 is enough */
1258 score->scopedist = ret;
1259 break;
1260 case IPV6_SADDR_RULE_PREFERRED:
1261 /* Rule 3: Avoid deprecated and optimistic addresses */
1262 ret = ipv6_saddr_preferred(score->addr_type) ||
1263 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1264 break;
1265#ifdef CONFIG_IPV6_MIP6
1266 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001267 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001268 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001269 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1270 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001271 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001272 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001273#endif
1274 case IPV6_SADDR_RULE_OIF:
1275 /* Rule 5: Prefer outgoing interface */
1276 ret = (!dst->ifindex ||
1277 dst->ifindex == score->ifa->idev->dev->ifindex);
1278 break;
1279 case IPV6_SADDR_RULE_LABEL:
1280 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001281 ret = ipv6_addr_label(net,
1282 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001283 score->ifa->idev->dev->ifindex) == dst->label;
1284 break;
1285#ifdef CONFIG_IPV6_PRIVACY
1286 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001287 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001288 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001289 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001290 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001291 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1292 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1293 score->ifa->idev->cnf.use_tempaddr >= 2;
1294 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001295 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001296 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001297#endif
1298 case IPV6_SADDR_RULE_ORCHID:
1299 /* Rule 8-: Prefer ORCHID vs ORCHID or
1300 * non-ORCHID vs non-ORCHID
1301 */
1302 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1303 ipv6_addr_orchid(dst->addr));
1304 break;
1305 case IPV6_SADDR_RULE_PREFIX:
1306 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001307 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1308 if (ret > score->ifa->prefix_len)
1309 ret = score->ifa->prefix_len;
1310 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001311 break;
1312 default:
1313 ret = 0;
1314 }
1315
1316 if (ret)
1317 __set_bit(i, score->scorebits);
1318 score->rule = i;
1319out:
1320 return ret;
1321}
1322
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001323int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001324 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001325 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001327 struct ipv6_saddr_score scores[2],
1328 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001329 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001330 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001331 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001333 dst_type = __ipv6_addr_type(daddr);
1334 dst.addr = daddr;
1335 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1336 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001337 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001338 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001339
1340 hiscore->rule = -1;
1341 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001343 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001344
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001345 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001346 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001347
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001348 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001349 * - multicast and link-local destination address,
1350 * the set of candidate source address MUST only
1351 * include addresses assigned to interfaces
1352 * belonging to the same link as the outgoing
1353 * interface.
1354 * (- For site-local destination addresses, the
1355 * set of candidate source addresses MUST only
1356 * include addresses assigned to interfaces
1357 * belonging to the same site as the outgoing
1358 * interface.)
1359 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001360 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1361 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1362 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001363 continue;
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001366 if (!idev)
1367 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001369 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001370 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001371 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001373 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001374 * - Tentative Address (RFC2462 section 5.4)
1375 * - A tentative address is not considered
1376 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001377 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001378 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001379 * - In any case, anycast addresses, multicast
1380 * addresses, and the unspecified address MUST
1381 * NOT be included in a candidate set.
1382 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001383 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1384 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001385 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001386
1387 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1388
1389 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1390 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001391 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -08001392 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001393 "assigned as unicast address on %s",
1394 dev->name);
1395 continue;
1396 }
1397
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001398 score->rule = -1;
1399 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001400
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001401 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1402 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001403
Benjamin Thery3de23252008-05-28 14:51:24 +02001404 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1405 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001406
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001407 if (minihiscore > miniscore) {
1408 if (i == IPV6_SADDR_RULE_SCOPE &&
1409 score->scopedist > 0) {
1410 /*
1411 * special case:
1412 * each remaining entry
1413 * has too small (not enough)
1414 * scope, because ifa entries
1415 * are sorted by their scope
1416 * values.
1417 */
1418 goto try_nextdev;
1419 }
1420 break;
1421 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001422 if (hiscore->ifa)
1423 in6_ifa_put(hiscore->ifa);
1424
1425 in6_ifa_hold(score->ifa);
1426
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001427 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001428
1429 /* restore our iterator */
1430 score->ifa = hiscore->ifa;
1431
1432 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001435 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001436try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001437 read_unlock_bh(&idev->lock);
1438 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001439 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001441 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001442 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001443
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001444 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001445 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001448EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Neil Horman95c385b2007-04-25 17:08:10 -07001450int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1451 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
1453 struct inet6_dev *idev;
1454 int err = -EADDRNOTAVAIL;
1455
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001456 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001457 idev = __in6_dev_get(dev);
1458 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct inet6_ifaddr *ifp;
1460
1461 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001462 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1463 if (ifp->scope == IFA_LINK &&
1464 !(ifp->flags & banned_flags)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001465 *addr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 err = 0;
1467 break;
1468 }
1469 }
1470 read_unlock_bh(&idev->lock);
1471 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001472 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return err;
1474}
1475
1476static int ipv6_count_addresses(struct inet6_dev *idev)
1477{
1478 int cnt = 0;
1479 struct inet6_ifaddr *ifp;
1480
1481 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001482 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 cnt++;
1484 read_unlock_bh(&idev->lock);
1485 return cnt;
1486}
1487
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001488int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001489 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001491 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001492 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
stephen hemminger5c578ae2010-03-17 20:31:11 +00001494 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001495 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001496 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001497 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001499 !(ifp->flags&IFA_F_TENTATIVE) &&
1500 (dev == NULL || ifp->idev->dev == dev ||
1501 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1502 rcu_read_unlock_bh();
1503 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001506
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001507 rcu_read_unlock_bh();
1508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001510EXPORT_SYMBOL(ipv6_chk_addr);
1511
David S. Miller3e81c6d2010-03-20 16:18:00 -07001512static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1513 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001515 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001516 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Sasha Levinb67bfe02013-02-27 17:06:00 -08001518 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001519 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001520 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (ipv6_addr_equal(&ifp->addr, addr)) {
1522 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001523 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
1525 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001526 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001529int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001530{
1531 struct inet6_dev *idev;
1532 struct inet6_ifaddr *ifa;
1533 int onlink;
1534
1535 onlink = 0;
1536 rcu_read_lock();
1537 idev = __in6_dev_get(dev);
1538 if (idev) {
1539 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001540 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001541 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1542 ifa->prefix_len);
1543 if (onlink)
1544 break;
1545 }
1546 read_unlock_bh(&idev->lock);
1547 }
1548 rcu_read_unlock();
1549 return onlink;
1550}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001551EXPORT_SYMBOL(ipv6_chk_prefix);
1552
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001553struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001554 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
David S. Millerb79d1d52010-03-25 21:39:21 -07001556 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001557 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
stephen hemminger5c578ae2010-03-17 20:31:11 +00001559 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001560 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001561 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001562 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (ipv6_addr_equal(&ifp->addr, addr)) {
1564 if (dev == NULL || ifp->idev->dev == dev ||
1565 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001566 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 in6_ifa_hold(ifp);
1568 break;
1569 }
1570 }
1571 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001572 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
David S. Millerb79d1d52010-03-25 21:39:21 -07001574 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577/* Gets referenced address, destroys ifaddr */
1578
Brian Haleycc411d02009-09-09 14:41:32 +00001579static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (ifp->flags&IFA_F_PERMANENT) {
1582 spin_lock_bh(&ifp->lock);
1583 addrconf_del_timer(ifp);
1584 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001585 if (dad_failed)
1586 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001588 if (dad_failed)
1589 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 in6_ifa_put(ifp);
1591#ifdef CONFIG_IPV6_PRIVACY
1592 } else if (ifp->flags&IFA_F_TEMPORARY) {
1593 struct inet6_ifaddr *ifpub;
1594 spin_lock_bh(&ifp->lock);
1595 ifpub = ifp->ifpub;
1596 if (ifpub) {
1597 in6_ifa_hold(ifpub);
1598 spin_unlock_bh(&ifp->lock);
1599 ipv6_create_tempaddr(ifpub, ifp);
1600 in6_ifa_put(ifpub);
1601 } else {
1602 spin_unlock_bh(&ifp->lock);
1603 }
1604 ipv6_del_addr(ifp);
1605#endif
1606 } else
1607 ipv6_del_addr(ifp);
1608}
1609
Herbert Xuf2344a12010-05-18 15:55:27 -07001610static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1611{
1612 int err = -ENOENT;
1613
1614 spin_lock(&ifp->state_lock);
1615 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1616 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1617 err = 0;
1618 }
1619 spin_unlock(&ifp->state_lock);
1620
1621 return err;
1622}
1623
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001624void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1625{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001626 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001627
Ursula Braun853dc2e2010-10-24 23:06:43 +00001628 if (addrconf_dad_end(ifp)) {
1629 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001630 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001631 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001632
Joe Perchese87cc472012-05-13 21:56:26 +00001633 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1634 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001635
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001636 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1637 struct in6_addr addr;
1638
1639 addr.s6_addr32[0] = htonl(0xfe800000);
1640 addr.s6_addr32[1] = 0;
1641
1642 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1643 ipv6_addr_equal(&ifp->addr, &addr)) {
1644 /* DAD failed for link-local based on MAC address */
1645 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001646
Joe Perchesf3213832012-05-15 14:11:53 +00001647 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001648 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001649 }
1650 }
1651
Brian Haleycc411d02009-09-09 14:41:32 +00001652 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001653}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655/* Join to solicited addr multicast group. */
1656
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001657void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 struct in6_addr maddr;
1660
1661 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1662 return;
1663
1664 addrconf_addr_solict_mult(addr, &maddr);
1665 ipv6_dev_mc_inc(dev, &maddr);
1666}
1667
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001668void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 struct in6_addr maddr;
1671
1672 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1673 return;
1674
1675 addrconf_addr_solict_mult(addr, &maddr);
1676 __ipv6_dev_mc_dec(idev, &maddr);
1677}
1678
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001679static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001682 if (ifp->prefix_len == 127) /* RFC 6164 */
1683 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1685 if (ipv6_addr_any(&addr))
1686 return;
1687 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1688}
1689
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001690static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001693 if (ifp->prefix_len == 127) /* RFC 6164 */
1694 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1696 if (ipv6_addr_any(&addr))
1697 return;
1698 __ipv6_dev_ac_dec(ifp->idev, &addr);
1699}
1700
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001701static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1702{
1703 if (dev->addr_len != ETH_ALEN)
1704 return -1;
1705 memcpy(eui, dev->dev_addr, 3);
1706 memcpy(eui + 5, dev->dev_addr + 3, 3);
1707
1708 /*
1709 * The zSeries OSA network cards can be shared among various
1710 * OS instances, but the OSA cards have only one MAC address.
1711 * This leads to duplicate address conflicts in conjunction
1712 * with IPv6 if more than one instance uses the same card.
1713 *
1714 * The driver for these cards can deliver a unique 16-bit
1715 * identifier for each instance sharing the same card. It is
1716 * placed instead of 0xFFFE in the interface identifier. The
1717 * "u" bit of the interface identifier is not inverted in this
1718 * case. Hence the resulting interface identifier has local
1719 * scope according to RFC2373.
1720 */
1721 if (dev->dev_id) {
1722 eui[3] = (dev->dev_id >> 8) & 0xFF;
1723 eui[4] = dev->dev_id & 0xFF;
1724 } else {
1725 eui[3] = 0xFF;
1726 eui[4] = 0xFE;
1727 eui[0] ^= 2;
1728 }
1729 return 0;
1730}
1731
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001732static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1733{
1734 if (dev->addr_len != IEEE802154_ADDR_LEN)
1735 return -1;
1736 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001737 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001738 return 0;
1739}
1740
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001741static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1742{
1743 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1744 if (dev->addr_len != ARCNET_ALEN)
1745 return -1;
1746 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001747 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001748 return 0;
1749}
1750
1751static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1752{
1753 if (dev->addr_len != INFINIBAND_ALEN)
1754 return -1;
1755 memcpy(eui, dev->dev_addr + 12, 8);
1756 eui[0] |= 2;
1757 return 0;
1758}
1759
stephen hemmingerc61393e2010-10-04 20:17:53 +00001760static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001761{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001762 if (addr == 0)
1763 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001764 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1765 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1766 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1767 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1768 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1769 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1770 eui[1] = 0;
1771 eui[2] = 0x5E;
1772 eui[3] = 0xFE;
1773 memcpy(eui + 4, &addr, 4);
1774 return 0;
1775}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001776
1777static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1778{
1779 if (dev->priv_flags & IFF_ISATAP)
1780 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1781 return -1;
1782}
1783
stephen hemmingeraee80b52011-06-08 10:44:30 +00001784static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1785{
1786 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1787}
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1790{
1791 switch (dev->type) {
1792 case ARPHRD_ETHER:
1793 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001794 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001796 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001798 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001799 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001800 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001801 case ARPHRD_IPGRE:
1802 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001803 case ARPHRD_IEEE802154:
1804 return addrconf_ifid_eui64(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806 return -1;
1807}
1808
1809static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1810{
1811 int err = -1;
1812 struct inet6_ifaddr *ifp;
1813
1814 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001815 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1817 memcpy(eui, ifp->addr.s6_addr+8, 8);
1818 err = 0;
1819 break;
1820 }
1821 }
1822 read_unlock_bh(&idev->lock);
1823 return err;
1824}
1825
1826#ifdef CONFIG_IPV6_PRIVACY
1827/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001828static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001831 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 /*
1835 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1836 * check if generated address is not inappropriate
1837 *
1838 * - Reserved subnet anycast (RFC 2526)
1839 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001840 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 * 00-00-5E-FE-xx-xx-xx-xx
1842 * - value 0
1843 * - XXX: already assigned to an address on the device
1844 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001845 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1847 (idev->rndid[7]&0x80))
1848 goto regen;
1849 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1850 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1851 goto regen;
1852 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1853 goto regen;
1854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
1857static void ipv6_regen_rndid(unsigned long data)
1858{
1859 struct inet6_dev *idev = (struct inet6_dev *) data;
1860 unsigned long expires;
1861
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001862 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 write_lock_bh(&idev->lock);
1864
1865 if (idev->dead)
1866 goto out;
1867
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001868 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001871 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001872 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1873 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001875 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1876 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto out;
1878 }
1879
1880 if (!mod_timer(&idev->regen_timer, expires))
1881 in6_dev_hold(idev);
1882
1883out:
1884 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001885 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 in6_dev_put(idev);
1887}
1888
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001889static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001890{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001892 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894#endif
1895
1896/*
1897 * Add prefix route.
1898 */
1899
1900static void
1901addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001902 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Thomas Graf86872cb2006-08-22 00:01:08 -07001904 struct fib6_config cfg = {
1905 .fc_table = RT6_TABLE_PREFIX,
1906 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1907 .fc_ifindex = dev->ifindex,
1908 .fc_expires = expires,
1909 .fc_dst_len = plen,
1910 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001911 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001912 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001913 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001915 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 /* Prevent useless cloning on PtP SIT.
1918 This thing is done here expecting that the whole
1919 class of non-broadcast devices need not cloning.
1920 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001921#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001922 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1923 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001924#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Thomas Graf86872cb2006-08-22 00:01:08 -07001926 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001929
1930static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1931 int plen,
1932 const struct net_device *dev,
1933 u32 flags, u32 noflags)
1934{
1935 struct fib6_node *fn;
1936 struct rt6_info *rt = NULL;
1937 struct fib6_table *table;
1938
1939 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1940 if (table == NULL)
1941 return NULL;
1942
Li RongQing5744dd92012-09-11 21:59:01 +00001943 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001944 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1945 if (!fn)
1946 goto out;
1947 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001948 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001949 continue;
1950 if ((rt->rt6i_flags & flags) != flags)
1951 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001952 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001953 continue;
1954 dst_hold(&rt->dst);
1955 break;
1956 }
1957out:
Li RongQing5744dd92012-09-11 21:59:01 +00001958 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001959 return rt;
1960}
1961
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963/* Create "default" multicast route to the interface */
1964
1965static void addrconf_add_mroute(struct net_device *dev)
1966{
Thomas Graf86872cb2006-08-22 00:01:08 -07001967 struct fib6_config cfg = {
1968 .fc_table = RT6_TABLE_LOCAL,
1969 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1970 .fc_ifindex = dev->ifindex,
1971 .fc_dst_len = 8,
1972 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001973 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001974 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Thomas Graf86872cb2006-08-22 00:01:08 -07001976 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1977
1978 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
1980
Amerigo Wang07a93622012-10-29 16:23:10 +00001981#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982static void sit_route_add(struct net_device *dev)
1983{
Thomas Graf86872cb2006-08-22 00:01:08 -07001984 struct fib6_config cfg = {
1985 .fc_table = RT6_TABLE_MAIN,
1986 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1987 .fc_ifindex = dev->ifindex,
1988 .fc_dst_len = 96,
1989 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001990 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001991 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001994 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001996#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1999{
2000 struct inet6_dev *idev;
2001
2002 ASSERT_RTNL();
2003
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002004 idev = ipv6_find_idev(dev);
2005 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002006 return ERR_PTR(-ENOBUFS);
2007
2008 if (idev->cnf.disable_ipv6)
2009 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002012 if (!(dev->flags & IFF_LOOPBACK))
2013 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return idev;
2016}
2017
Neil Hormane6bff992012-01-04 10:49:15 +00002018void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
2020 struct prefix_info *pinfo;
2021 __u32 valid_lft;
2022 __u32 prefered_lft;
2023 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002025 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (len < sizeof(struct prefix_info)) {
2030 ADBG(("addrconf: prefix option too short\n"));
2031 return;
2032 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /*
2035 * Validation checks ([ADDRCONF], page 19)
2036 */
2037
2038 addr_type = ipv6_addr_type(&pinfo->prefix);
2039
2040 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2041 return;
2042
2043 valid_lft = ntohl(pinfo->valid);
2044 prefered_lft = ntohl(pinfo->prefered);
2045
2046 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002047 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return;
2049 }
2050
2051 in6_dev = in6_dev_get(dev);
2052
2053 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002054 net_dbg_ratelimited("addrconf: device %s not configured\n",
2055 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return;
2057 }
2058
2059 /*
2060 * Two things going on here:
2061 * 1) Add routes for on-link prefixes
2062 * 2) Configure prefixes with the auto flag set
2063 */
2064
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002065 if (pinfo->onlink) {
2066 struct rt6_info *rt;
2067 unsigned long rt_expires;
2068
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002069 /* Avoid arithmetic overflow. Really, we could
2070 * save rt_expires in seconds, likely valid_lft,
2071 * but it would require division in fib gc, that it
2072 * not good.
2073 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002074 if (HZ > USER_HZ)
2075 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2076 else
2077 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002078
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002079 if (addrconf_finite_timeout(rt_expires))
2080 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002082 rt = addrconf_get_prefix_route(&pinfo->prefix,
2083 pinfo->prefix_len,
2084 dev,
2085 RTF_ADDRCONF | RTF_PREFIX_RT,
2086 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002088 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002089 /* Autoconf prefix route */
2090 if (valid_lft == 0) {
2091 ip6_del_rt(rt);
2092 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002093 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002094 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002095 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002096 } else {
Gao feng1716a962012-04-06 00:13:10 +00002097 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 }
2099 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002100 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002101 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2102 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002103 /* not infinity */
2104 flags |= RTF_EXPIRES;
2105 expires = jiffies_to_clock_t(rt_expires);
2106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002108 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002110 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112
2113 /* Try to figure out our local address for this prefix */
2114
2115 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002116 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 struct in6_addr addr;
2118 int create = 0, update_lft = 0;
2119
2120 if (pinfo->prefix_len == 64) {
2121 memcpy(&addr, &pinfo->prefix, 8);
2122 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2123 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
2124 in6_dev_put(in6_dev);
2125 return;
2126 }
2127 goto ok;
2128 }
Joe Perchese87cc472012-05-13 21:56:26 +00002129 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2130 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 in6_dev_put(in6_dev);
2132 return;
2133
2134ok:
2135
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002136 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 if (ifp == NULL && valid_lft) {
2139 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002140 u32 addr_flags = 0;
2141
2142#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2143 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002144 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002145 addr_flags = IFA_F_OPTIMISTIC;
2146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 /* Do not allow to create too much of autoconfigured
2149 * addresses; this would be too easy way to crash kernel.
2150 */
2151 if (!max_addresses ||
2152 ipv6_count_addresses(in6_dev) < max_addresses)
2153 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002154 addr_type&IPV6_ADDR_SCOPE_MASK,
2155 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002157 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 in6_dev_put(in6_dev);
2159 return;
2160 }
2161
2162 update_lft = create = 1;
2163 ifp->cstamp = jiffies;
David S. Millercf22f9a2012-04-14 21:37:40 -04002164 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166
2167 if (ifp) {
2168 int flags;
2169 unsigned long now;
2170#ifdef CONFIG_IPV6_PRIVACY
2171 struct inet6_ifaddr *ift;
2172#endif
2173 u32 stored_lft;
2174
2175 /* update lifetime (RFC2462 5.5.3 e) */
2176 spin_lock(&ifp->lock);
2177 now = jiffies;
2178 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2179 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2180 else
2181 stored_lft = 0;
2182 if (!update_lft && stored_lft) {
2183 if (valid_lft > MIN_VALID_LIFETIME ||
2184 valid_lft > stored_lft)
2185 update_lft = 1;
2186 else if (stored_lft <= MIN_VALID_LIFETIME) {
2187 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002188 /*
2189 * RFC 4862 Section 5.5.3e:
2190 * "Note that the preferred lifetime of
2191 * the corresponding address is always
2192 * reset to the Preferred Lifetime in
2193 * the received Prefix Information
2194 * option, regardless of whether the
2195 * valid lifetime is also reset or
2196 * ignored."
2197 *
2198 * So if the preferred lifetime in
2199 * this advertisement is different
2200 * than what we have stored, but the
2201 * valid lifetime is invalid, just
2202 * reset prefered_lft.
2203 *
2204 * We must set the valid lifetime
2205 * to the stored lifetime since we'll
2206 * be updating the timestamp below,
2207 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002208 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002209 */
2210 if (prefered_lft != ifp->prefered_lft) {
2211 valid_lft = stored_lft;
2212 update_lft = 1;
2213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 } else {
2215 valid_lft = MIN_VALID_LIFETIME;
2216 if (valid_lft < prefered_lft)
2217 prefered_lft = valid_lft;
2218 update_lft = 1;
2219 }
2220 }
2221
2222 if (update_lft) {
2223 ifp->valid_lft = valid_lft;
2224 ifp->prefered_lft = prefered_lft;
2225 ifp->tstamp = now;
2226 flags = ifp->flags;
2227 ifp->flags &= ~IFA_F_DEPRECATED;
2228 spin_unlock(&ifp->lock);
2229
2230 if (!(flags&IFA_F_TENTATIVE))
2231 ipv6_ifa_notify(0, ifp);
2232 } else
2233 spin_unlock(&ifp->lock);
2234
2235#ifdef CONFIG_IPV6_PRIVACY
2236 read_lock_bh(&in6_dev->lock);
2237 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002238 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2239 tmp_list) {
2240 int age, max_valid, max_prefered;
2241
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002242 if (ifp != ift->ifpub)
2243 continue;
2244
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002245 /*
2246 * RFC 4941 section 3.3:
2247 * If a received option will extend the lifetime
2248 * of a public address, the lifetimes of
2249 * temporary addresses should be extended,
2250 * subject to the overall constraint that no
2251 * temporary addresses should ever remain
2252 * "valid" or "preferred" for a time longer than
2253 * (TEMP_VALID_LIFETIME) or
2254 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2255 * respectively.
2256 */
2257 age = (now - ift->cstamp) / HZ;
2258 max_valid = in6_dev->cnf.temp_valid_lft - age;
2259 if (max_valid < 0)
2260 max_valid = 0;
2261
2262 max_prefered = in6_dev->cnf.temp_prefered_lft -
2263 in6_dev->cnf.max_desync_factor -
2264 age;
2265 if (max_prefered < 0)
2266 max_prefered = 0;
2267
2268 if (valid_lft > max_valid)
2269 valid_lft = max_valid;
2270
2271 if (prefered_lft > max_prefered)
2272 prefered_lft = max_prefered;
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 spin_lock(&ift->lock);
2275 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002276 ift->valid_lft = valid_lft;
2277 ift->prefered_lft = prefered_lft;
2278 ift->tstamp = now;
2279 if (prefered_lft > 0)
2280 ift->flags &= ~IFA_F_DEPRECATED;
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 spin_unlock(&ift->lock);
2283 if (!(flags&IFA_F_TENTATIVE))
2284 ipv6_ifa_notify(0, ift);
2285 }
2286
Glenn Wursteraed65502010-09-27 07:04:30 +00002287 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002289 * When a new public address is created as
2290 * described in [ADDRCONF], also create a new
2291 * temporary address. Also create a temporary
2292 * address if it's enabled but no temporary
2293 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002295 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 ipv6_create_tempaddr(ifp, NULL);
2297 } else {
2298 read_unlock_bh(&in6_dev->lock);
2299 }
2300#endif
2301 in6_ifa_put(ifp);
2302 addrconf_verify(0);
2303 }
2304 }
2305 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2306 in6_dev_put(in6_dev);
2307}
2308
2309/*
2310 * Set destination address.
2311 * Special case for SIT interfaces where we create a new "virtual"
2312 * device.
2313 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002314int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315{
2316 struct in6_ifreq ireq;
2317 struct net_device *dev;
2318 int err = -EINVAL;
2319
2320 rtnl_lock();
2321
2322 err = -EFAULT;
2323 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2324 goto err_exit;
2325
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002326 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 err = -ENODEV;
2329 if (dev == NULL)
2330 goto err_exit;
2331
Amerigo Wang07a93622012-10-29 16:23:10 +00002332#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002334 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 struct ip_tunnel_parm p;
2337
2338 err = -EADDRNOTAVAIL;
2339 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2340 goto err_exit;
2341
2342 memset(&p, 0, sizeof(p));
2343 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2344 p.iph.saddr = 0;
2345 p.iph.version = 4;
2346 p.iph.ihl = 5;
2347 p.iph.protocol = IPPROTO_IPV6;
2348 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002349 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002351 if (ops->ndo_do_ioctl) {
2352 mm_segment_t oldfs = get_fs();
2353
2354 set_fs(KERNEL_DS);
2355 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2356 set_fs(oldfs);
2357 } else
2358 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 if (err == 0) {
2361 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002362 dev = __dev_get_by_name(net, p.name);
2363 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 goto err_exit;
2365 err = dev_open(dev);
2366 }
2367 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002368#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370err_exit:
2371 rtnl_unlock();
2372 return err;
2373}
2374
2375/*
2376 * Manual configuration of address on an interface
2377 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002378static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002379 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002380 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
2382 struct inet6_ifaddr *ifp;
2383 struct inet6_dev *idev;
2384 struct net_device *dev;
2385 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002386 u32 flags;
2387 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002388 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002391
Thomas Graf24ef0da2008-05-28 16:54:22 +02002392 if (plen > 128)
2393 return -EINVAL;
2394
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002395 /* check the lifetime */
2396 if (!valid_lft || prefered_lft > valid_lft)
2397 return -EINVAL;
2398
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002399 dev = __dev_get_by_index(net, ifindex);
2400 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002402
Brian Haley64e724f2010-07-20 10:34:30 +00002403 idev = addrconf_add_dev(dev);
2404 if (IS_ERR(idev))
2405 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 scope = ipv6_addr_scope(pfx);
2408
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002409 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2410 if (addrconf_finite_timeout(timeout)) {
2411 expires = jiffies_to_clock_t(timeout * HZ);
2412 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002413 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002414 } else {
2415 expires = 0;
2416 flags = 0;
2417 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002418 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002419
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002420 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2421 if (addrconf_finite_timeout(timeout)) {
2422 if (timeout == 0)
2423 ifa_flags |= IFA_F_DEPRECATED;
2424 prefered_lft = timeout;
2425 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002426
2427 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07002430 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002431 ifp->valid_lft = valid_lft;
2432 ifp->prefered_lft = prefered_lft;
2433 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07002434 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002435
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002436 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002437 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002438 /*
2439 * Note that section 3.1 of RFC 4429 indicates
2440 * that the Optimistic flag should not be set for
2441 * manually configured addresses
2442 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002443 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002445 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return 0;
2447 }
2448
2449 return PTR_ERR(ifp);
2450}
2451
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002452static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002453 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
2455 struct inet6_ifaddr *ifp;
2456 struct inet6_dev *idev;
2457 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002458
Thomas Graf24ef0da2008-05-28 16:54:22 +02002459 if (plen > 128)
2460 return -EINVAL;
2461
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002462 dev = __dev_get_by_index(net, ifindex);
2463 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return -ENODEV;
2465
2466 if ((idev = __in6_dev_get(dev)) == NULL)
2467 return -ENXIO;
2468
2469 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002470 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 if (ifp->prefix_len == plen &&
2472 ipv6_addr_equal(pfx, &ifp->addr)) {
2473 in6_ifa_hold(ifp);
2474 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 ipv6_del_addr(ifp);
2477
2478 /* If the last address is deleted administratively,
2479 disable IPv6 on this interface.
2480 */
stephen hemminger502a2ff2010-03-17 20:31:13 +00002481 if (list_empty(&idev->addr_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 addrconf_ifdown(idev->dev, 1);
2483 return 0;
2484 }
2485 }
2486 read_unlock_bh(&idev->lock);
2487 return -EADDRNOTAVAIL;
2488}
2489
2490
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002491int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
2493 struct in6_ifreq ireq;
2494 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002495
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002496 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2500 return -EFAULT;
2501
2502 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002503 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2504 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2505 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 rtnl_unlock();
2507 return err;
2508}
2509
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002510int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
2512 struct in6_ifreq ireq;
2513 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002514
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002515 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 return -EPERM;
2517
2518 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2519 return -EFAULT;
2520
2521 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002522 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2523 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 rtnl_unlock();
2525 return err;
2526}
2527
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002528static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2529 int plen, int scope)
2530{
2531 struct inet6_ifaddr *ifp;
2532
2533 ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
2534 if (!IS_ERR(ifp)) {
2535 spin_lock_bh(&ifp->lock);
2536 ifp->flags &= ~IFA_F_TENTATIVE;
2537 spin_unlock_bh(&ifp->lock);
2538 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2539 in6_ifa_put(ifp);
2540 }
2541}
2542
Amerigo Wang07a93622012-10-29 16:23:10 +00002543#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544static void sit_add_v4_addrs(struct inet6_dev *idev)
2545{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 struct in6_addr addr;
2547 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002548 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 int scope;
2550
2551 ASSERT_RTNL();
2552
2553 memset(&addr, 0, sizeof(struct in6_addr));
2554 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2555
2556 if (idev->dev->flags&IFF_POINTOPOINT) {
2557 addr.s6_addr32[0] = htonl(0xfe800000);
2558 scope = IFA_LINK;
2559 } else {
2560 scope = IPV6_ADDR_COMPATv4;
2561 }
2562
2563 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002564 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return;
2566 }
2567
Benjamin Thery6fda7352008-03-05 10:47:47 -08002568 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002569 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002571 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 int flag = scope;
2574
2575 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2576 int plen;
2577
2578 addr.s6_addr32[3] = ifa->ifa_local;
2579
2580 if (ifa->ifa_scope == RT_SCOPE_LINK)
2581 continue;
2582 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2583 if (idev->dev->flags&IFF_POINTOPOINT)
2584 continue;
2585 flag |= IFA_HOST;
2586 }
2587 if (idev->dev->flags&IFF_POINTOPOINT)
2588 plen = 64;
2589 else
2590 plen = 96;
2591
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002592 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 }
2594 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599static void init_loopback(struct net_device *dev)
2600{
2601 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 /* ::1 */
2604
2605 ASSERT_RTNL();
2606
2607 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002608 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 return;
2610 }
2611
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002612 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
2614
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002615static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002617 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002618 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Neil Horman95c385b2007-04-25 17:08:10 -07002620#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2621 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002622 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002623 addr_flags |= IFA_F_OPTIMISTIC;
2624#endif
2625
2626
2627 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002629 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002630 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 in6_ifa_put(ifp);
2632 }
2633}
2634
2635static void addrconf_dev_config(struct net_device *dev)
2636{
2637 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002638 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
2640 ASSERT_RTNL();
2641
Herbert Xu74235a22007-06-14 13:02:55 -07002642 if ((dev->type != ARPHRD_ETHER) &&
2643 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002644 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002645 (dev->type != ARPHRD_INFINIBAND) &&
2646 (dev->type != ARPHRD_IEEE802154)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002647 /* Alas, we support only Ethernet autoconfiguration. */
2648 return;
2649 }
2650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002652 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return;
2654
2655 memset(&addr, 0, sizeof(struct in6_addr));
2656 addr.s6_addr32[0] = htonl(0xFE800000);
2657
2658 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2659 addrconf_add_linklocal(idev, &addr);
2660}
2661
Amerigo Wang07a93622012-10-29 16:23:10 +00002662#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663static void addrconf_sit_config(struct net_device *dev)
2664{
2665 struct inet6_dev *idev;
2666
2667 ASSERT_RTNL();
2668
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002669 /*
2670 * Configure the tunnel with one of our IPv4
2671 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 * our v4 addrs in the tunnel
2673 */
2674
2675 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002676 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 return;
2678 }
2679
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002680 if (dev->priv_flags & IFF_ISATAP) {
2681 struct in6_addr addr;
2682
2683 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2684 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2685 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2686 addrconf_add_linklocal(idev, &addr);
2687 return;
2688 }
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 sit_add_v4_addrs(idev);
2691
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002692 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002694 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 sit_route_add(dev);
2696}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002697#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Amerigo Wang07a93622012-10-29 16:23:10 +00002699#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002700static void addrconf_gre_config(struct net_device *dev)
2701{
2702 struct inet6_dev *idev;
2703 struct in6_addr addr;
2704
Joe Perchesf3213832012-05-15 14:11:53 +00002705 pr_info("%s(%s)\n", __func__, dev->name);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002706
2707 ASSERT_RTNL();
2708
2709 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002710 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002711 return;
2712 }
2713
2714 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2715 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2716
2717 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2718 addrconf_add_linklocal(idev, &addr);
2719}
2720#endif
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722static inline int
2723ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2724{
2725 struct in6_addr lladdr;
2726
Neil Horman95c385b2007-04-25 17:08:10 -07002727 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 addrconf_add_linklocal(idev, &lladdr);
2729 return 0;
2730 }
2731 return -1;
2732}
2733
2734static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2735{
2736 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002737 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
2739 /* first try to inherit the link-local address from the link device */
2740 if (idev->dev->iflink &&
Benjamin Thery6fda7352008-03-05 10:47:47 -08002741 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 if (!ipv6_inherit_linklocal(idev, link_dev))
2743 return;
2744 }
2745 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002746 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (!ipv6_inherit_linklocal(idev, link_dev))
2748 return;
2749 }
Joe Perches91df42b2012-05-15 14:11:54 +00002750 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751}
2752
2753/*
2754 * Autoconfigure tunnel with a link-local address so routing protocols,
2755 * DHCPv6, MLD etc. can be run over the virtual link
2756 */
2757
2758static void addrconf_ip6_tnl_config(struct net_device *dev)
2759{
2760 struct inet6_dev *idev;
2761
2762 ASSERT_RTNL();
2763
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002764 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002765 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002766 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 return;
2768 }
2769 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770}
2771
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002772static int addrconf_notify(struct notifier_block *this, unsigned long event,
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002773 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774{
2775 struct net_device *dev = (struct net_device *) data;
Eric Dumazet748e2d92012-08-22 21:50:59 +00002776 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002777 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002778 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002780 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002781 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002782 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002783 idev = ipv6_add_dev(dev);
2784 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002785 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002786 }
2787 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002790 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002791 if (dev->flags & IFF_SLAVE)
2792 break;
2793
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002794 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002795 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002796 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002797 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002798 dev->name);
2799 break;
2800 }
Kristian Slavov99081042006-02-08 16:10:53 -08002801
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002802 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2803 idev = ipv6_add_dev(dev);
2804
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002805 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002806 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002807 run_pending = 1;
2808 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002809 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002810 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002811 /* device is still not ready. */
2812 break;
2813 }
2814
2815 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002816 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002817 /* device is already configured. */
2818 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002819 idev->if_flags |= IF_READY;
2820 }
2821
Joe Perchesf3213832012-05-15 14:11:53 +00002822 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2823 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002824
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002825 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002826 }
2827
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002828 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002829#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 case ARPHRD_SIT:
2831 addrconf_sit_config(dev);
2832 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002833#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002834#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002835 case ARPHRD_IPGRE:
2836 addrconf_gre_config(dev);
2837 break;
2838#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 case ARPHRD_TUNNEL6:
2840 addrconf_ip6_tnl_config(dev);
2841 break;
2842 case ARPHRD_LOOPBACK:
2843 init_loopback(dev);
2844 break;
2845
2846 default:
2847 addrconf_dev_config(dev);
2848 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002849 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002852 if (run_pending)
2853 addrconf_dad_run(idev);
2854
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002855 /*
2856 * If the MTU changed during the interface down,
2857 * when the interface up, the changed MTU must be
2858 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002860 if (idev->cnf.mtu6 != dev->mtu &&
2861 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 rt6_mtu_change(dev, dev->mtu);
2863 idev->cnf.mtu6 = dev->mtu;
2864 }
2865 idev->tstamp = jiffies;
2866 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002867
2868 /*
2869 * If the changed mtu during down is lower than
2870 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 */
2872 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002873 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 }
2875 break;
2876
2877 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002878 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 rt6_mtu_change(dev, dev->mtu);
2880 idev->cnf.mtu6 = dev->mtu;
2881 break;
2882 }
2883
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002884 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2885 idev = ipv6_add_dev(dev);
2886 if (idev)
2887 break;
2888 }
2889
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002890 /*
2891 * MTU falled under IPV6_MIN_MTU.
2892 * Stop IPv6 on this interface.
2893 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895 case NETDEV_DOWN:
2896 case NETDEV_UNREGISTER:
2897 /*
2898 * Remove all addresses from this interface.
2899 */
2900 addrconf_ifdown(dev, event != NETDEV_DOWN);
2901 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002905 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002906 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002907 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002908 err = snmp6_register_dev(idev);
2909 if (err)
2910 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002913
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002914 case NETDEV_PRE_TYPE_CHANGE:
2915 case NETDEV_POST_TYPE_CHANGE:
2916 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002917 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920 return NOTIFY_OK;
2921}
2922
2923/*
2924 * addrconf module should be notified of a device going up
2925 */
2926static struct notifier_block ipv6_dev_notf = {
2927 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928};
2929
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002930static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002931{
2932 struct inet6_dev *idev;
2933 ASSERT_RTNL();
2934
2935 idev = __in6_dev_get(dev);
2936
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002937 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002938 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002939 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002940 ipv6_mc_unmap(idev);
2941}
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943static int addrconf_ifdown(struct net_device *dev, int how)
2944{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002945 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002946 struct inet6_dev *idev;
2947 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002948 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950 ASSERT_RTNL();
2951
David S. Miller73a8bd72011-01-23 23:27:15 -08002952 rt6_ifdown(net, dev);
2953 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955 idev = __in6_dev_get(dev);
2956 if (idev == NULL)
2957 return -ENODEV;
2958
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002959 /*
2960 * Step 1: remove reference to ipv6 device from parent device.
2961 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002963 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002965
2966 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002967 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969 /* Step 1.5: remove snmp6 entry */
2970 snmp6_unregister_dev(idev);
2971
2972 }
2973
David S. Miller73a8bd72011-01-23 23:27:15 -08002974 /* Step 2: clear hash table */
2975 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2976 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002977
2978 spin_lock_bh(&addrconf_hash_lock);
2979 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002980 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08002981 if (ifa->idev == idev) {
2982 hlist_del_init_rcu(&ifa->addr_lst);
2983 addrconf_del_timer(ifa);
2984 goto restart;
2985 }
2986 }
2987 spin_unlock_bh(&addrconf_hash_lock);
2988 }
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 write_lock_bh(&idev->lock);
2991
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002992 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002993 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002994 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07002997 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 in6_dev_put(idev);
2999
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003000 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003001 while (!list_empty(&idev->tempaddr_list)) {
3002 ifa = list_first_entry(&idev->tempaddr_list,
3003 struct inet6_ifaddr, tmp_list);
3004 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 write_unlock_bh(&idev->lock);
3006 spin_lock_bh(&ifa->lock);
3007
3008 if (ifa->ifpub) {
3009 in6_ifa_put(ifa->ifpub);
3010 ifa->ifpub = NULL;
3011 }
3012 spin_unlock_bh(&ifa->lock);
3013 in6_ifa_put(ifa);
3014 write_lock_bh(&idev->lock);
3015 }
3016#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003017
stephen hemminger502a2ff2010-03-17 20:31:13 +00003018 while (!list_empty(&idev->addr_list)) {
3019 ifa = list_first_entry(&idev->addr_list,
3020 struct inet6_ifaddr, if_list);
stephen hemminger84e8b802010-03-02 13:32:46 +00003021 addrconf_del_timer(ifa);
3022
David S. Miller73a8bd72011-01-23 23:27:15 -08003023 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
David S. Miller73a8bd72011-01-23 23:27:15 -08003025 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003026
David S. Miller73a8bd72011-01-23 23:27:15 -08003027 spin_lock_bh(&ifa->state_lock);
3028 state = ifa->state;
3029 ifa->state = INET6_IFADDR_STATE_DEAD;
3030 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003031
David S. Miller73a8bd72011-01-23 23:27:15 -08003032 if (state != INET6_IFADDR_STATE_DEAD) {
3033 __ipv6_ifa_notify(RTM_DELADDR, ifa);
3034 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003035 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003036 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003037
David S. Miller73a8bd72011-01-23 23:27:15 -08003038 write_lock_bh(&idev->lock);
3039 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 write_unlock_bh(&idev->lock);
3042
3043 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003044 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 ipv6_mc_destroy_dev(idev);
3046 else
3047 ipv6_mc_down(idev);
3048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003050
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003051 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003052 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003053 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 neigh_parms_release(&nd_tbl, idev->nd_parms);
3055 neigh_ifdown(&nd_tbl, dev);
3056 in6_dev_put(idev);
3057 }
3058 return 0;
3059}
3060
3061static void addrconf_rs_timer(unsigned long data)
3062{
3063 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003064 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
stephen hemminger5b2a1952010-03-02 13:32:45 +00003066 read_lock(&idev->lock);
3067 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 goto out;
3069
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003070 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003072
3073 /* Announcement received after solicitation was sent */
3074 if (idev->if_flags & IF_RA_RCVD)
3075 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 spin_lock(&ifp->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003078 if (ifp->probes++ < idev->cnf.rtr_solicits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 /* The wait after the last probe can be shorter */
3080 addrconf_mod_timer(ifp, AC_RS,
stephen hemminger5b2a1952010-03-02 13:32:45 +00003081 (ifp->probes == idev->cnf.rtr_solicits) ?
3082 idev->cnf.rtr_solicit_delay :
3083 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 spin_unlock(&ifp->lock);
3085
stephen hemminger5b2a1952010-03-02 13:32:45 +00003086 ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 } else {
3088 spin_unlock(&ifp->lock);
3089 /*
3090 * Note: we do not support deprecated "all on-link"
3091 * assumption any longer.
3092 */
Joe Perches91df42b2012-05-15 14:11:54 +00003093 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 }
3095
3096out:
stephen hemminger5b2a1952010-03-02 13:32:45 +00003097 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 in6_ifa_put(ifp);
3099}
3100
3101/*
3102 * Duplicate Address Detection
3103 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003104static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3105{
3106 unsigned long rand_num;
3107 struct inet6_dev *idev = ifp->idev;
3108
Neil Horman95c385b2007-04-25 17:08:10 -07003109 if (ifp->flags & IFA_F_OPTIMISTIC)
3110 rand_num = 0;
3111 else
3112 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3113
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003114 ifp->probes = idev->cnf.dad_transmits;
3115 addrconf_mod_timer(ifp, AC_DAD, rand_num);
3116}
3117
David S. Millercf22f9a2012-04-14 21:37:40 -04003118static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119{
3120 struct inet6_dev *idev = ifp->idev;
3121 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123 addrconf_join_solict(dev, &ifp->addr);
3124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
3127 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003128 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003129 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
3132 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003133 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003134 !(ifp->flags&IFA_F_TENTATIVE) ||
3135 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003136 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003137 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 read_unlock_bh(&idev->lock);
3139
3140 addrconf_dad_completed(ifp);
3141 return;
3142 }
3143
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003144 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003145 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003146 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003147 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003148 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003149 * - keep it tentative if it is a permanent address.
3150 * - otherwise, kill it.
3151 */
3152 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003153 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003154 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003155 }
Neil Horman95c385b2007-04-25 17:08:10 -07003156
3157 /*
3158 * Optimistic nodes can start receiving
3159 * Frames right away
3160 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003161 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003162 ip6_ins_rt(ifp->rt);
3163
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003164 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003166 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 read_unlock_bh(&idev->lock);
3168}
3169
3170static void addrconf_dad_timer(unsigned long data)
3171{
3172 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3173 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 struct in6_addr mcaddr;
3175
Herbert Xuf2344a12010-05-18 15:55:27 -07003176 if (!ifp->probes && addrconf_dad_end(ifp))
3177 goto out;
3178
stephen hemminger122e4512010-03-02 13:32:44 +00003179 read_lock(&idev->lock);
3180 if (idev->dead || !(idev->if_flags & IF_READY)) {
3181 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 goto out;
3183 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003184
3185 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003186 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3187 spin_unlock(&ifp->lock);
3188 read_unlock(&idev->lock);
3189 goto out;
3190 }
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (ifp->probes == 0) {
3193 /*
3194 * DAD was successful
3195 */
3196
Brian Haleycc411d02009-09-09 14:41:32 +00003197 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003198 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003199 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201 addrconf_dad_completed(ifp);
3202
3203 goto out;
3204 }
3205
3206 ifp->probes--;
3207 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003208 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003209 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003213 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214out:
3215 in6_ifa_put(ifp);
3216}
3217
3218static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3219{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003220 struct net_device *dev = ifp->idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
3222 /*
3223 * Configure the address for reception. Now it is valid.
3224 */
3225
3226 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3227
Tore Anderson026359b2011-08-28 23:47:33 +00003228 /* If added prefix is link local and we are prepared to process
3229 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 */
3231
Shmulik Ladkaniaeaf6e92012-11-30 10:25:59 +00003232 if (ipv6_accept_ra(ifp->idev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 ifp->idev->cnf.rtr_solicits > 0 &&
3234 (dev->flags&IFF_LOOPBACK) == 0 &&
3235 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 /*
3237 * If a host as already performed a random delay
3238 * [...] as part of DAD [...] there is no need
3239 * to delay again before sending the first RS
3240 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09003241 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
3243 spin_lock_bh(&ifp->lock);
3244 ifp->probes = 1;
3245 ifp->idev->if_flags |= IF_RS_SENT;
3246 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
3247 spin_unlock_bh(&ifp->lock);
3248 }
3249}
3250
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003251static void addrconf_dad_run(struct inet6_dev *idev)
3252{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003253 struct inet6_ifaddr *ifp;
3254
3255 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003256 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003257 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003258 if (ifp->flags & IFA_F_TENTATIVE &&
3259 ifp->state == INET6_IFADDR_STATE_DAD)
3260 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003261 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003262 }
3263 read_unlock_bh(&idev->lock);
3264}
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266#ifdef CONFIG_PROC_FS
3267struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003268 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003270 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271};
3272
Mihai Maruseac1d578302012-01-03 23:31:35 +00003273static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274{
3275 struct inet6_ifaddr *ifa = NULL;
3276 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003277 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003278 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Mihai Maruseac1d578302012-01-03 23:31:35 +00003280 /* initial bucket if pos is 0 */
3281 if (pos == 0) {
3282 state->bucket = 0;
3283 state->offset = 0;
3284 }
3285
3286 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003287 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003288 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003289 if (!net_eq(dev_net(ifa->idev->dev), net))
3290 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003291 /* sync with offset */
3292 if (p < state->offset) {
3293 p++;
3294 continue;
3295 }
3296 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003297 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003298 }
3299
3300 /* prepare for next bucket */
3301 state->offset = 0;
3302 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003304 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
stephen hemmingerc2e21292010-03-17 20:31:10 +00003307static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3308 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309{
3310 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003311 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Sasha Levinb67bfe02013-02-27 17:06:00 -08003313 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003314 if (!net_eq(dev_net(ifa->idev->dev), net))
3315 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003316 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003317 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003318 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003319
3320 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003321 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003322 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003323 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003324 if (!net_eq(dev_net(ifa->idev->dev), net))
3325 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003326 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003327 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003328 }
3329 }
3330
stephen hemmingerc2e21292010-03-17 20:31:10 +00003331 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332}
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003335 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003337 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003338 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339}
3340
3341static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3342{
3343 struct inet6_ifaddr *ifa;
3344
3345 ifa = if6_get_next(seq, v);
3346 ++*pos;
3347 return ifa;
3348}
3349
3350static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003351 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003353 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354}
3355
3356static int if6_seq_show(struct seq_file *seq, void *v)
3357{
3358 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003359 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003360 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 ifp->idev->dev->ifindex,
3362 ifp->prefix_len,
3363 ifp->scope,
3364 ifp->flags,
3365 ifp->idev->dev->name);
3366 return 0;
3367}
3368
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003369static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 .start = if6_seq_start,
3371 .next = if6_seq_next,
3372 .show = if6_seq_show,
3373 .stop = if6_seq_stop,
3374};
3375
3376static int if6_seq_open(struct inode *inode, struct file *file)
3377{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003378 return seq_open_net(inode, file, &if6_seq_ops,
3379 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381
Arjan van de Ven9a321442007-02-12 00:55:35 -08003382static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 .owner = THIS_MODULE,
3384 .open = if6_seq_open,
3385 .read = seq_read,
3386 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003387 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388};
3389
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003390static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391{
Gao fengd4beaa62013-02-18 01:34:54 +00003392 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 return -ENOMEM;
3394 return 0;
3395}
3396
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003397static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003398{
Gao fengece31ff2013-02-18 01:34:56 +00003399 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003400}
3401
3402static struct pernet_operations if6_proc_net_ops = {
3403 .init = if6_proc_net_init,
3404 .exit = if6_proc_net_exit,
3405};
3406
3407int __init if6_proc_init(void)
3408{
3409 return register_pernet_subsys(&if6_proc_net_ops);
3410}
3411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412void if6_proc_exit(void)
3413{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003414 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415}
3416#endif /* CONFIG_PROC_FS */
3417
Amerigo Wang07a93622012-10-29 16:23:10 +00003418#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003419/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003420int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003421{
3422 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003423 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003424 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003425
stephen hemminger5c578ae2010-03-17 20:31:11 +00003426 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003427 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003428 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003429 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003430 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003431 (ifp->flags & IFA_F_HOMEADDRESS)) {
3432 ret = 1;
3433 break;
3434 }
3435 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003436 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003437 return ret;
3438}
3439#endif
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441/*
3442 * Periodic address status verification
3443 */
3444
3445static void addrconf_verify(unsigned long foo)
3446{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003447 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 int i;
3450
stephen hemminger5c578ae2010-03-17 20:31:11 +00003451 rcu_read_lock_bh();
3452 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003454 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 del_timer(&addr_chk_timer);
3457
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003458 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003460 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003461 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464 if (ifp->flags & IFA_F_PERMANENT)
3465 continue;
3466
3467 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003468 /* We try to batch several events at once. */
3469 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003471 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3472 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 spin_unlock(&ifp->lock);
3474 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 ipv6_del_addr(ifp);
3476 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003477 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3478 spin_unlock(&ifp->lock);
3479 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003481 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 int deprecate = 0;
3483
3484 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3485 deprecate = 1;
3486 ifp->flags |= IFA_F_DEPRECATED;
3487 }
3488
3489 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3490 next = ifp->tstamp + ifp->valid_lft * HZ;
3491
3492 spin_unlock(&ifp->lock);
3493
3494 if (deprecate) {
3495 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
3497 ipv6_ifa_notify(0, ifp);
3498 in6_ifa_put(ifp);
3499 goto restart;
3500 }
3501#ifdef CONFIG_IPV6_PRIVACY
3502 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3503 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003504 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3505 ifp->idev->cnf.dad_transmits *
3506 ifp->idev->nd_parms->retrans_time / HZ;
3507
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 if (age >= ifp->prefered_lft - regen_advance) {
3509 struct inet6_ifaddr *ifpub = ifp->ifpub;
3510 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3511 next = ifp->tstamp + ifp->prefered_lft * HZ;
3512 if (!ifp->regen_count && ifpub) {
3513 ifp->regen_count++;
3514 in6_ifa_hold(ifp);
3515 in6_ifa_hold(ifpub);
3516 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003517
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003518 spin_lock(&ifpub->lock);
3519 ifpub->regen_count = 0;
3520 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 ipv6_create_tempaddr(ifpub, ifp);
3522 in6_ifa_put(ifpub);
3523 in6_ifa_put(ifp);
3524 goto restart;
3525 }
3526 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3527 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3528 spin_unlock(&ifp->lock);
3529#endif
3530 } else {
3531 /* ifp->prefered_lft <= ifp->valid_lft */
3532 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3533 next = ifp->tstamp + ifp->prefered_lft * HZ;
3534 spin_unlock(&ifp->lock);
3535 }
3536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
3538
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003539 next_sec = round_jiffies_up(next);
3540 next_sched = next;
3541
3542 /* If rounded timeout is accurate enough, accept it. */
3543 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3544 next_sched = next_sec;
3545
3546 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3547 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3548 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3549
3550 ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3551 now, next, next_sec, next_sched));
3552
3553 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003555 spin_unlock(&addrconf_verify_lock);
3556 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557}
3558
Thomas Graf461d8832006-09-18 00:09:49 -07003559static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3560{
3561 struct in6_addr *pfx = NULL;
3562
3563 if (addr)
3564 pfx = nla_data(addr);
3565
3566 if (local) {
3567 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3568 pfx = NULL;
3569 else
3570 pfx = nla_data(local);
3571 }
3572
3573 return pfx;
3574}
3575
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003576static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003577 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3578 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3579 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3580};
3581
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582static int
Thomas Graf661d2962013-03-21 07:45:29 +00003583inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003585 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003586 struct ifaddrmsg *ifm;
3587 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003589 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Thomas Grafb933f712006-09-18 00:10:19 -07003591 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3592 if (err < 0)
3593 return err;
3594
3595 ifm = nlmsg_data(nlh);
3596 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 if (pfx == NULL)
3598 return -EINVAL;
3599
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003600 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601}
3602
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003603static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3604 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003605{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003606 u32 flags;
3607 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003608 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003609
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003610 if (!valid_lft || (prefered_lft > valid_lft))
3611 return -EINVAL;
3612
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003613 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3614 if (addrconf_finite_timeout(timeout)) {
3615 expires = jiffies_to_clock_t(timeout * HZ);
3616 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003617 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003618 } else {
3619 expires = 0;
3620 flags = 0;
3621 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003622 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003623
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003624 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3625 if (addrconf_finite_timeout(timeout)) {
3626 if (timeout == 0)
3627 ifa_flags |= IFA_F_DEPRECATED;
3628 prefered_lft = timeout;
3629 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003630
3631 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003632 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 +09003633 ifp->tstamp = jiffies;
3634 ifp->valid_lft = valid_lft;
3635 ifp->prefered_lft = prefered_lft;
3636
3637 spin_unlock_bh(&ifp->lock);
3638 if (!(ifp->flags&IFA_F_TENTATIVE))
3639 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003640
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003641 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003642 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003643 addrconf_verify(0);
3644
3645 return 0;
3646}
3647
3648static int
Thomas Graf661d2962013-03-21 07:45:29 +00003649inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003651 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003652 struct ifaddrmsg *ifm;
3653 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003655 struct inet6_ifaddr *ifa;
3656 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003657 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3658 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003659 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Thomas Graf461d8832006-09-18 00:09:49 -07003661 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3662 if (err < 0)
3663 return err;
3664
3665 ifm = nlmsg_data(nlh);
3666 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 if (pfx == NULL)
3668 return -EINVAL;
3669
Thomas Graf461d8832006-09-18 00:09:49 -07003670 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003671 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003672
3673 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003674 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003675 preferred_lft = ci->ifa_prefered;
3676 } else {
3677 preferred_lft = INFINITY_LIFE_TIME;
3678 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003679 }
3680
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003681 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003682 if (dev == NULL)
3683 return -ENODEV;
3684
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003685 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003686 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003687
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003688 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003689 if (ifa == NULL) {
3690 /*
3691 * It would be best to check for !NLM_F_CREATE here but
3692 * userspace alreay relies on not having to provide this.
3693 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003694 return inet6_addr_add(net, ifm->ifa_index, pfx,
3695 ifm->ifa_prefixlen, ifa_flags,
3696 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003697 }
3698
Thomas Graf7198f8c2006-09-18 00:13:46 -07003699 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3700 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3701 err = -EEXIST;
3702 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003703 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003704
3705 in6_ifa_put(ifa);
3706
3707 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708}
3709
Thomas Graf101bb222006-09-18 00:11:52 -07003710static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3711 u8 scope, int ifindex)
3712{
3713 struct ifaddrmsg *ifm;
3714
3715 ifm = nlmsg_data(nlh);
3716 ifm->ifa_family = AF_INET6;
3717 ifm->ifa_prefixlen = prefixlen;
3718 ifm->ifa_flags = flags;
3719 ifm->ifa_scope = scope;
3720 ifm->ifa_index = ifindex;
3721}
3722
Thomas Graf85486af2006-09-18 00:11:24 -07003723static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3724 unsigned long tstamp, u32 preferred, u32 valid)
3725{
3726 struct ifa_cacheinfo ci;
3727
Thomas Graf18a31e12010-11-17 04:12:02 +00003728 ci.cstamp = cstamp_delta(cstamp);
3729 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003730 ci.ifa_prefered = preferred;
3731 ci.ifa_valid = valid;
3732
3733 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3734}
3735
Thomas Graf101bb222006-09-18 00:11:52 -07003736static inline int rt_scope(int ifa_scope)
3737{
3738 if (ifa_scope & IFA_HOST)
3739 return RT_SCOPE_HOST;
3740 else if (ifa_scope & IFA_LINK)
3741 return RT_SCOPE_LINK;
3742 else if (ifa_scope & IFA_SITE)
3743 return RT_SCOPE_SITE;
3744 else
3745 return RT_SCOPE_UNIVERSE;
3746}
3747
Thomas Graf0ab68032006-09-18 00:12:35 -07003748static inline int inet6_ifaddr_msgsize(void)
3749{
Thomas Graf339bf982006-11-10 14:10:15 -08003750 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3751 + nla_total_size(16) /* IFA_ADDRESS */
3752 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003753}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003754
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003756 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003759 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
Eric W. Biederman15e47302012-09-07 20:12:54 +00003761 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003762 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003763 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003764
Thomas Graf101bb222006-09-18 00:11:52 -07003765 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3766 ifa->idev->dev->ifindex);
3767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003769 preferred = ifa->prefered_lft;
3770 valid = ifa->valid_lft;
3771 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003773 if (preferred > tval)
3774 preferred -= tval;
3775 else
3776 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003777 if (valid != INFINITY_LIFE_TIME) {
3778 if (valid > tval)
3779 valid -= tval;
3780 else
3781 valid = 0;
3782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 }
3784 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003785 preferred = INFINITY_LIFE_TIME;
3786 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 }
Thomas Graf85486af2006-09-18 00:11:24 -07003788
Thomas Graf0ab68032006-09-18 00:12:35 -07003789 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003790 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3791 nlmsg_cancel(skb, nlh);
3792 return -EMSGSIZE;
3793 }
Thomas Graf85486af2006-09-18 00:11:24 -07003794
Thomas Graf0ab68032006-09-18 00:12:35 -07003795 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796}
3797
3798static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003799 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003802 u8 scope = RT_SCOPE_UNIVERSE;
3803 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Thomas Graf101bb222006-09-18 00:11:52 -07003805 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3806 scope = RT_SCOPE_SITE;
3807
Eric W. Biederman15e47302012-09-07 20:12:54 +00003808 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003809 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003810 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003811
Thomas Graf101bb222006-09-18 00:11:52 -07003812 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003813 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3814 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003815 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3816 nlmsg_cancel(skb, nlh);
3817 return -EMSGSIZE;
3818 }
Thomas Graf85486af2006-09-18 00:11:24 -07003819
Thomas Graf0ab68032006-09-18 00:12:35 -07003820 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821}
3822
3823static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003824 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003827 u8 scope = RT_SCOPE_UNIVERSE;
3828 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Thomas Graf101bb222006-09-18 00:11:52 -07003830 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3831 scope = RT_SCOPE_SITE;
3832
Eric W. Biederman15e47302012-09-07 20:12:54 +00003833 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003834 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003835 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003836
Thomas Graf101bb222006-09-18 00:11:52 -07003837 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003838 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3839 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003840 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3841 nlmsg_cancel(skb, nlh);
3842 return -EMSGSIZE;
3843 }
Thomas Graf85486af2006-09-18 00:11:24 -07003844
Thomas Graf0ab68032006-09-18 00:12:35 -07003845 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846}
3847
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003848enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 UNICAST_ADDR,
3850 MULTICAST_ADDR,
3851 ANYCAST_ADDR,
3852};
3853
Eric Dumazet234b27c2009-11-12 04:11:50 +00003854/* called with rcu_read_lock() */
3855static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3856 struct netlink_callback *cb, enum addr_type_t type,
3857 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 struct ifmcaddr6 *ifmca;
3860 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003861 int err = 1;
3862 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Eric Dumazet234b27c2009-11-12 04:11:50 +00003864 read_lock_bh(&idev->lock);
3865 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003866 case UNICAST_ADDR: {
3867 struct inet6_ifaddr *ifa;
3868
Eric Dumazet234b27c2009-11-12 04:11:50 +00003869 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003870 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3871 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003872 continue;
3873 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003874 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003875 cb->nlh->nlmsg_seq,
3876 RTM_NEWADDR,
3877 NLM_F_MULTI);
3878 if (err <= 0)
3879 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003880 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003882 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003883 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003884 case MULTICAST_ADDR:
3885 /* multicast address */
3886 for (ifmca = idev->mc_list; ifmca;
3887 ifmca = ifmca->next, ip_idx++) {
3888 if (ip_idx < s_ip_idx)
3889 continue;
3890 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003891 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003892 cb->nlh->nlmsg_seq,
3893 RTM_GETMULTICAST,
3894 NLM_F_MULTI);
3895 if (err <= 0)
3896 break;
3897 }
3898 break;
3899 case ANYCAST_ADDR:
3900 /* anycast address */
3901 for (ifaca = idev->ac_list; ifaca;
3902 ifaca = ifaca->aca_next, ip_idx++) {
3903 if (ip_idx < s_ip_idx)
3904 continue;
3905 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003906 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003907 cb->nlh->nlmsg_seq,
3908 RTM_GETANYCAST,
3909 NLM_F_MULTI);
3910 if (err <= 0)
3911 break;
3912 }
3913 break;
3914 default:
3915 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003917 read_unlock_bh(&idev->lock);
3918 *p_ip_idx = ip_idx;
3919 return err;
3920}
3921
3922static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3923 enum addr_type_t type)
3924{
3925 struct net *net = sock_net(skb->sk);
3926 int h, s_h;
3927 int idx, ip_idx;
3928 int s_idx, s_ip_idx;
3929 struct net_device *dev;
3930 struct inet6_dev *idev;
3931 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003932
3933 s_h = cb->args[0];
3934 s_idx = idx = cb->args[1];
3935 s_ip_idx = ip_idx = cb->args[2];
3936
3937 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003938 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003939 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3940 idx = 0;
3941 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003942 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00003943 if (idx < s_idx)
3944 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003945 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003946 s_ip_idx = 0;
3947 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003948 idev = __in6_dev_get(dev);
3949 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003950 goto cont;
3951
3952 if (in6_dump_addrs(idev, skb, cb, type,
3953 s_ip_idx, &ip_idx) <= 0)
3954 goto done;
3955cont:
3956 idx++;
3957 }
3958 }
3959done:
3960 rcu_read_unlock();
3961 cb->args[0] = h;
3962 cb->args[1] = idx;
3963 cb->args[2] = ip_idx;
3964
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 return skb->len;
3966}
3967
3968static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3969{
3970 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 return inet6_dump_addr(skb, cb, type);
3973}
3974
3975static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3976{
3977 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003978
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 return inet6_dump_addr(skb, cb, type);
3980}
3981
3982
3983static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3984{
3985 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 return inet6_dump_addr(skb, cb, type);
3988}
3989
Thomas Graf661d2962013-03-21 07:45:29 +00003990static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003991{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003992 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003993 struct ifaddrmsg *ifm;
3994 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003995 struct in6_addr *addr = NULL;
3996 struct net_device *dev = NULL;
3997 struct inet6_ifaddr *ifa;
3998 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003999 int err;
4000
Thomas Graf1b29fc22006-09-18 00:10:50 -07004001 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4002 if (err < 0)
4003 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004004
Thomas Graf1b29fc22006-09-18 00:10:50 -07004005 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
4006 if (addr == NULL) {
4007 err = -EINVAL;
4008 goto errout;
4009 }
4010
4011 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004012 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004013 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004014
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004015 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4016 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004017 err = -EADDRNOTAVAIL;
4018 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004019 }
4020
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004021 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4022 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004023 err = -ENOBUFS;
4024 goto errout_ifa;
4025 }
4026
Eric W. Biederman15e47302012-09-07 20:12:54 +00004027 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004028 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004029 if (err < 0) {
4030 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4031 WARN_ON(err == -EMSGSIZE);
4032 kfree_skb(skb);
4033 goto errout_ifa;
4034 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004035 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004036errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004037 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004038errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004039 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004040}
4041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4043{
4044 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004045 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004046 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Thomas Graf0ab68032006-09-18 00:12:35 -07004048 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004049 if (skb == NULL)
4050 goto errout;
4051
4052 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004053 if (err < 0) {
4054 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4055 WARN_ON(err == -EMSGSIZE);
4056 kfree_skb(skb);
4057 goto errout;
4058 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004059 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4060 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004061errout:
4062 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004063 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064}
4065
Dave Jonesb6f99a22007-03-22 12:27:49 -07004066static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 __s32 *array, int bytes)
4068{
Thomas Graf04561c12006-11-14 19:53:58 -08004069 BUG_ON(bytes < (DEVCONF_MAX * 4));
4070
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 memset(array, 0, bytes);
4072 array[DEVCONF_FORWARDING] = cnf->forwarding;
4073 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4074 array[DEVCONF_MTU6] = cnf->mtu6;
4075 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4076 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4077 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4078 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4079 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004080 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4081 jiffies_to_msecs(cnf->rtr_solicit_interval);
4082 array[DEVCONF_RTR_SOLICIT_DELAY] =
4083 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
4085#ifdef CONFIG_IPV6_PRIVACY
4086 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4087 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4088 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4089 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4090 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4091#endif
4092 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004093 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004094 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004095#ifdef CONFIG_IPV6_ROUTER_PREF
4096 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004097 array[DEVCONF_RTR_PROBE_INTERVAL] =
4098 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004099#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004100 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4101#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004102#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004103 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004104 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004105#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4106 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4107#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004108#ifdef CONFIG_IPV6_MROUTE
4109 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4110#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004111 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004112 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004113 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004114 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115}
4116
Thomas Grafb382b192010-11-16 04:33:57 +00004117static inline size_t inet6_ifla6_size(void)
4118{
4119 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4120 + nla_total_size(sizeof(struct ifla_cacheinfo))
4121 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4122 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
4123 + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */
4124}
4125
Thomas Graf339bf982006-11-10 14:10:15 -08004126static inline size_t inet6_if_nlmsg_size(void)
4127{
4128 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4129 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4130 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4131 + nla_total_size(4) /* IFLA_MTU */
4132 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004133 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004134}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004135
Eric Dumazetbe281e52011-05-19 01:14:23 +00004136static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004137 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004138{
4139 int i;
4140 int pad = bytes - sizeof(u64) * items;
4141 BUG_ON(pad < 0);
4142
4143 /* Use put_unaligned() because stats may not be aligned for u64. */
4144 put_unaligned(items, &stats[0]);
4145 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004146 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004147
4148 memset(&stats[items], 0, pad);
4149}
4150
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004151static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4152 int items, int bytes, size_t syncpoff)
4153{
4154 int i;
4155 int pad = bytes - sizeof(u64) * items;
4156 BUG_ON(pad < 0);
4157
4158 /* Use put_unaligned() because stats may not be aligned for u64. */
4159 put_unaligned(items, &stats[0]);
4160 for (i = 1; i < items; i++)
4161 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4162
4163 memset(&stats[items], 0, pad);
4164}
4165
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004166static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4167 int bytes)
4168{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004169 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004170 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004171 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4172 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004173 break;
4174 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004175 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004176 break;
4177 }
4178}
4179
Thomas Grafb382b192010-11-16 04:33:57 +00004180static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004182 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004183 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
David S. Millerc78679e2012-04-01 20:27:33 -04004185 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4186 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004188 ci.tstamp = cstamp_delta(idev->tstamp);
4189 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4190 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004191 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4192 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004193 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4194 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004195 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004196 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004198 /* XXX - MC not implemented */
4199
4200 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4201 if (nla == NULL)
4202 goto nla_put_failure;
4203 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4204
4205 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4206 if (nla == NULL)
4207 goto nla_put_failure;
4208 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Thomas Grafb382b192010-11-16 04:33:57 +00004210 return 0;
4211
4212nla_put_failure:
4213 return -EMSGSIZE;
4214}
4215
4216static size_t inet6_get_link_af_size(const struct net_device *dev)
4217{
4218 if (!__in6_dev_get(dev))
4219 return 0;
4220
4221 return inet6_ifla6_size();
4222}
4223
4224static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4225{
4226 struct inet6_dev *idev = __in6_dev_get(dev);
4227
4228 if (!idev)
4229 return -ENODATA;
4230
4231 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4232 return -EMSGSIZE;
4233
4234 return 0;
4235}
4236
Thomas Grafb382b192010-11-16 04:33:57 +00004237static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004238 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004239{
4240 struct net_device *dev = idev->dev;
4241 struct ifinfomsg *hdr;
4242 struct nlmsghdr *nlh;
4243 void *protoinfo;
4244
Eric W. Biederman15e47302012-09-07 20:12:54 +00004245 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004246 if (nlh == NULL)
4247 return -EMSGSIZE;
4248
4249 hdr = nlmsg_data(nlh);
4250 hdr->ifi_family = AF_INET6;
4251 hdr->__ifi_pad = 0;
4252 hdr->ifi_type = dev->type;
4253 hdr->ifi_index = dev->ifindex;
4254 hdr->ifi_flags = dev_get_flags(dev);
4255 hdr->ifi_change = 0;
4256
David S. Millerc78679e2012-04-01 20:27:33 -04004257 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4258 (dev->addr_len &&
4259 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4260 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4261 (dev->ifindex != dev->iflink &&
4262 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4263 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004264 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4265 if (protoinfo == NULL)
4266 goto nla_put_failure;
4267
4268 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4269 goto nla_put_failure;
4270
Thomas Graf04561c12006-11-14 19:53:58 -08004271 nla_nest_end(skb, protoinfo);
4272 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273
Thomas Graf04561c12006-11-14 19:53:58 -08004274nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004275 nlmsg_cancel(skb, nlh);
4276 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277}
4278
4279static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4280{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004281 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004282 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004283 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 struct net_device *dev;
4285 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004286 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287
Eric Dumazet84d26972009-11-09 12:11:28 +00004288 s_h = cb->args[0];
4289 s_idx = cb->args[1];
4290
4291 rcu_read_lock();
4292 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4293 idx = 0;
4294 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004295 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004296 if (idx < s_idx)
4297 goto cont;
4298 idev = __in6_dev_get(dev);
4299 if (!idev)
4300 goto cont;
4301 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004302 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004303 cb->nlh->nlmsg_seq,
4304 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4305 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004306cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004307 idx++;
4308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004310out:
4311 rcu_read_unlock();
4312 cb->args[1] = idx;
4313 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
4315 return skb->len;
4316}
4317
4318void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4319{
4320 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004321 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004322 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004323
Thomas Graf339bf982006-11-10 14:10:15 -08004324 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004325 if (skb == NULL)
4326 goto errout;
4327
4328 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004329 if (err < 0) {
4330 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4331 WARN_ON(err == -EMSGSIZE);
4332 kfree_skb(skb);
4333 goto errout;
4334 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004335 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004336 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004337errout:
4338 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004339 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340}
4341
Thomas Graf339bf982006-11-10 14:10:15 -08004342static inline size_t inet6_prefix_nlmsg_size(void)
4343{
4344 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4345 + nla_total_size(sizeof(struct in6_addr))
4346 + nla_total_size(sizeof(struct prefix_cacheinfo));
4347}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004348
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004350 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004351 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004353 struct prefixmsg *pmsg;
4354 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 struct prefix_cacheinfo ci;
4356
Eric W. Biederman15e47302012-09-07 20:12:54 +00004357 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004358 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004359 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004360
4361 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004363 pmsg->prefix_pad1 = 0;
4364 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 pmsg->prefix_ifindex = idev->dev->ifindex;
4366 pmsg->prefix_len = pinfo->prefix_len;
4367 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004368 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 pmsg->prefix_flags = 0;
4370 if (pinfo->onlink)
4371 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4372 if (pinfo->autoconf)
4373 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4374
David S. Millerc78679e2012-04-01 20:27:33 -04004375 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4376 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 ci.preferred_time = ntohl(pinfo->prefered);
4378 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004379 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4380 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004381 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
Thomas Graf6051e2f2006-11-14 19:54:19 -08004383nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004384 nlmsg_cancel(skb, nlh);
4385 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386}
4387
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004388static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 struct prefix_info *pinfo)
4390{
4391 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004392 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004393 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Thomas Graf339bf982006-11-10 14:10:15 -08004395 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004396 if (skb == NULL)
4397 goto errout;
4398
4399 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004400 if (err < 0) {
4401 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4402 WARN_ON(err == -EMSGSIZE);
4403 kfree_skb(skb);
4404 goto errout;
4405 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004406 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4407 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004408errout:
4409 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004410 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411}
4412
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4414{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004415 struct net *net = dev_net(ifp->idev->dev);
4416
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4418
4419 switch (event) {
4420 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004421 /*
4422 * If the address was optimistic
4423 * we inserted the route at the start of
4424 * our DAD process, so we don't need
4425 * to do it again
4426 */
4427 if (!(ifp->rt->rt6i_node))
4428 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 if (ifp->idev->cnf.forwarding)
4430 addrconf_join_anycast(ifp);
4431 break;
4432 case RTM_DELADDR:
4433 if (ifp->idev->cnf.forwarding)
4434 addrconf_leave_anycast(ifp);
4435 addrconf_leave_solict(ifp->idev, &ifp->addr);
Changli Gaod8d1f302010-06-10 23:31:35 -07004436 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004437
David S. Miller73a8bd72011-01-23 23:27:15 -08004438 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004439 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 break;
4441 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004442 atomic_inc(&net->ipv6.dev_addr_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443}
4444
4445static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4446{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004447 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 if (likely(ifp->idev->dead == 0))
4449 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004450 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451}
4452
4453#ifdef CONFIG_SYSCTL
4454
4455static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004456int addrconf_sysctl_forward(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 void __user *buffer, size_t *lenp, loff_t *ppos)
4458{
4459 int *valp = ctl->data;
4460 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004461 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004462 ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 int ret;
4464
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004465 /*
4466 * ctl->data points to idev->cnf.forwarding, we should
4467 * not modify it until we get the rtnl lock.
4468 */
4469 lctl = *ctl;
4470 lctl.data = &val;
4471
4472 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004474 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004475 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004476 if (ret)
4477 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004478 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479}
4480
Brian Haley56d417b2009-06-01 03:07:33 -07004481static void dev_disable_change(struct inet6_dev *idev)
4482{
4483 if (!idev || !idev->dev)
4484 return;
4485
4486 if (idev->cnf.disable_ipv6)
4487 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
4488 else
4489 addrconf_notify(NULL, NETDEV_UP, idev->dev);
4490}
4491
4492static void addrconf_disable_change(struct net *net, __s32 newf)
4493{
4494 struct net_device *dev;
4495 struct inet6_dev *idev;
4496
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004497 rcu_read_lock();
4498 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004499 idev = __in6_dev_get(dev);
4500 if (idev) {
4501 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4502 idev->cnf.disable_ipv6 = newf;
4503 if (changed)
4504 dev_disable_change(idev);
4505 }
Brian Haley56d417b2009-06-01 03:07:33 -07004506 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004507 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004508}
4509
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004510static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004511{
4512 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004513 int old;
4514
4515 if (!rtnl_trylock())
4516 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004517
4518 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004519 old = *p;
4520 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004521
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004522 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4523 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004524 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004525 }
Brian Haley56d417b2009-06-01 03:07:33 -07004526
4527 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004528 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4529 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004530 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004531 dev_disable_change((struct inet6_dev *)table->extra1);
4532
4533 rtnl_unlock();
4534 return 0;
4535}
4536
4537static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004538int addrconf_sysctl_disable(ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004539 void __user *buffer, size_t *lenp, loff_t *ppos)
4540{
4541 int *valp = ctl->data;
4542 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004543 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004544 ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004545 int ret;
4546
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004547 /*
4548 * ctl->data points to idev->cnf.disable_ipv6, we should
4549 * not modify it until we get the rtnl lock.
4550 */
4551 lctl = *ctl;
4552 lctl.data = &val;
4553
4554 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004555
4556 if (write)
4557 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004558 if (ret)
4559 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004560 return ret;
4561}
4562
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563static struct addrconf_sysctl_table
4564{
4565 struct ctl_table_header *sysctl_header;
YOSHIFUJI Hideakif6a07b22008-03-25 00:25:11 +09004566 ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004567} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 .sysctl_header = NULL,
4569 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004570 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004571 .procname = "forwarding",
4572 .data = &ipv6_devconf.forwarding,
4573 .maxlen = sizeof(int),
4574 .mode = 0644,
4575 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 },
4577 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004578 .procname = "hop_limit",
4579 .data = &ipv6_devconf.hop_limit,
4580 .maxlen = sizeof(int),
4581 .mode = 0644,
4582 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 },
4584 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004585 .procname = "mtu",
4586 .data = &ipv6_devconf.mtu6,
4587 .maxlen = sizeof(int),
4588 .mode = 0644,
4589 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 },
4591 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004592 .procname = "accept_ra",
4593 .data = &ipv6_devconf.accept_ra,
4594 .maxlen = sizeof(int),
4595 .mode = 0644,
4596 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 },
4598 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004599 .procname = "accept_redirects",
4600 .data = &ipv6_devconf.accept_redirects,
4601 .maxlen = sizeof(int),
4602 .mode = 0644,
4603 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 },
4605 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004606 .procname = "autoconf",
4607 .data = &ipv6_devconf.autoconf,
4608 .maxlen = sizeof(int),
4609 .mode = 0644,
4610 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 },
4612 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004613 .procname = "dad_transmits",
4614 .data = &ipv6_devconf.dad_transmits,
4615 .maxlen = sizeof(int),
4616 .mode = 0644,
4617 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 },
4619 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004620 .procname = "router_solicitations",
4621 .data = &ipv6_devconf.rtr_solicits,
4622 .maxlen = sizeof(int),
4623 .mode = 0644,
4624 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 },
4626 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004627 .procname = "router_solicitation_interval",
4628 .data = &ipv6_devconf.rtr_solicit_interval,
4629 .maxlen = sizeof(int),
4630 .mode = 0644,
4631 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 },
4633 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004634 .procname = "router_solicitation_delay",
4635 .data = &ipv6_devconf.rtr_solicit_delay,
4636 .maxlen = sizeof(int),
4637 .mode = 0644,
4638 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 },
4640 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004641 .procname = "force_mld_version",
4642 .data = &ipv6_devconf.force_mld_version,
4643 .maxlen = sizeof(int),
4644 .mode = 0644,
4645 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 },
4647#ifdef CONFIG_IPV6_PRIVACY
4648 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004649 .procname = "use_tempaddr",
4650 .data = &ipv6_devconf.use_tempaddr,
4651 .maxlen = sizeof(int),
4652 .mode = 0644,
4653 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 },
4655 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004656 .procname = "temp_valid_lft",
4657 .data = &ipv6_devconf.temp_valid_lft,
4658 .maxlen = sizeof(int),
4659 .mode = 0644,
4660 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 },
4662 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004663 .procname = "temp_prefered_lft",
4664 .data = &ipv6_devconf.temp_prefered_lft,
4665 .maxlen = sizeof(int),
4666 .mode = 0644,
4667 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 },
4669 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004670 .procname = "regen_max_retry",
4671 .data = &ipv6_devconf.regen_max_retry,
4672 .maxlen = sizeof(int),
4673 .mode = 0644,
4674 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 },
4676 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004677 .procname = "max_desync_factor",
4678 .data = &ipv6_devconf.max_desync_factor,
4679 .maxlen = sizeof(int),
4680 .mode = 0644,
4681 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 },
4683#endif
4684 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004685 .procname = "max_addresses",
4686 .data = &ipv6_devconf.max_addresses,
4687 .maxlen = sizeof(int),
4688 .mode = 0644,
4689 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 },
4691 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004692 .procname = "accept_ra_defrtr",
4693 .data = &ipv6_devconf.accept_ra_defrtr,
4694 .maxlen = sizeof(int),
4695 .mode = 0644,
4696 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004697 },
4698 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004699 .procname = "accept_ra_pinfo",
4700 .data = &ipv6_devconf.accept_ra_pinfo,
4701 .maxlen = sizeof(int),
4702 .mode = 0644,
4703 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004704 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004705#ifdef CONFIG_IPV6_ROUTER_PREF
4706 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004707 .procname = "accept_ra_rtr_pref",
4708 .data = &ipv6_devconf.accept_ra_rtr_pref,
4709 .maxlen = sizeof(int),
4710 .mode = 0644,
4711 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004712 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004713 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004714 .procname = "router_probe_interval",
4715 .data = &ipv6_devconf.rtr_probe_interval,
4716 .maxlen = sizeof(int),
4717 .mode = 0644,
4718 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004719 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004720#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004721 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004722 .procname = "accept_ra_rt_info_max_plen",
4723 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4724 .maxlen = sizeof(int),
4725 .mode = 0644,
4726 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004727 },
4728#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004729#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004730 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004731 .procname = "proxy_ndp",
4732 .data = &ipv6_devconf.proxy_ndp,
4733 .maxlen = sizeof(int),
4734 .mode = 0644,
4735 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004736 },
4737 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004738 .procname = "accept_source_route",
4739 .data = &ipv6_devconf.accept_source_route,
4740 .maxlen = sizeof(int),
4741 .mode = 0644,
4742 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004743 },
Neil Horman95c385b2007-04-25 17:08:10 -07004744#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4745 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004746 .procname = "optimistic_dad",
4747 .data = &ipv6_devconf.optimistic_dad,
4748 .maxlen = sizeof(int),
4749 .mode = 0644,
4750 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004751
4752 },
4753#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004754#ifdef CONFIG_IPV6_MROUTE
4755 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004756 .procname = "mc_forwarding",
4757 .data = &ipv6_devconf.mc_forwarding,
4758 .maxlen = sizeof(int),
4759 .mode = 0444,
4760 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004761 },
4762#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004763 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004764 .procname = "disable_ipv6",
4765 .data = &ipv6_devconf.disable_ipv6,
4766 .maxlen = sizeof(int),
4767 .mode = 0644,
4768 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004769 },
4770 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004771 .procname = "accept_dad",
4772 .data = &ipv6_devconf.accept_dad,
4773 .maxlen = sizeof(int),
4774 .mode = 0644,
4775 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004776 },
4777 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004778 .procname = "force_tllao",
4779 .data = &ipv6_devconf.force_tllao,
4780 .maxlen = sizeof(int),
4781 .mode = 0644,
4782 .proc_handler = proc_dointvec
4783 },
4784 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004785 .procname = "ndisc_notify",
4786 .data = &ipv6_devconf.ndisc_notify,
4787 .maxlen = sizeof(int),
4788 .mode = 0644,
4789 .proc_handler = proc_dointvec
4790 },
4791 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004792 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 }
4794 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795};
4796
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004797static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004798 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799{
4800 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004802 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004803
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004804 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004806 goto out;
4807
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004808 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004809 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004811 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
Eric W. Biederman6105e292012-04-19 13:41:24 +00004814 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Eric W. Biederman6105e292012-04-19 13:41:24 +00004816 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00004818 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004819
4820 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004823free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004825out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004826 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827}
4828
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004829static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4830{
4831 struct addrconf_sysctl_table *t;
4832
4833 if (p->sysctl == NULL)
4834 return;
4835
4836 t = p->sysctl;
4837 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00004838 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004839 kfree(t);
4840}
4841
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004842static void addrconf_sysctl_register(struct inet6_dev *idev)
4843{
Eric W. Biederman54716e32010-02-14 03:27:03 +00004844 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004845 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004846 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004847 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004848}
4849
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004850static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004852 __addrconf_sysctl_unregister(&idev->cnf);
4853 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854}
4855
4856
4857#endif
4858
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004859static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004860{
4861 int err;
4862 struct ipv6_devconf *all, *dflt;
4863
4864 err = -ENOMEM;
4865 all = &ipv6_devconf;
4866 dflt = &ipv6_devconf_dflt;
4867
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004868 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004869 all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
4870 if (all == NULL)
4871 goto err_alloc_all;
4872
4873 dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
4874 if (dflt == NULL)
4875 goto err_alloc_dflt;
Brian Haley56d417b2009-06-01 03:07:33 -07004876 } else {
4877 /* these will be inherited by all namespaces */
4878 dflt->autoconf = ipv6_defaults.autoconf;
4879 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004880 }
4881
4882 net->ipv6.devconf_all = all;
4883 net->ipv6.devconf_dflt = dflt;
4884
4885#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004886 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004887 if (err < 0)
4888 goto err_reg_all;
4889
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004890 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004891 if (err < 0)
4892 goto err_reg_dflt;
4893#endif
4894 return 0;
4895
4896#ifdef CONFIG_SYSCTL
4897err_reg_dflt:
4898 __addrconf_sysctl_unregister(all);
4899err_reg_all:
4900 kfree(dflt);
4901#endif
4902err_alloc_dflt:
4903 kfree(all);
4904err_alloc_all:
4905 return err;
4906}
4907
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004908static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004909{
4910#ifdef CONFIG_SYSCTL
4911 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
4912 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
4913#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004914 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004915 kfree(net->ipv6.devconf_dflt);
4916 kfree(net->ipv6.devconf_all);
4917 }
4918}
4919
4920static struct pernet_operations addrconf_ops = {
4921 .init = addrconf_init_net,
4922 .exit = addrconf_exit_net,
4923};
4924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925/*
4926 * Device notifier
4927 */
4928
4929int register_inet6addr_notifier(struct notifier_block *nb)
4930{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004931 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004933EXPORT_SYMBOL(register_inet6addr_notifier);
4934
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935int unregister_inet6addr_notifier(struct notifier_block *nb)
4936{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004937 return atomic_notifier_chain_unregister(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004939EXPORT_SYMBOL(unregister_inet6addr_notifier);
4940
Thomas Grafb382b192010-11-16 04:33:57 +00004941static struct rtnl_af_ops inet6_ops = {
4942 .family = AF_INET6,
4943 .fill_link_af = inet6_fill_link_af,
4944 .get_link_af_size = inet6_get_link_af_size,
Thomas Grafb382b192010-11-16 04:33:57 +00004945};
4946
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947/*
4948 * Init / cleanup code
4949 */
4950
4951int __init addrconf_init(void)
4952{
stephen hemmingerc2e21292010-03-17 20:31:10 +00004953 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004954
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004955 err = ipv6_addr_label_init();
4956 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00004957 pr_crit("%s: cannot initialize default policy table: %d\n",
4958 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004959 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004962 err = register_pernet_subsys(&addrconf_ops);
4963 if (err < 0)
4964 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004965
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 /* The addrconf netdev notifier requires that loopback_dev
4967 * has it's ipv6 private information allocated and setup
4968 * before it can bring up and give link-local addresses
4969 * to other devices which are up.
4970 *
4971 * Unfortunately, loopback_dev is not necessarily the first
4972 * entry in the global dev_base list of net devices. In fact,
4973 * it is likely to be the very last entry on that list.
4974 * So this causes the notifier registry below to try and
4975 * give link-local addresses to all devices besides loopback_dev
4976 * first, then loopback_dev, which cases all the non-loopback_dev
4977 * devices to fail to get a link-local address.
4978 *
4979 * So, as a temporary fix, allocate the ipv6 structure for
4980 * loopback_dev first by hand.
4981 * Longer term, all of the dependencies ipv6 has upon the loopback
4982 * device and it being up should be removed.
4983 */
4984 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004985 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 err = -ENOMEM;
4987 rtnl_unlock();
4988 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004989 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
stephen hemmingerc2e21292010-03-17 20:31:10 +00004991 for (i = 0; i < IN6_ADDR_HSIZE; i++)
4992 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
4993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 register_netdevice_notifier(&ipv6_dev_notf);
4995
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004997
Thomas Grafb382b192010-11-16 04:33:57 +00004998 err = rtnl_af_register(&inet6_ops);
4999 if (err < 0)
5000 goto errout_af;
5001
Greg Rosec7ac8672011-06-10 01:27:09 +00005002 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5003 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005004 if (err < 0)
5005 goto errout;
5006
5007 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005008 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5009 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5010 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5011 inet6_dump_ifaddr, NULL);
5012 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5013 inet6_dump_ifmcaddr, NULL);
5014 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5015 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005016 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005017 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005018
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005019 ipv6_addr_label_rtnl_register();
5020
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005022errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005023 rtnl_af_unregister(&inet6_ops);
5024errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005025 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005026errlo:
5027 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005028out_addrlabel:
5029 ipv6_addr_label_cleanup();
5030out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005031 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032}
5033
Daniel Lezcano09f77092007-12-13 05:34:58 -08005034void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005036 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 int i;
5038
5039 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005040 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005041 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042
5043 rtnl_lock();
5044
Thomas Grafb382b192010-11-16 04:33:57 +00005045 __rtnl_af_unregister(&inet6_ops);
5046
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005047 /* clean dev list */
5048 for_each_netdev(&init_net, dev) {
5049 if (__in6_dev_get(dev) == NULL)
5050 continue;
5051 addrconf_ifdown(dev, 1);
5052 }
5053 addrconf_ifdown(init_net.loopback_dev, 2);
5054
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 * Check hash table.
5057 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005058 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005059 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5060 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005061 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062
5063 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065}