blob: baaaead69ee1d0107d09a6797a5246f42ea3b757 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/*
16 * Changes:
17 *
18 * Janos Farkas : delete timer on ifdown
19 * <chexum@bankinf.banki.hu>
20 * Andi Kleen : kill double kfree on module
21 * unload.
22 * Maciej W. Rozycki : FDDI support
23 * sekiya@USAGI : Don't send too many RS
24 * packets.
25 * yoshfuji@USAGI : Fixed interval between DAD
26 * packets.
27 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
28 * address validation timer.
29 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
30 * support.
31 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
32 * address on a same interface.
33 * YOSHIFUJI Hideaki @USAGI : ARCnet support
34 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
35 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080036 * YOSHIFUJI Hideaki @USAGI : improved source address
37 * selection; consider scope,
38 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Joe Perchesf3213832012-05-15 14:11:53 +000041#define pr_fmt(fmt) "IPv6: " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070045#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/socket.h>
47#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/net.h>
49#include <linux/in6.h>
50#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070051#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/if_arp.h>
53#include <linux/if_arcnet.h>
54#include <linux/if_infiniband.h>
55#include <linux/route.h>
56#include <linux/inetdevice.h>
57#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090058#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifdef CONFIG_SYSCTL
60#include <linux/sysctl.h>
61#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/delay.h>
64#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070065#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000066#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020068#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <net/sock.h>
70#include <net/snmp.h>
71
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +000072#include <net/af_ieee802154.h>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000073#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <net/ipv6.h>
75#include <net/protocol.h>
76#include <net/ndisc.h>
77#include <net/ip6_route.h>
78#include <net/addrconf.h>
79#include <net/tcp.h>
80#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070081#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070082#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/if_tunnel.h>
84#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000085#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef CONFIG_IPV6_PRIVACY
88#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
90
Stephen Hemmingere21e8462010-03-20 16:09:01 -070091#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070092#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94#include <linux/proc_fs.h>
95#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040096#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* Set to 3 to get tracing... */
99#define ACONF_DEBUG 2
100
101#if ACONF_DEBUG >= 3
dingtianhongba3542e2013-08-17 10:27:04 +0800102#define ADBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#else
dingtianhongba3542e2013-08-17 10:27:04 +0800104#define ADBG(fmt, ...) do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif
106
107#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000108
109static inline u32 cstamp_delta(unsigned long cstamp)
110{
111 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100115static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800116static void addrconf_sysctl_unregister(struct inet6_dev *idev);
117#else
118static inline void addrconf_sysctl_register(struct inet6_dev *idev)
119{
120}
121
122static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
123{
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
127#ifdef CONFIG_IPV6_PRIVACY
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000128static void __ipv6_regen_rndid(struct inet6_dev *idev);
129static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900133static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static int ipv6_count_addresses(struct inet6_dev *idev);
135
136/*
137 * Configured unicast address hash table
138 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000139static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578ae2010-03-17 20:31:11 +0000140static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static void addrconf_verify(unsigned long);
143
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700144static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static DEFINE_SPINLOCK(addrconf_verify_lock);
146
147static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
148static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
149
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000150static void addrconf_type_change(struct net_device *dev,
151 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int addrconf_ifdown(struct net_device *dev, int how);
153
Romain Kuntz21caa662013-01-09 21:06:03 +0000154static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
155 int plen,
156 const struct net_device *dev,
157 u32 flags, u32 noflags);
158
David S. Millercf22f9a2012-04-14 21:37:40 -0400159static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static void addrconf_dad_timer(unsigned long data);
161static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900162static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static void addrconf_rs_timer(unsigned long data);
164static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
165static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
166
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900167static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700169static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
170 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Adrian Bunk888c8482008-07-22 14:21:58 -0700172static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .forwarding = 0,
174 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
175 .mtu6 = IPV6_MIN_MTU,
176 .accept_ra = 1,
177 .accept_redirects = 1,
178 .autoconf = 1,
179 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200180 .mldv1_unsolicited_report_interval = 10 * HZ,
181 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .dad_transmits = 1,
183 .rtr_solicits = MAX_RTR_SOLICITATIONS,
184 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
185 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
186#ifdef CONFIG_IPV6_PRIVACY
187 .use_tempaddr = 0,
188 .temp_valid_lft = TEMP_VALID_LIFETIME,
189 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
190 .regen_max_retry = REGEN_MAX_RETRY,
191 .max_desync_factor = MAX_DESYNC_FACTOR,
192#endif
193 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800194 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800195 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800196#ifdef CONFIG_IPV6_ROUTER_PREF
197 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800198 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800199#ifdef CONFIG_IPV6_ROUTE_INFO
200 .accept_ra_rt_info_max_plen = 0,
201#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800202#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700203 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700204 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900205 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900206 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200207 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Brian Haleyab32ea52006-09-22 14:15:41 -0700210static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .forwarding = 0,
212 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
213 .mtu6 = IPV6_MIN_MTU,
214 .accept_ra = 1,
215 .accept_redirects = 1,
216 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200217 .force_mld_version = 0,
218 .mldv1_unsolicited_report_interval = 10 * HZ,
219 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 .dad_transmits = 1,
221 .rtr_solicits = MAX_RTR_SOLICITATIONS,
222 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
223 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
224#ifdef CONFIG_IPV6_PRIVACY
225 .use_tempaddr = 0,
226 .temp_valid_lft = TEMP_VALID_LIFETIME,
227 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
228 .regen_max_retry = REGEN_MAX_RETRY,
229 .max_desync_factor = MAX_DESYNC_FACTOR,
230#endif
231 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800232 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800233 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800234#ifdef CONFIG_IPV6_ROUTER_PREF
235 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800236 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800237#ifdef CONFIG_IPV6_ROUTE_INFO
238 .accept_ra_rt_info_max_plen = 0,
239#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800240#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700241 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700242 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900243 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900244 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200245 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700248/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700249static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700250{
David S. Miller05297942008-07-08 23:01:27 -0700251 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700252}
253
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200254static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200256 if (del_timer(&idev->rs_timer))
257 __in6_dev_put(idev);
258}
259
260static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
261{
262 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 __in6_ifa_put(ifp);
264}
265
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200266static void addrconf_mod_rs_timer(struct inet6_dev *idev,
267 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200269 if (!timer_pending(&idev->rs_timer))
270 in6_dev_hold(idev);
271 mod_timer(&idev->rs_timer, jiffies + when);
272}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200274static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
275 unsigned long when)
276{
277 if (!timer_pending(&ifp->dad_timer))
278 in6_ifa_hold(ifp);
279 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700282static int snmp6_alloc_dev(struct inet6_dev *idev)
283{
Tejun Heo7d720c32010-02-16 15:20:26 +0000284 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000285 sizeof(struct ipstats_mib),
286 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700287 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000288 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
289 GFP_KERNEL);
290 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700291 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000292 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
293 GFP_KERNEL);
294 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700295 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700296
297 return 0;
298
David L Stevens14878f72007-09-16 16:52:35 -0700299err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000300 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700301err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000302 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700303err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700304 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305}
306
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700307static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700308{
Eric Dumazetbe281e52011-05-19 01:14:23 +0000309 kfree(idev->stats.icmpv6msgdev);
310 kfree(idev->stats.icmpv6dev);
Tejun Heo7d720c32010-02-16 15:20:26 +0000311 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/* Nobody refers to this device, we may destroy it. */
315
316void in6_dev_finish_destroy(struct inet6_dev *idev)
317{
318 struct net_device *dev = idev->dev;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700319
stephen hemminger502a2ff2010-03-17 20:31:13 +0000320 WARN_ON(!list_empty(&idev->addr_list));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700321 WARN_ON(idev->mc_list != NULL);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200322 WARN_ON(timer_pending(&idev->rs_timer));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000325 pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#endif
327 dev_put(dev);
328 if (!idev->dead) {
Joe Perchesf3213832012-05-15 14:11:53 +0000329 pr_warn("Freeing alive inet6 device %p\n", idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return;
331 }
332 snmp6_free_dev(idev);
Lai Jiangshan38f57d12011-03-15 17:59:14 +0800333 kfree_rcu(idev, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900335EXPORT_SYMBOL(in6_dev_finish_destroy);
336
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000337static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct inet6_dev *ndev;
340
341 ASSERT_RTNL();
342
343 if (dev->mtu < IPV6_MIN_MTU)
344 return NULL;
345
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900346 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900348 if (ndev == NULL)
349 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Ingo Oeser322f74a2006-03-20 23:01:47 -0800351 rwlock_init(&ndev->lock);
352 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000353 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200354 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
355 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900356 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800357 ndev->cnf.mtu6 = dev->mtu;
358 ndev->cnf.sysctl = NULL;
359 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
360 if (ndev->nd_parms == NULL) {
361 kfree(ndev);
362 return NULL;
363 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700364 if (ndev->cnf.forwarding)
365 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800366 /* We refer to the device */
367 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Ingo Oeser322f74a2006-03-20 23:01:47 -0800369 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800370 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000371 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800372 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800373 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400374 dev_put(dev);
375 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800376 return NULL;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Ingo Oeser322f74a2006-03-20 23:01:47 -0800379 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800380 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000381 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800382 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800383 neigh_parms_release(&nd_tbl, ndev->nd_parms);
384 ndev->dead = 1;
385 in6_dev_finish_destroy(ndev);
386 return NULL;
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Ingo Oeser322f74a2006-03-20 23:01:47 -0800389 /* One reference from device. We must do this before
390 * we invoke __ipv6_regen_rndid().
391 */
392 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900394 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
395 ndev->cnf.accept_dad = -1;
396
Amerigo Wang07a93622012-10-29 16:23:10 +0000397#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700398 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000399 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700400 ndev->cnf.rtr_solicits = 0;
401 }
402#endif
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000405 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800406 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800407 if ((dev->flags&IFF_LOOPBACK) ||
408 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700409 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700410 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700411 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800412 ndev->cnf.use_tempaddr = -1;
413 } else {
414 in6_dev_hold(ndev);
415 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800417#endif
Daniel Borkmann914faa12013-04-09 03:47:14 +0000418 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800419
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700420 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700421 ndev->if_flags |= IF_READY;
422
Ingo Oeser322f74a2006-03-20 23:01:47 -0800423 ipv6_mc_init_dev(ndev);
424 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100425 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800426 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000427 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800428
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000429 /* Join interface-local all-node multicast group */
430 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
431
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800432 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900433 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800434
Li Weid6ddef92012-03-05 14:45:17 +0000435 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000436 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000437 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return ndev;
440}
441
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000442static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 struct inet6_dev *idev;
445
446 ASSERT_RTNL();
447
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700448 idev = __in6_dev_get(dev);
449 if (!idev) {
450 idev = ipv6_add_dev(dev);
451 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return NULL;
453 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (dev->flags&IFF_UP)
456 ipv6_mc_up(idev);
457 return idev;
458}
459
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000460static int inet6_netconf_msgsize_devconf(int type)
461{
462 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
463 + nla_total_size(4); /* NETCONFA_IFINDEX */
464
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000465 /* type -1 is used for ALL */
466 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000467 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500468#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000469 if (type == -1 || type == NETCONFA_MC_FORWARDING)
470 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500471#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000472
473 return size;
474}
475
476static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
477 struct ipv6_devconf *devconf, u32 portid,
478 u32 seq, int event, unsigned int flags,
479 int type)
480{
481 struct nlmsghdr *nlh;
482 struct netconfmsg *ncm;
483
484 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
485 flags);
486 if (nlh == NULL)
487 return -EMSGSIZE;
488
489 ncm = nlmsg_data(nlh);
490 ncm->ncm_family = AF_INET6;
491
492 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
493 goto nla_put_failure;
494
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000495 /* type -1 is used for ALL */
496 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000497 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
498 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500499#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000500 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
501 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
502 devconf->mc_forwarding) < 0)
503 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500504#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000505 return nlmsg_end(skb, nlh);
506
507nla_put_failure:
508 nlmsg_cancel(skb, nlh);
509 return -EMSGSIZE;
510}
511
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000512void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
513 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000514{
515 struct sk_buff *skb;
516 int err = -ENOBUFS;
517
518 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
519 if (skb == NULL)
520 goto errout;
521
522 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
523 RTM_NEWNETCONF, 0, type);
524 if (err < 0) {
525 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
526 WARN_ON(err == -EMSGSIZE);
527 kfree_skb(skb);
528 goto errout;
529 }
530 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
531 return;
532errout:
Cong Dingbd779022012-12-18 12:08:56 +0000533 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000534}
535
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000536static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
537 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
538 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
539};
540
541static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000542 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000543{
544 struct net *net = sock_net(in_skb->sk);
545 struct nlattr *tb[NETCONFA_MAX+1];
546 struct netconfmsg *ncm;
547 struct sk_buff *skb;
548 struct ipv6_devconf *devconf;
549 struct inet6_dev *in6_dev;
550 struct net_device *dev;
551 int ifindex;
552 int err;
553
554 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
555 devconf_ipv6_policy);
556 if (err < 0)
557 goto errout;
558
559 err = EINVAL;
560 if (!tb[NETCONFA_IFINDEX])
561 goto errout;
562
563 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
564 switch (ifindex) {
565 case NETCONFA_IFINDEX_ALL:
566 devconf = net->ipv6.devconf_all;
567 break;
568 case NETCONFA_IFINDEX_DEFAULT:
569 devconf = net->ipv6.devconf_dflt;
570 break;
571 default:
572 dev = __dev_get_by_index(net, ifindex);
573 if (dev == NULL)
574 goto errout;
575 in6_dev = __in6_dev_get(dev);
576 if (in6_dev == NULL)
577 goto errout;
578 devconf = &in6_dev->cnf;
579 break;
580 }
581
582 err = -ENOBUFS;
583 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
584 if (skb == NULL)
585 goto errout;
586
587 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
588 NETLINK_CB(in_skb).portid,
589 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
590 -1);
591 if (err < 0) {
592 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
593 WARN_ON(err == -EMSGSIZE);
594 kfree_skb(skb);
595 goto errout;
596 }
597 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
598errout:
599 return err;
600}
601
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000602static int inet6_netconf_dump_devconf(struct sk_buff *skb,
603 struct netlink_callback *cb)
604{
605 struct net *net = sock_net(skb->sk);
606 int h, s_h;
607 int idx, s_idx;
608 struct net_device *dev;
609 struct inet6_dev *idev;
610 struct hlist_head *head;
611
612 s_h = cb->args[0];
613 s_idx = idx = cb->args[1];
614
615 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
616 idx = 0;
617 head = &net->dev_index_head[h];
618 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000619 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
620 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000621 hlist_for_each_entry_rcu(dev, head, index_hlist) {
622 if (idx < s_idx)
623 goto cont;
624 idev = __in6_dev_get(dev);
625 if (!idev)
626 goto cont;
627
628 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
629 &idev->cnf,
630 NETLINK_CB(cb->skb).portid,
631 cb->nlh->nlmsg_seq,
632 RTM_NEWNETCONF,
633 NLM_F_MULTI,
634 -1) <= 0) {
635 rcu_read_unlock();
636 goto done;
637 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000638 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000639cont:
640 idx++;
641 }
642 rcu_read_unlock();
643 }
644 if (h == NETDEV_HASHENTRIES) {
645 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
646 net->ipv6.devconf_all,
647 NETLINK_CB(cb->skb).portid,
648 cb->nlh->nlmsg_seq,
649 RTM_NEWNETCONF, NLM_F_MULTI,
650 -1) <= 0)
651 goto done;
652 else
653 h++;
654 }
655 if (h == NETDEV_HASHENTRIES + 1) {
656 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
657 net->ipv6.devconf_dflt,
658 NETLINK_CB(cb->skb).portid,
659 cb->nlh->nlmsg_seq,
660 RTM_NEWNETCONF, NLM_F_MULTI,
661 -1) <= 0)
662 goto done;
663 else
664 h++;
665 }
666done:
667 cb->args[0] = h;
668 cb->args[1] = idx;
669
670 return skb->len;
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673#ifdef CONFIG_SYSCTL
674static void dev_forward_change(struct inet6_dev *idev)
675{
676 struct net_device *dev;
677 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 if (!idev)
680 return;
681 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700682 if (idev->cnf.forwarding)
683 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000684 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000685 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900686 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000687 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
688 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
689 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900690 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000691 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
692 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000695
696 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800697 if (ifa->flags&IFA_F_TENTATIVE)
698 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (idev->cnf.forwarding)
700 addrconf_join_anycast(ifa);
701 else
702 addrconf_leave_anycast(ifa);
703 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000704 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
705 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708
Pavel Emelyanove1869322008-01-10 17:43:50 -0800709static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 struct net_device *dev;
712 struct inet6_dev *idev;
713
Ben Hutchings4acd4942012-08-14 08:54:51 +0000714 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 idev = __in6_dev_get(dev);
716 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800717 int changed = (!idev->cnf.forwarding) ^ (!newf);
718 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (changed)
720 dev_forward_change(idev);
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800724
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000725static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800726{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800727 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000728 int old;
729
730 if (!rtnl_trylock())
731 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800732
733 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000734 old = *p;
735 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800736
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000737 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000738 if ((!newf) ^ (!old))
739 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
740 NETCONFA_IFINDEX_DEFAULT,
741 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000742 rtnl_unlock();
743 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000744 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000745
Pavel Emelyanove1869322008-01-10 17:43:50 -0800746 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800747 net->ipv6.devconf_dflt->forwarding = newf;
748 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000749 if ((!newf) ^ (!old))
750 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
751 NETCONFA_IFINDEX_ALL,
752 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000753 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800754 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700755 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800756
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000757 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800758 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000759 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800760}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#endif
762
stephen hemminger5c578ae2010-03-17 20:31:11 +0000763/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
765{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000766 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000769 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#endif
771
772 in6_dev_put(ifp->idev);
773
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200774 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700775 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Herbert Xue9d3e082010-05-18 15:36:06 -0700777 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000778 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return;
780 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000781 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Lai Jiangshane5785982011-03-15 18:00:14 +0800783 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Brian Haleye55ffac2006-07-10 15:25:51 -0700786static void
787ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
788{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000789 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700790 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700791
792 /*
793 * Each device address list is sorted in order of scope -
794 * global before linklocal.
795 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000796 list_for_each(p, &idev->addr_list) {
797 struct inet6_ifaddr *ifa
798 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700799 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700800 break;
801 }
802
David S. Millerb54c9b92010-03-25 21:25:30 -0700803 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700804}
805
Eric Dumazetddbe5032012-07-18 08:11:12 +0000806static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900807{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000808 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811/* On success it returns ifp with increased reference count */
812
813static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200814ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
815 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200816 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 struct inet6_ifaddr *ifa = NULL;
819 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000820 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900822 int addr_type = ipv6_addr_type(addr);
823
824 if (addr_type == IPV6_ADDR_ANY ||
825 addr_type & IPV6_ADDR_MULTICAST ||
826 (!(idev->dev->flags & IFF_LOOPBACK) &&
827 addr_type & IPV6_ADDR_LOOPBACK))
828 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700830 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (idev->dead) {
832 err = -ENODEV; /*XXX*/
833 goto out2;
834 }
835
Brian Haley56d417b2009-06-01 03:07:33 -0700836 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700837 err = -EACCES;
838 goto out2;
839 }
840
stephen hemminger5c578ae2010-03-17 20:31:11 +0000841 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900844 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800845 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 err = -EEXIST;
847 goto out;
848 }
849
Ingo Oeser322f74a2006-03-20 23:01:47 -0800850 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800853 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 err = -ENOBUFS;
855 goto out;
856 }
857
David S. Miller8f031512011-12-06 16:48:14 -0500858 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (IS_ERR(rt)) {
860 err = PTR_ERR(rt);
861 goto out;
862 }
863
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000864 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200865 if (peer_addr)
866 ifa->peer_addr = *peer_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);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200870 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
871 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000872 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 ifa->scope = scope;
874 ifa->prefix_len = pfxlen;
875 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200876 ifa->valid_lft = valid_lft;
877 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000879 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Keir Fraser57f5f542006-08-29 02:43:49 -0700881 ifa->rt = rt;
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 ifa->idev = idev;
884 in6_dev_hold(idev);
885 /* For caller */
886 in6_ifa_hold(ifa);
887
888 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000889 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
stephen hemminger5c578ae2010-03-17 20:31:11 +0000891 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000892 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 write_lock(&idev->lock);
895 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700896 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898#ifdef CONFIG_IPV6_PRIVACY
899 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000900 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 in6_ifa_hold(ifa);
902 }
903#endif
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 in6_ifa_hold(ifa);
906 write_unlock(&idev->lock);
907out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700908 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700910 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800911 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 else {
913 kfree(ifa);
914 ifa = ERR_PTR(err);
915 }
916
917 return ifa;
918out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000919 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 goto out2;
921}
922
923/* This function wants to get referenced ifp and releases it before return */
924
925static void ipv6_del_addr(struct inet6_ifaddr *ifp)
926{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000927 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700929 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int deleted = 0, onlink = 0;
931 unsigned long expires = jiffies;
932
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700933 spin_lock_bh(&ifp->state_lock);
934 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700935 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700936 spin_unlock_bh(&ifp->state_lock);
937
938 if (state == INET6_IFADDR_STATE_DEAD)
939 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
stephen hemminger5c578ae2010-03-17 20:31:11 +0000941 spin_lock_bh(&addrconf_hash_lock);
942 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000943 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 write_lock_bh(&idev->lock);
946#ifdef CONFIG_IPV6_PRIVACY
947 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000948 list_del(&ifp->tmp_list);
949 if (ifp->ifpub) {
950 in6_ifa_put(ifp->ifpub);
951 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000953 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955#endif
956
stephen hemminger502a2ff2010-03-17 20:31:13 +0000957 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000959 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
963 break;
964 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800965 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 } else if (ifp->flags & IFA_F_PERMANENT) {
967 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
968 ifp->prefix_len)) {
969 if (ifa->flags & IFA_F_PERMANENT) {
970 onlink = 1;
971 if (deleted)
972 break;
973 } else {
974 unsigned long lifetime;
975
976 if (!onlink)
977 onlink = -1;
978
979 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900980
981 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
982 /*
983 * Note: Because this address is
984 * not permanent, lifetime <
985 * LONG_MAX / HZ here.
986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (time_before(expires,
988 ifa->tstamp + lifetime * HZ))
989 expires = ifa->tstamp + lifetime * HZ;
990 spin_unlock(&ifa->lock);
991 }
992 }
993 }
994 }
995 write_unlock_bh(&idev->lock);
996
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200997 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 ipv6_ifa_notify(RTM_DELADDR, ifp);
1000
Cong Wangf88c91d2013-04-14 23:18:43 +08001001 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /*
1004 * Purge or update corresponding prefix
1005 *
1006 * 1) we don't purge prefix here if address was not permanent.
1007 * prefix is managed by its own lifetime.
1008 * 2) if there're no addresses, delete prefix.
1009 * 3) if there're still other permanent address(es),
1010 * corresponding prefix is still permanent.
1011 * 4) otherwise, update prefix lifetime to the
1012 * longest valid lifetime among the corresponding
1013 * addresses on the device.
1014 * Note: subsequent RA will update lifetime.
1015 *
1016 * --yoshfuji
1017 */
1018 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1019 struct in6_addr prefix;
1020 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001022 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001023
Romain Kuntz21caa662013-01-09 21:06:03 +00001024 rt = addrconf_get_prefix_route(&prefix,
1025 ifp->prefix_len,
1026 ifp->idev->dev,
1027 0, RTF_GATEWAY | RTF_DEFAULT);
1028
1029 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001031 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 rt = NULL;
1033 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001034 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001037 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
Daniel Walterc3968a82011-04-13 21:10:57 +00001040 /* clean up prefsrc entries */
1041 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001042out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 in6_ifa_put(ifp);
1044}
1045
1046#ifdef CONFIG_IPV6_PRIVACY
1047static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1048{
1049 struct inet6_dev *idev = ifp->idev;
1050 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001051 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001052 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int tmp_plen;
1054 int ret = 0;
1055 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001056 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001057 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 write_lock(&idev->lock);
1060 if (ift) {
1061 spin_lock_bh(&ift->lock);
1062 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1063 spin_unlock_bh(&ift->lock);
1064 tmpaddr = &addr;
1065 } else {
1066 tmpaddr = NULL;
1067 }
1068retry:
1069 in6_dev_hold(idev);
1070 if (idev->cnf.use_tempaddr <= 0) {
1071 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001072 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 in6_dev_put(idev);
1074 ret = -1;
1075 goto out;
1076 }
1077 spin_lock_bh(&ifp->lock);
1078 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1079 idev->cnf.use_tempaddr = -1; /*XXX*/
1080 spin_unlock_bh(&ifp->lock);
1081 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001082 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1083 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 in6_dev_put(idev);
1085 ret = -1;
1086 goto out;
1087 }
1088 in6_ifa_hold(ifp);
1089 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001090 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001092 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 tmp_valid_lft = min_t(__u32,
1094 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001095 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001096 tmp_prefered_lft = min_t(__u32,
1097 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001098 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001099 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 tmp_plen = ifp->prefix_len;
1101 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 tmp_tstamp = ifp->tstamp;
1103 spin_unlock_bh(&ifp->lock);
1104
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001105 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001106 idev->cnf.dad_transmits *
1107 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001109
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001110 /* A temporary address is created only if this calculated Preferred
1111 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1112 * an implementation must not create a temporary address with a zero
1113 * Preferred Lifetime.
1114 */
1115 if (tmp_prefered_lft <= regen_advance) {
1116 in6_ifa_put(ifp);
1117 in6_dev_put(idev);
1118 ret = -1;
1119 goto out;
1120 }
1121
Neil Horman95c385b2007-04-25 17:08:10 -07001122 addr_flags = IFA_F_TEMPORARY;
1123 /* set in addrconf_prefix_rcv() */
1124 if (ifp->flags & IFA_F_OPTIMISTIC)
1125 addr_flags |= IFA_F_OPTIMISTIC;
1126
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001127 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1128 ipv6_addr_scope(&addr), addr_flags,
1129 tmp_valid_lft, tmp_prefered_lft);
1130 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 in6_ifa_put(ifp);
1132 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001133 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 tmpaddr = &addr;
1135 write_lock(&idev->lock);
1136 goto retry;
1137 }
1138
1139 spin_lock_bh(&ift->lock);
1140 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001141 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 ift->tstamp = tmp_tstamp;
1143 spin_unlock_bh(&ift->lock);
1144
David S. Millercf22f9a2012-04-14 21:37:40 -04001145 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 in6_ifa_put(ift);
1147 in6_dev_put(idev);
1148out:
1149 return ret;
1150}
1151#endif
1152
1153/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001154 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001156enum {
1157 IPV6_SADDR_RULE_INIT = 0,
1158 IPV6_SADDR_RULE_LOCAL,
1159 IPV6_SADDR_RULE_SCOPE,
1160 IPV6_SADDR_RULE_PREFERRED,
1161#ifdef CONFIG_IPV6_MIP6
1162 IPV6_SADDR_RULE_HOA,
1163#endif
1164 IPV6_SADDR_RULE_OIF,
1165 IPV6_SADDR_RULE_LABEL,
1166#ifdef CONFIG_IPV6_PRIVACY
1167 IPV6_SADDR_RULE_PRIVACY,
1168#endif
1169 IPV6_SADDR_RULE_ORCHID,
1170 IPV6_SADDR_RULE_PREFIX,
1171 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001172};
1173
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001174struct ipv6_saddr_score {
1175 int rule;
1176 int addr_type;
1177 struct inet6_ifaddr *ifa;
1178 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1179 int scopedist;
1180 int matchlen;
1181};
1182
1183struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001184 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001185 int ifindex;
1186 int scope;
1187 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001188 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001189};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001190
Dave Jonesb6f99a22007-03-22 12:27:49 -07001191static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001193 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001194 return 1;
1195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Benjamin Thery3de23252008-05-28 14:51:24 +02001198static int ipv6_get_saddr_eval(struct net *net,
1199 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001200 struct ipv6_saddr_dst *dst,
1201 int i)
1202{
1203 int ret;
1204
1205 if (i <= score->rule) {
1206 switch (i) {
1207 case IPV6_SADDR_RULE_SCOPE:
1208 ret = score->scopedist;
1209 break;
1210 case IPV6_SADDR_RULE_PREFIX:
1211 ret = score->matchlen;
1212 break;
1213 default:
1214 ret = !!test_bit(i, score->scorebits);
1215 }
1216 goto out;
1217 }
1218
1219 switch (i) {
1220 case IPV6_SADDR_RULE_INIT:
1221 /* Rule 0: remember if hiscore is not ready yet */
1222 ret = !!score->ifa;
1223 break;
1224 case IPV6_SADDR_RULE_LOCAL:
1225 /* Rule 1: Prefer same address */
1226 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1227 break;
1228 case IPV6_SADDR_RULE_SCOPE:
1229 /* Rule 2: Prefer appropriate scope
1230 *
1231 * ret
1232 * ^
1233 * -1 | d 15
1234 * ---+--+-+---> scope
1235 * |
1236 * | d is scope of the destination.
1237 * B-d | \
1238 * | \ <- smaller scope is better if
1239 * B-15 | \ if scope is enough for destinaion.
1240 * | ret = B - scope (-1 <= scope >= d <= 15).
1241 * d-C-1 | /
1242 * |/ <- greater is better
1243 * -C / if scope is not enough for destination.
1244 * /| ret = scope - C (-1 <= d < scope <= 15).
1245 *
1246 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1247 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1248 * Assume B = 0 and we get C > 29.
1249 */
1250 ret = __ipv6_addr_src_scope(score->addr_type);
1251 if (ret >= dst->scope)
1252 ret = -ret;
1253 else
1254 ret -= 128; /* 30 is enough */
1255 score->scopedist = ret;
1256 break;
1257 case IPV6_SADDR_RULE_PREFERRED:
1258 /* Rule 3: Avoid deprecated and optimistic addresses */
1259 ret = ipv6_saddr_preferred(score->addr_type) ||
1260 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1261 break;
1262#ifdef CONFIG_IPV6_MIP6
1263 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001264 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001265 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001266 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1267 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001268 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001269 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001270#endif
1271 case IPV6_SADDR_RULE_OIF:
1272 /* Rule 5: Prefer outgoing interface */
1273 ret = (!dst->ifindex ||
1274 dst->ifindex == score->ifa->idev->dev->ifindex);
1275 break;
1276 case IPV6_SADDR_RULE_LABEL:
1277 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001278 ret = ipv6_addr_label(net,
1279 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001280 score->ifa->idev->dev->ifindex) == dst->label;
1281 break;
1282#ifdef CONFIG_IPV6_PRIVACY
1283 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001284 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001285 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001286 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001287 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001288 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1289 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1290 score->ifa->idev->cnf.use_tempaddr >= 2;
1291 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001292 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001293 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001294#endif
1295 case IPV6_SADDR_RULE_ORCHID:
1296 /* Rule 8-: Prefer ORCHID vs ORCHID or
1297 * non-ORCHID vs non-ORCHID
1298 */
1299 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1300 ipv6_addr_orchid(dst->addr));
1301 break;
1302 case IPV6_SADDR_RULE_PREFIX:
1303 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001304 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1305 if (ret > score->ifa->prefix_len)
1306 ret = score->ifa->prefix_len;
1307 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001308 break;
1309 default:
1310 ret = 0;
1311 }
1312
1313 if (ret)
1314 __set_bit(i, score->scorebits);
1315 score->rule = i;
1316out:
1317 return ret;
1318}
1319
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001320int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001321 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001322 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001324 struct ipv6_saddr_score scores[2],
1325 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001326 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001327 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001328 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001330 dst_type = __ipv6_addr_type(daddr);
1331 dst.addr = daddr;
1332 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1333 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001334 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001335 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001336
1337 hiscore->rule = -1;
1338 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001340 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001341
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001342 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001343 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001344
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001345 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001346 * - multicast and link-local destination address,
1347 * the set of candidate source address MUST only
1348 * include addresses assigned to interfaces
1349 * belonging to the same link as the outgoing
1350 * interface.
1351 * (- For site-local destination addresses, the
1352 * set of candidate source addresses MUST only
1353 * include addresses assigned to interfaces
1354 * belonging to the same site as the outgoing
1355 * interface.)
1356 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001357 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1358 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1359 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001360 continue;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001363 if (!idev)
1364 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001366 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001367 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001368 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001370 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001371 * - Tentative Address (RFC2462 section 5.4)
1372 * - A tentative address is not considered
1373 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001374 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001375 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001376 * - In any case, anycast addresses, multicast
1377 * addresses, and the unspecified address MUST
1378 * NOT be included in a candidate set.
1379 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001380 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1381 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001382 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001383
1384 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1385
1386 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1387 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001388 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -08001389 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001390 "assigned as unicast address on %s",
1391 dev->name);
1392 continue;
1393 }
1394
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001395 score->rule = -1;
1396 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001397
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001398 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1399 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001400
Benjamin Thery3de23252008-05-28 14:51:24 +02001401 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1402 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001403
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001404 if (minihiscore > miniscore) {
1405 if (i == IPV6_SADDR_RULE_SCOPE &&
1406 score->scopedist > 0) {
1407 /*
1408 * special case:
1409 * each remaining entry
1410 * has too small (not enough)
1411 * scope, because ifa entries
1412 * are sorted by their scope
1413 * values.
1414 */
1415 goto try_nextdev;
1416 }
1417 break;
1418 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001419 if (hiscore->ifa)
1420 in6_ifa_put(hiscore->ifa);
1421
1422 in6_ifa_hold(score->ifa);
1423
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001424 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001425
1426 /* restore our iterator */
1427 score->ifa = hiscore->ifa;
1428
1429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001432 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001433try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001434 read_unlock_bh(&idev->lock);
1435 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001436 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001438 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001439 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001440
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001441 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001442 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001445EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Amerigo Wang89657792013-06-29 21:30:49 +08001447int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1448 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001449{
1450 struct inet6_ifaddr *ifp;
1451 int err = -EADDRNOTAVAIL;
1452
1453 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1454 if (ifp->scope == IFA_LINK &&
1455 !(ifp->flags & banned_flags)) {
1456 *addr = ifp->addr;
1457 err = 0;
1458 break;
1459 }
1460 }
1461 return err;
1462}
1463
Neil Horman95c385b2007-04-25 17:08:10 -07001464int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1465 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 struct inet6_dev *idev;
1468 int err = -EADDRNOTAVAIL;
1469
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001470 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001471 idev = __in6_dev_get(dev);
1472 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001474 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 read_unlock_bh(&idev->lock);
1476 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001477 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return err;
1479}
1480
1481static int ipv6_count_addresses(struct inet6_dev *idev)
1482{
1483 int cnt = 0;
1484 struct inet6_ifaddr *ifp;
1485
1486 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001487 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 cnt++;
1489 read_unlock_bh(&idev->lock);
1490 return cnt;
1491}
1492
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001493int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001494 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001496 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001497 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
stephen hemminger5c578ae2010-03-17 20:31:11 +00001499 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001500 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001501 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001502 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001504 !(ifp->flags&IFA_F_TENTATIVE) &&
1505 (dev == NULL || ifp->idev->dev == dev ||
1506 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1507 rcu_read_unlock_bh();
1508 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
1510 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001511
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001512 rcu_read_unlock_bh();
1513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001515EXPORT_SYMBOL(ipv6_chk_addr);
1516
David S. Miller3e81c6d2010-03-20 16:18:00 -07001517static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1518 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001520 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001521 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Sasha Levinb67bfe02013-02-27 17:06:00 -08001523 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001524 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001525 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (ipv6_addr_equal(&ifp->addr, addr)) {
1527 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001528 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001531 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001534int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001535{
1536 struct inet6_dev *idev;
1537 struct inet6_ifaddr *ifa;
1538 int onlink;
1539
1540 onlink = 0;
1541 rcu_read_lock();
1542 idev = __in6_dev_get(dev);
1543 if (idev) {
1544 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001545 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001546 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1547 ifa->prefix_len);
1548 if (onlink)
1549 break;
1550 }
1551 read_unlock_bh(&idev->lock);
1552 }
1553 rcu_read_unlock();
1554 return onlink;
1555}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001556EXPORT_SYMBOL(ipv6_chk_prefix);
1557
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001558struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001559 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
David S. Millerb79d1d52010-03-25 21:39:21 -07001561 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001562 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
stephen hemminger5c578ae2010-03-17 20:31:11 +00001564 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001565 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001566 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001567 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (ipv6_addr_equal(&ifp->addr, addr)) {
1569 if (dev == NULL || ifp->idev->dev == dev ||
1570 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001571 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 in6_ifa_hold(ifp);
1573 break;
1574 }
1575 }
1576 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001577 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
David S. Millerb79d1d52010-03-25 21:39:21 -07001579 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582/* Gets referenced address, destroys ifaddr */
1583
Brian Haleycc411d02009-09-09 14:41:32 +00001584static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (ifp->flags&IFA_F_PERMANENT) {
1587 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001588 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001590 if (dad_failed)
1591 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001593 if (dad_failed)
1594 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 in6_ifa_put(ifp);
1596#ifdef CONFIG_IPV6_PRIVACY
1597 } else if (ifp->flags&IFA_F_TEMPORARY) {
1598 struct inet6_ifaddr *ifpub;
1599 spin_lock_bh(&ifp->lock);
1600 ifpub = ifp->ifpub;
1601 if (ifpub) {
1602 in6_ifa_hold(ifpub);
1603 spin_unlock_bh(&ifp->lock);
1604 ipv6_create_tempaddr(ifpub, ifp);
1605 in6_ifa_put(ifpub);
1606 } else {
1607 spin_unlock_bh(&ifp->lock);
1608 }
1609 ipv6_del_addr(ifp);
1610#endif
1611 } else
1612 ipv6_del_addr(ifp);
1613}
1614
Herbert Xuf2344a12010-05-18 15:55:27 -07001615static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1616{
1617 int err = -ENOENT;
1618
1619 spin_lock(&ifp->state_lock);
1620 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1621 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1622 err = 0;
1623 }
1624 spin_unlock(&ifp->state_lock);
1625
1626 return err;
1627}
1628
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001629void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1630{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001631 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001632
Ursula Braun853dc2e2010-10-24 23:06:43 +00001633 if (addrconf_dad_end(ifp)) {
1634 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001635 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001636 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001637
Joe Perchese87cc472012-05-13 21:56:26 +00001638 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1639 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001640
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001641 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1642 struct in6_addr addr;
1643
1644 addr.s6_addr32[0] = htonl(0xfe800000);
1645 addr.s6_addr32[1] = 0;
1646
1647 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1648 ipv6_addr_equal(&ifp->addr, &addr)) {
1649 /* DAD failed for link-local based on MAC address */
1650 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001651
Joe Perchesf3213832012-05-15 14:11:53 +00001652 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001653 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001654 }
1655 }
1656
Brian Haleycc411d02009-09-09 14:41:32 +00001657 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001658}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660/* Join to solicited addr multicast group. */
1661
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001662void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 struct in6_addr maddr;
1665
1666 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1667 return;
1668
1669 addrconf_addr_solict_mult(addr, &maddr);
1670 ipv6_dev_mc_inc(dev, &maddr);
1671}
1672
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001673void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
1675 struct in6_addr maddr;
1676
1677 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1678 return;
1679
1680 addrconf_addr_solict_mult(addr, &maddr);
1681 __ipv6_dev_mc_dec(idev, &maddr);
1682}
1683
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001684static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001687 if (ifp->prefix_len == 127) /* RFC 6164 */
1688 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1690 if (ipv6_addr_any(&addr))
1691 return;
1692 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1693}
1694
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001695static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
1697 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001698 if (ifp->prefix_len == 127) /* RFC 6164 */
1699 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1701 if (ipv6_addr_any(&addr))
1702 return;
1703 __ipv6_dev_ac_dec(ifp->idev, &addr);
1704}
1705
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001706static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1707{
1708 if (dev->addr_len != ETH_ALEN)
1709 return -1;
1710 memcpy(eui, dev->dev_addr, 3);
1711 memcpy(eui + 5, dev->dev_addr + 3, 3);
1712
1713 /*
1714 * The zSeries OSA network cards can be shared among various
1715 * OS instances, but the OSA cards have only one MAC address.
1716 * This leads to duplicate address conflicts in conjunction
1717 * with IPv6 if more than one instance uses the same card.
1718 *
1719 * The driver for these cards can deliver a unique 16-bit
1720 * identifier for each instance sharing the same card. It is
1721 * placed instead of 0xFFFE in the interface identifier. The
1722 * "u" bit of the interface identifier is not inverted in this
1723 * case. Hence the resulting interface identifier has local
1724 * scope according to RFC2373.
1725 */
1726 if (dev->dev_id) {
1727 eui[3] = (dev->dev_id >> 8) & 0xFF;
1728 eui[4] = dev->dev_id & 0xFF;
1729 } else {
1730 eui[3] = 0xFF;
1731 eui[4] = 0xFE;
1732 eui[0] ^= 2;
1733 }
1734 return 0;
1735}
1736
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001737static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1738{
1739 if (dev->addr_len != IEEE802154_ADDR_LEN)
1740 return -1;
1741 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001742 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001743 return 0;
1744}
1745
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001746static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1747{
1748 union fwnet_hwaddr *ha;
1749
1750 if (dev->addr_len != FWNET_ALEN)
1751 return -1;
1752
1753 ha = (union fwnet_hwaddr *)dev->dev_addr;
1754
1755 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1756 eui[0] ^= 2;
1757 return 0;
1758}
1759
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001760static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1761{
1762 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1763 if (dev->addr_len != ARCNET_ALEN)
1764 return -1;
1765 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001766 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001767 return 0;
1768}
1769
1770static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1771{
1772 if (dev->addr_len != INFINIBAND_ALEN)
1773 return -1;
1774 memcpy(eui, dev->dev_addr + 12, 8);
1775 eui[0] |= 2;
1776 return 0;
1777}
1778
stephen hemmingerc61393e2010-10-04 20:17:53 +00001779static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001780{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001781 if (addr == 0)
1782 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001783 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1784 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1785 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1786 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1787 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1788 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1789 eui[1] = 0;
1790 eui[2] = 0x5E;
1791 eui[3] = 0xFE;
1792 memcpy(eui + 4, &addr, 4);
1793 return 0;
1794}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001795
1796static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1797{
1798 if (dev->priv_flags & IFF_ISATAP)
1799 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1800 return -1;
1801}
1802
stephen hemmingeraee80b52011-06-08 10:44:30 +00001803static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1804{
1805 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1806}
1807
Nicolas Dichtele8377352013-08-20 12:16:06 +02001808static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1809{
1810 memcpy(eui, dev->perm_addr, 3);
1811 memcpy(eui + 5, dev->perm_addr + 3, 3);
1812 eui[3] = 0xFF;
1813 eui[4] = 0xFE;
1814 eui[0] ^= 2;
1815 return 0;
1816}
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1819{
1820 switch (dev->type) {
1821 case ARPHRD_ETHER:
1822 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001823 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001825 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001827 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001828 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001829 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001830 case ARPHRD_IPGRE:
1831 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001832 case ARPHRD_IEEE802154:
1833 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001834 case ARPHRD_IEEE1394:
1835 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001836 case ARPHRD_TUNNEL6:
1837 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839 return -1;
1840}
1841
1842static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1843{
1844 int err = -1;
1845 struct inet6_ifaddr *ifp;
1846
1847 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001848 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1850 memcpy(eui, ifp->addr.s6_addr+8, 8);
1851 err = 0;
1852 break;
1853 }
1854 }
1855 read_unlock_bh(&idev->lock);
1856 return err;
1857}
1858
1859#ifdef CONFIG_IPV6_PRIVACY
1860/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001861static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001864 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 /*
1868 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1869 * check if generated address is not inappropriate
1870 *
1871 * - Reserved subnet anycast (RFC 2526)
1872 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001873 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 * 00-00-5E-FE-xx-xx-xx-xx
1875 * - value 0
1876 * - XXX: already assigned to an address on the device
1877 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001878 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1880 (idev->rndid[7]&0x80))
1881 goto regen;
1882 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1883 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1884 goto regen;
1885 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1886 goto regen;
1887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
1890static void ipv6_regen_rndid(unsigned long data)
1891{
1892 struct inet6_dev *idev = (struct inet6_dev *) data;
1893 unsigned long expires;
1894
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001895 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 write_lock_bh(&idev->lock);
1897
1898 if (idev->dead)
1899 goto out;
1900
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001901 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001904 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001905 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1906 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001908 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1909 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 goto out;
1911 }
1912
1913 if (!mod_timer(&idev->regen_timer, expires))
1914 in6_dev_hold(idev);
1915
1916out:
1917 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001918 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 in6_dev_put(idev);
1920}
1921
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001922static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001923{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001925 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
1927#endif
1928
1929/*
1930 * Add prefix route.
1931 */
1932
1933static void
1934addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001935 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Thomas Graf86872cb2006-08-22 00:01:08 -07001937 struct fib6_config cfg = {
1938 .fc_table = RT6_TABLE_PREFIX,
1939 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1940 .fc_ifindex = dev->ifindex,
1941 .fc_expires = expires,
1942 .fc_dst_len = plen,
1943 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001944 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001945 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001946 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001948 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 /* Prevent useless cloning on PtP SIT.
1951 This thing is done here expecting that the whole
1952 class of non-broadcast devices need not cloning.
1953 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001954#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001955 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1956 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001957#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Thomas Graf86872cb2006-08-22 00:01:08 -07001959 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001962
1963static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1964 int plen,
1965 const struct net_device *dev,
1966 u32 flags, u32 noflags)
1967{
1968 struct fib6_node *fn;
1969 struct rt6_info *rt = NULL;
1970 struct fib6_table *table;
1971
1972 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1973 if (table == NULL)
1974 return NULL;
1975
Li RongQing5744dd92012-09-11 21:59:01 +00001976 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001977 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1978 if (!fn)
1979 goto out;
1980 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001981 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001982 continue;
1983 if ((rt->rt6i_flags & flags) != flags)
1984 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001985 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001986 continue;
1987 dst_hold(&rt->dst);
1988 break;
1989 }
1990out:
Li RongQing5744dd92012-09-11 21:59:01 +00001991 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001992 return rt;
1993}
1994
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996/* Create "default" multicast route to the interface */
1997
1998static void addrconf_add_mroute(struct net_device *dev)
1999{
Thomas Graf86872cb2006-08-22 00:01:08 -07002000 struct fib6_config cfg = {
2001 .fc_table = RT6_TABLE_LOCAL,
2002 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2003 .fc_ifindex = dev->ifindex,
2004 .fc_dst_len = 8,
2005 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002006 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002007 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Thomas Graf86872cb2006-08-22 00:01:08 -07002009 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2010
2011 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
Amerigo Wang07a93622012-10-29 16:23:10 +00002014#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015static void sit_route_add(struct net_device *dev)
2016{
Thomas Graf86872cb2006-08-22 00:01:08 -07002017 struct fib6_config cfg = {
2018 .fc_table = RT6_TABLE_MAIN,
2019 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2020 .fc_ifindex = dev->ifindex,
2021 .fc_dst_len = 96,
2022 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002023 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002024 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002027 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002029#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2032{
2033 struct inet6_dev *idev;
2034
2035 ASSERT_RTNL();
2036
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002037 idev = ipv6_find_idev(dev);
2038 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002039 return ERR_PTR(-ENOBUFS);
2040
2041 if (idev->cnf.disable_ipv6)
2042 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002045 if (!(dev->flags & IFF_LOOPBACK))
2046 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return idev;
2049}
2050
Neil Hormane6bff992012-01-04 10:49:15 +00002051void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
2053 struct prefix_info *pinfo;
2054 __u32 valid_lft;
2055 __u32 prefered_lft;
2056 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002058 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002063 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 return;
2065 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 /*
2068 * Validation checks ([ADDRCONF], page 19)
2069 */
2070
2071 addr_type = ipv6_addr_type(&pinfo->prefix);
2072
2073 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2074 return;
2075
2076 valid_lft = ntohl(pinfo->valid);
2077 prefered_lft = ntohl(pinfo->prefered);
2078
2079 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002080 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return;
2082 }
2083
2084 in6_dev = in6_dev_get(dev);
2085
2086 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002087 net_dbg_ratelimited("addrconf: device %s not configured\n",
2088 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return;
2090 }
2091
2092 /*
2093 * Two things going on here:
2094 * 1) Add routes for on-link prefixes
2095 * 2) Configure prefixes with the auto flag set
2096 */
2097
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002098 if (pinfo->onlink) {
2099 struct rt6_info *rt;
2100 unsigned long rt_expires;
2101
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002102 /* Avoid arithmetic overflow. Really, we could
2103 * save rt_expires in seconds, likely valid_lft,
2104 * but it would require division in fib gc, that it
2105 * not good.
2106 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002107 if (HZ > USER_HZ)
2108 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2109 else
2110 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002111
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002112 if (addrconf_finite_timeout(rt_expires))
2113 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002115 rt = addrconf_get_prefix_route(&pinfo->prefix,
2116 pinfo->prefix_len,
2117 dev,
2118 RTF_ADDRCONF | RTF_PREFIX_RT,
2119 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002121 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002122 /* Autoconf prefix route */
2123 if (valid_lft == 0) {
2124 ip6_del_rt(rt);
2125 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002126 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002127 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002128 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002129 } else {
Gao feng1716a962012-04-06 00:13:10 +00002130 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 }
2132 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002133 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002134 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2135 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002136 /* not infinity */
2137 flags |= RTF_EXPIRES;
2138 expires = jiffies_to_clock_t(rt_expires);
2139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002141 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002143 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145
2146 /* Try to figure out our local address for this prefix */
2147
2148 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002149 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 struct in6_addr addr;
2151 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002152 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154 if (pinfo->prefix_len == 64) {
2155 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002156
2157 if (!ipv6_addr_any(&in6_dev->token)) {
2158 read_lock_bh(&in6_dev->lock);
2159 memcpy(addr.s6_addr + 8,
2160 in6_dev->token.s6_addr + 8, 8);
2161 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002162 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002163 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2164 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 in6_dev_put(in6_dev);
2166 return;
2167 }
2168 goto ok;
2169 }
Joe Perchese87cc472012-05-13 21:56:26 +00002170 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2171 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 in6_dev_put(in6_dev);
2173 return;
2174
2175ok:
2176
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002177 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 if (ifp == NULL && valid_lft) {
2180 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002181 u32 addr_flags = 0;
2182
2183#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2184 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002185 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002186 addr_flags = IFA_F_OPTIMISTIC;
2187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 /* Do not allow to create too much of autoconfigured
2190 * addresses; this would be too easy way to crash kernel.
2191 */
2192 if (!max_addresses ||
2193 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002194 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2195 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002196 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002197 addr_flags, valid_lft,
2198 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002200 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 in6_dev_put(in6_dev);
2202 return;
2203 }
2204
Jiri Benc8a226b22013-08-01 10:41:28 +02002205 update_lft = 0;
2206 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002208 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002209 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211
2212 if (ifp) {
2213 int flags;
2214 unsigned long now;
2215#ifdef CONFIG_IPV6_PRIVACY
2216 struct inet6_ifaddr *ift;
2217#endif
2218 u32 stored_lft;
2219
2220 /* update lifetime (RFC2462 5.5.3 e) */
2221 spin_lock(&ifp->lock);
2222 now = jiffies;
2223 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2224 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2225 else
2226 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002227 if (!update_lft && !create && stored_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 if (valid_lft > MIN_VALID_LIFETIME ||
2229 valid_lft > stored_lft)
2230 update_lft = 1;
2231 else if (stored_lft <= MIN_VALID_LIFETIME) {
2232 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002233 /*
2234 * RFC 4862 Section 5.5.3e:
2235 * "Note that the preferred lifetime of
2236 * the corresponding address is always
2237 * reset to the Preferred Lifetime in
2238 * the received Prefix Information
2239 * option, regardless of whether the
2240 * valid lifetime is also reset or
2241 * ignored."
2242 *
2243 * So if the preferred lifetime in
2244 * this advertisement is different
2245 * than what we have stored, but the
2246 * valid lifetime is invalid, just
2247 * reset prefered_lft.
2248 *
2249 * We must set the valid lifetime
2250 * to the stored lifetime since we'll
2251 * be updating the timestamp below,
2252 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002253 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002254 */
2255 if (prefered_lft != ifp->prefered_lft) {
2256 valid_lft = stored_lft;
2257 update_lft = 1;
2258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 } else {
2260 valid_lft = MIN_VALID_LIFETIME;
2261 if (valid_lft < prefered_lft)
2262 prefered_lft = valid_lft;
2263 update_lft = 1;
2264 }
2265 }
2266
2267 if (update_lft) {
2268 ifp->valid_lft = valid_lft;
2269 ifp->prefered_lft = prefered_lft;
2270 ifp->tstamp = now;
2271 flags = ifp->flags;
2272 ifp->flags &= ~IFA_F_DEPRECATED;
2273 spin_unlock(&ifp->lock);
2274
2275 if (!(flags&IFA_F_TENTATIVE))
2276 ipv6_ifa_notify(0, ifp);
2277 } else
2278 spin_unlock(&ifp->lock);
2279
2280#ifdef CONFIG_IPV6_PRIVACY
2281 read_lock_bh(&in6_dev->lock);
2282 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002283 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2284 tmp_list) {
2285 int age, max_valid, max_prefered;
2286
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002287 if (ifp != ift->ifpub)
2288 continue;
2289
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002290 /*
2291 * RFC 4941 section 3.3:
2292 * If a received option will extend the lifetime
2293 * of a public address, the lifetimes of
2294 * temporary addresses should be extended,
2295 * subject to the overall constraint that no
2296 * temporary addresses should ever remain
2297 * "valid" or "preferred" for a time longer than
2298 * (TEMP_VALID_LIFETIME) or
2299 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2300 * respectively.
2301 */
2302 age = (now - ift->cstamp) / HZ;
2303 max_valid = in6_dev->cnf.temp_valid_lft - age;
2304 if (max_valid < 0)
2305 max_valid = 0;
2306
2307 max_prefered = in6_dev->cnf.temp_prefered_lft -
2308 in6_dev->cnf.max_desync_factor -
2309 age;
2310 if (max_prefered < 0)
2311 max_prefered = 0;
2312
2313 if (valid_lft > max_valid)
2314 valid_lft = max_valid;
2315
2316 if (prefered_lft > max_prefered)
2317 prefered_lft = max_prefered;
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 spin_lock(&ift->lock);
2320 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002321 ift->valid_lft = valid_lft;
2322 ift->prefered_lft = prefered_lft;
2323 ift->tstamp = now;
2324 if (prefered_lft > 0)
2325 ift->flags &= ~IFA_F_DEPRECATED;
2326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 spin_unlock(&ift->lock);
2328 if (!(flags&IFA_F_TENTATIVE))
2329 ipv6_ifa_notify(0, ift);
2330 }
2331
Glenn Wursteraed65502010-09-27 07:04:30 +00002332 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002334 * When a new public address is created as
2335 * described in [ADDRCONF], also create a new
2336 * temporary address. Also create a temporary
2337 * address if it's enabled but no temporary
2338 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002340 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 ipv6_create_tempaddr(ifp, NULL);
2342 } else {
2343 read_unlock_bh(&in6_dev->lock);
2344 }
2345#endif
2346 in6_ifa_put(ifp);
2347 addrconf_verify(0);
2348 }
2349 }
2350 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2351 in6_dev_put(in6_dev);
2352}
2353
2354/*
2355 * Set destination address.
2356 * Special case for SIT interfaces where we create a new "virtual"
2357 * device.
2358 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002359int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
2361 struct in6_ifreq ireq;
2362 struct net_device *dev;
2363 int err = -EINVAL;
2364
2365 rtnl_lock();
2366
2367 err = -EFAULT;
2368 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2369 goto err_exit;
2370
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002371 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
2373 err = -ENODEV;
2374 if (dev == NULL)
2375 goto err_exit;
2376
Amerigo Wang07a93622012-10-29 16:23:10 +00002377#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002379 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 struct ip_tunnel_parm p;
2382
2383 err = -EADDRNOTAVAIL;
2384 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2385 goto err_exit;
2386
2387 memset(&p, 0, sizeof(p));
2388 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2389 p.iph.saddr = 0;
2390 p.iph.version = 4;
2391 p.iph.ihl = 5;
2392 p.iph.protocol = IPPROTO_IPV6;
2393 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002394 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002396 if (ops->ndo_do_ioctl) {
2397 mm_segment_t oldfs = get_fs();
2398
2399 set_fs(KERNEL_DS);
2400 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2401 set_fs(oldfs);
2402 } else
2403 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 if (err == 0) {
2406 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002407 dev = __dev_get_by_name(net, p.name);
2408 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 goto err_exit;
2410 err = dev_open(dev);
2411 }
2412 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002413#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415err_exit:
2416 rtnl_unlock();
2417 return err;
2418}
2419
2420/*
2421 * Manual configuration of address on an interface
2422 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002423static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002424 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002425 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002426 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
2428 struct inet6_ifaddr *ifp;
2429 struct inet6_dev *idev;
2430 struct net_device *dev;
2431 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002432 u32 flags;
2433 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002434 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002437
Thomas Graf24ef0da2008-05-28 16:54:22 +02002438 if (plen > 128)
2439 return -EINVAL;
2440
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002441 /* check the lifetime */
2442 if (!valid_lft || prefered_lft > valid_lft)
2443 return -EINVAL;
2444
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002445 dev = __dev_get_by_index(net, ifindex);
2446 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002448
Brian Haley64e724f2010-07-20 10:34:30 +00002449 idev = addrconf_add_dev(dev);
2450 if (IS_ERR(idev))
2451 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 scope = ipv6_addr_scope(pfx);
2454
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002455 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2456 if (addrconf_finite_timeout(timeout)) {
2457 expires = jiffies_to_clock_t(timeout * HZ);
2458 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002459 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002460 } else {
2461 expires = 0;
2462 flags = 0;
2463 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002464 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002465
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002466 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2467 if (addrconf_finite_timeout(timeout)) {
2468 if (timeout == 0)
2469 ifa_flags |= IFA_F_DEPRECATED;
2470 prefered_lft = timeout;
2471 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002472
Jiri Benc8a226b22013-08-01 10:41:28 +02002473 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2474 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002477 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002478 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002479 /*
2480 * Note that section 3.1 of RFC 4429 indicates
2481 * that the Optimistic flag should not be set for
2482 * manually configured addresses
2483 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002484 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002486 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return 0;
2488 }
2489
2490 return PTR_ERR(ifp);
2491}
2492
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002493static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002494 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
2496 struct inet6_ifaddr *ifp;
2497 struct inet6_dev *idev;
2498 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002499
Thomas Graf24ef0da2008-05-28 16:54:22 +02002500 if (plen > 128)
2501 return -EINVAL;
2502
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002503 dev = __dev_get_by_index(net, ifindex);
2504 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return -ENODEV;
2506
David S. Miller7eaa48a2013-08-20 23:44:39 -07002507 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return -ENXIO;
2509
2510 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002511 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 if (ifp->prefix_len == plen &&
2513 ipv6_addr_equal(pfx, &ifp->addr)) {
2514 in6_ifa_hold(ifp);
2515 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return 0;
2519 }
2520 }
2521 read_unlock_bh(&idev->lock);
2522 return -EADDRNOTAVAIL;
2523}
2524
2525
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002526int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
2528 struct in6_ifreq ireq;
2529 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002530
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002531 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2535 return -EFAULT;
2536
2537 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002538 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002539 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2540 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 rtnl_unlock();
2542 return err;
2543}
2544
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002545int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
2547 struct in6_ifreq ireq;
2548 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002549
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002550 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return -EPERM;
2552
2553 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2554 return -EFAULT;
2555
2556 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002557 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2558 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 rtnl_unlock();
2560 return err;
2561}
2562
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002563static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2564 int plen, int scope)
2565{
2566 struct inet6_ifaddr *ifp;
2567
Jiri Benc8a226b22013-08-01 10:41:28 +02002568 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2569 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002570 if (!IS_ERR(ifp)) {
2571 spin_lock_bh(&ifp->lock);
2572 ifp->flags &= ~IFA_F_TENTATIVE;
2573 spin_unlock_bh(&ifp->lock);
2574 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2575 in6_ifa_put(ifp);
2576 }
2577}
2578
Amerigo Wang07a93622012-10-29 16:23:10 +00002579#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580static void sit_add_v4_addrs(struct inet6_dev *idev)
2581{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 struct in6_addr addr;
2583 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002584 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 int scope;
2586
2587 ASSERT_RTNL();
2588
2589 memset(&addr, 0, sizeof(struct in6_addr));
2590 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2591
2592 if (idev->dev->flags&IFF_POINTOPOINT) {
2593 addr.s6_addr32[0] = htonl(0xfe800000);
2594 scope = IFA_LINK;
2595 } else {
2596 scope = IPV6_ADDR_COMPATv4;
2597 }
2598
2599 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002600 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return;
2602 }
2603
Benjamin Thery6fda7352008-03-05 10:47:47 -08002604 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002605 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002607 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609 int flag = scope;
2610
2611 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2612 int plen;
2613
2614 addr.s6_addr32[3] = ifa->ifa_local;
2615
2616 if (ifa->ifa_scope == RT_SCOPE_LINK)
2617 continue;
2618 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2619 if (idev->dev->flags&IFF_POINTOPOINT)
2620 continue;
2621 flag |= IFA_HOST;
2622 }
2623 if (idev->dev->flags&IFF_POINTOPOINT)
2624 plen = 64;
2625 else
2626 plen = 96;
2627
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002628 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002633#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635static void init_loopback(struct net_device *dev)
2636{
2637 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302638 struct net_device *sp_dev;
2639 struct inet6_ifaddr *sp_ifa;
2640 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 /* ::1 */
2643
2644 ASSERT_RTNL();
2645
David S. Miller7eaa48a2013-08-20 23:44:39 -07002646 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002647 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 return;
2649 }
2650
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002651 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302652
2653 /* Add routes to other interface's IPv6 addresses */
2654 for_each_netdev(dev_net(dev), sp_dev) {
2655 if (!strcmp(sp_dev->name, dev->name))
2656 continue;
2657
2658 idev = __in6_dev_get(sp_dev);
2659 if (!idev)
2660 continue;
2661
2662 read_lock_bh(&idev->lock);
2663 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2664
2665 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2666 continue;
2667
Gao fenga881ae12013-06-16 11:14:30 +08002668 if (sp_ifa->rt)
2669 continue;
2670
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302671 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2672
2673 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002674 if (!IS_ERR(sp_rt)) {
2675 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302676 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002677 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302678 }
2679 read_unlock_bh(&idev->lock);
2680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681}
2682
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002683static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002685 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002686 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Neil Horman95c385b2007-04-25 17:08:10 -07002688#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2689 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002690 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002691 addr_flags |= IFA_F_OPTIMISTIC;
2692#endif
2693
2694
Jiri Benc8a226b22013-08-01 10:41:28 +02002695 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002697 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002698 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 in6_ifa_put(ifp);
2700 }
2701}
2702
2703static void addrconf_dev_config(struct net_device *dev)
2704{
2705 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002706 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708 ASSERT_RTNL();
2709
Herbert Xu74235a22007-06-14 13:02:55 -07002710 if ((dev->type != ARPHRD_ETHER) &&
2711 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002712 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002713 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002714 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002715 (dev->type != ARPHRD_IEEE1394) &&
2716 (dev->type != ARPHRD_TUNNEL6)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002717 /* Alas, we support only Ethernet autoconfiguration. */
2718 return;
2719 }
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002722 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 return;
2724
2725 memset(&addr, 0, sizeof(struct in6_addr));
2726 addr.s6_addr32[0] = htonl(0xFE800000);
2727
2728 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2729 addrconf_add_linklocal(idev, &addr);
2730}
2731
Amerigo Wang07a93622012-10-29 16:23:10 +00002732#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733static void addrconf_sit_config(struct net_device *dev)
2734{
2735 struct inet6_dev *idev;
2736
2737 ASSERT_RTNL();
2738
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002739 /*
2740 * Configure the tunnel with one of our IPv4
2741 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 * our v4 addrs in the tunnel
2743 */
2744
David S. Miller7eaa48a2013-08-20 23:44:39 -07002745 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002746 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return;
2748 }
2749
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002750 if (dev->priv_flags & IFF_ISATAP) {
2751 struct in6_addr addr;
2752
2753 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2754 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2755 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2756 addrconf_add_linklocal(idev, &addr);
2757 return;
2758 }
2759
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 sit_add_v4_addrs(idev);
2761
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002762 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002764 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 sit_route_add(dev);
2766}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Amerigo Wang07a93622012-10-29 16:23:10 +00002769#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002770static void addrconf_gre_config(struct net_device *dev)
2771{
2772 struct inet6_dev *idev;
2773 struct in6_addr addr;
2774
stephen hemmingeraee80b52011-06-08 10:44:30 +00002775 ASSERT_RTNL();
2776
David S. Miller7eaa48a2013-08-20 23:44:39 -07002777 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002778 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002779 return;
2780 }
2781
2782 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2783 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2784
2785 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2786 addrconf_add_linklocal(idev, &addr);
2787}
2788#endif
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790static inline int
2791ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2792{
2793 struct in6_addr lladdr;
2794
Neil Horman95c385b2007-04-25 17:08:10 -07002795 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 addrconf_add_linklocal(idev, &lladdr);
2797 return 0;
2798 }
2799 return -1;
2800}
2801
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002802static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002803 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804{
Jiri Pirko351638e2013-05-28 01:30:21 +00002805 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002806 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002807 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002808 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002810 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002811 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002812 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002813 idev = ipv6_add_dev(dev);
2814 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002815 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002816 }
2817 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002820 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002821 if (dev->flags & IFF_SLAVE)
2822 break;
2823
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002824 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002825 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002826 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002827 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002828 dev->name);
2829 break;
2830 }
Kristian Slavov99081042006-02-08 16:10:53 -08002831
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002832 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2833 idev = ipv6_add_dev(dev);
2834
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002835 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002836 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002837 run_pending = 1;
2838 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002839 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002840 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002841 /* device is still not ready. */
2842 break;
2843 }
2844
2845 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002846 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002847 /* device is already configured. */
2848 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002849 idev->if_flags |= IF_READY;
2850 }
2851
Joe Perchesf3213832012-05-15 14:11:53 +00002852 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2853 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002854
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002855 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002856 }
2857
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002858 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002859#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 case ARPHRD_SIT:
2861 addrconf_sit_config(dev);
2862 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002863#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002864#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002865 case ARPHRD_IPGRE:
2866 addrconf_gre_config(dev);
2867 break;
2868#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 case ARPHRD_LOOPBACK:
2870 init_loopback(dev);
2871 break;
2872
2873 default:
2874 addrconf_dev_config(dev);
2875 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002876 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002879 if (run_pending)
2880 addrconf_dad_run(idev);
2881
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002882 /*
2883 * If the MTU changed during the interface down,
2884 * when the interface up, the changed MTU must be
2885 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002887 if (idev->cnf.mtu6 != dev->mtu &&
2888 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 rt6_mtu_change(dev, dev->mtu);
2890 idev->cnf.mtu6 = dev->mtu;
2891 }
2892 idev->tstamp = jiffies;
2893 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002894
2895 /*
2896 * If the changed mtu during down is lower than
2897 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 */
2899 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002900 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
2902 break;
2903
2904 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002905 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 rt6_mtu_change(dev, dev->mtu);
2907 idev->cnf.mtu6 = dev->mtu;
2908 break;
2909 }
2910
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002911 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2912 idev = ipv6_add_dev(dev);
2913 if (idev)
2914 break;
2915 }
2916
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002917 /*
2918 * MTU falled under IPV6_MIN_MTU.
2919 * Stop IPv6 on this interface.
2920 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
2922 case NETDEV_DOWN:
2923 case NETDEV_UNREGISTER:
2924 /*
2925 * Remove all addresses from this interface.
2926 */
2927 addrconf_ifdown(dev, event != NETDEV_DOWN);
2928 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002932 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002933 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002934 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002935 err = snmp6_register_dev(idev);
2936 if (err)
2937 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002940
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002941 case NETDEV_PRE_TYPE_CHANGE:
2942 case NETDEV_POST_TYPE_CHANGE:
2943 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002944 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
2947 return NOTIFY_OK;
2948}
2949
2950/*
2951 * addrconf module should be notified of a device going up
2952 */
2953static struct notifier_block ipv6_dev_notf = {
2954 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955};
2956
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002957static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002958{
2959 struct inet6_dev *idev;
2960 ASSERT_RTNL();
2961
2962 idev = __in6_dev_get(dev);
2963
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002964 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002965 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002966 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002967 ipv6_mc_unmap(idev);
2968}
2969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970static int addrconf_ifdown(struct net_device *dev, int how)
2971{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002972 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002973 struct inet6_dev *idev;
2974 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002975 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
2977 ASSERT_RTNL();
2978
David S. Miller73a8bd72011-01-23 23:27:15 -08002979 rt6_ifdown(net, dev);
2980 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
2982 idev = __in6_dev_get(dev);
2983 if (idev == NULL)
2984 return -ENODEV;
2985
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002986 /*
2987 * Step 1: remove reference to ipv6 device from parent device.
2988 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002990 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002992
2993 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002994 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 /* Step 1.5: remove snmp6 entry */
2997 snmp6_unregister_dev(idev);
2998
2999 }
3000
David S. Miller73a8bd72011-01-23 23:27:15 -08003001 /* Step 2: clear hash table */
3002 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3003 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003004
3005 spin_lock_bh(&addrconf_hash_lock);
3006 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003007 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003008 if (ifa->idev == idev) {
3009 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003010 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003011 goto restart;
3012 }
3013 }
3014 spin_unlock_bh(&addrconf_hash_lock);
3015 }
3016
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 write_lock_bh(&idev->lock);
3018
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003019 addrconf_del_rs_timer(idev);
3020
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003021 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003022 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003023 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003026 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 in6_dev_put(idev);
3028
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003029 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003030 while (!list_empty(&idev->tempaddr_list)) {
3031 ifa = list_first_entry(&idev->tempaddr_list,
3032 struct inet6_ifaddr, tmp_list);
3033 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 write_unlock_bh(&idev->lock);
3035 spin_lock_bh(&ifa->lock);
3036
3037 if (ifa->ifpub) {
3038 in6_ifa_put(ifa->ifpub);
3039 ifa->ifpub = NULL;
3040 }
3041 spin_unlock_bh(&ifa->lock);
3042 in6_ifa_put(ifa);
3043 write_lock_bh(&idev->lock);
3044 }
3045#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003046
stephen hemminger502a2ff2010-03-17 20:31:13 +00003047 while (!list_empty(&idev->addr_list)) {
3048 ifa = list_first_entry(&idev->addr_list,
3049 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003050 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003051
David S. Miller73a8bd72011-01-23 23:27:15 -08003052 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
David S. Miller73a8bd72011-01-23 23:27:15 -08003054 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003055
David S. Miller73a8bd72011-01-23 23:27:15 -08003056 spin_lock_bh(&ifa->state_lock);
3057 state = ifa->state;
3058 ifa->state = INET6_IFADDR_STATE_DEAD;
3059 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003060
David S. Miller73a8bd72011-01-23 23:27:15 -08003061 if (state != INET6_IFADDR_STATE_DEAD) {
3062 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003063 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003064 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003065 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003066
David S. Miller73a8bd72011-01-23 23:27:15 -08003067 write_lock_bh(&idev->lock);
3068 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 write_unlock_bh(&idev->lock);
3071
3072 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003073 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 ipv6_mc_destroy_dev(idev);
3075 else
3076 ipv6_mc_down(idev);
3077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003079
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003080 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003081 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003082 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 neigh_parms_release(&nd_tbl, idev->nd_parms);
3084 neigh_ifdown(&nd_tbl, dev);
3085 in6_dev_put(idev);
3086 }
3087 return 0;
3088}
3089
3090static void addrconf_rs_timer(unsigned long data)
3091{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003092 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003093 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003094 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003096 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003097 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 goto out;
3099
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003100 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003102
3103 /* Announcement received after solicitation was sent */
3104 if (idev->if_flags & IF_RA_RCVD)
3105 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003107 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003108 write_unlock(&idev->lock);
3109 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3110 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003111 &in6addr_linklocal_allrouters);
3112 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003113 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Cong Wangcaf92bc2013-08-31 13:44:32 +08003115 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003116 /* The wait after the last probe can be shorter */
3117 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3118 idev->cnf.rtr_solicits) ?
3119 idev->cnf.rtr_solicit_delay :
3120 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 /*
3123 * Note: we do not support deprecated "all on-link"
3124 * assumption any longer.
3125 */
Joe Perches91df42b2012-05-15 14:11:54 +00003126 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
3128
3129out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003130 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003131put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003132 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133}
3134
3135/*
3136 * Duplicate Address Detection
3137 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003138static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3139{
3140 unsigned long rand_num;
3141 struct inet6_dev *idev = ifp->idev;
3142
Neil Horman95c385b2007-04-25 17:08:10 -07003143 if (ifp->flags & IFA_F_OPTIMISTIC)
3144 rand_num = 0;
3145 else
3146 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3147
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003148 ifp->dad_probes = idev->cnf.dad_transmits;
3149 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003150}
3151
David S. Millercf22f9a2012-04-14 21:37:40 -04003152static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153{
3154 struct inet6_dev *idev = ifp->idev;
3155 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157 addrconf_join_solict(dev, &ifp->addr);
3158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003162 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003163 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003167 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003168 !(ifp->flags&IFA_F_TENTATIVE) ||
3169 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003170 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003171 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 read_unlock_bh(&idev->lock);
3173
3174 addrconf_dad_completed(ifp);
3175 return;
3176 }
3177
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003178 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003179 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003180 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003181 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003182 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003183 * - keep it tentative if it is a permanent address.
3184 * - otherwise, kill it.
3185 */
3186 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003187 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003188 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003189 }
Neil Horman95c385b2007-04-25 17:08:10 -07003190
3191 /*
3192 * Optimistic nodes can start receiving
3193 * Frames right away
3194 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003195 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003196 ip6_ins_rt(ifp->rt);
3197
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003198 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003200 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 read_unlock_bh(&idev->lock);
3202}
3203
3204static void addrconf_dad_timer(unsigned long data)
3205{
3206 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3207 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 struct in6_addr mcaddr;
3209
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003210 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003211 goto out;
3212
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003213 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003214 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003215 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 goto out;
3217 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003218
3219 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003220 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3221 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003222 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003223 goto out;
3224 }
3225
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003226 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 /*
3228 * DAD was successful
3229 */
3230
Brian Haleycc411d02009-09-09 14:41:32 +00003231 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003232 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003233 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
3235 addrconf_dad_completed(ifp);
3236
3237 goto out;
3238 }
3239
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003240 ifp->dad_probes--;
3241 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003242 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003243 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003247 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248out:
3249 in6_ifa_put(ifp);
3250}
3251
3252static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3253{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003254 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003255 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003256 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003257
3258 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 /*
3261 * Configure the address for reception. Now it is valid.
3262 */
3263
3264 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3265
Tore Anderson026359b2011-08-28 23:47:33 +00003266 /* If added prefix is link local and we are prepared to process
3267 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 */
3269
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003270 read_lock_bh(&ifp->idev->lock);
3271 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003272 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3273 ifp->idev->valid_ll_addr_cnt == 1;
3274 send_rs = send_mld &&
3275 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003276 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003277 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003278 spin_unlock(&ifp->lock);
3279 read_unlock_bh(&ifp->idev->lock);
3280
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003281 /* While dad is in progress mld report's source address is in6_addrany.
3282 * Resend with proper ll now.
3283 */
3284 if (send_mld)
3285 ipv6_mc_dad_complete(ifp->idev);
3286
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003287 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 /*
3289 * If a host as already performed a random delay
3290 * [...] as part of DAD [...] there is no need
3291 * to delay again before sending the first RS
3292 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003293 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003294 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003295 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003297 write_lock_bh(&ifp->idev->lock);
3298 spin_lock(&ifp->lock);
3299 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003301 addrconf_mod_rs_timer(ifp->idev,
3302 ifp->idev->cnf.rtr_solicit_interval);
3303 spin_unlock(&ifp->lock);
3304 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 }
3306}
3307
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003308static void addrconf_dad_run(struct inet6_dev *idev)
3309{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003310 struct inet6_ifaddr *ifp;
3311
3312 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003313 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003314 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003315 if (ifp->flags & IFA_F_TENTATIVE &&
3316 ifp->state == INET6_IFADDR_STATE_DAD)
3317 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003318 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003319 }
3320 read_unlock_bh(&idev->lock);
3321}
3322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323#ifdef CONFIG_PROC_FS
3324struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003325 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003327 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328};
3329
Mihai Maruseac1d578302012-01-03 23:31:35 +00003330static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331{
3332 struct inet6_ifaddr *ifa = NULL;
3333 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003334 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003335 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Mihai Maruseac1d578302012-01-03 23:31:35 +00003337 /* initial bucket if pos is 0 */
3338 if (pos == 0) {
3339 state->bucket = 0;
3340 state->offset = 0;
3341 }
3342
3343 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003344 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003345 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003346 if (!net_eq(dev_net(ifa->idev->dev), net))
3347 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003348 /* sync with offset */
3349 if (p < state->offset) {
3350 p++;
3351 continue;
3352 }
3353 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003354 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003355 }
3356
3357 /* prepare for next bucket */
3358 state->offset = 0;
3359 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003361 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363
stephen hemmingerc2e21292010-03-17 20:31:10 +00003364static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3365 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
3367 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003368 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Sasha Levinb67bfe02013-02-27 17:06:00 -08003370 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003371 if (!net_eq(dev_net(ifa->idev->dev), net))
3372 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003373 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003374 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003375 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003376
3377 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003378 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003379 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003380 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003381 if (!net_eq(dev_net(ifa->idev->dev), net))
3382 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003383 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003384 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003385 }
3386 }
3387
stephen hemmingerc2e21292010-03-17 20:31:10 +00003388 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389}
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003392 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003394 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003395 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396}
3397
3398static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3399{
3400 struct inet6_ifaddr *ifa;
3401
3402 ifa = if6_get_next(seq, v);
3403 ++*pos;
3404 return ifa;
3405}
3406
3407static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003408 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003410 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411}
3412
3413static int if6_seq_show(struct seq_file *seq, void *v)
3414{
3415 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003416 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003417 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 ifp->idev->dev->ifindex,
3419 ifp->prefix_len,
3420 ifp->scope,
3421 ifp->flags,
3422 ifp->idev->dev->name);
3423 return 0;
3424}
3425
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003426static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 .start = if6_seq_start,
3428 .next = if6_seq_next,
3429 .show = if6_seq_show,
3430 .stop = if6_seq_stop,
3431};
3432
3433static int if6_seq_open(struct inode *inode, struct file *file)
3434{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003435 return seq_open_net(inode, file, &if6_seq_ops,
3436 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437}
3438
Arjan van de Ven9a321442007-02-12 00:55:35 -08003439static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 .owner = THIS_MODULE,
3441 .open = if6_seq_open,
3442 .read = seq_read,
3443 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003444 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445};
3446
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003447static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448{
Gao fengd4beaa62013-02-18 01:34:54 +00003449 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 return -ENOMEM;
3451 return 0;
3452}
3453
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003454static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003455{
Gao fengece31ff2013-02-18 01:34:56 +00003456 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003457}
3458
3459static struct pernet_operations if6_proc_net_ops = {
3460 .init = if6_proc_net_init,
3461 .exit = if6_proc_net_exit,
3462};
3463
3464int __init if6_proc_init(void)
3465{
3466 return register_pernet_subsys(&if6_proc_net_ops);
3467}
3468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469void if6_proc_exit(void)
3470{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003471 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472}
3473#endif /* CONFIG_PROC_FS */
3474
Amerigo Wang07a93622012-10-29 16:23:10 +00003475#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003476/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003477int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003478{
3479 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003480 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003481 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003482
stephen hemminger5c578ae2010-03-17 20:31:11 +00003483 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003484 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003485 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003486 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003487 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003488 (ifp->flags & IFA_F_HOMEADDRESS)) {
3489 ret = 1;
3490 break;
3491 }
3492 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003493 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003494 return ret;
3495}
3496#endif
3497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498/*
3499 * Periodic address status verification
3500 */
3501
3502static void addrconf_verify(unsigned long foo)
3503{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003504 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 int i;
3507
stephen hemminger5c578ae2010-03-17 20:31:11 +00003508 rcu_read_lock_bh();
3509 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003511 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
3513 del_timer(&addr_chk_timer);
3514
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003515 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003517 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003518 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
3521 if (ifp->flags & IFA_F_PERMANENT)
3522 continue;
3523
3524 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003525 /* We try to batch several events at once. */
3526 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003528 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3529 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 spin_unlock(&ifp->lock);
3531 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 ipv6_del_addr(ifp);
3533 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003534 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3535 spin_unlock(&ifp->lock);
3536 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003538 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 int deprecate = 0;
3540
3541 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3542 deprecate = 1;
3543 ifp->flags |= IFA_F_DEPRECATED;
3544 }
3545
3546 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3547 next = ifp->tstamp + ifp->valid_lft * HZ;
3548
3549 spin_unlock(&ifp->lock);
3550
3551 if (deprecate) {
3552 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 ipv6_ifa_notify(0, ifp);
3555 in6_ifa_put(ifp);
3556 goto restart;
3557 }
3558#ifdef CONFIG_IPV6_PRIVACY
3559 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3560 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003561 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3562 ifp->idev->cnf.dad_transmits *
3563 ifp->idev->nd_parms->retrans_time / HZ;
3564
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 if (age >= ifp->prefered_lft - regen_advance) {
3566 struct inet6_ifaddr *ifpub = ifp->ifpub;
3567 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3568 next = ifp->tstamp + ifp->prefered_lft * HZ;
3569 if (!ifp->regen_count && ifpub) {
3570 ifp->regen_count++;
3571 in6_ifa_hold(ifp);
3572 in6_ifa_hold(ifpub);
3573 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003574
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003575 spin_lock(&ifpub->lock);
3576 ifpub->regen_count = 0;
3577 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 ipv6_create_tempaddr(ifpub, ifp);
3579 in6_ifa_put(ifpub);
3580 in6_ifa_put(ifp);
3581 goto restart;
3582 }
3583 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3584 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3585 spin_unlock(&ifp->lock);
3586#endif
3587 } else {
3588 /* ifp->prefered_lft <= ifp->valid_lft */
3589 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3590 next = ifp->tstamp + ifp->prefered_lft * HZ;
3591 spin_unlock(&ifp->lock);
3592 }
3593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 }
3595
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003596 next_sec = round_jiffies_up(next);
3597 next_sched = next;
3598
3599 /* If rounded timeout is accurate enough, accept it. */
3600 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3601 next_sched = next_sec;
3602
3603 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3604 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3605 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3606
dingtianhongba3542e2013-08-17 10:27:04 +08003607 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3608 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003609
3610 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003612 spin_unlock(&addrconf_verify_lock);
3613 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614}
3615
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003616static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3617 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003618{
3619 struct in6_addr *pfx = NULL;
3620
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003621 *peer_pfx = NULL;
3622
Thomas Graf461d8832006-09-18 00:09:49 -07003623 if (addr)
3624 pfx = nla_data(addr);
3625
3626 if (local) {
3627 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003628 *peer_pfx = pfx;
3629 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003630 }
3631
3632 return pfx;
3633}
3634
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003635static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003636 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3637 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3638 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3639};
3640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641static int
Thomas Graf661d2962013-03-21 07:45:29 +00003642inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003644 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003645 struct ifaddrmsg *ifm;
3646 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003647 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003648 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Thomas Grafb933f712006-09-18 00:10:19 -07003650 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3651 if (err < 0)
3652 return err;
3653
3654 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003655 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 if (pfx == NULL)
3657 return -EINVAL;
3658
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003659 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660}
3661
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003662static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3663 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003664{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003665 u32 flags;
3666 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003667 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003668
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003669 if (!valid_lft || (prefered_lft > valid_lft))
3670 return -EINVAL;
3671
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003672 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3673 if (addrconf_finite_timeout(timeout)) {
3674 expires = jiffies_to_clock_t(timeout * HZ);
3675 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003676 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003677 } else {
3678 expires = 0;
3679 flags = 0;
3680 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003681 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003682
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003683 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3684 if (addrconf_finite_timeout(timeout)) {
3685 if (timeout == 0)
3686 ifa_flags |= IFA_F_DEPRECATED;
3687 prefered_lft = timeout;
3688 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003689
3690 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003691 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 +09003692 ifp->tstamp = jiffies;
3693 ifp->valid_lft = valid_lft;
3694 ifp->prefered_lft = prefered_lft;
3695
3696 spin_unlock_bh(&ifp->lock);
3697 if (!(ifp->flags&IFA_F_TENTATIVE))
3698 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003699
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003700 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003701 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003702 addrconf_verify(0);
3703
3704 return 0;
3705}
3706
3707static int
Thomas Graf661d2962013-03-21 07:45:29 +00003708inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003710 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003711 struct ifaddrmsg *ifm;
3712 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003713 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003714 struct inet6_ifaddr *ifa;
3715 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003716 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3717 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003718 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Thomas Graf461d8832006-09-18 00:09:49 -07003720 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3721 if (err < 0)
3722 return err;
3723
3724 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003725 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 if (pfx == NULL)
3727 return -EINVAL;
3728
Thomas Graf461d8832006-09-18 00:09:49 -07003729 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003730 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003731
3732 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003733 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003734 preferred_lft = ci->ifa_prefered;
3735 } else {
3736 preferred_lft = INFINITY_LIFE_TIME;
3737 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003738 }
3739
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003740 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003741 if (dev == NULL)
3742 return -ENODEV;
3743
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003744 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003745 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003746
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003747 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003748 if (ifa == NULL) {
3749 /*
3750 * It would be best to check for !NLM_F_CREATE here but
3751 * userspace alreay relies on not having to provide this.
3752 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003753 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003754 ifm->ifa_prefixlen, ifa_flags,
3755 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003756 }
3757
Thomas Graf7198f8c2006-09-18 00:13:46 -07003758 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3759 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3760 err = -EEXIST;
3761 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003762 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003763
3764 in6_ifa_put(ifa);
3765
3766 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767}
3768
Thomas Graf101bb222006-09-18 00:11:52 -07003769static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3770 u8 scope, int ifindex)
3771{
3772 struct ifaddrmsg *ifm;
3773
3774 ifm = nlmsg_data(nlh);
3775 ifm->ifa_family = AF_INET6;
3776 ifm->ifa_prefixlen = prefixlen;
3777 ifm->ifa_flags = flags;
3778 ifm->ifa_scope = scope;
3779 ifm->ifa_index = ifindex;
3780}
3781
Thomas Graf85486af2006-09-18 00:11:24 -07003782static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3783 unsigned long tstamp, u32 preferred, u32 valid)
3784{
3785 struct ifa_cacheinfo ci;
3786
Thomas Graf18a31e12010-11-17 04:12:02 +00003787 ci.cstamp = cstamp_delta(cstamp);
3788 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003789 ci.ifa_prefered = preferred;
3790 ci.ifa_valid = valid;
3791
3792 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3793}
3794
Thomas Graf101bb222006-09-18 00:11:52 -07003795static inline int rt_scope(int ifa_scope)
3796{
3797 if (ifa_scope & IFA_HOST)
3798 return RT_SCOPE_HOST;
3799 else if (ifa_scope & IFA_LINK)
3800 return RT_SCOPE_LINK;
3801 else if (ifa_scope & IFA_SITE)
3802 return RT_SCOPE_SITE;
3803 else
3804 return RT_SCOPE_UNIVERSE;
3805}
3806
Thomas Graf0ab68032006-09-18 00:12:35 -07003807static inline int inet6_ifaddr_msgsize(void)
3808{
Thomas Graf339bf982006-11-10 14:10:15 -08003809 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003810 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003811 + nla_total_size(16) /* IFA_ADDRESS */
3812 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003813}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003814
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003816 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003819 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820
Eric W. Biederman15e47302012-09-07 20:12:54 +00003821 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003822 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003823 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003824
Thomas Graf101bb222006-09-18 00:11:52 -07003825 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3826 ifa->idev->dev->ifindex);
3827
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003829 preferred = ifa->prefered_lft;
3830 valid = ifa->valid_lft;
3831 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003833 if (preferred > tval)
3834 preferred -= tval;
3835 else
3836 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003837 if (valid != INFINITY_LIFE_TIME) {
3838 if (valid > tval)
3839 valid -= tval;
3840 else
3841 valid = 0;
3842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 }
3844 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003845 preferred = INFINITY_LIFE_TIME;
3846 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 }
Thomas Graf85486af2006-09-18 00:11:24 -07003848
Cong Wang7996c792013-05-22 05:41:06 +00003849 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003850 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3851 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3852 goto error;
3853 } else
3854 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3855 goto error;
3856
3857 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3858 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003859
Thomas Graf0ab68032006-09-18 00:12:35 -07003860 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003861
3862error:
3863 nlmsg_cancel(skb, nlh);
3864 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865}
3866
3867static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003868 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003871 u8 scope = RT_SCOPE_UNIVERSE;
3872 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
Thomas Graf101bb222006-09-18 00:11:52 -07003874 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3875 scope = RT_SCOPE_SITE;
3876
Eric W. Biederman15e47302012-09-07 20:12:54 +00003877 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003878 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003879 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003880
Thomas Graf101bb222006-09-18 00:11:52 -07003881 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003882 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3883 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003884 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3885 nlmsg_cancel(skb, nlh);
3886 return -EMSGSIZE;
3887 }
Thomas Graf85486af2006-09-18 00:11:24 -07003888
Thomas Graf0ab68032006-09-18 00:12:35 -07003889 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890}
3891
3892static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003893 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003896 u8 scope = RT_SCOPE_UNIVERSE;
3897 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Thomas Graf101bb222006-09-18 00:11:52 -07003899 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3900 scope = RT_SCOPE_SITE;
3901
Eric W. Biederman15e47302012-09-07 20:12:54 +00003902 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003903 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003904 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003905
Thomas Graf101bb222006-09-18 00:11:52 -07003906 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003907 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3908 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003909 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3910 nlmsg_cancel(skb, nlh);
3911 return -EMSGSIZE;
3912 }
Thomas Graf85486af2006-09-18 00:11:24 -07003913
Thomas Graf0ab68032006-09-18 00:12:35 -07003914 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003917enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 UNICAST_ADDR,
3919 MULTICAST_ADDR,
3920 ANYCAST_ADDR,
3921};
3922
Eric Dumazet234b27c2009-11-12 04:11:50 +00003923/* called with rcu_read_lock() */
3924static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3925 struct netlink_callback *cb, enum addr_type_t type,
3926 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 struct ifmcaddr6 *ifmca;
3929 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003930 int err = 1;
3931 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Eric Dumazet234b27c2009-11-12 04:11:50 +00003933 read_lock_bh(&idev->lock);
3934 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003935 case UNICAST_ADDR: {
3936 struct inet6_ifaddr *ifa;
3937
Eric Dumazet234b27c2009-11-12 04:11:50 +00003938 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003939 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3940 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003941 continue;
3942 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003943 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003944 cb->nlh->nlmsg_seq,
3945 RTM_NEWADDR,
3946 NLM_F_MULTI);
3947 if (err <= 0)
3948 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003949 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003951 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003952 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003953 case MULTICAST_ADDR:
3954 /* multicast address */
3955 for (ifmca = idev->mc_list; ifmca;
3956 ifmca = ifmca->next, ip_idx++) {
3957 if (ip_idx < s_ip_idx)
3958 continue;
3959 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003960 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003961 cb->nlh->nlmsg_seq,
3962 RTM_GETMULTICAST,
3963 NLM_F_MULTI);
3964 if (err <= 0)
3965 break;
3966 }
3967 break;
3968 case ANYCAST_ADDR:
3969 /* anycast address */
3970 for (ifaca = idev->ac_list; ifaca;
3971 ifaca = ifaca->aca_next, ip_idx++) {
3972 if (ip_idx < s_ip_idx)
3973 continue;
3974 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003975 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003976 cb->nlh->nlmsg_seq,
3977 RTM_GETANYCAST,
3978 NLM_F_MULTI);
3979 if (err <= 0)
3980 break;
3981 }
3982 break;
3983 default:
3984 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003986 read_unlock_bh(&idev->lock);
3987 *p_ip_idx = ip_idx;
3988 return err;
3989}
3990
3991static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3992 enum addr_type_t type)
3993{
3994 struct net *net = sock_net(skb->sk);
3995 int h, s_h;
3996 int idx, ip_idx;
3997 int s_idx, s_ip_idx;
3998 struct net_device *dev;
3999 struct inet6_dev *idev;
4000 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004001
4002 s_h = cb->args[0];
4003 s_idx = idx = cb->args[1];
4004 s_ip_idx = ip_idx = cb->args[2];
4005
4006 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004007 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004008 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4009 idx = 0;
4010 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004011 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004012 if (idx < s_idx)
4013 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004014 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004015 s_ip_idx = 0;
4016 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004017 idev = __in6_dev_get(dev);
4018 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004019 goto cont;
4020
4021 if (in6_dump_addrs(idev, skb, cb, type,
4022 s_ip_idx, &ip_idx) <= 0)
4023 goto done;
4024cont:
4025 idx++;
4026 }
4027 }
4028done:
4029 rcu_read_unlock();
4030 cb->args[0] = h;
4031 cb->args[1] = idx;
4032 cb->args[2] = ip_idx;
4033
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 return skb->len;
4035}
4036
4037static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4038{
4039 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004040
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 return inet6_dump_addr(skb, cb, type);
4042}
4043
4044static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4045{
4046 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004047
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 return inet6_dump_addr(skb, cb, type);
4049}
4050
4051
4052static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4053{
4054 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 return inet6_dump_addr(skb, cb, type);
4057}
4058
Thomas Graf661d2962013-03-21 07:45:29 +00004059static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004060{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004061 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004062 struct ifaddrmsg *ifm;
4063 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004064 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004065 struct net_device *dev = NULL;
4066 struct inet6_ifaddr *ifa;
4067 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004068 int err;
4069
Thomas Graf1b29fc22006-09-18 00:10:50 -07004070 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4071 if (err < 0)
4072 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004073
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004074 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004075 if (addr == NULL) {
4076 err = -EINVAL;
4077 goto errout;
4078 }
4079
4080 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004081 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004082 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004083
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004084 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4085 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004086 err = -EADDRNOTAVAIL;
4087 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004088 }
4089
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004090 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4091 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004092 err = -ENOBUFS;
4093 goto errout_ifa;
4094 }
4095
Eric W. Biederman15e47302012-09-07 20:12:54 +00004096 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004097 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004098 if (err < 0) {
4099 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4100 WARN_ON(err == -EMSGSIZE);
4101 kfree_skb(skb);
4102 goto errout_ifa;
4103 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004104 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004105errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004106 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004107errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004108 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004109}
4110
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4112{
4113 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004114 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004115 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Thomas Graf0ab68032006-09-18 00:12:35 -07004117 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004118 if (skb == NULL)
4119 goto errout;
4120
4121 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004122 if (err < 0) {
4123 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4124 WARN_ON(err == -EMSGSIZE);
4125 kfree_skb(skb);
4126 goto errout;
4127 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004128 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4129 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004130errout:
4131 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004132 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133}
4134
Dave Jonesb6f99a22007-03-22 12:27:49 -07004135static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 __s32 *array, int bytes)
4137{
Thomas Graf04561c12006-11-14 19:53:58 -08004138 BUG_ON(bytes < (DEVCONF_MAX * 4));
4139
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 memset(array, 0, bytes);
4141 array[DEVCONF_FORWARDING] = cnf->forwarding;
4142 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4143 array[DEVCONF_MTU6] = cnf->mtu6;
4144 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4145 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4146 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4147 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4148 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004149 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4150 jiffies_to_msecs(cnf->rtr_solicit_interval);
4151 array[DEVCONF_RTR_SOLICIT_DELAY] =
4152 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004154 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4155 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4156 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4157 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158#ifdef CONFIG_IPV6_PRIVACY
4159 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4160 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4161 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4162 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4163 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4164#endif
4165 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004166 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004167 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004168#ifdef CONFIG_IPV6_ROUTER_PREF
4169 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004170 array[DEVCONF_RTR_PROBE_INTERVAL] =
4171 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004172#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004173 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4174#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004175#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004176 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004177 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004178#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4179 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4180#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004181#ifdef CONFIG_IPV6_MROUTE
4182 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4183#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004184 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004185 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004186 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004187 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004188 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189}
4190
Thomas Grafb382b192010-11-16 04:33:57 +00004191static inline size_t inet6_ifla6_size(void)
4192{
4193 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4194 + nla_total_size(sizeof(struct ifla_cacheinfo))
4195 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4196 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004197 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4198 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004199}
4200
Thomas Graf339bf982006-11-10 14:10:15 -08004201static inline size_t inet6_if_nlmsg_size(void)
4202{
4203 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4204 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4205 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4206 + nla_total_size(4) /* IFLA_MTU */
4207 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004208 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004209}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004210
Eric Dumazetbe281e52011-05-19 01:14:23 +00004211static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004212 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004213{
4214 int i;
4215 int pad = bytes - sizeof(u64) * items;
4216 BUG_ON(pad < 0);
4217
4218 /* Use put_unaligned() because stats may not be aligned for u64. */
4219 put_unaligned(items, &stats[0]);
4220 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004221 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004222
4223 memset(&stats[items], 0, pad);
4224}
4225
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004226static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4227 int items, int bytes, size_t syncpoff)
4228{
4229 int i;
4230 int pad = bytes - sizeof(u64) * items;
4231 BUG_ON(pad < 0);
4232
4233 /* Use put_unaligned() because stats may not be aligned for u64. */
4234 put_unaligned(items, &stats[0]);
4235 for (i = 1; i < items; i++)
4236 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4237
4238 memset(&stats[items], 0, pad);
4239}
4240
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004241static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4242 int bytes)
4243{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004244 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004245 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004246 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4247 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004248 break;
4249 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004250 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004251 break;
4252 }
4253}
4254
Thomas Grafb382b192010-11-16 04:33:57 +00004255static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004257 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004258 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
David S. Millerc78679e2012-04-01 20:27:33 -04004260 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4261 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004263 ci.tstamp = cstamp_delta(idev->tstamp);
4264 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4265 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004266 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4267 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004268 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4269 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004270 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004271 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004273 /* XXX - MC not implemented */
4274
4275 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4276 if (nla == NULL)
4277 goto nla_put_failure;
4278 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4279
4280 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4281 if (nla == NULL)
4282 goto nla_put_failure;
4283 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004285 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4286 if (nla == NULL)
4287 goto nla_put_failure;
4288 read_lock_bh(&idev->lock);
4289 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4290 read_unlock_bh(&idev->lock);
4291
Thomas Grafb382b192010-11-16 04:33:57 +00004292 return 0;
4293
4294nla_put_failure:
4295 return -EMSGSIZE;
4296}
4297
4298static size_t inet6_get_link_af_size(const struct net_device *dev)
4299{
4300 if (!__in6_dev_get(dev))
4301 return 0;
4302
4303 return inet6_ifla6_size();
4304}
4305
4306static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4307{
4308 struct inet6_dev *idev = __in6_dev_get(dev);
4309
4310 if (!idev)
4311 return -ENODATA;
4312
4313 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4314 return -EMSGSIZE;
4315
4316 return 0;
4317}
4318
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004319static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4320{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004321 struct inet6_ifaddr *ifp;
4322 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004323 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004324 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004325
4326 if (token == NULL)
4327 return -EINVAL;
4328 if (ipv6_addr_any(token))
4329 return -EINVAL;
4330 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4331 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004332 if (!ipv6_accept_ra(idev))
4333 return -EINVAL;
4334 if (idev->cnf.rtr_solicits <= 0)
4335 return -EINVAL;
4336
4337 write_lock_bh(&idev->lock);
4338
4339 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4340 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4341
4342 write_unlock_bh(&idev->lock);
4343
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004344 if (!idev->dead && (idev->if_flags & IF_READY) &&
4345 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4346 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004347
4348 /* If we're not ready, then normal ifup will take care
4349 * of this. Otherwise, we need to request our rs here.
4350 */
4351 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4352 update_rs = true;
4353 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004354
4355 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004356
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004357 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004358 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004359 idev->rs_probes = 1;
4360 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4361 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004362
4363 /* Well, that's kinda nasty ... */
4364 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4365 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004366 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004367 ifp->valid_lft = 0;
4368 ifp->prefered_lft = 0;
4369 }
4370 spin_unlock(&ifp->lock);
4371 }
4372
4373 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004374 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004375 return 0;
4376}
4377
4378static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4379{
4380 int err = -EINVAL;
4381 struct inet6_dev *idev = __in6_dev_get(dev);
4382 struct nlattr *tb[IFLA_INET6_MAX + 1];
4383
4384 if (!idev)
4385 return -EAFNOSUPPORT;
4386
4387 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4388 BUG();
4389
4390 if (tb[IFLA_INET6_TOKEN])
4391 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4392
4393 return err;
4394}
4395
Thomas Grafb382b192010-11-16 04:33:57 +00004396static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004397 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004398{
4399 struct net_device *dev = idev->dev;
4400 struct ifinfomsg *hdr;
4401 struct nlmsghdr *nlh;
4402 void *protoinfo;
4403
Eric W. Biederman15e47302012-09-07 20:12:54 +00004404 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004405 if (nlh == NULL)
4406 return -EMSGSIZE;
4407
4408 hdr = nlmsg_data(nlh);
4409 hdr->ifi_family = AF_INET6;
4410 hdr->__ifi_pad = 0;
4411 hdr->ifi_type = dev->type;
4412 hdr->ifi_index = dev->ifindex;
4413 hdr->ifi_flags = dev_get_flags(dev);
4414 hdr->ifi_change = 0;
4415
David S. Millerc78679e2012-04-01 20:27:33 -04004416 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4417 (dev->addr_len &&
4418 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4419 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4420 (dev->ifindex != dev->iflink &&
4421 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4422 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004423 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4424 if (protoinfo == NULL)
4425 goto nla_put_failure;
4426
4427 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4428 goto nla_put_failure;
4429
Thomas Graf04561c12006-11-14 19:53:58 -08004430 nla_nest_end(skb, protoinfo);
4431 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Thomas Graf04561c12006-11-14 19:53:58 -08004433nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004434 nlmsg_cancel(skb, nlh);
4435 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436}
4437
4438static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4439{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004440 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004441 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004442 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 struct net_device *dev;
4444 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004445 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
Eric Dumazet84d26972009-11-09 12:11:28 +00004447 s_h = cb->args[0];
4448 s_idx = cb->args[1];
4449
4450 rcu_read_lock();
4451 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4452 idx = 0;
4453 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004454 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004455 if (idx < s_idx)
4456 goto cont;
4457 idev = __in6_dev_get(dev);
4458 if (!idev)
4459 goto cont;
4460 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004461 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004462 cb->nlh->nlmsg_seq,
4463 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4464 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004465cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004466 idx++;
4467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004469out:
4470 rcu_read_unlock();
4471 cb->args[1] = idx;
4472 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
4474 return skb->len;
4475}
4476
4477void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4478{
4479 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004480 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004481 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004482
Thomas Graf339bf982006-11-10 14:10:15 -08004483 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004484 if (skb == NULL)
4485 goto errout;
4486
4487 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004488 if (err < 0) {
4489 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4490 WARN_ON(err == -EMSGSIZE);
4491 kfree_skb(skb);
4492 goto errout;
4493 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004494 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004495 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004496errout:
4497 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004498 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499}
4500
Thomas Graf339bf982006-11-10 14:10:15 -08004501static inline size_t inet6_prefix_nlmsg_size(void)
4502{
4503 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4504 + nla_total_size(sizeof(struct in6_addr))
4505 + nla_total_size(sizeof(struct prefix_cacheinfo));
4506}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004509 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004510 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004512 struct prefixmsg *pmsg;
4513 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 struct prefix_cacheinfo ci;
4515
Eric W. Biederman15e47302012-09-07 20:12:54 +00004516 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004517 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004518 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004519
4520 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004522 pmsg->prefix_pad1 = 0;
4523 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 pmsg->prefix_ifindex = idev->dev->ifindex;
4525 pmsg->prefix_len = pinfo->prefix_len;
4526 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004527 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 pmsg->prefix_flags = 0;
4529 if (pinfo->onlink)
4530 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4531 if (pinfo->autoconf)
4532 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4533
David S. Millerc78679e2012-04-01 20:27:33 -04004534 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4535 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 ci.preferred_time = ntohl(pinfo->prefered);
4537 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004538 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4539 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004540 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Thomas Graf6051e2f2006-11-14 19:54:19 -08004542nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004543 nlmsg_cancel(skb, nlh);
4544 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545}
4546
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004547static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 struct prefix_info *pinfo)
4549{
4550 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004551 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004552 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Thomas Graf339bf982006-11-10 14:10:15 -08004554 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004555 if (skb == NULL)
4556 goto errout;
4557
4558 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004559 if (err < 0) {
4560 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4561 WARN_ON(err == -EMSGSIZE);
4562 kfree_skb(skb);
4563 goto errout;
4564 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004565 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4566 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004567errout:
4568 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004569 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570}
4571
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004572static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4573{
4574 write_lock_bh(&ifp->idev->lock);
4575 spin_lock(&ifp->lock);
4576 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4577 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4578 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4579 ifp->idev->valid_ll_addr_cnt += count;
4580 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4581 spin_unlock(&ifp->lock);
4582 write_unlock_bh(&ifp->idev->lock);
4583}
4584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4586{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004587 struct net *net = dev_net(ifp->idev->dev);
4588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4590
4591 switch (event) {
4592 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004593 update_valid_ll_addr_cnt(ifp, 1);
4594
Neil Horman95c385b2007-04-25 17:08:10 -07004595 /*
4596 * If the address was optimistic
4597 * we inserted the route at the start of
4598 * our DAD process, so we don't need
4599 * to do it again
4600 */
4601 if (!(ifp->rt->rt6i_node))
4602 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 if (ifp->idev->cnf.forwarding)
4604 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004605 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004606 addrconf_prefix_route(&ifp->peer_addr, 128,
4607 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 break;
4609 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004610 update_valid_ll_addr_cnt(ifp, -1);
4611
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 if (ifp->idev->cnf.forwarding)
4613 addrconf_leave_anycast(ifp);
4614 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004615 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004616 struct rt6_info *rt;
4617 struct net_device *dev = ifp->idev->dev;
4618
4619 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4620 dev->ifindex, 1);
4621 if (rt) {
4622 dst_hold(&rt->dst);
4623 if (ip6_del_rt(rt))
4624 dst_free(&rt->dst);
4625 }
4626 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004627 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004628
David S. Miller73a8bd72011-01-23 23:27:15 -08004629 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004630 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 break;
4632 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004633 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004634 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635}
4636
4637static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4638{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004639 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 if (likely(ifp->idev->dead == 0))
4641 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004642 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643}
4644
4645#ifdef CONFIG_SYSCTL
4646
4647static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004648int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 void __user *buffer, size_t *lenp, loff_t *ppos)
4650{
4651 int *valp = ctl->data;
4652 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004653 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004654 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 int ret;
4656
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004657 /*
4658 * ctl->data points to idev->cnf.forwarding, we should
4659 * not modify it until we get the rtnl lock.
4660 */
4661 lctl = *ctl;
4662 lctl.data = &val;
4663
4664 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004666 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004667 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004668 if (ret)
4669 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004670 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671}
4672
Brian Haley56d417b2009-06-01 03:07:33 -07004673static void dev_disable_change(struct inet6_dev *idev)
4674{
Cong Wang75538c22013-05-29 11:30:50 +08004675 struct netdev_notifier_info info;
4676
Brian Haley56d417b2009-06-01 03:07:33 -07004677 if (!idev || !idev->dev)
4678 return;
4679
Cong Wang75538c22013-05-29 11:30:50 +08004680 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004681 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004682 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004683 else
Cong Wang75538c22013-05-29 11:30:50 +08004684 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004685}
4686
4687static void addrconf_disable_change(struct net *net, __s32 newf)
4688{
4689 struct net_device *dev;
4690 struct inet6_dev *idev;
4691
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004692 rcu_read_lock();
4693 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004694 idev = __in6_dev_get(dev);
4695 if (idev) {
4696 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4697 idev->cnf.disable_ipv6 = newf;
4698 if (changed)
4699 dev_disable_change(idev);
4700 }
Brian Haley56d417b2009-06-01 03:07:33 -07004701 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004702 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004703}
4704
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004705static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004706{
4707 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004708 int old;
4709
4710 if (!rtnl_trylock())
4711 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004712
4713 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004714 old = *p;
4715 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004716
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004717 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4718 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004719 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004720 }
Brian Haley56d417b2009-06-01 03:07:33 -07004721
4722 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004723 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4724 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004725 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004726 dev_disable_change((struct inet6_dev *)table->extra1);
4727
4728 rtnl_unlock();
4729 return 0;
4730}
4731
4732static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004733int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004734 void __user *buffer, size_t *lenp, loff_t *ppos)
4735{
4736 int *valp = ctl->data;
4737 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004738 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004739 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004740 int ret;
4741
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004742 /*
4743 * ctl->data points to idev->cnf.disable_ipv6, we should
4744 * not modify it until we get the rtnl lock.
4745 */
4746 lctl = *ctl;
4747 lctl.data = &val;
4748
4749 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004750
4751 if (write)
4752 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004753 if (ret)
4754 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004755 return ret;
4756}
4757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758static struct addrconf_sysctl_table
4759{
4760 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004761 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004762} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 .sysctl_header = NULL,
4764 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004765 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004766 .procname = "forwarding",
4767 .data = &ipv6_devconf.forwarding,
4768 .maxlen = sizeof(int),
4769 .mode = 0644,
4770 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 },
4772 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004773 .procname = "hop_limit",
4774 .data = &ipv6_devconf.hop_limit,
4775 .maxlen = sizeof(int),
4776 .mode = 0644,
4777 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 },
4779 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004780 .procname = "mtu",
4781 .data = &ipv6_devconf.mtu6,
4782 .maxlen = sizeof(int),
4783 .mode = 0644,
4784 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 },
4786 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004787 .procname = "accept_ra",
4788 .data = &ipv6_devconf.accept_ra,
4789 .maxlen = sizeof(int),
4790 .mode = 0644,
4791 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 },
4793 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004794 .procname = "accept_redirects",
4795 .data = &ipv6_devconf.accept_redirects,
4796 .maxlen = sizeof(int),
4797 .mode = 0644,
4798 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 },
4800 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004801 .procname = "autoconf",
4802 .data = &ipv6_devconf.autoconf,
4803 .maxlen = sizeof(int),
4804 .mode = 0644,
4805 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 },
4807 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004808 .procname = "dad_transmits",
4809 .data = &ipv6_devconf.dad_transmits,
4810 .maxlen = sizeof(int),
4811 .mode = 0644,
4812 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 },
4814 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004815 .procname = "router_solicitations",
4816 .data = &ipv6_devconf.rtr_solicits,
4817 .maxlen = sizeof(int),
4818 .mode = 0644,
4819 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 },
4821 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004822 .procname = "router_solicitation_interval",
4823 .data = &ipv6_devconf.rtr_solicit_interval,
4824 .maxlen = sizeof(int),
4825 .mode = 0644,
4826 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 },
4828 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004829 .procname = "router_solicitation_delay",
4830 .data = &ipv6_devconf.rtr_solicit_delay,
4831 .maxlen = sizeof(int),
4832 .mode = 0644,
4833 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 },
4835 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004836 .procname = "force_mld_version",
4837 .data = &ipv6_devconf.force_mld_version,
4838 .maxlen = sizeof(int),
4839 .mode = 0644,
4840 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004842 {
4843 .procname = "mldv1_unsolicited_report_interval",
4844 .data =
4845 &ipv6_devconf.mldv1_unsolicited_report_interval,
4846 .maxlen = sizeof(int),
4847 .mode = 0644,
4848 .proc_handler = proc_dointvec_ms_jiffies,
4849 },
4850 {
4851 .procname = "mldv2_unsolicited_report_interval",
4852 .data =
4853 &ipv6_devconf.mldv2_unsolicited_report_interval,
4854 .maxlen = sizeof(int),
4855 .mode = 0644,
4856 .proc_handler = proc_dointvec_ms_jiffies,
4857 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858#ifdef CONFIG_IPV6_PRIVACY
4859 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004860 .procname = "use_tempaddr",
4861 .data = &ipv6_devconf.use_tempaddr,
4862 .maxlen = sizeof(int),
4863 .mode = 0644,
4864 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 },
4866 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004867 .procname = "temp_valid_lft",
4868 .data = &ipv6_devconf.temp_valid_lft,
4869 .maxlen = sizeof(int),
4870 .mode = 0644,
4871 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 },
4873 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004874 .procname = "temp_prefered_lft",
4875 .data = &ipv6_devconf.temp_prefered_lft,
4876 .maxlen = sizeof(int),
4877 .mode = 0644,
4878 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 },
4880 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004881 .procname = "regen_max_retry",
4882 .data = &ipv6_devconf.regen_max_retry,
4883 .maxlen = sizeof(int),
4884 .mode = 0644,
4885 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 },
4887 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004888 .procname = "max_desync_factor",
4889 .data = &ipv6_devconf.max_desync_factor,
4890 .maxlen = sizeof(int),
4891 .mode = 0644,
4892 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 },
4894#endif
4895 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004896 .procname = "max_addresses",
4897 .data = &ipv6_devconf.max_addresses,
4898 .maxlen = sizeof(int),
4899 .mode = 0644,
4900 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 },
4902 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004903 .procname = "accept_ra_defrtr",
4904 .data = &ipv6_devconf.accept_ra_defrtr,
4905 .maxlen = sizeof(int),
4906 .mode = 0644,
4907 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004908 },
4909 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004910 .procname = "accept_ra_pinfo",
4911 .data = &ipv6_devconf.accept_ra_pinfo,
4912 .maxlen = sizeof(int),
4913 .mode = 0644,
4914 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004915 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004916#ifdef CONFIG_IPV6_ROUTER_PREF
4917 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004918 .procname = "accept_ra_rtr_pref",
4919 .data = &ipv6_devconf.accept_ra_rtr_pref,
4920 .maxlen = sizeof(int),
4921 .mode = 0644,
4922 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004923 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004924 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004925 .procname = "router_probe_interval",
4926 .data = &ipv6_devconf.rtr_probe_interval,
4927 .maxlen = sizeof(int),
4928 .mode = 0644,
4929 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004930 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004931#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004932 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004933 .procname = "accept_ra_rt_info_max_plen",
4934 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4935 .maxlen = sizeof(int),
4936 .mode = 0644,
4937 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004938 },
4939#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004940#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004941 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004942 .procname = "proxy_ndp",
4943 .data = &ipv6_devconf.proxy_ndp,
4944 .maxlen = sizeof(int),
4945 .mode = 0644,
4946 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004947 },
4948 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004949 .procname = "accept_source_route",
4950 .data = &ipv6_devconf.accept_source_route,
4951 .maxlen = sizeof(int),
4952 .mode = 0644,
4953 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004954 },
Neil Horman95c385b2007-04-25 17:08:10 -07004955#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4956 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004957 .procname = "optimistic_dad",
4958 .data = &ipv6_devconf.optimistic_dad,
4959 .maxlen = sizeof(int),
4960 .mode = 0644,
4961 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004962
4963 },
4964#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004965#ifdef CONFIG_IPV6_MROUTE
4966 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004967 .procname = "mc_forwarding",
4968 .data = &ipv6_devconf.mc_forwarding,
4969 .maxlen = sizeof(int),
4970 .mode = 0444,
4971 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004972 },
4973#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004974 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004975 .procname = "disable_ipv6",
4976 .data = &ipv6_devconf.disable_ipv6,
4977 .maxlen = sizeof(int),
4978 .mode = 0644,
4979 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004980 },
4981 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004982 .procname = "accept_dad",
4983 .data = &ipv6_devconf.accept_dad,
4984 .maxlen = sizeof(int),
4985 .mode = 0644,
4986 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004987 },
4988 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004989 .procname = "force_tllao",
4990 .data = &ipv6_devconf.force_tllao,
4991 .maxlen = sizeof(int),
4992 .mode = 0644,
4993 .proc_handler = proc_dointvec
4994 },
4995 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004996 .procname = "ndisc_notify",
4997 .data = &ipv6_devconf.ndisc_notify,
4998 .maxlen = sizeof(int),
4999 .mode = 0644,
5000 .proc_handler = proc_dointvec
5001 },
5002 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005003 .procname = "suppress_frag_ndisc",
5004 .data = &ipv6_devconf.suppress_frag_ndisc,
5005 .maxlen = sizeof(int),
5006 .mode = 0644,
5007 .proc_handler = proc_dointvec
5008 },
5009 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005010 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 }
5012 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013};
5014
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005015static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005016 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017{
5018 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005020 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005021
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005022 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005024 goto out;
5025
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005026 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005027 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005029 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Eric W. Biederman6105e292012-04-19 13:41:24 +00005032 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
Eric W. Biederman6105e292012-04-19 13:41:24 +00005034 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005036 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005037
5038 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005039 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005041free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005043out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005044 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045}
5046
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005047static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5048{
5049 struct addrconf_sysctl_table *t;
5050
5051 if (p->sysctl == NULL)
5052 return;
5053
5054 t = p->sysctl;
5055 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005056 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005057 kfree(t);
5058}
5059
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005060static void addrconf_sysctl_register(struct inet6_dev *idev)
5061{
Eric W. Biederman54716e32010-02-14 03:27:03 +00005062 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005063 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005064 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005065 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005066}
5067
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005068static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005070 __addrconf_sysctl_unregister(&idev->cnf);
5071 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072}
5073
5074
5075#endif
5076
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005077static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005078{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005079 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005080 struct ipv6_devconf *all, *dflt;
5081
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005082 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5083 if (all == NULL)
5084 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005085
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005086 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5087 if (dflt == NULL)
5088 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005089
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005090 /* these will be inherited by all namespaces */
5091 dflt->autoconf = ipv6_defaults.autoconf;
5092 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005093
5094 net->ipv6.devconf_all = all;
5095 net->ipv6.devconf_dflt = dflt;
5096
5097#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005098 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005099 if (err < 0)
5100 goto err_reg_all;
5101
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005102 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005103 if (err < 0)
5104 goto err_reg_dflt;
5105#endif
5106 return 0;
5107
5108#ifdef CONFIG_SYSCTL
5109err_reg_dflt:
5110 __addrconf_sysctl_unregister(all);
5111err_reg_all:
5112 kfree(dflt);
5113#endif
5114err_alloc_dflt:
5115 kfree(all);
5116err_alloc_all:
5117 return err;
5118}
5119
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005120static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005121{
5122#ifdef CONFIG_SYSCTL
5123 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5124 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5125#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005126 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005127 kfree(net->ipv6.devconf_dflt);
5128 kfree(net->ipv6.devconf_all);
5129 }
5130}
5131
5132static struct pernet_operations addrconf_ops = {
5133 .init = addrconf_init_net,
5134 .exit = addrconf_exit_net,
5135};
5136
Thomas Grafb382b192010-11-16 04:33:57 +00005137static struct rtnl_af_ops inet6_ops = {
5138 .family = AF_INET6,
5139 .fill_link_af = inet6_fill_link_af,
5140 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005141 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005142};
5143
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144/*
5145 * Init / cleanup code
5146 */
5147
5148int __init addrconf_init(void)
5149{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005150 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005151
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005152 err = ipv6_addr_label_init();
5153 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005154 pr_crit("%s: cannot initialize default policy table: %d\n",
5155 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005156 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005159 err = register_pernet_subsys(&addrconf_ops);
5160 if (err < 0)
5161 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005162
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 /* The addrconf netdev notifier requires that loopback_dev
5164 * has it's ipv6 private information allocated and setup
5165 * before it can bring up and give link-local addresses
5166 * to other devices which are up.
5167 *
5168 * Unfortunately, loopback_dev is not necessarily the first
5169 * entry in the global dev_base list of net devices. In fact,
5170 * it is likely to be the very last entry on that list.
5171 * So this causes the notifier registry below to try and
5172 * give link-local addresses to all devices besides loopback_dev
5173 * first, then loopback_dev, which cases all the non-loopback_dev
5174 * devices to fail to get a link-local address.
5175 *
5176 * So, as a temporary fix, allocate the ipv6 structure for
5177 * loopback_dev first by hand.
5178 * Longer term, all of the dependencies ipv6 has upon the loopback
5179 * device and it being up should be removed.
5180 */
5181 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005182 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 err = -ENOMEM;
5184 rtnl_unlock();
5185 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005186 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
stephen hemmingerc2e21292010-03-17 20:31:10 +00005188 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5189 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5190
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 register_netdevice_notifier(&ipv6_dev_notf);
5192
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005194
Thomas Grafb382b192010-11-16 04:33:57 +00005195 err = rtnl_af_register(&inet6_ops);
5196 if (err < 0)
5197 goto errout_af;
5198
Greg Rosec7ac8672011-06-10 01:27:09 +00005199 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5200 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005201 if (err < 0)
5202 goto errout;
5203
5204 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005205 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5206 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5207 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5208 inet6_dump_ifaddr, NULL);
5209 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5210 inet6_dump_ifmcaddr, NULL);
5211 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5212 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005213 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005214 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005215
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005216 ipv6_addr_label_rtnl_register();
5217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005219errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005220 rtnl_af_unregister(&inet6_ops);
5221errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005222 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005223errlo:
5224 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005225out_addrlabel:
5226 ipv6_addr_label_cleanup();
5227out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005228 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229}
5230
Daniel Lezcano09f77092007-12-13 05:34:58 -08005231void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005233 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 int i;
5235
5236 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005237 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005238 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239
5240 rtnl_lock();
5241
Thomas Grafb382b192010-11-16 04:33:57 +00005242 __rtnl_af_unregister(&inet6_ops);
5243
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005244 /* clean dev list */
5245 for_each_netdev(&init_net, dev) {
5246 if (__in6_dev_get(dev) == NULL)
5247 continue;
5248 addrconf_ifdown(dev, 1);
5249 }
5250 addrconf_ifdown(init_net.loopback_dev, 2);
5251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 * Check hash table.
5254 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005255 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005256 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5257 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005258 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
5260 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262}