blob: fa36a677490f2c46996222d04e4c7f8691540cb0 [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,
547 struct nlmsghdr *nlh,
548 void *arg)
549{
550 struct net *net = sock_net(in_skb->sk);
551 struct nlattr *tb[NETCONFA_MAX+1];
552 struct netconfmsg *ncm;
553 struct sk_buff *skb;
554 struct ipv6_devconf *devconf;
555 struct inet6_dev *in6_dev;
556 struct net_device *dev;
557 int ifindex;
558 int err;
559
560 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
561 devconf_ipv6_policy);
562 if (err < 0)
563 goto errout;
564
565 err = EINVAL;
566 if (!tb[NETCONFA_IFINDEX])
567 goto errout;
568
569 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
570 switch (ifindex) {
571 case NETCONFA_IFINDEX_ALL:
572 devconf = net->ipv6.devconf_all;
573 break;
574 case NETCONFA_IFINDEX_DEFAULT:
575 devconf = net->ipv6.devconf_dflt;
576 break;
577 default:
578 dev = __dev_get_by_index(net, ifindex);
579 if (dev == NULL)
580 goto errout;
581 in6_dev = __in6_dev_get(dev);
582 if (in6_dev == NULL)
583 goto errout;
584 devconf = &in6_dev->cnf;
585 break;
586 }
587
588 err = -ENOBUFS;
589 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
590 if (skb == NULL)
591 goto errout;
592
593 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
594 NETLINK_CB(in_skb).portid,
595 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
596 -1);
597 if (err < 0) {
598 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
599 WARN_ON(err == -EMSGSIZE);
600 kfree_skb(skb);
601 goto errout;
602 }
603 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
604errout:
605 return err;
606}
607
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000608static int inet6_netconf_dump_devconf(struct sk_buff *skb,
609 struct netlink_callback *cb)
610{
611 struct net *net = sock_net(skb->sk);
612 int h, s_h;
613 int idx, s_idx;
614 struct net_device *dev;
615 struct inet6_dev *idev;
616 struct hlist_head *head;
617
618 s_h = cb->args[0];
619 s_idx = idx = cb->args[1];
620
621 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
622 idx = 0;
623 head = &net->dev_index_head[h];
624 rcu_read_lock();
625 hlist_for_each_entry_rcu(dev, head, index_hlist) {
626 if (idx < s_idx)
627 goto cont;
628 idev = __in6_dev_get(dev);
629 if (!idev)
630 goto cont;
631
632 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
633 &idev->cnf,
634 NETLINK_CB(cb->skb).portid,
635 cb->nlh->nlmsg_seq,
636 RTM_NEWNETCONF,
637 NLM_F_MULTI,
638 -1) <= 0) {
639 rcu_read_unlock();
640 goto done;
641 }
642cont:
643 idx++;
644 }
645 rcu_read_unlock();
646 }
647 if (h == NETDEV_HASHENTRIES) {
648 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
649 net->ipv6.devconf_all,
650 NETLINK_CB(cb->skb).portid,
651 cb->nlh->nlmsg_seq,
652 RTM_NEWNETCONF, NLM_F_MULTI,
653 -1) <= 0)
654 goto done;
655 else
656 h++;
657 }
658 if (h == NETDEV_HASHENTRIES + 1) {
659 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
660 net->ipv6.devconf_dflt,
661 NETLINK_CB(cb->skb).portid,
662 cb->nlh->nlmsg_seq,
663 RTM_NEWNETCONF, NLM_F_MULTI,
664 -1) <= 0)
665 goto done;
666 else
667 h++;
668 }
669done:
670 cb->args[0] = h;
671 cb->args[1] = idx;
672
673 return skb->len;
674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676#ifdef CONFIG_SYSCTL
677static void dev_forward_change(struct inet6_dev *idev)
678{
679 struct net_device *dev;
680 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 if (!idev)
683 return;
684 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700685 if (idev->cnf.forwarding)
686 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000687 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000688 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900689 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000690 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
691 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
692 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900693 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000694 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
695 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000698
699 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800700 if (ifa->flags&IFA_F_TENTATIVE)
701 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (idev->cnf.forwarding)
703 addrconf_join_anycast(ifa);
704 else
705 addrconf_leave_anycast(ifa);
706 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000707 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
708 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711
Pavel Emelyanove1869322008-01-10 17:43:50 -0800712static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct net_device *dev;
715 struct inet6_dev *idev;
716
Ben Hutchings4acd4942012-08-14 08:54:51 +0000717 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 idev = __in6_dev_get(dev);
719 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800720 int changed = (!idev->cnf.forwarding) ^ (!newf);
721 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (changed)
723 dev_forward_change(idev);
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800727
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000728static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800729{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800730 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000731 int old;
732
733 if (!rtnl_trylock())
734 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800735
736 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000737 old = *p;
738 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800739
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000740 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000741 if ((!newf) ^ (!old))
742 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
743 NETCONFA_IFINDEX_DEFAULT,
744 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000745 rtnl_unlock();
746 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000747 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000748
Pavel Emelyanove1869322008-01-10 17:43:50 -0800749 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800750 net->ipv6.devconf_dflt->forwarding = newf;
751 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000752 if ((!newf) ^ (!old))
753 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
754 NETCONFA_IFINDEX_ALL,
755 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000756 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800757 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700758 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800759
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000760 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800761 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000762 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800763}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764#endif
765
stephen hemminger5c578ae2010-03-17 20:31:11 +0000766/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
768{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000769 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000772 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773#endif
774
775 in6_dev_put(ifp->idev);
776
777 if (del_timer(&ifp->timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700778 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Herbert Xue9d3e082010-05-18 15:36:06 -0700780 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000781 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return;
783 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000784 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Lai Jiangshane5785982011-03-15 18:00:14 +0800786 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Brian Haleye55ffac2006-07-10 15:25:51 -0700789static void
790ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
791{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000792 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700793 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700794
795 /*
796 * Each device address list is sorted in order of scope -
797 * global before linklocal.
798 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000799 list_for_each(p, &idev->addr_list) {
800 struct inet6_ifaddr *ifa
801 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700802 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700803 break;
804 }
805
David S. Millerb54c9b92010-03-25 21:25:30 -0700806 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700807}
808
Eric Dumazetddbe5032012-07-18 08:11:12 +0000809static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900810{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000811 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900812}
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/* On success it returns ifp with increased reference count */
815
816static struct inet6_ifaddr *
817ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700818 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct inet6_ifaddr *ifa = NULL;
821 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000822 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900824 int addr_type = ipv6_addr_type(addr);
825
826 if (addr_type == IPV6_ADDR_ANY ||
827 addr_type & IPV6_ADDR_MULTICAST ||
828 (!(idev->dev->flags & IFF_LOOPBACK) &&
829 addr_type & IPV6_ADDR_LOOPBACK))
830 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700832 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (idev->dead) {
834 err = -ENODEV; /*XXX*/
835 goto out2;
836 }
837
Brian Haley56d417b2009-06-01 03:07:33 -0700838 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700839 err = -EACCES;
840 goto out2;
841 }
842
stephen hemminger5c578ae2010-03-17 20:31:11 +0000843 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900846 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 ADBG(("ipv6_add_addr: already assigned\n"));
848 err = -EEXIST;
849 goto out;
850 }
851
Ingo Oeser322f74a2006-03-20 23:01:47 -0800852 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 if (ifa == NULL) {
855 ADBG(("ipv6_add_addr: malloc failed\n"));
856 err = -ENOBUFS;
857 goto out;
858 }
859
David S. Miller8f031512011-12-06 16:48:14 -0500860 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (IS_ERR(rt)) {
862 err = PTR_ERR(rt);
863 goto out;
864 }
865
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000866 ifa->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700869 spin_lock_init(&ifa->state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 init_timer(&ifa->timer);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000871 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 ifa->timer.data = (unsigned long) ifa;
873 ifa->scope = scope;
874 ifa->prefix_len = pfxlen;
875 ifa->flags = flags | IFA_F_TENTATIVE;
876 ifa->cstamp = ifa->tstamp = jiffies;
877
Keir Fraser57f5f542006-08-29 02:43:49 -0700878 ifa->rt = rt;
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 ifa->idev = idev;
881 in6_dev_hold(idev);
882 /* For caller */
883 in6_ifa_hold(ifa);
884
885 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000886 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
stephen hemminger5c578ae2010-03-17 20:31:11 +0000888 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000889 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 write_lock(&idev->lock);
892 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700893 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895#ifdef CONFIG_IPV6_PRIVACY
896 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000897 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 in6_ifa_hold(ifa);
899 }
900#endif
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 in6_ifa_hold(ifa);
903 write_unlock(&idev->lock);
904out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700905 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700907 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800908 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 else {
910 kfree(ifa);
911 ifa = ERR_PTR(err);
912 }
913
914 return ifa;
915out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000916 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 goto out2;
918}
919
920/* This function wants to get referenced ifp and releases it before return */
921
922static void ipv6_del_addr(struct inet6_ifaddr *ifp)
923{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000924 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700926 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 int deleted = 0, onlink = 0;
928 unsigned long expires = jiffies;
929
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700930 spin_lock_bh(&ifp->state_lock);
931 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700932 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700933 spin_unlock_bh(&ifp->state_lock);
934
935 if (state == INET6_IFADDR_STATE_DEAD)
936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
stephen hemminger5c578ae2010-03-17 20:31:11 +0000938 spin_lock_bh(&addrconf_hash_lock);
939 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000940 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 write_lock_bh(&idev->lock);
943#ifdef CONFIG_IPV6_PRIVACY
944 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000945 list_del(&ifp->tmp_list);
946 if (ifp->ifpub) {
947 in6_ifa_put(ifp->ifpub);
948 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000950 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952#endif
953
stephen hemminger502a2ff2010-03-17 20:31:13 +0000954 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000956 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
960 break;
961 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800962 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 } else if (ifp->flags & IFA_F_PERMANENT) {
964 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
965 ifp->prefix_len)) {
966 if (ifa->flags & IFA_F_PERMANENT) {
967 onlink = 1;
968 if (deleted)
969 break;
970 } else {
971 unsigned long lifetime;
972
973 if (!onlink)
974 onlink = -1;
975
976 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900977
978 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
979 /*
980 * Note: Because this address is
981 * not permanent, lifetime <
982 * LONG_MAX / HZ here.
983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (time_before(expires,
985 ifa->tstamp + lifetime * HZ))
986 expires = ifa->tstamp + lifetime * HZ;
987 spin_unlock(&ifa->lock);
988 }
989 }
990 }
991 }
992 write_unlock_bh(&idev->lock);
993
Andrey Vaginb2238562008-07-08 15:13:31 -0700994 addrconf_del_timer(ifp);
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 ipv6_ifa_notify(RTM_DELADDR, ifp);
997
Alan Sterne041c682006-03-27 01:16:30 -0800998 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /*
1001 * Purge or update corresponding prefix
1002 *
1003 * 1) we don't purge prefix here if address was not permanent.
1004 * prefix is managed by its own lifetime.
1005 * 2) if there're no addresses, delete prefix.
1006 * 3) if there're still other permanent address(es),
1007 * corresponding prefix is still permanent.
1008 * 4) otherwise, update prefix lifetime to the
1009 * longest valid lifetime among the corresponding
1010 * addresses on the device.
1011 * Note: subsequent RA will update lifetime.
1012 *
1013 * --yoshfuji
1014 */
1015 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1016 struct in6_addr prefix;
1017 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001019 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001020
Romain Kuntz21caa662013-01-09 21:06:03 +00001021 rt = addrconf_get_prefix_route(&prefix,
1022 ifp->prefix_len,
1023 ifp->idev->dev,
1024 0, RTF_GATEWAY | RTF_DEFAULT);
1025
1026 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001028 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 rt = NULL;
1030 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001031 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001034 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036
Daniel Walterc3968a82011-04-13 21:10:57 +00001037 /* clean up prefsrc entries */
1038 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001039out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 in6_ifa_put(ifp);
1041}
1042
1043#ifdef CONFIG_IPV6_PRIVACY
1044static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1045{
1046 struct inet6_dev *idev = ifp->idev;
1047 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001048 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001049 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 int tmp_plen;
1051 int ret = 0;
1052 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001053 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001054 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 write_lock(&idev->lock);
1057 if (ift) {
1058 spin_lock_bh(&ift->lock);
1059 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1060 spin_unlock_bh(&ift->lock);
1061 tmpaddr = &addr;
1062 } else {
1063 tmpaddr = NULL;
1064 }
1065retry:
1066 in6_dev_hold(idev);
1067 if (idev->cnf.use_tempaddr <= 0) {
1068 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001069 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 in6_dev_put(idev);
1071 ret = -1;
1072 goto out;
1073 }
1074 spin_lock_bh(&ifp->lock);
1075 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1076 idev->cnf.use_tempaddr = -1; /*XXX*/
1077 spin_unlock_bh(&ifp->lock);
1078 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001079 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1080 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 in6_dev_put(idev);
1082 ret = -1;
1083 goto out;
1084 }
1085 in6_ifa_hold(ifp);
1086 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001087 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001089 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 tmp_valid_lft = min_t(__u32,
1091 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001092 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001093 tmp_prefered_lft = min_t(__u32,
1094 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001095 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001096 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 tmp_plen = ifp->prefix_len;
1098 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 tmp_tstamp = ifp->tstamp;
1100 spin_unlock_bh(&ifp->lock);
1101
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001102 regen_advance = idev->cnf.regen_max_retry *
1103 idev->cnf.dad_transmits *
1104 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001106
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001107 /* A temporary address is created only if this calculated Preferred
1108 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1109 * an implementation must not create a temporary address with a zero
1110 * Preferred Lifetime.
1111 */
1112 if (tmp_prefered_lft <= regen_advance) {
1113 in6_ifa_put(ifp);
1114 in6_dev_put(idev);
1115 ret = -1;
1116 goto out;
1117 }
1118
Neil Horman95c385b2007-04-25 17:08:10 -07001119 addr_flags = IFA_F_TEMPORARY;
1120 /* set in addrconf_prefix_rcv() */
1121 if (ifp->flags & IFA_F_OPTIMISTIC)
1122 addr_flags |= IFA_F_OPTIMISTIC;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001125 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -07001127 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
1128 addr_flags) : NULL;
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00001129 if (IS_ERR_OR_NULL(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 in6_ifa_put(ifp);
1131 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001132 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 tmpaddr = &addr;
1134 write_lock(&idev->lock);
1135 goto retry;
1136 }
1137
1138 spin_lock_bh(&ift->lock);
1139 ift->ifpub = ifp;
1140 ift->valid_lft = tmp_valid_lft;
1141 ift->prefered_lft = tmp_prefered_lft;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001142 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 ift->tstamp = tmp_tstamp;
1144 spin_unlock_bh(&ift->lock);
1145
David S. Millercf22f9a2012-04-14 21:37:40 -04001146 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 in6_ifa_put(ift);
1148 in6_dev_put(idev);
1149out:
1150 return ret;
1151}
1152#endif
1153
1154/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001155 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001157enum {
1158 IPV6_SADDR_RULE_INIT = 0,
1159 IPV6_SADDR_RULE_LOCAL,
1160 IPV6_SADDR_RULE_SCOPE,
1161 IPV6_SADDR_RULE_PREFERRED,
1162#ifdef CONFIG_IPV6_MIP6
1163 IPV6_SADDR_RULE_HOA,
1164#endif
1165 IPV6_SADDR_RULE_OIF,
1166 IPV6_SADDR_RULE_LABEL,
1167#ifdef CONFIG_IPV6_PRIVACY
1168 IPV6_SADDR_RULE_PRIVACY,
1169#endif
1170 IPV6_SADDR_RULE_ORCHID,
1171 IPV6_SADDR_RULE_PREFIX,
1172 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001173};
1174
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001175struct ipv6_saddr_score {
1176 int rule;
1177 int addr_type;
1178 struct inet6_ifaddr *ifa;
1179 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1180 int scopedist;
1181 int matchlen;
1182};
1183
1184struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001185 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001186 int ifindex;
1187 int scope;
1188 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001189 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001190};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001191
Dave Jonesb6f99a22007-03-22 12:27:49 -07001192static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001194 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001195 return 1;
1196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Benjamin Thery3de23252008-05-28 14:51:24 +02001199static int ipv6_get_saddr_eval(struct net *net,
1200 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001201 struct ipv6_saddr_dst *dst,
1202 int i)
1203{
1204 int ret;
1205
1206 if (i <= score->rule) {
1207 switch (i) {
1208 case IPV6_SADDR_RULE_SCOPE:
1209 ret = score->scopedist;
1210 break;
1211 case IPV6_SADDR_RULE_PREFIX:
1212 ret = score->matchlen;
1213 break;
1214 default:
1215 ret = !!test_bit(i, score->scorebits);
1216 }
1217 goto out;
1218 }
1219
1220 switch (i) {
1221 case IPV6_SADDR_RULE_INIT:
1222 /* Rule 0: remember if hiscore is not ready yet */
1223 ret = !!score->ifa;
1224 break;
1225 case IPV6_SADDR_RULE_LOCAL:
1226 /* Rule 1: Prefer same address */
1227 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1228 break;
1229 case IPV6_SADDR_RULE_SCOPE:
1230 /* Rule 2: Prefer appropriate scope
1231 *
1232 * ret
1233 * ^
1234 * -1 | d 15
1235 * ---+--+-+---> scope
1236 * |
1237 * | d is scope of the destination.
1238 * B-d | \
1239 * | \ <- smaller scope is better if
1240 * B-15 | \ if scope is enough for destinaion.
1241 * | ret = B - scope (-1 <= scope >= d <= 15).
1242 * d-C-1 | /
1243 * |/ <- greater is better
1244 * -C / if scope is not enough for destination.
1245 * /| ret = scope - C (-1 <= d < scope <= 15).
1246 *
1247 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1248 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1249 * Assume B = 0 and we get C > 29.
1250 */
1251 ret = __ipv6_addr_src_scope(score->addr_type);
1252 if (ret >= dst->scope)
1253 ret = -ret;
1254 else
1255 ret -= 128; /* 30 is enough */
1256 score->scopedist = ret;
1257 break;
1258 case IPV6_SADDR_RULE_PREFERRED:
1259 /* Rule 3: Avoid deprecated and optimistic addresses */
1260 ret = ipv6_saddr_preferred(score->addr_type) ||
1261 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1262 break;
1263#ifdef CONFIG_IPV6_MIP6
1264 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001265 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001266 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001267 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1268 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001269 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001270 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001271#endif
1272 case IPV6_SADDR_RULE_OIF:
1273 /* Rule 5: Prefer outgoing interface */
1274 ret = (!dst->ifindex ||
1275 dst->ifindex == score->ifa->idev->dev->ifindex);
1276 break;
1277 case IPV6_SADDR_RULE_LABEL:
1278 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001279 ret = ipv6_addr_label(net,
1280 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001281 score->ifa->idev->dev->ifindex) == dst->label;
1282 break;
1283#ifdef CONFIG_IPV6_PRIVACY
1284 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001285 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001286 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001287 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001288 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001289 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1290 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1291 score->ifa->idev->cnf.use_tempaddr >= 2;
1292 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001293 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001294 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001295#endif
1296 case IPV6_SADDR_RULE_ORCHID:
1297 /* Rule 8-: Prefer ORCHID vs ORCHID or
1298 * non-ORCHID vs non-ORCHID
1299 */
1300 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1301 ipv6_addr_orchid(dst->addr));
1302 break;
1303 case IPV6_SADDR_RULE_PREFIX:
1304 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001305 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1306 if (ret > score->ifa->prefix_len)
1307 ret = score->ifa->prefix_len;
1308 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001309 break;
1310 default:
1311 ret = 0;
1312 }
1313
1314 if (ret)
1315 __set_bit(i, score->scorebits);
1316 score->rule = i;
1317out:
1318 return ret;
1319}
1320
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001321int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001322 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001323 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001325 struct ipv6_saddr_score scores[2],
1326 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001327 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001328 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001329 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001331 dst_type = __ipv6_addr_type(daddr);
1332 dst.addr = daddr;
1333 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1334 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001335 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001336 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001337
1338 hiscore->rule = -1;
1339 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001341 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001342
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001343 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001344 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001345
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001346 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001347 * - multicast and link-local destination address,
1348 * the set of candidate source address MUST only
1349 * include addresses assigned to interfaces
1350 * belonging to the same link as the outgoing
1351 * interface.
1352 * (- For site-local destination addresses, the
1353 * set of candidate source addresses MUST only
1354 * include addresses assigned to interfaces
1355 * belonging to the same site as the outgoing
1356 * interface.)
1357 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001358 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1359 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1360 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001361 continue;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001364 if (!idev)
1365 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001367 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001368 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001369 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001371 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001372 * - Tentative Address (RFC2462 section 5.4)
1373 * - A tentative address is not considered
1374 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001375 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001376 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001377 * - In any case, anycast addresses, multicast
1378 * addresses, and the unspecified address MUST
1379 * NOT be included in a candidate set.
1380 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001381 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1382 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001383 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001384
1385 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1386
1387 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1388 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001389 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -08001390 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001391 "assigned as unicast address on %s",
1392 dev->name);
1393 continue;
1394 }
1395
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001396 score->rule = -1;
1397 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001398
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001399 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1400 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001401
Benjamin Thery3de23252008-05-28 14:51:24 +02001402 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1403 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001404
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001405 if (minihiscore > miniscore) {
1406 if (i == IPV6_SADDR_RULE_SCOPE &&
1407 score->scopedist > 0) {
1408 /*
1409 * special case:
1410 * each remaining entry
1411 * has too small (not enough)
1412 * scope, because ifa entries
1413 * are sorted by their scope
1414 * values.
1415 */
1416 goto try_nextdev;
1417 }
1418 break;
1419 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001420 if (hiscore->ifa)
1421 in6_ifa_put(hiscore->ifa);
1422
1423 in6_ifa_hold(score->ifa);
1424
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001425 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001426
1427 /* restore our iterator */
1428 score->ifa = hiscore->ifa;
1429
1430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001433 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001434try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001435 read_unlock_bh(&idev->lock);
1436 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001437 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001439 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001440 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001441
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001442 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001443 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001446EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Neil Horman95c385b2007-04-25 17:08:10 -07001448int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1449 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 struct inet6_dev *idev;
1452 int err = -EADDRNOTAVAIL;
1453
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001454 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001455 idev = __in6_dev_get(dev);
1456 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 struct inet6_ifaddr *ifp;
1458
1459 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001460 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1461 if (ifp->scope == IFA_LINK &&
1462 !(ifp->flags & banned_flags)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001463 *addr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 err = 0;
1465 break;
1466 }
1467 }
1468 read_unlock_bh(&idev->lock);
1469 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001470 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return err;
1472}
1473
1474static int ipv6_count_addresses(struct inet6_dev *idev)
1475{
1476 int cnt = 0;
1477 struct inet6_ifaddr *ifp;
1478
1479 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001480 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 cnt++;
1482 read_unlock_bh(&idev->lock);
1483 return cnt;
1484}
1485
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001486int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001487 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001489 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001490 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
stephen hemminger5c578ae2010-03-17 20:31:11 +00001492 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001493 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001494 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001495 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001497 !(ifp->flags&IFA_F_TENTATIVE) &&
1498 (dev == NULL || ifp->idev->dev == dev ||
1499 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1500 rcu_read_unlock_bh();
1501 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001504
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001505 rcu_read_unlock_bh();
1506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001508EXPORT_SYMBOL(ipv6_chk_addr);
1509
David S. Miller3e81c6d2010-03-20 16:18:00 -07001510static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1511 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001513 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001514 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Sasha Levinb67bfe02013-02-27 17:06:00 -08001516 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001517 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001518 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (ipv6_addr_equal(&ifp->addr, addr)) {
1520 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001521 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001524 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001527int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001528{
1529 struct inet6_dev *idev;
1530 struct inet6_ifaddr *ifa;
1531 int onlink;
1532
1533 onlink = 0;
1534 rcu_read_lock();
1535 idev = __in6_dev_get(dev);
1536 if (idev) {
1537 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001538 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001539 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1540 ifa->prefix_len);
1541 if (onlink)
1542 break;
1543 }
1544 read_unlock_bh(&idev->lock);
1545 }
1546 rcu_read_unlock();
1547 return onlink;
1548}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001549EXPORT_SYMBOL(ipv6_chk_prefix);
1550
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001551struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001552 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
David S. Millerb79d1d52010-03-25 21:39:21 -07001554 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001555 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
stephen hemminger5c578ae2010-03-17 20:31:11 +00001557 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001558 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001559 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001560 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (ipv6_addr_equal(&ifp->addr, addr)) {
1562 if (dev == NULL || ifp->idev->dev == dev ||
1563 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001564 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 in6_ifa_hold(ifp);
1566 break;
1567 }
1568 }
1569 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001570 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
David S. Millerb79d1d52010-03-25 21:39:21 -07001572 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575/* Gets referenced address, destroys ifaddr */
1576
Brian Haleycc411d02009-09-09 14:41:32 +00001577static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (ifp->flags&IFA_F_PERMANENT) {
1580 spin_lock_bh(&ifp->lock);
1581 addrconf_del_timer(ifp);
1582 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001583 if (dad_failed)
1584 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001586 if (dad_failed)
1587 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 in6_ifa_put(ifp);
1589#ifdef CONFIG_IPV6_PRIVACY
1590 } else if (ifp->flags&IFA_F_TEMPORARY) {
1591 struct inet6_ifaddr *ifpub;
1592 spin_lock_bh(&ifp->lock);
1593 ifpub = ifp->ifpub;
1594 if (ifpub) {
1595 in6_ifa_hold(ifpub);
1596 spin_unlock_bh(&ifp->lock);
1597 ipv6_create_tempaddr(ifpub, ifp);
1598 in6_ifa_put(ifpub);
1599 } else {
1600 spin_unlock_bh(&ifp->lock);
1601 }
1602 ipv6_del_addr(ifp);
1603#endif
1604 } else
1605 ipv6_del_addr(ifp);
1606}
1607
Herbert Xuf2344a12010-05-18 15:55:27 -07001608static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1609{
1610 int err = -ENOENT;
1611
1612 spin_lock(&ifp->state_lock);
1613 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1614 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1615 err = 0;
1616 }
1617 spin_unlock(&ifp->state_lock);
1618
1619 return err;
1620}
1621
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001622void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1623{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001624 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001625
Ursula Braun853dc2e2010-10-24 23:06:43 +00001626 if (addrconf_dad_end(ifp)) {
1627 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001628 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001629 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001630
Joe Perchese87cc472012-05-13 21:56:26 +00001631 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1632 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001633
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001634 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1635 struct in6_addr addr;
1636
1637 addr.s6_addr32[0] = htonl(0xfe800000);
1638 addr.s6_addr32[1] = 0;
1639
1640 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1641 ipv6_addr_equal(&ifp->addr, &addr)) {
1642 /* DAD failed for link-local based on MAC address */
1643 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001644
Joe Perchesf3213832012-05-15 14:11:53 +00001645 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001646 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001647 }
1648 }
1649
Brian Haleycc411d02009-09-09 14:41:32 +00001650 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001651}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653/* Join to solicited addr multicast group. */
1654
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001655void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
1657 struct in6_addr maddr;
1658
1659 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1660 return;
1661
1662 addrconf_addr_solict_mult(addr, &maddr);
1663 ipv6_dev_mc_inc(dev, &maddr);
1664}
1665
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001666void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct in6_addr maddr;
1669
1670 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1671 return;
1672
1673 addrconf_addr_solict_mult(addr, &maddr);
1674 __ipv6_dev_mc_dec(idev, &maddr);
1675}
1676
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001677static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001680 if (ifp->prefix_len == 127) /* RFC 6164 */
1681 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1683 if (ipv6_addr_any(&addr))
1684 return;
1685 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1686}
1687
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001688static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
1690 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001691 if (ifp->prefix_len == 127) /* RFC 6164 */
1692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1694 if (ipv6_addr_any(&addr))
1695 return;
1696 __ipv6_dev_ac_dec(ifp->idev, &addr);
1697}
1698
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001699static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1700{
1701 if (dev->addr_len != ETH_ALEN)
1702 return -1;
1703 memcpy(eui, dev->dev_addr, 3);
1704 memcpy(eui + 5, dev->dev_addr + 3, 3);
1705
1706 /*
1707 * The zSeries OSA network cards can be shared among various
1708 * OS instances, but the OSA cards have only one MAC address.
1709 * This leads to duplicate address conflicts in conjunction
1710 * with IPv6 if more than one instance uses the same card.
1711 *
1712 * The driver for these cards can deliver a unique 16-bit
1713 * identifier for each instance sharing the same card. It is
1714 * placed instead of 0xFFFE in the interface identifier. The
1715 * "u" bit of the interface identifier is not inverted in this
1716 * case. Hence the resulting interface identifier has local
1717 * scope according to RFC2373.
1718 */
1719 if (dev->dev_id) {
1720 eui[3] = (dev->dev_id >> 8) & 0xFF;
1721 eui[4] = dev->dev_id & 0xFF;
1722 } else {
1723 eui[3] = 0xFF;
1724 eui[4] = 0xFE;
1725 eui[0] ^= 2;
1726 }
1727 return 0;
1728}
1729
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001730static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1731{
1732 if (dev->addr_len != IEEE802154_ADDR_LEN)
1733 return -1;
1734 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001735 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001736 return 0;
1737}
1738
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001739static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1740{
1741 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1742 if (dev->addr_len != ARCNET_ALEN)
1743 return -1;
1744 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001745 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001746 return 0;
1747}
1748
1749static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1750{
1751 if (dev->addr_len != INFINIBAND_ALEN)
1752 return -1;
1753 memcpy(eui, dev->dev_addr + 12, 8);
1754 eui[0] |= 2;
1755 return 0;
1756}
1757
stephen hemmingerc61393e2010-10-04 20:17:53 +00001758static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001759{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001760 if (addr == 0)
1761 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001762 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1763 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1764 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1765 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1766 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1767 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1768 eui[1] = 0;
1769 eui[2] = 0x5E;
1770 eui[3] = 0xFE;
1771 memcpy(eui + 4, &addr, 4);
1772 return 0;
1773}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001774
1775static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1776{
1777 if (dev->priv_flags & IFF_ISATAP)
1778 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1779 return -1;
1780}
1781
stephen hemmingeraee80b52011-06-08 10:44:30 +00001782static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1783{
1784 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1785}
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1788{
1789 switch (dev->type) {
1790 case ARPHRD_ETHER:
1791 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001792 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001794 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001796 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001797 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001798 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001799 case ARPHRD_IPGRE:
1800 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001801 case ARPHRD_IEEE802154:
1802 return addrconf_ifid_eui64(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 }
1804 return -1;
1805}
1806
1807static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1808{
1809 int err = -1;
1810 struct inet6_ifaddr *ifp;
1811
1812 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001813 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1815 memcpy(eui, ifp->addr.s6_addr+8, 8);
1816 err = 0;
1817 break;
1818 }
1819 }
1820 read_unlock_bh(&idev->lock);
1821 return err;
1822}
1823
1824#ifdef CONFIG_IPV6_PRIVACY
1825/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001826static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001829 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 /*
1833 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1834 * check if generated address is not inappropriate
1835 *
1836 * - Reserved subnet anycast (RFC 2526)
1837 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001838 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 * 00-00-5E-FE-xx-xx-xx-xx
1840 * - value 0
1841 * - XXX: already assigned to an address on the device
1842 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001843 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1845 (idev->rndid[7]&0x80))
1846 goto regen;
1847 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1848 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1849 goto regen;
1850 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1851 goto regen;
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
1855static void ipv6_regen_rndid(unsigned long data)
1856{
1857 struct inet6_dev *idev = (struct inet6_dev *) data;
1858 unsigned long expires;
1859
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001860 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 write_lock_bh(&idev->lock);
1862
1863 if (idev->dead)
1864 goto out;
1865
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001866 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001869 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001870 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1871 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001873 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1874 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 goto out;
1876 }
1877
1878 if (!mod_timer(&idev->regen_timer, expires))
1879 in6_dev_hold(idev);
1880
1881out:
1882 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001883 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 in6_dev_put(idev);
1885}
1886
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001887static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001888{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001890 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892#endif
1893
1894/*
1895 * Add prefix route.
1896 */
1897
1898static void
1899addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001900 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Thomas Graf86872cb2006-08-22 00:01:08 -07001902 struct fib6_config cfg = {
1903 .fc_table = RT6_TABLE_PREFIX,
1904 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1905 .fc_ifindex = dev->ifindex,
1906 .fc_expires = expires,
1907 .fc_dst_len = plen,
1908 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001909 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001910 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001911 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001913 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 /* Prevent useless cloning on PtP SIT.
1916 This thing is done here expecting that the whole
1917 class of non-broadcast devices need not cloning.
1918 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001919#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001920 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1921 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Thomas Graf86872cb2006-08-22 00:01:08 -07001924 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925}
1926
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001927
1928static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1929 int plen,
1930 const struct net_device *dev,
1931 u32 flags, u32 noflags)
1932{
1933 struct fib6_node *fn;
1934 struct rt6_info *rt = NULL;
1935 struct fib6_table *table;
1936
1937 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1938 if (table == NULL)
1939 return NULL;
1940
Li RongQing5744dd92012-09-11 21:59:01 +00001941 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001942 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1943 if (!fn)
1944 goto out;
1945 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001946 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001947 continue;
1948 if ((rt->rt6i_flags & flags) != flags)
1949 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001950 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001951 continue;
1952 dst_hold(&rt->dst);
1953 break;
1954 }
1955out:
Li RongQing5744dd92012-09-11 21:59:01 +00001956 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001957 return rt;
1958}
1959
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961/* Create "default" multicast route to the interface */
1962
1963static void addrconf_add_mroute(struct net_device *dev)
1964{
Thomas Graf86872cb2006-08-22 00:01:08 -07001965 struct fib6_config cfg = {
1966 .fc_table = RT6_TABLE_LOCAL,
1967 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1968 .fc_ifindex = dev->ifindex,
1969 .fc_dst_len = 8,
1970 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001971 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001972 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Thomas Graf86872cb2006-08-22 00:01:08 -07001974 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1975
1976 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
Amerigo Wang07a93622012-10-29 16:23:10 +00001979#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980static void sit_route_add(struct net_device *dev)
1981{
Thomas Graf86872cb2006-08-22 00:01:08 -07001982 struct fib6_config cfg = {
1983 .fc_table = RT6_TABLE_MAIN,
1984 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1985 .fc_ifindex = dev->ifindex,
1986 .fc_dst_len = 96,
1987 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001988 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001989 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001992 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001994#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1997{
1998 struct inet6_dev *idev;
1999
2000 ASSERT_RTNL();
2001
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002002 idev = ipv6_find_idev(dev);
2003 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002004 return ERR_PTR(-ENOBUFS);
2005
2006 if (idev->cnf.disable_ipv6)
2007 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002010 if (!(dev->flags & IFF_LOOPBACK))
2011 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return idev;
2014}
2015
Neil Hormane6bff992012-01-04 10:49:15 +00002016void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 struct prefix_info *pinfo;
2019 __u32 valid_lft;
2020 __u32 prefered_lft;
2021 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002023 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (len < sizeof(struct prefix_info)) {
2028 ADBG(("addrconf: prefix option too short\n"));
2029 return;
2030 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /*
2033 * Validation checks ([ADDRCONF], page 19)
2034 */
2035
2036 addr_type = ipv6_addr_type(&pinfo->prefix);
2037
2038 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2039 return;
2040
2041 valid_lft = ntohl(pinfo->valid);
2042 prefered_lft = ntohl(pinfo->prefered);
2043
2044 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002045 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return;
2047 }
2048
2049 in6_dev = in6_dev_get(dev);
2050
2051 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002052 net_dbg_ratelimited("addrconf: device %s not configured\n",
2053 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 return;
2055 }
2056
2057 /*
2058 * Two things going on here:
2059 * 1) Add routes for on-link prefixes
2060 * 2) Configure prefixes with the auto flag set
2061 */
2062
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002063 if (pinfo->onlink) {
2064 struct rt6_info *rt;
2065 unsigned long rt_expires;
2066
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002067 /* Avoid arithmetic overflow. Really, we could
2068 * save rt_expires in seconds, likely valid_lft,
2069 * but it would require division in fib gc, that it
2070 * not good.
2071 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002072 if (HZ > USER_HZ)
2073 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2074 else
2075 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002076
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002077 if (addrconf_finite_timeout(rt_expires))
2078 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002080 rt = addrconf_get_prefix_route(&pinfo->prefix,
2081 pinfo->prefix_len,
2082 dev,
2083 RTF_ADDRCONF | RTF_PREFIX_RT,
2084 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002086 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002087 /* Autoconf prefix route */
2088 if (valid_lft == 0) {
2089 ip6_del_rt(rt);
2090 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002091 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002092 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002093 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002094 } else {
Gao feng1716a962012-04-06 00:13:10 +00002095 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002098 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002099 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2100 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002101 /* not infinity */
2102 flags |= RTF_EXPIRES;
2103 expires = jiffies_to_clock_t(rt_expires);
2104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002106 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002108 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110
2111 /* Try to figure out our local address for this prefix */
2112
2113 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002114 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 struct in6_addr addr;
2116 int create = 0, update_lft = 0;
2117
2118 if (pinfo->prefix_len == 64) {
2119 memcpy(&addr, &pinfo->prefix, 8);
2120 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2121 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
2122 in6_dev_put(in6_dev);
2123 return;
2124 }
2125 goto ok;
2126 }
Joe Perchese87cc472012-05-13 21:56:26 +00002127 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2128 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 in6_dev_put(in6_dev);
2130 return;
2131
2132ok:
2133
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002134 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 if (ifp == NULL && valid_lft) {
2137 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002138 u32 addr_flags = 0;
2139
2140#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2141 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002142 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002143 addr_flags = IFA_F_OPTIMISTIC;
2144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 /* Do not allow to create too much of autoconfigured
2147 * addresses; this would be too easy way to crash kernel.
2148 */
2149 if (!max_addresses ||
2150 ipv6_count_addresses(in6_dev) < max_addresses)
2151 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002152 addr_type&IPV6_ADDR_SCOPE_MASK,
2153 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002155 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 in6_dev_put(in6_dev);
2157 return;
2158 }
2159
2160 update_lft = create = 1;
2161 ifp->cstamp = jiffies;
David S. Millercf22f9a2012-04-14 21:37:40 -04002162 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164
2165 if (ifp) {
2166 int flags;
2167 unsigned long now;
2168#ifdef CONFIG_IPV6_PRIVACY
2169 struct inet6_ifaddr *ift;
2170#endif
2171 u32 stored_lft;
2172
2173 /* update lifetime (RFC2462 5.5.3 e) */
2174 spin_lock(&ifp->lock);
2175 now = jiffies;
2176 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2177 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2178 else
2179 stored_lft = 0;
2180 if (!update_lft && stored_lft) {
2181 if (valid_lft > MIN_VALID_LIFETIME ||
2182 valid_lft > stored_lft)
2183 update_lft = 1;
2184 else if (stored_lft <= MIN_VALID_LIFETIME) {
2185 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002186 /*
2187 * RFC 4862 Section 5.5.3e:
2188 * "Note that the preferred lifetime of
2189 * the corresponding address is always
2190 * reset to the Preferred Lifetime in
2191 * the received Prefix Information
2192 * option, regardless of whether the
2193 * valid lifetime is also reset or
2194 * ignored."
2195 *
2196 * So if the preferred lifetime in
2197 * this advertisement is different
2198 * than what we have stored, but the
2199 * valid lifetime is invalid, just
2200 * reset prefered_lft.
2201 *
2202 * We must set the valid lifetime
2203 * to the stored lifetime since we'll
2204 * be updating the timestamp below,
2205 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002206 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002207 */
2208 if (prefered_lft != ifp->prefered_lft) {
2209 valid_lft = stored_lft;
2210 update_lft = 1;
2211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 } else {
2213 valid_lft = MIN_VALID_LIFETIME;
2214 if (valid_lft < prefered_lft)
2215 prefered_lft = valid_lft;
2216 update_lft = 1;
2217 }
2218 }
2219
2220 if (update_lft) {
2221 ifp->valid_lft = valid_lft;
2222 ifp->prefered_lft = prefered_lft;
2223 ifp->tstamp = now;
2224 flags = ifp->flags;
2225 ifp->flags &= ~IFA_F_DEPRECATED;
2226 spin_unlock(&ifp->lock);
2227
2228 if (!(flags&IFA_F_TENTATIVE))
2229 ipv6_ifa_notify(0, ifp);
2230 } else
2231 spin_unlock(&ifp->lock);
2232
2233#ifdef CONFIG_IPV6_PRIVACY
2234 read_lock_bh(&in6_dev->lock);
2235 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002236 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2237 tmp_list) {
2238 int age, max_valid, max_prefered;
2239
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002240 if (ifp != ift->ifpub)
2241 continue;
2242
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002243 /*
2244 * RFC 4941 section 3.3:
2245 * If a received option will extend the lifetime
2246 * of a public address, the lifetimes of
2247 * temporary addresses should be extended,
2248 * subject to the overall constraint that no
2249 * temporary addresses should ever remain
2250 * "valid" or "preferred" for a time longer than
2251 * (TEMP_VALID_LIFETIME) or
2252 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2253 * respectively.
2254 */
2255 age = (now - ift->cstamp) / HZ;
2256 max_valid = in6_dev->cnf.temp_valid_lft - age;
2257 if (max_valid < 0)
2258 max_valid = 0;
2259
2260 max_prefered = in6_dev->cnf.temp_prefered_lft -
2261 in6_dev->cnf.max_desync_factor -
2262 age;
2263 if (max_prefered < 0)
2264 max_prefered = 0;
2265
2266 if (valid_lft > max_valid)
2267 valid_lft = max_valid;
2268
2269 if (prefered_lft > max_prefered)
2270 prefered_lft = max_prefered;
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 spin_lock(&ift->lock);
2273 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002274 ift->valid_lft = valid_lft;
2275 ift->prefered_lft = prefered_lft;
2276 ift->tstamp = now;
2277 if (prefered_lft > 0)
2278 ift->flags &= ~IFA_F_DEPRECATED;
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 spin_unlock(&ift->lock);
2281 if (!(flags&IFA_F_TENTATIVE))
2282 ipv6_ifa_notify(0, ift);
2283 }
2284
Glenn Wursteraed65502010-09-27 07:04:30 +00002285 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002287 * When a new public address is created as
2288 * described in [ADDRCONF], also create a new
2289 * temporary address. Also create a temporary
2290 * address if it's enabled but no temporary
2291 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002293 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 ipv6_create_tempaddr(ifp, NULL);
2295 } else {
2296 read_unlock_bh(&in6_dev->lock);
2297 }
2298#endif
2299 in6_ifa_put(ifp);
2300 addrconf_verify(0);
2301 }
2302 }
2303 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2304 in6_dev_put(in6_dev);
2305}
2306
2307/*
2308 * Set destination address.
2309 * Special case for SIT interfaces where we create a new "virtual"
2310 * device.
2311 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002312int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
2314 struct in6_ifreq ireq;
2315 struct net_device *dev;
2316 int err = -EINVAL;
2317
2318 rtnl_lock();
2319
2320 err = -EFAULT;
2321 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2322 goto err_exit;
2323
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002324 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
2326 err = -ENODEV;
2327 if (dev == NULL)
2328 goto err_exit;
2329
Amerigo Wang07a93622012-10-29 16:23:10 +00002330#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002332 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 struct ip_tunnel_parm p;
2335
2336 err = -EADDRNOTAVAIL;
2337 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2338 goto err_exit;
2339
2340 memset(&p, 0, sizeof(p));
2341 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2342 p.iph.saddr = 0;
2343 p.iph.version = 4;
2344 p.iph.ihl = 5;
2345 p.iph.protocol = IPPROTO_IPV6;
2346 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002347 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002349 if (ops->ndo_do_ioctl) {
2350 mm_segment_t oldfs = get_fs();
2351
2352 set_fs(KERNEL_DS);
2353 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2354 set_fs(oldfs);
2355 } else
2356 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358 if (err == 0) {
2359 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002360 dev = __dev_get_by_name(net, p.name);
2361 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 goto err_exit;
2363 err = dev_open(dev);
2364 }
2365 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002366#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368err_exit:
2369 rtnl_unlock();
2370 return err;
2371}
2372
2373/*
2374 * Manual configuration of address on an interface
2375 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002376static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002377 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002378 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379{
2380 struct inet6_ifaddr *ifp;
2381 struct inet6_dev *idev;
2382 struct net_device *dev;
2383 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002384 u32 flags;
2385 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002386 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002389
Thomas Graf24ef0da2008-05-28 16:54:22 +02002390 if (plen > 128)
2391 return -EINVAL;
2392
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002393 /* check the lifetime */
2394 if (!valid_lft || prefered_lft > valid_lft)
2395 return -EINVAL;
2396
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002397 dev = __dev_get_by_index(net, ifindex);
2398 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002400
Brian Haley64e724f2010-07-20 10:34:30 +00002401 idev = addrconf_add_dev(dev);
2402 if (IS_ERR(idev))
2403 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 scope = ipv6_addr_scope(pfx);
2406
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002407 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2408 if (addrconf_finite_timeout(timeout)) {
2409 expires = jiffies_to_clock_t(timeout * HZ);
2410 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002411 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002412 } else {
2413 expires = 0;
2414 flags = 0;
2415 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002416 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002417
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002418 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2419 if (addrconf_finite_timeout(timeout)) {
2420 if (timeout == 0)
2421 ifa_flags |= IFA_F_DEPRECATED;
2422 prefered_lft = timeout;
2423 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002424
2425 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07002428 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002429 ifp->valid_lft = valid_lft;
2430 ifp->prefered_lft = prefered_lft;
2431 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07002432 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002433
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002434 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002435 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002436 /*
2437 * Note that section 3.1 of RFC 4429 indicates
2438 * that the Optimistic flag should not be set for
2439 * manually configured addresses
2440 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002441 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002443 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return 0;
2445 }
2446
2447 return PTR_ERR(ifp);
2448}
2449
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002450static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002451 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
2453 struct inet6_ifaddr *ifp;
2454 struct inet6_dev *idev;
2455 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002456
Thomas Graf24ef0da2008-05-28 16:54:22 +02002457 if (plen > 128)
2458 return -EINVAL;
2459
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002460 dev = __dev_get_by_index(net, ifindex);
2461 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 return -ENODEV;
2463
2464 if ((idev = __in6_dev_get(dev)) == NULL)
2465 return -ENXIO;
2466
2467 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002468 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 if (ifp->prefix_len == plen &&
2470 ipv6_addr_equal(pfx, &ifp->addr)) {
2471 in6_ifa_hold(ifp);
2472 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 ipv6_del_addr(ifp);
2475
2476 /* If the last address is deleted administratively,
2477 disable IPv6 on this interface.
2478 */
stephen hemminger502a2ff2010-03-17 20:31:13 +00002479 if (list_empty(&idev->addr_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 addrconf_ifdown(idev->dev, 1);
2481 return 0;
2482 }
2483 }
2484 read_unlock_bh(&idev->lock);
2485 return -EADDRNOTAVAIL;
2486}
2487
2488
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002489int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
2491 struct in6_ifreq ireq;
2492 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002493
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002494 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2498 return -EFAULT;
2499
2500 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002501 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2502 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2503 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 rtnl_unlock();
2505 return err;
2506}
2507
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002508int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
2510 struct in6_ifreq ireq;
2511 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002512
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002513 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 return -EPERM;
2515
2516 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2517 return -EFAULT;
2518
2519 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002520 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2521 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 rtnl_unlock();
2523 return err;
2524}
2525
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002526static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2527 int plen, int scope)
2528{
2529 struct inet6_ifaddr *ifp;
2530
2531 ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
2532 if (!IS_ERR(ifp)) {
2533 spin_lock_bh(&ifp->lock);
2534 ifp->flags &= ~IFA_F_TENTATIVE;
2535 spin_unlock_bh(&ifp->lock);
2536 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2537 in6_ifa_put(ifp);
2538 }
2539}
2540
Amerigo Wang07a93622012-10-29 16:23:10 +00002541#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542static void sit_add_v4_addrs(struct inet6_dev *idev)
2543{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 struct in6_addr addr;
2545 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002546 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 int scope;
2548
2549 ASSERT_RTNL();
2550
2551 memset(&addr, 0, sizeof(struct in6_addr));
2552 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2553
2554 if (idev->dev->flags&IFF_POINTOPOINT) {
2555 addr.s6_addr32[0] = htonl(0xfe800000);
2556 scope = IFA_LINK;
2557 } else {
2558 scope = IPV6_ADDR_COMPATv4;
2559 }
2560
2561 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002562 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return;
2564 }
2565
Benjamin Thery6fda7352008-03-05 10:47:47 -08002566 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002567 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002569 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 int flag = scope;
2572
2573 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2574 int plen;
2575
2576 addr.s6_addr32[3] = ifa->ifa_local;
2577
2578 if (ifa->ifa_scope == RT_SCOPE_LINK)
2579 continue;
2580 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2581 if (idev->dev->flags&IFF_POINTOPOINT)
2582 continue;
2583 flag |= IFA_HOST;
2584 }
2585 if (idev->dev->flags&IFF_POINTOPOINT)
2586 plen = 64;
2587 else
2588 plen = 96;
2589
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002590 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
2592 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
2597static void init_loopback(struct net_device *dev)
2598{
2599 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
2601 /* ::1 */
2602
2603 ASSERT_RTNL();
2604
2605 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002606 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 return;
2608 }
2609
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002610 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611}
2612
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002613static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002615 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002616 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Neil Horman95c385b2007-04-25 17:08:10 -07002618#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2619 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002620 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002621 addr_flags |= IFA_F_OPTIMISTIC;
2622#endif
2623
2624
2625 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002627 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002628 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 in6_ifa_put(ifp);
2630 }
2631}
2632
2633static void addrconf_dev_config(struct net_device *dev)
2634{
2635 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002636 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 ASSERT_RTNL();
2639
Herbert Xu74235a22007-06-14 13:02:55 -07002640 if ((dev->type != ARPHRD_ETHER) &&
2641 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002642 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002643 (dev->type != ARPHRD_INFINIBAND) &&
2644 (dev->type != ARPHRD_IEEE802154)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002645 /* Alas, we support only Ethernet autoconfiguration. */
2646 return;
2647 }
2648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002650 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return;
2652
2653 memset(&addr, 0, sizeof(struct in6_addr));
2654 addr.s6_addr32[0] = htonl(0xFE800000);
2655
2656 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2657 addrconf_add_linklocal(idev, &addr);
2658}
2659
Amerigo Wang07a93622012-10-29 16:23:10 +00002660#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661static void addrconf_sit_config(struct net_device *dev)
2662{
2663 struct inet6_dev *idev;
2664
2665 ASSERT_RTNL();
2666
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002667 /*
2668 * Configure the tunnel with one of our IPv4
2669 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 * our v4 addrs in the tunnel
2671 */
2672
2673 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002674 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 return;
2676 }
2677
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002678 if (dev->priv_flags & IFF_ISATAP) {
2679 struct in6_addr addr;
2680
2681 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2682 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2683 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2684 addrconf_add_linklocal(idev, &addr);
2685 return;
2686 }
2687
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 sit_add_v4_addrs(idev);
2689
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002690 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002692 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 sit_route_add(dev);
2694}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002695#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Amerigo Wang07a93622012-10-29 16:23:10 +00002697#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002698static void addrconf_gre_config(struct net_device *dev)
2699{
2700 struct inet6_dev *idev;
2701 struct in6_addr addr;
2702
Joe Perchesf3213832012-05-15 14:11:53 +00002703 pr_info("%s(%s)\n", __func__, dev->name);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002704
2705 ASSERT_RTNL();
2706
2707 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002708 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002709 return;
2710 }
2711
2712 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2713 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2714
2715 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2716 addrconf_add_linklocal(idev, &addr);
2717}
2718#endif
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720static inline int
2721ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2722{
2723 struct in6_addr lladdr;
2724
Neil Horman95c385b2007-04-25 17:08:10 -07002725 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 addrconf_add_linklocal(idev, &lladdr);
2727 return 0;
2728 }
2729 return -1;
2730}
2731
2732static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2733{
2734 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002735 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737 /* first try to inherit the link-local address from the link device */
2738 if (idev->dev->iflink &&
Benjamin Thery6fda7352008-03-05 10:47:47 -08002739 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (!ipv6_inherit_linklocal(idev, link_dev))
2741 return;
2742 }
2743 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002744 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (!ipv6_inherit_linklocal(idev, link_dev))
2746 return;
2747 }
Joe Perches91df42b2012-05-15 14:11:54 +00002748 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749}
2750
2751/*
2752 * Autoconfigure tunnel with a link-local address so routing protocols,
2753 * DHCPv6, MLD etc. can be run over the virtual link
2754 */
2755
2756static void addrconf_ip6_tnl_config(struct net_device *dev)
2757{
2758 struct inet6_dev *idev;
2759
2760 ASSERT_RTNL();
2761
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002762 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002763 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002764 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 return;
2766 }
2767 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002770static int addrconf_notify(struct notifier_block *this, unsigned long event,
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002771 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
2773 struct net_device *dev = (struct net_device *) data;
Eric Dumazet748e2d92012-08-22 21:50:59 +00002774 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002775 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002776 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002778 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002779 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002780 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002781 idev = ipv6_add_dev(dev);
2782 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002783 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002784 }
2785 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002788 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002789 if (dev->flags & IFF_SLAVE)
2790 break;
2791
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002792 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002793 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002794 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002795 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002796 dev->name);
2797 break;
2798 }
Kristian Slavov99081042006-02-08 16:10:53 -08002799
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002800 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2801 idev = ipv6_add_dev(dev);
2802
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002803 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002804 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002805 run_pending = 1;
2806 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002807 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002808 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002809 /* device is still not ready. */
2810 break;
2811 }
2812
2813 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002814 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002815 /* device is already configured. */
2816 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002817 idev->if_flags |= IF_READY;
2818 }
2819
Joe Perchesf3213832012-05-15 14:11:53 +00002820 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2821 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002822
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002823 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002824 }
2825
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002826 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002827#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 case ARPHRD_SIT:
2829 addrconf_sit_config(dev);
2830 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002831#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002832#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002833 case ARPHRD_IPGRE:
2834 addrconf_gre_config(dev);
2835 break;
2836#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 case ARPHRD_TUNNEL6:
2838 addrconf_ip6_tnl_config(dev);
2839 break;
2840 case ARPHRD_LOOPBACK:
2841 init_loopback(dev);
2842 break;
2843
2844 default:
2845 addrconf_dev_config(dev);
2846 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002847 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002850 if (run_pending)
2851 addrconf_dad_run(idev);
2852
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002853 /*
2854 * If the MTU changed during the interface down,
2855 * when the interface up, the changed MTU must be
2856 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002858 if (idev->cnf.mtu6 != dev->mtu &&
2859 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 rt6_mtu_change(dev, dev->mtu);
2861 idev->cnf.mtu6 = dev->mtu;
2862 }
2863 idev->tstamp = jiffies;
2864 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002865
2866 /*
2867 * If the changed mtu during down is lower than
2868 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 */
2870 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002871 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 }
2873 break;
2874
2875 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002876 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 rt6_mtu_change(dev, dev->mtu);
2878 idev->cnf.mtu6 = dev->mtu;
2879 break;
2880 }
2881
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002882 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2883 idev = ipv6_add_dev(dev);
2884 if (idev)
2885 break;
2886 }
2887
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002888 /*
2889 * MTU falled under IPV6_MIN_MTU.
2890 * Stop IPv6 on this interface.
2891 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 case NETDEV_DOWN:
2894 case NETDEV_UNREGISTER:
2895 /*
2896 * Remove all addresses from this interface.
2897 */
2898 addrconf_ifdown(dev, event != NETDEV_DOWN);
2899 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002900
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002903 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002904 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002905 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002906 err = snmp6_register_dev(idev);
2907 if (err)
2908 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002911
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002912 case NETDEV_PRE_TYPE_CHANGE:
2913 case NETDEV_POST_TYPE_CHANGE:
2914 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002915 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
2918 return NOTIFY_OK;
2919}
2920
2921/*
2922 * addrconf module should be notified of a device going up
2923 */
2924static struct notifier_block ipv6_dev_notf = {
2925 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926};
2927
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002928static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002929{
2930 struct inet6_dev *idev;
2931 ASSERT_RTNL();
2932
2933 idev = __in6_dev_get(dev);
2934
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002935 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002936 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002937 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002938 ipv6_mc_unmap(idev);
2939}
2940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941static int addrconf_ifdown(struct net_device *dev, int how)
2942{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002943 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002944 struct inet6_dev *idev;
2945 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002946 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 ASSERT_RTNL();
2949
David S. Miller73a8bd72011-01-23 23:27:15 -08002950 rt6_ifdown(net, dev);
2951 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 idev = __in6_dev_get(dev);
2954 if (idev == NULL)
2955 return -ENODEV;
2956
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002957 /*
2958 * Step 1: remove reference to ipv6 device from parent device.
2959 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002961 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002963
2964 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002965 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
2967 /* Step 1.5: remove snmp6 entry */
2968 snmp6_unregister_dev(idev);
2969
2970 }
2971
David S. Miller73a8bd72011-01-23 23:27:15 -08002972 /* Step 2: clear hash table */
2973 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2974 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002975
2976 spin_lock_bh(&addrconf_hash_lock);
2977 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002978 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08002979 if (ifa->idev == idev) {
2980 hlist_del_init_rcu(&ifa->addr_lst);
2981 addrconf_del_timer(ifa);
2982 goto restart;
2983 }
2984 }
2985 spin_unlock_bh(&addrconf_hash_lock);
2986 }
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 write_lock_bh(&idev->lock);
2989
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002990 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002991 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002992 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07002995 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 in6_dev_put(idev);
2997
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002998 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00002999 while (!list_empty(&idev->tempaddr_list)) {
3000 ifa = list_first_entry(&idev->tempaddr_list,
3001 struct inet6_ifaddr, tmp_list);
3002 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 write_unlock_bh(&idev->lock);
3004 spin_lock_bh(&ifa->lock);
3005
3006 if (ifa->ifpub) {
3007 in6_ifa_put(ifa->ifpub);
3008 ifa->ifpub = NULL;
3009 }
3010 spin_unlock_bh(&ifa->lock);
3011 in6_ifa_put(ifa);
3012 write_lock_bh(&idev->lock);
3013 }
3014#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003015
stephen hemminger502a2ff2010-03-17 20:31:13 +00003016 while (!list_empty(&idev->addr_list)) {
3017 ifa = list_first_entry(&idev->addr_list,
3018 struct inet6_ifaddr, if_list);
stephen hemminger84e8b802010-03-02 13:32:46 +00003019 addrconf_del_timer(ifa);
3020
David S. Miller73a8bd72011-01-23 23:27:15 -08003021 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
David S. Miller73a8bd72011-01-23 23:27:15 -08003023 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003024
David S. Miller73a8bd72011-01-23 23:27:15 -08003025 spin_lock_bh(&ifa->state_lock);
3026 state = ifa->state;
3027 ifa->state = INET6_IFADDR_STATE_DEAD;
3028 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003029
David S. Miller73a8bd72011-01-23 23:27:15 -08003030 if (state != INET6_IFADDR_STATE_DEAD) {
3031 __ipv6_ifa_notify(RTM_DELADDR, ifa);
3032 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003033 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003034 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003035
David S. Miller73a8bd72011-01-23 23:27:15 -08003036 write_lock_bh(&idev->lock);
3037 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003038
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 write_unlock_bh(&idev->lock);
3040
3041 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003042 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 ipv6_mc_destroy_dev(idev);
3044 else
3045 ipv6_mc_down(idev);
3046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003048
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003049 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003050 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003051 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 neigh_parms_release(&nd_tbl, idev->nd_parms);
3053 neigh_ifdown(&nd_tbl, dev);
3054 in6_dev_put(idev);
3055 }
3056 return 0;
3057}
3058
3059static void addrconf_rs_timer(unsigned long data)
3060{
3061 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003062 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
stephen hemminger5b2a1952010-03-02 13:32:45 +00003064 read_lock(&idev->lock);
3065 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 goto out;
3067
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003068 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003070
3071 /* Announcement received after solicitation was sent */
3072 if (idev->if_flags & IF_RA_RCVD)
3073 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075 spin_lock(&ifp->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003076 if (ifp->probes++ < idev->cnf.rtr_solicits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 /* The wait after the last probe can be shorter */
3078 addrconf_mod_timer(ifp, AC_RS,
stephen hemminger5b2a1952010-03-02 13:32:45 +00003079 (ifp->probes == idev->cnf.rtr_solicits) ?
3080 idev->cnf.rtr_solicit_delay :
3081 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 spin_unlock(&ifp->lock);
3083
stephen hemminger5b2a1952010-03-02 13:32:45 +00003084 ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 } else {
3086 spin_unlock(&ifp->lock);
3087 /*
3088 * Note: we do not support deprecated "all on-link"
3089 * assumption any longer.
3090 */
Joe Perches91df42b2012-05-15 14:11:54 +00003091 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093
3094out:
stephen hemminger5b2a1952010-03-02 13:32:45 +00003095 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 in6_ifa_put(ifp);
3097}
3098
3099/*
3100 * Duplicate Address Detection
3101 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003102static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3103{
3104 unsigned long rand_num;
3105 struct inet6_dev *idev = ifp->idev;
3106
Neil Horman95c385b2007-04-25 17:08:10 -07003107 if (ifp->flags & IFA_F_OPTIMISTIC)
3108 rand_num = 0;
3109 else
3110 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3111
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003112 ifp->probes = idev->cnf.dad_transmits;
3113 addrconf_mod_timer(ifp, AC_DAD, rand_num);
3114}
3115
David S. Millercf22f9a2012-04-14 21:37:40 -04003116static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117{
3118 struct inet6_dev *idev = ifp->idev;
3119 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121 addrconf_join_solict(dev, &ifp->addr);
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003126 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003127 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
3130 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003131 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003132 !(ifp->flags&IFA_F_TENTATIVE) ||
3133 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003134 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003135 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 read_unlock_bh(&idev->lock);
3137
3138 addrconf_dad_completed(ifp);
3139 return;
3140 }
3141
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003142 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003143 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003144 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003145 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003146 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003147 * - keep it tentative if it is a permanent address.
3148 * - otherwise, kill it.
3149 */
3150 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003151 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003152 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003153 }
Neil Horman95c385b2007-04-25 17:08:10 -07003154
3155 /*
3156 * Optimistic nodes can start receiving
3157 * Frames right away
3158 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003159 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003160 ip6_ins_rt(ifp->rt);
3161
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003162 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003164 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 read_unlock_bh(&idev->lock);
3166}
3167
3168static void addrconf_dad_timer(unsigned long data)
3169{
3170 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3171 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 struct in6_addr mcaddr;
3173
Herbert Xuf2344a12010-05-18 15:55:27 -07003174 if (!ifp->probes && addrconf_dad_end(ifp))
3175 goto out;
3176
stephen hemminger122e4512010-03-02 13:32:44 +00003177 read_lock(&idev->lock);
3178 if (idev->dead || !(idev->if_flags & IF_READY)) {
3179 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 goto out;
3181 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003182
3183 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003184 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3185 spin_unlock(&ifp->lock);
3186 read_unlock(&idev->lock);
3187 goto out;
3188 }
3189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 if (ifp->probes == 0) {
3191 /*
3192 * DAD was successful
3193 */
3194
Brian Haleycc411d02009-09-09 14:41:32 +00003195 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003196 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003197 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
3199 addrconf_dad_completed(ifp);
3200
3201 goto out;
3202 }
3203
3204 ifp->probes--;
3205 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003206 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003207 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003211 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212out:
3213 in6_ifa_put(ifp);
3214}
3215
3216static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3217{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003218 struct net_device *dev = ifp->idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 /*
3221 * Configure the address for reception. Now it is valid.
3222 */
3223
3224 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3225
Tore Anderson026359b2011-08-28 23:47:33 +00003226 /* If added prefix is link local and we are prepared to process
3227 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 */
3229
Shmulik Ladkaniaeaf6e92012-11-30 10:25:59 +00003230 if (ipv6_accept_ra(ifp->idev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 ifp->idev->cnf.rtr_solicits > 0 &&
3232 (dev->flags&IFF_LOOPBACK) == 0 &&
3233 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 /*
3235 * If a host as already performed a random delay
3236 * [...] as part of DAD [...] there is no need
3237 * to delay again before sending the first RS
3238 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09003239 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
3241 spin_lock_bh(&ifp->lock);
3242 ifp->probes = 1;
3243 ifp->idev->if_flags |= IF_RS_SENT;
3244 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
3245 spin_unlock_bh(&ifp->lock);
3246 }
3247}
3248
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003249static void addrconf_dad_run(struct inet6_dev *idev)
3250{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003251 struct inet6_ifaddr *ifp;
3252
3253 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003254 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003255 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003256 if (ifp->flags & IFA_F_TENTATIVE &&
3257 ifp->state == INET6_IFADDR_STATE_DAD)
3258 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003259 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003260 }
3261 read_unlock_bh(&idev->lock);
3262}
3263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264#ifdef CONFIG_PROC_FS
3265struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003266 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003268 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269};
3270
Mihai Maruseac1d578302012-01-03 23:31:35 +00003271static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
3273 struct inet6_ifaddr *ifa = NULL;
3274 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003275 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003276 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Mihai Maruseac1d578302012-01-03 23:31:35 +00003278 /* initial bucket if pos is 0 */
3279 if (pos == 0) {
3280 state->bucket = 0;
3281 state->offset = 0;
3282 }
3283
3284 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003285 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003286 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003287 if (!net_eq(dev_net(ifa->idev->dev), net))
3288 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003289 /* sync with offset */
3290 if (p < state->offset) {
3291 p++;
3292 continue;
3293 }
3294 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003295 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003296 }
3297
3298 /* prepare for next bucket */
3299 state->offset = 0;
3300 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003302 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
stephen hemmingerc2e21292010-03-17 20:31:10 +00003305static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3306 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307{
3308 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003309 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
Sasha Levinb67bfe02013-02-27 17:06:00 -08003311 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003312 if (!net_eq(dev_net(ifa->idev->dev), net))
3313 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003314 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003315 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003316 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003317
3318 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003319 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003320 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003321 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003322 if (!net_eq(dev_net(ifa->idev->dev), net))
3323 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003324 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003325 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003326 }
3327 }
3328
stephen hemmingerc2e21292010-03-17 20:31:10 +00003329 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330}
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003333 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003335 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003336 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337}
3338
3339static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3340{
3341 struct inet6_ifaddr *ifa;
3342
3343 ifa = if6_get_next(seq, v);
3344 ++*pos;
3345 return ifa;
3346}
3347
3348static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003349 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003351 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352}
3353
3354static int if6_seq_show(struct seq_file *seq, void *v)
3355{
3356 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003357 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003358 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 ifp->idev->dev->ifindex,
3360 ifp->prefix_len,
3361 ifp->scope,
3362 ifp->flags,
3363 ifp->idev->dev->name);
3364 return 0;
3365}
3366
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003367static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 .start = if6_seq_start,
3369 .next = if6_seq_next,
3370 .show = if6_seq_show,
3371 .stop = if6_seq_stop,
3372};
3373
3374static int if6_seq_open(struct inode *inode, struct file *file)
3375{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003376 return seq_open_net(inode, file, &if6_seq_ops,
3377 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378}
3379
Arjan van de Ven9a321442007-02-12 00:55:35 -08003380static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 .owner = THIS_MODULE,
3382 .open = if6_seq_open,
3383 .read = seq_read,
3384 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003385 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386};
3387
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003388static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389{
Gao fengd4beaa62013-02-18 01:34:54 +00003390 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 return -ENOMEM;
3392 return 0;
3393}
3394
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003395static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003396{
Gao fengece31ff2013-02-18 01:34:56 +00003397 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003398}
3399
3400static struct pernet_operations if6_proc_net_ops = {
3401 .init = if6_proc_net_init,
3402 .exit = if6_proc_net_exit,
3403};
3404
3405int __init if6_proc_init(void)
3406{
3407 return register_pernet_subsys(&if6_proc_net_ops);
3408}
3409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410void if6_proc_exit(void)
3411{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003412 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413}
3414#endif /* CONFIG_PROC_FS */
3415
Amerigo Wang07a93622012-10-29 16:23:10 +00003416#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003417/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003418int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003419{
3420 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003421 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003422 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003423
stephen hemminger5c578ae2010-03-17 20:31:11 +00003424 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003425 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003426 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003427 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003428 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003429 (ifp->flags & IFA_F_HOMEADDRESS)) {
3430 ret = 1;
3431 break;
3432 }
3433 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003434 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003435 return ret;
3436}
3437#endif
3438
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439/*
3440 * Periodic address status verification
3441 */
3442
3443static void addrconf_verify(unsigned long foo)
3444{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003445 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 int i;
3448
stephen hemminger5c578ae2010-03-17 20:31:11 +00003449 rcu_read_lock_bh();
3450 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003452 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
3454 del_timer(&addr_chk_timer);
3455
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003456 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003458 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003459 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 if (ifp->flags & IFA_F_PERMANENT)
3463 continue;
3464
3465 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003466 /* We try to batch several events at once. */
3467 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003469 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3470 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 spin_unlock(&ifp->lock);
3472 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 ipv6_del_addr(ifp);
3474 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003475 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3476 spin_unlock(&ifp->lock);
3477 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003479 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 int deprecate = 0;
3481
3482 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3483 deprecate = 1;
3484 ifp->flags |= IFA_F_DEPRECATED;
3485 }
3486
3487 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3488 next = ifp->tstamp + ifp->valid_lft * HZ;
3489
3490 spin_unlock(&ifp->lock);
3491
3492 if (deprecate) {
3493 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
3495 ipv6_ifa_notify(0, ifp);
3496 in6_ifa_put(ifp);
3497 goto restart;
3498 }
3499#ifdef CONFIG_IPV6_PRIVACY
3500 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3501 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003502 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3503 ifp->idev->cnf.dad_transmits *
3504 ifp->idev->nd_parms->retrans_time / HZ;
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 if (age >= ifp->prefered_lft - regen_advance) {
3507 struct inet6_ifaddr *ifpub = ifp->ifpub;
3508 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3509 next = ifp->tstamp + ifp->prefered_lft * HZ;
3510 if (!ifp->regen_count && ifpub) {
3511 ifp->regen_count++;
3512 in6_ifa_hold(ifp);
3513 in6_ifa_hold(ifpub);
3514 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003515
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003516 spin_lock(&ifpub->lock);
3517 ifpub->regen_count = 0;
3518 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 ipv6_create_tempaddr(ifpub, ifp);
3520 in6_ifa_put(ifpub);
3521 in6_ifa_put(ifp);
3522 goto restart;
3523 }
3524 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3525 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3526 spin_unlock(&ifp->lock);
3527#endif
3528 } else {
3529 /* ifp->prefered_lft <= ifp->valid_lft */
3530 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3531 next = ifp->tstamp + ifp->prefered_lft * HZ;
3532 spin_unlock(&ifp->lock);
3533 }
3534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 }
3536
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003537 next_sec = round_jiffies_up(next);
3538 next_sched = next;
3539
3540 /* If rounded timeout is accurate enough, accept it. */
3541 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3542 next_sched = next_sec;
3543
3544 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3545 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3546 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3547
3548 ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3549 now, next, next_sec, next_sched));
3550
3551 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003553 spin_unlock(&addrconf_verify_lock);
3554 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555}
3556
Thomas Graf461d8832006-09-18 00:09:49 -07003557static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3558{
3559 struct in6_addr *pfx = NULL;
3560
3561 if (addr)
3562 pfx = nla_data(addr);
3563
3564 if (local) {
3565 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3566 pfx = NULL;
3567 else
3568 pfx = nla_data(local);
3569 }
3570
3571 return pfx;
3572}
3573
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003574static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003575 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3576 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3577 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3578};
3579
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580static int
3581inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3582{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003583 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003584 struct ifaddrmsg *ifm;
3585 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003587 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Thomas Grafb933f712006-09-18 00:10:19 -07003589 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3590 if (err < 0)
3591 return err;
3592
3593 ifm = nlmsg_data(nlh);
3594 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 if (pfx == NULL)
3596 return -EINVAL;
3597
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003598 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599}
3600
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003601static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3602 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003603{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003604 u32 flags;
3605 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003606 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003607
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003608 if (!valid_lft || (prefered_lft > valid_lft))
3609 return -EINVAL;
3610
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003611 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3612 if (addrconf_finite_timeout(timeout)) {
3613 expires = jiffies_to_clock_t(timeout * HZ);
3614 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003615 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003616 } else {
3617 expires = 0;
3618 flags = 0;
3619 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003620 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003621
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003622 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3623 if (addrconf_finite_timeout(timeout)) {
3624 if (timeout == 0)
3625 ifa_flags |= IFA_F_DEPRECATED;
3626 prefered_lft = timeout;
3627 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003628
3629 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003630 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 +09003631 ifp->tstamp = jiffies;
3632 ifp->valid_lft = valid_lft;
3633 ifp->prefered_lft = prefered_lft;
3634
3635 spin_unlock_bh(&ifp->lock);
3636 if (!(ifp->flags&IFA_F_TENTATIVE))
3637 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003638
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003639 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003640 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003641 addrconf_verify(0);
3642
3643 return 0;
3644}
3645
3646static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3648{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003649 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003650 struct ifaddrmsg *ifm;
3651 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003653 struct inet6_ifaddr *ifa;
3654 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003655 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3656 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003657 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Thomas Graf461d8832006-09-18 00:09:49 -07003659 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3660 if (err < 0)
3661 return err;
3662
3663 ifm = nlmsg_data(nlh);
3664 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 if (pfx == NULL)
3666 return -EINVAL;
3667
Thomas Graf461d8832006-09-18 00:09:49 -07003668 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003669 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003670
3671 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003672 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003673 preferred_lft = ci->ifa_prefered;
3674 } else {
3675 preferred_lft = INFINITY_LIFE_TIME;
3676 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003677 }
3678
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003679 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003680 if (dev == NULL)
3681 return -ENODEV;
3682
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003683 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003684 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003685
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003686 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003687 if (ifa == NULL) {
3688 /*
3689 * It would be best to check for !NLM_F_CREATE here but
3690 * userspace alreay relies on not having to provide this.
3691 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003692 return inet6_addr_add(net, ifm->ifa_index, pfx,
3693 ifm->ifa_prefixlen, ifa_flags,
3694 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003695 }
3696
Thomas Graf7198f8c2006-09-18 00:13:46 -07003697 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3698 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3699 err = -EEXIST;
3700 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003701 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003702
3703 in6_ifa_put(ifa);
3704
3705 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
Thomas Graf101bb222006-09-18 00:11:52 -07003708static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3709 u8 scope, int ifindex)
3710{
3711 struct ifaddrmsg *ifm;
3712
3713 ifm = nlmsg_data(nlh);
3714 ifm->ifa_family = AF_INET6;
3715 ifm->ifa_prefixlen = prefixlen;
3716 ifm->ifa_flags = flags;
3717 ifm->ifa_scope = scope;
3718 ifm->ifa_index = ifindex;
3719}
3720
Thomas Graf85486af2006-09-18 00:11:24 -07003721static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3722 unsigned long tstamp, u32 preferred, u32 valid)
3723{
3724 struct ifa_cacheinfo ci;
3725
Thomas Graf18a31e12010-11-17 04:12:02 +00003726 ci.cstamp = cstamp_delta(cstamp);
3727 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003728 ci.ifa_prefered = preferred;
3729 ci.ifa_valid = valid;
3730
3731 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3732}
3733
Thomas Graf101bb222006-09-18 00:11:52 -07003734static inline int rt_scope(int ifa_scope)
3735{
3736 if (ifa_scope & IFA_HOST)
3737 return RT_SCOPE_HOST;
3738 else if (ifa_scope & IFA_LINK)
3739 return RT_SCOPE_LINK;
3740 else if (ifa_scope & IFA_SITE)
3741 return RT_SCOPE_SITE;
3742 else
3743 return RT_SCOPE_UNIVERSE;
3744}
3745
Thomas Graf0ab68032006-09-18 00:12:35 -07003746static inline int inet6_ifaddr_msgsize(void)
3747{
Thomas Graf339bf982006-11-10 14:10:15 -08003748 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3749 + nla_total_size(16) /* IFA_ADDRESS */
3750 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003751}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003752
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003754 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003757 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Eric W. Biederman15e47302012-09-07 20:12:54 +00003759 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003760 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003761 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003762
Thomas Graf101bb222006-09-18 00:11:52 -07003763 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3764 ifa->idev->dev->ifindex);
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003767 preferred = ifa->prefered_lft;
3768 valid = ifa->valid_lft;
3769 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003771 if (preferred > tval)
3772 preferred -= tval;
3773 else
3774 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003775 if (valid != INFINITY_LIFE_TIME) {
3776 if (valid > tval)
3777 valid -= tval;
3778 else
3779 valid = 0;
3780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 }
3782 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003783 preferred = INFINITY_LIFE_TIME;
3784 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 }
Thomas Graf85486af2006-09-18 00:11:24 -07003786
Thomas Graf0ab68032006-09-18 00:12:35 -07003787 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003788 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3789 nlmsg_cancel(skb, nlh);
3790 return -EMSGSIZE;
3791 }
Thomas Graf85486af2006-09-18 00:11:24 -07003792
Thomas Graf0ab68032006-09-18 00:12:35 -07003793 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794}
3795
3796static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003797 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003800 u8 scope = RT_SCOPE_UNIVERSE;
3801 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
Thomas Graf101bb222006-09-18 00:11:52 -07003803 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3804 scope = RT_SCOPE_SITE;
3805
Eric W. Biederman15e47302012-09-07 20:12:54 +00003806 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003807 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003808 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003809
Thomas Graf101bb222006-09-18 00:11:52 -07003810 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003811 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3812 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003813 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3814 nlmsg_cancel(skb, nlh);
3815 return -EMSGSIZE;
3816 }
Thomas Graf85486af2006-09-18 00:11:24 -07003817
Thomas Graf0ab68032006-09-18 00:12:35 -07003818 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819}
3820
3821static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003822 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003825 u8 scope = RT_SCOPE_UNIVERSE;
3826 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
Thomas Graf101bb222006-09-18 00:11:52 -07003828 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3829 scope = RT_SCOPE_SITE;
3830
Eric W. Biederman15e47302012-09-07 20:12:54 +00003831 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003832 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003833 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003834
Thomas Graf101bb222006-09-18 00:11:52 -07003835 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003836 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3837 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003838 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3839 nlmsg_cancel(skb, nlh);
3840 return -EMSGSIZE;
3841 }
Thomas Graf85486af2006-09-18 00:11:24 -07003842
Thomas Graf0ab68032006-09-18 00:12:35 -07003843 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844}
3845
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003846enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 UNICAST_ADDR,
3848 MULTICAST_ADDR,
3849 ANYCAST_ADDR,
3850};
3851
Eric Dumazet234b27c2009-11-12 04:11:50 +00003852/* called with rcu_read_lock() */
3853static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3854 struct netlink_callback *cb, enum addr_type_t type,
3855 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 struct ifmcaddr6 *ifmca;
3858 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003859 int err = 1;
3860 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Eric Dumazet234b27c2009-11-12 04:11:50 +00003862 read_lock_bh(&idev->lock);
3863 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003864 case UNICAST_ADDR: {
3865 struct inet6_ifaddr *ifa;
3866
Eric Dumazet234b27c2009-11-12 04:11:50 +00003867 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003868 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3869 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003870 continue;
3871 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003872 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003873 cb->nlh->nlmsg_seq,
3874 RTM_NEWADDR,
3875 NLM_F_MULTI);
3876 if (err <= 0)
3877 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003879 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003880 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003881 case MULTICAST_ADDR:
3882 /* multicast address */
3883 for (ifmca = idev->mc_list; ifmca;
3884 ifmca = ifmca->next, ip_idx++) {
3885 if (ip_idx < s_ip_idx)
3886 continue;
3887 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003888 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003889 cb->nlh->nlmsg_seq,
3890 RTM_GETMULTICAST,
3891 NLM_F_MULTI);
3892 if (err <= 0)
3893 break;
3894 }
3895 break;
3896 case ANYCAST_ADDR:
3897 /* anycast address */
3898 for (ifaca = idev->ac_list; ifaca;
3899 ifaca = ifaca->aca_next, ip_idx++) {
3900 if (ip_idx < s_ip_idx)
3901 continue;
3902 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003903 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003904 cb->nlh->nlmsg_seq,
3905 RTM_GETANYCAST,
3906 NLM_F_MULTI);
3907 if (err <= 0)
3908 break;
3909 }
3910 break;
3911 default:
3912 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003914 read_unlock_bh(&idev->lock);
3915 *p_ip_idx = ip_idx;
3916 return err;
3917}
3918
3919static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3920 enum addr_type_t type)
3921{
3922 struct net *net = sock_net(skb->sk);
3923 int h, s_h;
3924 int idx, ip_idx;
3925 int s_idx, s_ip_idx;
3926 struct net_device *dev;
3927 struct inet6_dev *idev;
3928 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003929
3930 s_h = cb->args[0];
3931 s_idx = idx = cb->args[1];
3932 s_ip_idx = ip_idx = cb->args[2];
3933
3934 rcu_read_lock();
3935 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3936 idx = 0;
3937 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003938 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00003939 if (idx < s_idx)
3940 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003941 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003942 s_ip_idx = 0;
3943 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003944 idev = __in6_dev_get(dev);
3945 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003946 goto cont;
3947
3948 if (in6_dump_addrs(idev, skb, cb, type,
3949 s_ip_idx, &ip_idx) <= 0)
3950 goto done;
3951cont:
3952 idx++;
3953 }
3954 }
3955done:
3956 rcu_read_unlock();
3957 cb->args[0] = h;
3958 cb->args[1] = idx;
3959 cb->args[2] = ip_idx;
3960
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 return skb->len;
3962}
3963
3964static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3965{
3966 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003967
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 return inet6_dump_addr(skb, cb, type);
3969}
3970
3971static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3972{
3973 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003974
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 return inet6_dump_addr(skb, cb, type);
3976}
3977
3978
3979static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3980{
3981 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003982
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 return inet6_dump_addr(skb, cb, type);
3984}
3985
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003986static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
Thomas Graf1b29fc22006-09-18 00:10:50 -07003987 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003988{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003989 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003990 struct ifaddrmsg *ifm;
3991 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003992 struct in6_addr *addr = NULL;
3993 struct net_device *dev = NULL;
3994 struct inet6_ifaddr *ifa;
3995 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003996 int err;
3997
Thomas Graf1b29fc22006-09-18 00:10:50 -07003998 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3999 if (err < 0)
4000 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004001
Thomas Graf1b29fc22006-09-18 00:10:50 -07004002 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
4003 if (addr == NULL) {
4004 err = -EINVAL;
4005 goto errout;
4006 }
4007
4008 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004009 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004010 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004011
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004012 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4013 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004014 err = -EADDRNOTAVAIL;
4015 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004016 }
4017
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004018 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4019 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004020 err = -ENOBUFS;
4021 goto errout_ifa;
4022 }
4023
Eric W. Biederman15e47302012-09-07 20:12:54 +00004024 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004025 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004026 if (err < 0) {
4027 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4028 WARN_ON(err == -EMSGSIZE);
4029 kfree_skb(skb);
4030 goto errout_ifa;
4031 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004032 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004033errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004034 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004035errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004036 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004037}
4038
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4040{
4041 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004042 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004043 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Thomas Graf0ab68032006-09-18 00:12:35 -07004045 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004046 if (skb == NULL)
4047 goto errout;
4048
4049 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004050 if (err < 0) {
4051 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4052 WARN_ON(err == -EMSGSIZE);
4053 kfree_skb(skb);
4054 goto errout;
4055 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004056 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4057 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004058errout:
4059 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004060 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061}
4062
Dave Jonesb6f99a22007-03-22 12:27:49 -07004063static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 __s32 *array, int bytes)
4065{
Thomas Graf04561c12006-11-14 19:53:58 -08004066 BUG_ON(bytes < (DEVCONF_MAX * 4));
4067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 memset(array, 0, bytes);
4069 array[DEVCONF_FORWARDING] = cnf->forwarding;
4070 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4071 array[DEVCONF_MTU6] = cnf->mtu6;
4072 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4073 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4074 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4075 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4076 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004077 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4078 jiffies_to_msecs(cnf->rtr_solicit_interval);
4079 array[DEVCONF_RTR_SOLICIT_DELAY] =
4080 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
4082#ifdef CONFIG_IPV6_PRIVACY
4083 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4084 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4085 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4086 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4087 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4088#endif
4089 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004090 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004091 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004092#ifdef CONFIG_IPV6_ROUTER_PREF
4093 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004094 array[DEVCONF_RTR_PROBE_INTERVAL] =
4095 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004096#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004097 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4098#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004099#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004100 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004101 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004102#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4103 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4104#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004105#ifdef CONFIG_IPV6_MROUTE
4106 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4107#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004108 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004109 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004110 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004111 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112}
4113
Thomas Grafb382b192010-11-16 04:33:57 +00004114static inline size_t inet6_ifla6_size(void)
4115{
4116 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4117 + nla_total_size(sizeof(struct ifla_cacheinfo))
4118 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4119 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
4120 + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */
4121}
4122
Thomas Graf339bf982006-11-10 14:10:15 -08004123static inline size_t inet6_if_nlmsg_size(void)
4124{
4125 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4126 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4127 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4128 + nla_total_size(4) /* IFLA_MTU */
4129 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004130 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004131}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004132
Eric Dumazetbe281e52011-05-19 01:14:23 +00004133static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004134 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004135{
4136 int i;
4137 int pad = bytes - sizeof(u64) * items;
4138 BUG_ON(pad < 0);
4139
4140 /* Use put_unaligned() because stats may not be aligned for u64. */
4141 put_unaligned(items, &stats[0]);
4142 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004143 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004144
4145 memset(&stats[items], 0, pad);
4146}
4147
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004148static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4149 int items, int bytes, size_t syncpoff)
4150{
4151 int i;
4152 int pad = bytes - sizeof(u64) * items;
4153 BUG_ON(pad < 0);
4154
4155 /* Use put_unaligned() because stats may not be aligned for u64. */
4156 put_unaligned(items, &stats[0]);
4157 for (i = 1; i < items; i++)
4158 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4159
4160 memset(&stats[items], 0, pad);
4161}
4162
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004163static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4164 int bytes)
4165{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004166 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004167 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004168 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4169 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004170 break;
4171 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004172 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004173 break;
4174 }
4175}
4176
Thomas Grafb382b192010-11-16 04:33:57 +00004177static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004179 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004180 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
David S. Millerc78679e2012-04-01 20:27:33 -04004182 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4183 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004185 ci.tstamp = cstamp_delta(idev->tstamp);
4186 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4187 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004188 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4189 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004190 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4191 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004192 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004193 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004195 /* XXX - MC not implemented */
4196
4197 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4198 if (nla == NULL)
4199 goto nla_put_failure;
4200 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4201
4202 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4203 if (nla == NULL)
4204 goto nla_put_failure;
4205 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Thomas Grafb382b192010-11-16 04:33:57 +00004207 return 0;
4208
4209nla_put_failure:
4210 return -EMSGSIZE;
4211}
4212
4213static size_t inet6_get_link_af_size(const struct net_device *dev)
4214{
4215 if (!__in6_dev_get(dev))
4216 return 0;
4217
4218 return inet6_ifla6_size();
4219}
4220
4221static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4222{
4223 struct inet6_dev *idev = __in6_dev_get(dev);
4224
4225 if (!idev)
4226 return -ENODATA;
4227
4228 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4229 return -EMSGSIZE;
4230
4231 return 0;
4232}
4233
Thomas Grafb382b192010-11-16 04:33:57 +00004234static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004235 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004236{
4237 struct net_device *dev = idev->dev;
4238 struct ifinfomsg *hdr;
4239 struct nlmsghdr *nlh;
4240 void *protoinfo;
4241
Eric W. Biederman15e47302012-09-07 20:12:54 +00004242 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004243 if (nlh == NULL)
4244 return -EMSGSIZE;
4245
4246 hdr = nlmsg_data(nlh);
4247 hdr->ifi_family = AF_INET6;
4248 hdr->__ifi_pad = 0;
4249 hdr->ifi_type = dev->type;
4250 hdr->ifi_index = dev->ifindex;
4251 hdr->ifi_flags = dev_get_flags(dev);
4252 hdr->ifi_change = 0;
4253
David S. Millerc78679e2012-04-01 20:27:33 -04004254 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4255 (dev->addr_len &&
4256 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4257 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4258 (dev->ifindex != dev->iflink &&
4259 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4260 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004261 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4262 if (protoinfo == NULL)
4263 goto nla_put_failure;
4264
4265 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4266 goto nla_put_failure;
4267
Thomas Graf04561c12006-11-14 19:53:58 -08004268 nla_nest_end(skb, protoinfo);
4269 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Thomas Graf04561c12006-11-14 19:53:58 -08004271nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004272 nlmsg_cancel(skb, nlh);
4273 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274}
4275
4276static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4277{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004278 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004279 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004280 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 struct net_device *dev;
4282 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004283 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
Eric Dumazet84d26972009-11-09 12:11:28 +00004285 s_h = cb->args[0];
4286 s_idx = cb->args[1];
4287
4288 rcu_read_lock();
4289 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4290 idx = 0;
4291 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004292 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004293 if (idx < s_idx)
4294 goto cont;
4295 idev = __in6_dev_get(dev);
4296 if (!idev)
4297 goto cont;
4298 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004299 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004300 cb->nlh->nlmsg_seq,
4301 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4302 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004303cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004304 idx++;
4305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004307out:
4308 rcu_read_unlock();
4309 cb->args[1] = idx;
4310 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
4312 return skb->len;
4313}
4314
4315void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4316{
4317 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004318 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004319 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004320
Thomas Graf339bf982006-11-10 14:10:15 -08004321 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004322 if (skb == NULL)
4323 goto errout;
4324
4325 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004326 if (err < 0) {
4327 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4328 WARN_ON(err == -EMSGSIZE);
4329 kfree_skb(skb);
4330 goto errout;
4331 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004332 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004333 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004334errout:
4335 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004336 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337}
4338
Thomas Graf339bf982006-11-10 14:10:15 -08004339static inline size_t inet6_prefix_nlmsg_size(void)
4340{
4341 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4342 + nla_total_size(sizeof(struct in6_addr))
4343 + nla_total_size(sizeof(struct prefix_cacheinfo));
4344}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004345
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004347 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004348 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004350 struct prefixmsg *pmsg;
4351 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 struct prefix_cacheinfo ci;
4353
Eric W. Biederman15e47302012-09-07 20:12:54 +00004354 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004355 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004356 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004357
4358 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004360 pmsg->prefix_pad1 = 0;
4361 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 pmsg->prefix_ifindex = idev->dev->ifindex;
4363 pmsg->prefix_len = pinfo->prefix_len;
4364 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004365 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 pmsg->prefix_flags = 0;
4367 if (pinfo->onlink)
4368 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4369 if (pinfo->autoconf)
4370 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4371
David S. Millerc78679e2012-04-01 20:27:33 -04004372 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4373 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 ci.preferred_time = ntohl(pinfo->prefered);
4375 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004376 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4377 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004378 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Thomas Graf6051e2f2006-11-14 19:54:19 -08004380nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004381 nlmsg_cancel(skb, nlh);
4382 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383}
4384
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004385static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 struct prefix_info *pinfo)
4387{
4388 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004389 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004390 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
Thomas Graf339bf982006-11-10 14:10:15 -08004392 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004393 if (skb == NULL)
4394 goto errout;
4395
4396 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004397 if (err < 0) {
4398 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4399 WARN_ON(err == -EMSGSIZE);
4400 kfree_skb(skb);
4401 goto errout;
4402 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004403 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4404 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004405errout:
4406 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004407 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408}
4409
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4411{
4412 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4413
4414 switch (event) {
4415 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004416 /*
4417 * If the address was optimistic
4418 * we inserted the route at the start of
4419 * our DAD process, so we don't need
4420 * to do it again
4421 */
4422 if (!(ifp->rt->rt6i_node))
4423 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 if (ifp->idev->cnf.forwarding)
4425 addrconf_join_anycast(ifp);
4426 break;
4427 case RTM_DELADDR:
4428 if (ifp->idev->cnf.forwarding)
4429 addrconf_leave_anycast(ifp);
4430 addrconf_leave_solict(ifp->idev, &ifp->addr);
Changli Gaod8d1f302010-06-10 23:31:35 -07004431 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004432
David S. Miller73a8bd72011-01-23 23:27:15 -08004433 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004434 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 break;
4436 }
4437}
4438
4439static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4440{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004441 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 if (likely(ifp->idev->dead == 0))
4443 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004444 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445}
4446
4447#ifdef CONFIG_SYSCTL
4448
4449static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004450int addrconf_sysctl_forward(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 void __user *buffer, size_t *lenp, loff_t *ppos)
4452{
4453 int *valp = ctl->data;
4454 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004455 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004456 ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 int ret;
4458
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004459 /*
4460 * ctl->data points to idev->cnf.forwarding, we should
4461 * not modify it until we get the rtnl lock.
4462 */
4463 lctl = *ctl;
4464 lctl.data = &val;
4465
4466 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004468 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004469 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004470 if (ret)
4471 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004472 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473}
4474
Brian Haley56d417b2009-06-01 03:07:33 -07004475static void dev_disable_change(struct inet6_dev *idev)
4476{
4477 if (!idev || !idev->dev)
4478 return;
4479
4480 if (idev->cnf.disable_ipv6)
4481 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
4482 else
4483 addrconf_notify(NULL, NETDEV_UP, idev->dev);
4484}
4485
4486static void addrconf_disable_change(struct net *net, __s32 newf)
4487{
4488 struct net_device *dev;
4489 struct inet6_dev *idev;
4490
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004491 rcu_read_lock();
4492 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004493 idev = __in6_dev_get(dev);
4494 if (idev) {
4495 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4496 idev->cnf.disable_ipv6 = newf;
4497 if (changed)
4498 dev_disable_change(idev);
4499 }
Brian Haley56d417b2009-06-01 03:07:33 -07004500 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004501 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004502}
4503
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004504static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004505{
4506 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004507 int old;
4508
4509 if (!rtnl_trylock())
4510 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004511
4512 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004513 old = *p;
4514 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004515
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004516 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4517 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004518 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004519 }
Brian Haley56d417b2009-06-01 03:07:33 -07004520
4521 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004522 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4523 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004524 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004525 dev_disable_change((struct inet6_dev *)table->extra1);
4526
4527 rtnl_unlock();
4528 return 0;
4529}
4530
4531static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004532int addrconf_sysctl_disable(ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004533 void __user *buffer, size_t *lenp, loff_t *ppos)
4534{
4535 int *valp = ctl->data;
4536 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004537 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004538 ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004539 int ret;
4540
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004541 /*
4542 * ctl->data points to idev->cnf.disable_ipv6, we should
4543 * not modify it until we get the rtnl lock.
4544 */
4545 lctl = *ctl;
4546 lctl.data = &val;
4547
4548 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004549
4550 if (write)
4551 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004552 if (ret)
4553 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004554 return ret;
4555}
4556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557static struct addrconf_sysctl_table
4558{
4559 struct ctl_table_header *sysctl_header;
YOSHIFUJI Hideakif6a07b22008-03-25 00:25:11 +09004560 ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004561} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 .sysctl_header = NULL,
4563 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004564 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004565 .procname = "forwarding",
4566 .data = &ipv6_devconf.forwarding,
4567 .maxlen = sizeof(int),
4568 .mode = 0644,
4569 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 },
4571 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004572 .procname = "hop_limit",
4573 .data = &ipv6_devconf.hop_limit,
4574 .maxlen = sizeof(int),
4575 .mode = 0644,
4576 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 },
4578 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004579 .procname = "mtu",
4580 .data = &ipv6_devconf.mtu6,
4581 .maxlen = sizeof(int),
4582 .mode = 0644,
4583 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 },
4585 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004586 .procname = "accept_ra",
4587 .data = &ipv6_devconf.accept_ra,
4588 .maxlen = sizeof(int),
4589 .mode = 0644,
4590 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 },
4592 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004593 .procname = "accept_redirects",
4594 .data = &ipv6_devconf.accept_redirects,
4595 .maxlen = sizeof(int),
4596 .mode = 0644,
4597 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 },
4599 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004600 .procname = "autoconf",
4601 .data = &ipv6_devconf.autoconf,
4602 .maxlen = sizeof(int),
4603 .mode = 0644,
4604 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 },
4606 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004607 .procname = "dad_transmits",
4608 .data = &ipv6_devconf.dad_transmits,
4609 .maxlen = sizeof(int),
4610 .mode = 0644,
4611 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 },
4613 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004614 .procname = "router_solicitations",
4615 .data = &ipv6_devconf.rtr_solicits,
4616 .maxlen = sizeof(int),
4617 .mode = 0644,
4618 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 },
4620 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004621 .procname = "router_solicitation_interval",
4622 .data = &ipv6_devconf.rtr_solicit_interval,
4623 .maxlen = sizeof(int),
4624 .mode = 0644,
4625 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 },
4627 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004628 .procname = "router_solicitation_delay",
4629 .data = &ipv6_devconf.rtr_solicit_delay,
4630 .maxlen = sizeof(int),
4631 .mode = 0644,
4632 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 },
4634 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004635 .procname = "force_mld_version",
4636 .data = &ipv6_devconf.force_mld_version,
4637 .maxlen = sizeof(int),
4638 .mode = 0644,
4639 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 },
4641#ifdef CONFIG_IPV6_PRIVACY
4642 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004643 .procname = "use_tempaddr",
4644 .data = &ipv6_devconf.use_tempaddr,
4645 .maxlen = sizeof(int),
4646 .mode = 0644,
4647 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 },
4649 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004650 .procname = "temp_valid_lft",
4651 .data = &ipv6_devconf.temp_valid_lft,
4652 .maxlen = sizeof(int),
4653 .mode = 0644,
4654 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 },
4656 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004657 .procname = "temp_prefered_lft",
4658 .data = &ipv6_devconf.temp_prefered_lft,
4659 .maxlen = sizeof(int),
4660 .mode = 0644,
4661 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 },
4663 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004664 .procname = "regen_max_retry",
4665 .data = &ipv6_devconf.regen_max_retry,
4666 .maxlen = sizeof(int),
4667 .mode = 0644,
4668 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 },
4670 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004671 .procname = "max_desync_factor",
4672 .data = &ipv6_devconf.max_desync_factor,
4673 .maxlen = sizeof(int),
4674 .mode = 0644,
4675 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 },
4677#endif
4678 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004679 .procname = "max_addresses",
4680 .data = &ipv6_devconf.max_addresses,
4681 .maxlen = sizeof(int),
4682 .mode = 0644,
4683 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 },
4685 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004686 .procname = "accept_ra_defrtr",
4687 .data = &ipv6_devconf.accept_ra_defrtr,
4688 .maxlen = sizeof(int),
4689 .mode = 0644,
4690 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004691 },
4692 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004693 .procname = "accept_ra_pinfo",
4694 .data = &ipv6_devconf.accept_ra_pinfo,
4695 .maxlen = sizeof(int),
4696 .mode = 0644,
4697 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004698 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004699#ifdef CONFIG_IPV6_ROUTER_PREF
4700 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004701 .procname = "accept_ra_rtr_pref",
4702 .data = &ipv6_devconf.accept_ra_rtr_pref,
4703 .maxlen = sizeof(int),
4704 .mode = 0644,
4705 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004706 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004707 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004708 .procname = "router_probe_interval",
4709 .data = &ipv6_devconf.rtr_probe_interval,
4710 .maxlen = sizeof(int),
4711 .mode = 0644,
4712 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004713 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004714#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004715 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004716 .procname = "accept_ra_rt_info_max_plen",
4717 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4718 .maxlen = sizeof(int),
4719 .mode = 0644,
4720 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004721 },
4722#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004723#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004724 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004725 .procname = "proxy_ndp",
4726 .data = &ipv6_devconf.proxy_ndp,
4727 .maxlen = sizeof(int),
4728 .mode = 0644,
4729 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004730 },
4731 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004732 .procname = "accept_source_route",
4733 .data = &ipv6_devconf.accept_source_route,
4734 .maxlen = sizeof(int),
4735 .mode = 0644,
4736 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004737 },
Neil Horman95c385b2007-04-25 17:08:10 -07004738#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4739 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004740 .procname = "optimistic_dad",
4741 .data = &ipv6_devconf.optimistic_dad,
4742 .maxlen = sizeof(int),
4743 .mode = 0644,
4744 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004745
4746 },
4747#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004748#ifdef CONFIG_IPV6_MROUTE
4749 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004750 .procname = "mc_forwarding",
4751 .data = &ipv6_devconf.mc_forwarding,
4752 .maxlen = sizeof(int),
4753 .mode = 0444,
4754 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004755 },
4756#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004757 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004758 .procname = "disable_ipv6",
4759 .data = &ipv6_devconf.disable_ipv6,
4760 .maxlen = sizeof(int),
4761 .mode = 0644,
4762 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004763 },
4764 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004765 .procname = "accept_dad",
4766 .data = &ipv6_devconf.accept_dad,
4767 .maxlen = sizeof(int),
4768 .mode = 0644,
4769 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004770 },
4771 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004772 .procname = "force_tllao",
4773 .data = &ipv6_devconf.force_tllao,
4774 .maxlen = sizeof(int),
4775 .mode = 0644,
4776 .proc_handler = proc_dointvec
4777 },
4778 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004779 .procname = "ndisc_notify",
4780 .data = &ipv6_devconf.ndisc_notify,
4781 .maxlen = sizeof(int),
4782 .mode = 0644,
4783 .proc_handler = proc_dointvec
4784 },
4785 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004786 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 }
4788 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789};
4790
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004791static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004792 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793{
4794 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004796 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004797
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004798 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004800 goto out;
4801
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004802 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004803 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004805 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Eric W. Biederman6105e292012-04-19 13:41:24 +00004808 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Eric W. Biederman6105e292012-04-19 13:41:24 +00004810 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00004812 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004813
4814 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004815 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004817free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004819out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004820 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821}
4822
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004823static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4824{
4825 struct addrconf_sysctl_table *t;
4826
4827 if (p->sysctl == NULL)
4828 return;
4829
4830 t = p->sysctl;
4831 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00004832 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004833 kfree(t);
4834}
4835
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004836static void addrconf_sysctl_register(struct inet6_dev *idev)
4837{
Eric W. Biederman54716e32010-02-14 03:27:03 +00004838 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004839 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004840 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004841 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004842}
4843
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004844static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004846 __addrconf_sysctl_unregister(&idev->cnf);
4847 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848}
4849
4850
4851#endif
4852
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004853static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004854{
4855 int err;
4856 struct ipv6_devconf *all, *dflt;
4857
4858 err = -ENOMEM;
4859 all = &ipv6_devconf;
4860 dflt = &ipv6_devconf_dflt;
4861
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004862 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004863 all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
4864 if (all == NULL)
4865 goto err_alloc_all;
4866
4867 dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
4868 if (dflt == NULL)
4869 goto err_alloc_dflt;
Brian Haley56d417b2009-06-01 03:07:33 -07004870 } else {
4871 /* these will be inherited by all namespaces */
4872 dflt->autoconf = ipv6_defaults.autoconf;
4873 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004874 }
4875
4876 net->ipv6.devconf_all = all;
4877 net->ipv6.devconf_dflt = dflt;
4878
4879#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004880 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004881 if (err < 0)
4882 goto err_reg_all;
4883
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004884 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004885 if (err < 0)
4886 goto err_reg_dflt;
4887#endif
4888 return 0;
4889
4890#ifdef CONFIG_SYSCTL
4891err_reg_dflt:
4892 __addrconf_sysctl_unregister(all);
4893err_reg_all:
4894 kfree(dflt);
4895#endif
4896err_alloc_dflt:
4897 kfree(all);
4898err_alloc_all:
4899 return err;
4900}
4901
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004902static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004903{
4904#ifdef CONFIG_SYSCTL
4905 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
4906 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
4907#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004908 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004909 kfree(net->ipv6.devconf_dflt);
4910 kfree(net->ipv6.devconf_all);
4911 }
4912}
4913
4914static struct pernet_operations addrconf_ops = {
4915 .init = addrconf_init_net,
4916 .exit = addrconf_exit_net,
4917};
4918
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919/*
4920 * Device notifier
4921 */
4922
4923int register_inet6addr_notifier(struct notifier_block *nb)
4924{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004925 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004927EXPORT_SYMBOL(register_inet6addr_notifier);
4928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929int unregister_inet6addr_notifier(struct notifier_block *nb)
4930{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004931 return atomic_notifier_chain_unregister(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004933EXPORT_SYMBOL(unregister_inet6addr_notifier);
4934
Thomas Grafb382b192010-11-16 04:33:57 +00004935static struct rtnl_af_ops inet6_ops = {
4936 .family = AF_INET6,
4937 .fill_link_af = inet6_fill_link_af,
4938 .get_link_af_size = inet6_get_link_af_size,
Thomas Grafb382b192010-11-16 04:33:57 +00004939};
4940
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941/*
4942 * Init / cleanup code
4943 */
4944
4945int __init addrconf_init(void)
4946{
stephen hemmingerc2e21292010-03-17 20:31:10 +00004947 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004948
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004949 err = ipv6_addr_label_init();
4950 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00004951 pr_crit("%s: cannot initialize default policy table: %d\n",
4952 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004953 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004956 err = register_pernet_subsys(&addrconf_ops);
4957 if (err < 0)
4958 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004959
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 /* The addrconf netdev notifier requires that loopback_dev
4961 * has it's ipv6 private information allocated and setup
4962 * before it can bring up and give link-local addresses
4963 * to other devices which are up.
4964 *
4965 * Unfortunately, loopback_dev is not necessarily the first
4966 * entry in the global dev_base list of net devices. In fact,
4967 * it is likely to be the very last entry on that list.
4968 * So this causes the notifier registry below to try and
4969 * give link-local addresses to all devices besides loopback_dev
4970 * first, then loopback_dev, which cases all the non-loopback_dev
4971 * devices to fail to get a link-local address.
4972 *
4973 * So, as a temporary fix, allocate the ipv6 structure for
4974 * loopback_dev first by hand.
4975 * Longer term, all of the dependencies ipv6 has upon the loopback
4976 * device and it being up should be removed.
4977 */
4978 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004979 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 err = -ENOMEM;
4981 rtnl_unlock();
4982 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004983 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
stephen hemmingerc2e21292010-03-17 20:31:10 +00004985 for (i = 0; i < IN6_ADDR_HSIZE; i++)
4986 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
4987
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 register_netdevice_notifier(&ipv6_dev_notf);
4989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004991
Thomas Grafb382b192010-11-16 04:33:57 +00004992 err = rtnl_af_register(&inet6_ops);
4993 if (err < 0)
4994 goto errout_af;
4995
Greg Rosec7ac8672011-06-10 01:27:09 +00004996 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
4997 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07004998 if (err < 0)
4999 goto errout;
5000
5001 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005002 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5003 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5004 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5005 inet6_dump_ifaddr, NULL);
5006 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5007 inet6_dump_ifmcaddr, NULL);
5008 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5009 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005010 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005011 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005012
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005013 ipv6_addr_label_rtnl_register();
5014
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005016errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005017 rtnl_af_unregister(&inet6_ops);
5018errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005019 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005020errlo:
5021 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005022out_addrlabel:
5023 ipv6_addr_label_cleanup();
5024out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005025 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026}
5027
Daniel Lezcano09f77092007-12-13 05:34:58 -08005028void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005030 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 int i;
5032
5033 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005034 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005035 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037 rtnl_lock();
5038
Thomas Grafb382b192010-11-16 04:33:57 +00005039 __rtnl_af_unregister(&inet6_ops);
5040
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005041 /* clean dev list */
5042 for_each_netdev(&init_net, dev) {
5043 if (__in6_dev_get(dev) == NULL)
5044 continue;
5045 addrconf_ifdown(dev, 1);
5046 }
5047 addrconf_ifdown(init_net.loopback_dev, 2);
5048
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 * Check hash table.
5051 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005052 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005053 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5054 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005055 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
5057 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059}