blob: ea8a475fa8c5d4356a90338339c064d886c9e701 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/*
16 * Changes:
17 *
18 * Janos Farkas : delete timer on ifdown
19 * <chexum@bankinf.banki.hu>
20 * Andi Kleen : kill double kfree on module
21 * unload.
22 * Maciej W. Rozycki : FDDI support
23 * sekiya@USAGI : Don't send too many RS
24 * packets.
25 * yoshfuji@USAGI : Fixed interval between DAD
26 * packets.
27 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
28 * address validation timer.
29 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
30 * support.
31 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
32 * address on a same interface.
33 * YOSHIFUJI Hideaki @USAGI : ARCnet support
34 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
35 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080036 * YOSHIFUJI Hideaki @USAGI : improved source address
37 * selection; consider scope,
38 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Joe Perchesf3213832012-05-15 14:11:53 +000041#define pr_fmt(fmt) "IPv6: " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070045#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/socket.h>
47#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/net.h>
49#include <linux/in6.h>
50#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070051#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/if_arp.h>
53#include <linux/if_arcnet.h>
54#include <linux/if_infiniband.h>
55#include <linux/route.h>
56#include <linux/inetdevice.h>
57#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090058#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifdef CONFIG_SYSCTL
60#include <linux/sysctl.h>
61#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/delay.h>
64#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070065#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000066#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020068#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <net/sock.h>
70#include <net/snmp.h>
71
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +000072#include <net/af_ieee802154.h>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000073#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <net/ipv6.h>
75#include <net/protocol.h>
76#include <net/ndisc.h>
77#include <net/ip6_route.h>
78#include <net/addrconf.h>
79#include <net/tcp.h>
80#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070081#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070082#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/if_tunnel.h>
84#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000085#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <linux/random.h>
Stephen Hemmingere21e8462010-03-20 16:09:01 -070087#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070088#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90#include <linux/proc_fs.h>
91#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040092#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/* Set to 3 to get tracing... */
95#define ACONF_DEBUG 2
96
97#if ACONF_DEBUG >= 3
dingtianhongba3542e2013-08-17 10:27:04 +080098#define ADBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#else
dingtianhongba3542e2013-08-17 10:27:04 +0800100#define ADBG(fmt, ...) do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
103#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000104
105static inline u32 cstamp_delta(unsigned long cstamp)
106{
107 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100111static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800112static void addrconf_sysctl_unregister(struct inet6_dev *idev);
113#else
114static inline void addrconf_sysctl_register(struct inet6_dev *idev)
115{
116}
117
118static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
119{
120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif
122
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000123static void __ipv6_regen_rndid(struct inet6_dev *idev);
124static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900127static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int ipv6_count_addresses(struct inet6_dev *idev);
129
130/*
131 * Configured unicast address hash table
132 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000133static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578aed2010-03-17 20:31:11 +0000134static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static void addrconf_verify(unsigned long);
137
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700138static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static DEFINE_SPINLOCK(addrconf_verify_lock);
140
141static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
142static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
143
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000144static void addrconf_type_change(struct net_device *dev,
145 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int addrconf_ifdown(struct net_device *dev, int how);
147
Romain Kuntz21caa662013-01-09 21:06:03 +0000148static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
149 int plen,
150 const struct net_device *dev,
151 u32 flags, u32 noflags);
152
David S. Millercf22f9a2012-04-14 21:37:40 -0400153static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void addrconf_dad_timer(unsigned long data);
155static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900156static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void addrconf_rs_timer(unsigned long data);
158static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
159static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
160
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900161static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700163static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
164 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Adrian Bunk888c8482008-07-22 14:21:58 -0700166static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .forwarding = 0,
168 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
169 .mtu6 = IPV6_MIN_MTU,
170 .accept_ra = 1,
171 .accept_redirects = 1,
172 .autoconf = 1,
173 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200174 .mldv1_unsolicited_report_interval = 10 * HZ,
175 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .dad_transmits = 1,
177 .rtr_solicits = MAX_RTR_SOLICITATIONS,
178 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
179 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .use_tempaddr = 0,
181 .temp_valid_lft = TEMP_VALID_LIFETIME,
182 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
183 .regen_max_retry = REGEN_MAX_RETRY,
184 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800186 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800187 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800188#ifdef CONFIG_IPV6_ROUTER_PREF
189 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800190 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800191#ifdef CONFIG_IPV6_ROUTE_INFO
192 .accept_ra_rt_info_max_plen = 0,
193#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800194#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700195 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700196 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900197 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900198 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200199 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Brian Haleyab32ea52006-09-22 14:15:41 -0700202static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .forwarding = 0,
204 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
205 .mtu6 = IPV6_MIN_MTU,
206 .accept_ra = 1,
207 .accept_redirects = 1,
208 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200209 .force_mld_version = 0,
210 .mldv1_unsolicited_report_interval = 10 * HZ,
211 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .dad_transmits = 1,
213 .rtr_solicits = MAX_RTR_SOLICITATIONS,
214 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
215 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .use_tempaddr = 0,
217 .temp_valid_lft = TEMP_VALID_LIFETIME,
218 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
219 .regen_max_retry = REGEN_MAX_RETRY,
220 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800222 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800223 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800224#ifdef CONFIG_IPV6_ROUTER_PREF
225 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800226 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800227#ifdef CONFIG_IPV6_ROUTE_INFO
228 .accept_ra_rt_info_max_plen = 0,
229#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800230#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700231 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700232 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900233 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900234 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200235 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700238/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700239static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700240{
David S. Miller05297942008-07-08 23:01:27 -0700241 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700242}
243
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200244static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200246 if (del_timer(&idev->rs_timer))
247 __in6_dev_put(idev);
248}
249
250static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
251{
252 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 __in6_ifa_put(ifp);
254}
255
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200256static void addrconf_mod_rs_timer(struct inet6_dev *idev,
257 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200259 if (!timer_pending(&idev->rs_timer))
260 in6_dev_hold(idev);
261 mod_timer(&idev->rs_timer, jiffies + when);
262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200264static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
265 unsigned long when)
266{
267 if (!timer_pending(&ifp->dad_timer))
268 in6_ifa_hold(ifp);
269 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700272static int snmp6_alloc_dev(struct inet6_dev *idev)
273{
John Stultz827da442013-10-07 15:51:58 -0700274 int i;
275
Tejun Heo7d720c32010-02-16 15:20:26 +0000276 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000277 sizeof(struct ipstats_mib),
278 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700279 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700280
281 for_each_possible_cpu(i) {
282 struct ipstats_mib *addrconf_stats;
283 addrconf_stats = per_cpu_ptr(idev->stats.ipv6[0], i);
284 u64_stats_init(&addrconf_stats->syncp);
285#if SNMP_ARRAY_SZ == 2
286 addrconf_stats = per_cpu_ptr(idev->stats.ipv6[1], i);
287 u64_stats_init(&addrconf_stats->syncp);
288#endif
289 }
290
291
Eric Dumazetbe281e52011-05-19 01:14:23 +0000292 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
293 GFP_KERNEL);
294 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700295 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000296 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
297 GFP_KERNEL);
298 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700299 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700300
301 return 0;
302
David L Stevens14878f72007-09-16 16:52:35 -0700303err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000304 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000306 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700307err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700308 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700309}
310
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000311static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 struct inet6_dev *ndev;
314
315 ASSERT_RTNL();
316
317 if (dev->mtu < IPV6_MIN_MTU)
318 return NULL;
319
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900320 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900322 if (ndev == NULL)
323 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Ingo Oeser322f74a2006-03-20 23:01:47 -0800325 rwlock_init(&ndev->lock);
326 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000327 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200328 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
329 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900330 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800331 ndev->cnf.mtu6 = dev->mtu;
332 ndev->cnf.sysctl = NULL;
333 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
334 if (ndev->nd_parms == NULL) {
335 kfree(ndev);
336 return NULL;
337 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700338 if (ndev->cnf.forwarding)
339 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800340 /* We refer to the device */
341 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Ingo Oeser322f74a2006-03-20 23:01:47 -0800343 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800344 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000345 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800346 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800347 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400348 dev_put(dev);
349 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800350 return NULL;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Ingo Oeser322f74a2006-03-20 23:01:47 -0800353 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800354 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000355 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800356 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800357 neigh_parms_release(&nd_tbl, ndev->nd_parms);
358 ndev->dead = 1;
359 in6_dev_finish_destroy(ndev);
360 return NULL;
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Ingo Oeser322f74a2006-03-20 23:01:47 -0800363 /* One reference from device. We must do this before
364 * we invoke __ipv6_regen_rndid().
365 */
366 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900368 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
369 ndev->cnf.accept_dad = -1;
370
Amerigo Wang07a93622012-10-29 16:23:10 +0000371#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700372 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000373 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700374 ndev->cnf.rtr_solicits = 0;
375 }
376#endif
377
stephen hemminger372e6c82010-03-17 20:31:09 +0000378 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800379 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800380 if ((dev->flags&IFF_LOOPBACK) ||
381 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700382 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700383 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700384 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800385 ndev->cnf.use_tempaddr = -1;
386 } else {
387 in6_dev_hold(ndev);
388 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
David S. Miller5d9efa72013-10-28 20:07:50 -0400390
Daniel Borkmann914faa12013-04-09 03:47:14 +0000391 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800392
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700393 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700394 ndev->if_flags |= IF_READY;
395
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 ipv6_mc_init_dev(ndev);
397 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100398 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800399 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000400 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800401
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000402 /* Join interface-local all-node multicast group */
403 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
404
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800405 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900406 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800407
Li Weid6ddef92012-03-05 14:45:17 +0000408 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000409 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000410 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ndev;
413}
414
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000415static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct inet6_dev *idev;
418
419 ASSERT_RTNL();
420
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700421 idev = __in6_dev_get(dev);
422 if (!idev) {
423 idev = ipv6_add_dev(dev);
424 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return NULL;
426 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (dev->flags&IFF_UP)
429 ipv6_mc_up(idev);
430 return idev;
431}
432
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000433static int inet6_netconf_msgsize_devconf(int type)
434{
435 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
436 + nla_total_size(4); /* NETCONFA_IFINDEX */
437
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000438 /* type -1 is used for ALL */
439 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000440 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500441#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000442 if (type == -1 || type == NETCONFA_MC_FORWARDING)
443 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500444#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000445
446 return size;
447}
448
449static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
450 struct ipv6_devconf *devconf, u32 portid,
451 u32 seq, int event, unsigned int flags,
452 int type)
453{
454 struct nlmsghdr *nlh;
455 struct netconfmsg *ncm;
456
457 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
458 flags);
459 if (nlh == NULL)
460 return -EMSGSIZE;
461
462 ncm = nlmsg_data(nlh);
463 ncm->ncm_family = AF_INET6;
464
465 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
466 goto nla_put_failure;
467
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000468 /* type -1 is used for ALL */
469 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000470 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
471 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500472#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000473 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
474 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
475 devconf->mc_forwarding) < 0)
476 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500477#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000478 return nlmsg_end(skb, nlh);
479
480nla_put_failure:
481 nlmsg_cancel(skb, nlh);
482 return -EMSGSIZE;
483}
484
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000485void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
486 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000487{
488 struct sk_buff *skb;
489 int err = -ENOBUFS;
490
491 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
492 if (skb == NULL)
493 goto errout;
494
495 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
496 RTM_NEWNETCONF, 0, type);
497 if (err < 0) {
498 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
499 WARN_ON(err == -EMSGSIZE);
500 kfree_skb(skb);
501 goto errout;
502 }
503 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
504 return;
505errout:
Cong Dingbd779022012-12-18 12:08:56 +0000506 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000507}
508
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000509static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
510 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
511 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
512};
513
514static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000515 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000516{
517 struct net *net = sock_net(in_skb->sk);
518 struct nlattr *tb[NETCONFA_MAX+1];
519 struct netconfmsg *ncm;
520 struct sk_buff *skb;
521 struct ipv6_devconf *devconf;
522 struct inet6_dev *in6_dev;
523 struct net_device *dev;
524 int ifindex;
525 int err;
526
527 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
528 devconf_ipv6_policy);
529 if (err < 0)
530 goto errout;
531
532 err = EINVAL;
533 if (!tb[NETCONFA_IFINDEX])
534 goto errout;
535
536 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
537 switch (ifindex) {
538 case NETCONFA_IFINDEX_ALL:
539 devconf = net->ipv6.devconf_all;
540 break;
541 case NETCONFA_IFINDEX_DEFAULT:
542 devconf = net->ipv6.devconf_dflt;
543 break;
544 default:
545 dev = __dev_get_by_index(net, ifindex);
546 if (dev == NULL)
547 goto errout;
548 in6_dev = __in6_dev_get(dev);
549 if (in6_dev == NULL)
550 goto errout;
551 devconf = &in6_dev->cnf;
552 break;
553 }
554
555 err = -ENOBUFS;
556 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
557 if (skb == NULL)
558 goto errout;
559
560 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
561 NETLINK_CB(in_skb).portid,
562 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
563 -1);
564 if (err < 0) {
565 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
566 WARN_ON(err == -EMSGSIZE);
567 kfree_skb(skb);
568 goto errout;
569 }
570 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
571errout:
572 return err;
573}
574
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000575static int inet6_netconf_dump_devconf(struct sk_buff *skb,
576 struct netlink_callback *cb)
577{
578 struct net *net = sock_net(skb->sk);
579 int h, s_h;
580 int idx, s_idx;
581 struct net_device *dev;
582 struct inet6_dev *idev;
583 struct hlist_head *head;
584
585 s_h = cb->args[0];
586 s_idx = idx = cb->args[1];
587
588 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
589 idx = 0;
590 head = &net->dev_index_head[h];
591 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000592 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
593 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000594 hlist_for_each_entry_rcu(dev, head, index_hlist) {
595 if (idx < s_idx)
596 goto cont;
597 idev = __in6_dev_get(dev);
598 if (!idev)
599 goto cont;
600
601 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
602 &idev->cnf,
603 NETLINK_CB(cb->skb).portid,
604 cb->nlh->nlmsg_seq,
605 RTM_NEWNETCONF,
606 NLM_F_MULTI,
607 -1) <= 0) {
608 rcu_read_unlock();
609 goto done;
610 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000611 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000612cont:
613 idx++;
614 }
615 rcu_read_unlock();
616 }
617 if (h == NETDEV_HASHENTRIES) {
618 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
619 net->ipv6.devconf_all,
620 NETLINK_CB(cb->skb).portid,
621 cb->nlh->nlmsg_seq,
622 RTM_NEWNETCONF, NLM_F_MULTI,
623 -1) <= 0)
624 goto done;
625 else
626 h++;
627 }
628 if (h == NETDEV_HASHENTRIES + 1) {
629 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
630 net->ipv6.devconf_dflt,
631 NETLINK_CB(cb->skb).portid,
632 cb->nlh->nlmsg_seq,
633 RTM_NEWNETCONF, NLM_F_MULTI,
634 -1) <= 0)
635 goto done;
636 else
637 h++;
638 }
639done:
640 cb->args[0] = h;
641 cb->args[1] = idx;
642
643 return skb->len;
644}
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646#ifdef CONFIG_SYSCTL
647static void dev_forward_change(struct inet6_dev *idev)
648{
649 struct net_device *dev;
650 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (!idev)
653 return;
654 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700655 if (idev->cnf.forwarding)
656 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000657 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000658 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900659 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000660 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
661 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
662 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900663 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000664 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
665 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000668
669 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800670 if (ifa->flags&IFA_F_TENTATIVE)
671 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (idev->cnf.forwarding)
673 addrconf_join_anycast(ifa);
674 else
675 addrconf_leave_anycast(ifa);
676 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000677 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
678 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681
Pavel Emelyanove1869322008-01-10 17:43:50 -0800682static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct net_device *dev;
685 struct inet6_dev *idev;
686
Ben Hutchings4acd4942012-08-14 08:54:51 +0000687 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 idev = __in6_dev_get(dev);
689 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800690 int changed = (!idev->cnf.forwarding) ^ (!newf);
691 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (changed)
693 dev_forward_change(idev);
694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800697
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000698static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800699{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800700 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000701 int old;
702
703 if (!rtnl_trylock())
704 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800705
706 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000707 old = *p;
708 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800709
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000710 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000711 if ((!newf) ^ (!old))
712 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
713 NETCONFA_IFINDEX_DEFAULT,
714 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000715 rtnl_unlock();
716 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000717 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000718
Pavel Emelyanove1869322008-01-10 17:43:50 -0800719 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800720 net->ipv6.devconf_dflt->forwarding = newf;
721 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000722 if ((!newf) ^ (!old))
723 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
724 NETCONFA_IFINDEX_ALL,
725 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000726 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800727 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700728 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800729
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000730 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800731 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000732 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800733}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#endif
735
stephen hemminger5c578aed2010-03-17 20:31:11 +0000736/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
738{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000739 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000742 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743#endif
744
745 in6_dev_put(ifp->idev);
746
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200747 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700748 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Herbert Xue9d3e082010-05-18 15:36:06 -0700750 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000751 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return;
753 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000754 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Lai Jiangshane5785982011-03-15 18:00:14 +0800756 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Brian Haleye55ffac2006-07-10 15:25:51 -0700759static void
760ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
761{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000762 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700763 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700764
765 /*
766 * Each device address list is sorted in order of scope -
767 * global before linklocal.
768 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000769 list_for_each(p, &idev->addr_list) {
770 struct inet6_ifaddr *ifa
771 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700772 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700773 break;
774 }
775
David S. Millerb54c9b92010-03-25 21:25:30 -0700776 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700777}
778
Eric Dumazetddbe5032012-07-18 08:11:12 +0000779static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900780{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000781 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784/* On success it returns ifp with increased reference count */
785
786static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200787ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
788 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200789 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 struct inet6_ifaddr *ifa = NULL;
792 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000793 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900795 int addr_type = ipv6_addr_type(addr);
796
797 if (addr_type == IPV6_ADDR_ANY ||
798 addr_type & IPV6_ADDR_MULTICAST ||
799 (!(idev->dev->flags & IFF_LOOPBACK) &&
800 addr_type & IPV6_ADDR_LOOPBACK))
801 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700803 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (idev->dead) {
805 err = -ENODEV; /*XXX*/
806 goto out2;
807 }
808
Brian Haley56d417b2009-06-01 03:07:33 -0700809 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700810 err = -EACCES;
811 goto out2;
812 }
813
stephen hemminger5c578aed2010-03-17 20:31:11 +0000814 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900817 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800818 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 err = -EEXIST;
820 goto out;
821 }
822
Ingo Oeser322f74a2006-03-20 23:01:47 -0800823 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800826 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 err = -ENOBUFS;
828 goto out;
829 }
830
David S. Miller8f031512011-12-06 16:48:14 -0500831 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (IS_ERR(rt)) {
833 err = PTR_ERR(rt);
834 goto out;
835 }
836
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000837 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200838 if (peer_addr)
839 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700842 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200843 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
844 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000845 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 ifa->scope = scope;
847 ifa->prefix_len = pfxlen;
848 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200849 ifa->valid_lft = valid_lft;
850 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000852 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Keir Fraser57f5f542006-08-29 02:43:49 -0700854 ifa->rt = rt;
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 ifa->idev = idev;
857 in6_dev_hold(idev);
858 /* For caller */
859 in6_ifa_hold(ifa);
860
861 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000862 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
stephen hemminger5c578aed2010-03-17 20:31:11 +0000864 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000865 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 write_lock(&idev->lock);
868 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700869 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000872 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 in6_ifa_hold(ifa);
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 in6_ifa_hold(ifa);
877 write_unlock(&idev->lock);
878out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700879 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700881 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800882 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 else {
884 kfree(ifa);
885 ifa = ERR_PTR(err);
886 }
887
888 return ifa;
889out:
stephen hemminger5c578aed2010-03-17 20:31:11 +0000890 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 goto out2;
892}
893
894/* This function wants to get referenced ifp and releases it before return */
895
896static void ipv6_del_addr(struct inet6_ifaddr *ifp)
897{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000898 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700900 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 int deleted = 0, onlink = 0;
902 unsigned long expires = jiffies;
903
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700904 spin_lock_bh(&ifp->state_lock);
905 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700906 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700907 spin_unlock_bh(&ifp->state_lock);
908
909 if (state == INET6_IFADDR_STATE_DEAD)
910 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
stephen hemminger5c578aed2010-03-17 20:31:11 +0000912 spin_lock_bh(&addrconf_hash_lock);
913 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000914 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 write_lock_bh(&idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -0400917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000919 list_del(&ifp->tmp_list);
920 if (ifp->ifpub) {
921 in6_ifa_put(ifp->ifpub);
922 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000924 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
stephen hemminger502a2ff2010-03-17 20:31:13 +0000927 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000929 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
933 break;
934 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800935 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 } else if (ifp->flags & IFA_F_PERMANENT) {
937 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
938 ifp->prefix_len)) {
939 if (ifa->flags & IFA_F_PERMANENT) {
940 onlink = 1;
941 if (deleted)
942 break;
943 } else {
944 unsigned long lifetime;
945
946 if (!onlink)
947 onlink = -1;
948
949 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900950
951 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
952 /*
953 * Note: Because this address is
954 * not permanent, lifetime <
955 * LONG_MAX / HZ here.
956 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (time_before(expires,
958 ifa->tstamp + lifetime * HZ))
959 expires = ifa->tstamp + lifetime * HZ;
960 spin_unlock(&ifa->lock);
961 }
962 }
963 }
964 }
965 write_unlock_bh(&idev->lock);
966
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200967 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 ipv6_ifa_notify(RTM_DELADDR, ifp);
970
Cong Wangf88c91d2013-04-14 23:18:43 +0800971 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /*
974 * Purge or update corresponding prefix
975 *
976 * 1) we don't purge prefix here if address was not permanent.
977 * prefix is managed by its own lifetime.
978 * 2) if there're no addresses, delete prefix.
979 * 3) if there're still other permanent address(es),
980 * corresponding prefix is still permanent.
981 * 4) otherwise, update prefix lifetime to the
982 * longest valid lifetime among the corresponding
983 * addresses on the device.
984 * Note: subsequent RA will update lifetime.
985 *
986 * --yoshfuji
987 */
988 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
989 struct in6_addr prefix;
990 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000992 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000993
Romain Kuntz21caa662013-01-09 21:06:03 +0000994 rt = addrconf_get_prefix_route(&prefix,
995 ifp->prefix_len,
996 ifp->idev->dev,
997 0, RTF_GATEWAY | RTF_DEFAULT);
998
999 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001001 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 rt = NULL;
1003 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001004 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001007 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
Daniel Walterc3968a82011-04-13 21:10:57 +00001010 /* clean up prefsrc entries */
1011 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001012out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 in6_ifa_put(ifp);
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1017{
1018 struct inet6_dev *idev = ifp->idev;
1019 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001020 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001021 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 int tmp_plen;
1023 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001024 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001025 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Jiri Pirko53bd6742013-12-06 09:45:22 +01001027 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (ift) {
1029 spin_lock_bh(&ift->lock);
1030 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1031 spin_unlock_bh(&ift->lock);
1032 tmpaddr = &addr;
1033 } else {
1034 tmpaddr = NULL;
1035 }
1036retry:
1037 in6_dev_hold(idev);
1038 if (idev->cnf.use_tempaddr <= 0) {
Jiri Pirko53bd6742013-12-06 09:45:22 +01001039 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001040 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 in6_dev_put(idev);
1042 ret = -1;
1043 goto out;
1044 }
1045 spin_lock_bh(&ifp->lock);
1046 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1047 idev->cnf.use_tempaddr = -1; /*XXX*/
1048 spin_unlock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01001049 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001050 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1051 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 in6_dev_put(idev);
1053 ret = -1;
1054 goto out;
1055 }
1056 in6_ifa_hold(ifp);
1057 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001058 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001060 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 tmp_valid_lft = min_t(__u32,
1062 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001063 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001064 tmp_prefered_lft = min_t(__u32,
1065 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001066 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001067 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 tmp_plen = ifp->prefix_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 tmp_tstamp = ifp->tstamp;
1070 spin_unlock_bh(&ifp->lock);
1071
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001072 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001073 idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01001074 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) / HZ;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001075 write_unlock_bh(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001076
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001077 /* A temporary address is created only if this calculated Preferred
1078 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1079 * an implementation must not create a temporary address with a zero
1080 * Preferred Lifetime.
1081 */
1082 if (tmp_prefered_lft <= regen_advance) {
1083 in6_ifa_put(ifp);
1084 in6_dev_put(idev);
1085 ret = -1;
1086 goto out;
1087 }
1088
Neil Horman95c385b2007-04-25 17:08:10 -07001089 addr_flags = IFA_F_TEMPORARY;
1090 /* set in addrconf_prefix_rcv() */
1091 if (ifp->flags & IFA_F_OPTIMISTIC)
1092 addr_flags |= IFA_F_OPTIMISTIC;
1093
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001094 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1095 ipv6_addr_scope(&addr), addr_flags,
1096 tmp_valid_lft, tmp_prefered_lft);
1097 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 in6_ifa_put(ifp);
1099 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001100 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 tmpaddr = &addr;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001102 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 goto retry;
1104 }
1105
1106 spin_lock_bh(&ift->lock);
1107 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001108 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 ift->tstamp = tmp_tstamp;
1110 spin_unlock_bh(&ift->lock);
1111
David S. Millercf22f9a2012-04-14 21:37:40 -04001112 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 in6_ifa_put(ift);
1114 in6_dev_put(idev);
1115out:
1116 return ret;
1117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001120 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001122enum {
1123 IPV6_SADDR_RULE_INIT = 0,
1124 IPV6_SADDR_RULE_LOCAL,
1125 IPV6_SADDR_RULE_SCOPE,
1126 IPV6_SADDR_RULE_PREFERRED,
1127#ifdef CONFIG_IPV6_MIP6
1128 IPV6_SADDR_RULE_HOA,
1129#endif
1130 IPV6_SADDR_RULE_OIF,
1131 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001132 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001133 IPV6_SADDR_RULE_ORCHID,
1134 IPV6_SADDR_RULE_PREFIX,
1135 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001136};
1137
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001138struct ipv6_saddr_score {
1139 int rule;
1140 int addr_type;
1141 struct inet6_ifaddr *ifa;
1142 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1143 int scopedist;
1144 int matchlen;
1145};
1146
1147struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001148 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001149 int ifindex;
1150 int scope;
1151 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001152 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001153};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001154
Dave Jonesb6f99a22007-03-22 12:27:49 -07001155static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001157 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001158 return 1;
1159 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Benjamin Thery3de23252008-05-28 14:51:24 +02001162static int ipv6_get_saddr_eval(struct net *net,
1163 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001164 struct ipv6_saddr_dst *dst,
1165 int i)
1166{
1167 int ret;
1168
1169 if (i <= score->rule) {
1170 switch (i) {
1171 case IPV6_SADDR_RULE_SCOPE:
1172 ret = score->scopedist;
1173 break;
1174 case IPV6_SADDR_RULE_PREFIX:
1175 ret = score->matchlen;
1176 break;
1177 default:
1178 ret = !!test_bit(i, score->scorebits);
1179 }
1180 goto out;
1181 }
1182
1183 switch (i) {
1184 case IPV6_SADDR_RULE_INIT:
1185 /* Rule 0: remember if hiscore is not ready yet */
1186 ret = !!score->ifa;
1187 break;
1188 case IPV6_SADDR_RULE_LOCAL:
1189 /* Rule 1: Prefer same address */
1190 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1191 break;
1192 case IPV6_SADDR_RULE_SCOPE:
1193 /* Rule 2: Prefer appropriate scope
1194 *
1195 * ret
1196 * ^
1197 * -1 | d 15
1198 * ---+--+-+---> scope
1199 * |
1200 * | d is scope of the destination.
1201 * B-d | \
1202 * | \ <- smaller scope is better if
1203 * B-15 | \ if scope is enough for destinaion.
1204 * | ret = B - scope (-1 <= scope >= d <= 15).
1205 * d-C-1 | /
1206 * |/ <- greater is better
1207 * -C / if scope is not enough for destination.
1208 * /| ret = scope - C (-1 <= d < scope <= 15).
1209 *
1210 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1211 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1212 * Assume B = 0 and we get C > 29.
1213 */
1214 ret = __ipv6_addr_src_scope(score->addr_type);
1215 if (ret >= dst->scope)
1216 ret = -ret;
1217 else
1218 ret -= 128; /* 30 is enough */
1219 score->scopedist = ret;
1220 break;
1221 case IPV6_SADDR_RULE_PREFERRED:
1222 /* Rule 3: Avoid deprecated and optimistic addresses */
1223 ret = ipv6_saddr_preferred(score->addr_type) ||
1224 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1225 break;
1226#ifdef CONFIG_IPV6_MIP6
1227 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001228 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001229 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001230 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1231 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001232 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001233 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001234#endif
1235 case IPV6_SADDR_RULE_OIF:
1236 /* Rule 5: Prefer outgoing interface */
1237 ret = (!dst->ifindex ||
1238 dst->ifindex == score->ifa->idev->dev->ifindex);
1239 break;
1240 case IPV6_SADDR_RULE_LABEL:
1241 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001242 ret = ipv6_addr_label(net,
1243 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001244 score->ifa->idev->dev->ifindex) == dst->label;
1245 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001246 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001247 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001248 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001249 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001250 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001251 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1252 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1253 score->ifa->idev->cnf.use_tempaddr >= 2;
1254 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001255 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001256 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001257 case IPV6_SADDR_RULE_ORCHID:
1258 /* Rule 8-: Prefer ORCHID vs ORCHID or
1259 * non-ORCHID vs non-ORCHID
1260 */
1261 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1262 ipv6_addr_orchid(dst->addr));
1263 break;
1264 case IPV6_SADDR_RULE_PREFIX:
1265 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001266 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1267 if (ret > score->ifa->prefix_len)
1268 ret = score->ifa->prefix_len;
1269 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001270 break;
1271 default:
1272 ret = 0;
1273 }
1274
1275 if (ret)
1276 __set_bit(i, score->scorebits);
1277 score->rule = i;
1278out:
1279 return ret;
1280}
1281
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001282int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001283 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001284 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001286 struct ipv6_saddr_score scores[2],
1287 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001288 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001289 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001290 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001292 dst_type = __ipv6_addr_type(daddr);
1293 dst.addr = daddr;
1294 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1295 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001296 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001297 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001298
1299 hiscore->rule = -1;
1300 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001302 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001303
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001304 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001305 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001306
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001307 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001308 * - multicast and link-local destination address,
1309 * the set of candidate source address MUST only
1310 * include addresses assigned to interfaces
1311 * belonging to the same link as the outgoing
1312 * interface.
1313 * (- For site-local destination addresses, the
1314 * set of candidate source addresses MUST only
1315 * include addresses assigned to interfaces
1316 * belonging to the same site as the outgoing
1317 * interface.)
1318 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001319 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1320 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1321 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001322 continue;
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001325 if (!idev)
1326 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001328 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001329 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001330 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001332 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001333 * - Tentative Address (RFC2462 section 5.4)
1334 * - A tentative address is not considered
1335 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001336 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001337 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001338 * - In any case, anycast addresses, multicast
1339 * addresses, and the unspecified address MUST
1340 * NOT be included in a candidate set.
1341 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001342 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1343 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001344 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001345
1346 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1347
1348 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1349 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001350 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001351 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001352 "assigned as unicast address on %s",
1353 dev->name);
1354 continue;
1355 }
1356
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001357 score->rule = -1;
1358 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001359
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001360 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1361 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001362
Benjamin Thery3de23252008-05-28 14:51:24 +02001363 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1364 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001365
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001366 if (minihiscore > miniscore) {
1367 if (i == IPV6_SADDR_RULE_SCOPE &&
1368 score->scopedist > 0) {
1369 /*
1370 * special case:
1371 * each remaining entry
1372 * has too small (not enough)
1373 * scope, because ifa entries
1374 * are sorted by their scope
1375 * values.
1376 */
1377 goto try_nextdev;
1378 }
1379 break;
1380 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001381 if (hiscore->ifa)
1382 in6_ifa_put(hiscore->ifa);
1383
1384 in6_ifa_hold(score->ifa);
1385
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001386 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001387
1388 /* restore our iterator */
1389 score->ifa = hiscore->ifa;
1390
1391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001394 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001395try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001396 read_unlock_bh(&idev->lock);
1397 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001398 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001400 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001401 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001402
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001403 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001404 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001407EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Amerigo Wang89657792013-06-29 21:30:49 +08001409int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001410 u32 banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001411{
1412 struct inet6_ifaddr *ifp;
1413 int err = -EADDRNOTAVAIL;
1414
1415 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1416 if (ifp->scope == IFA_LINK &&
1417 !(ifp->flags & banned_flags)) {
1418 *addr = ifp->addr;
1419 err = 0;
1420 break;
1421 }
1422 }
1423 return err;
1424}
1425
Neil Horman95c385b2007-04-25 17:08:10 -07001426int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001427 u32 banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
1429 struct inet6_dev *idev;
1430 int err = -EADDRNOTAVAIL;
1431
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001432 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001433 idev = __in6_dev_get(dev);
1434 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001436 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 read_unlock_bh(&idev->lock);
1438 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001439 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return err;
1441}
1442
1443static int ipv6_count_addresses(struct inet6_dev *idev)
1444{
1445 int cnt = 0;
1446 struct inet6_ifaddr *ifp;
1447
1448 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001449 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 cnt++;
1451 read_unlock_bh(&idev->lock);
1452 return cnt;
1453}
1454
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001455int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001456 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001458 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001459 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
stephen hemminger5c578aed2010-03-17 20:31:11 +00001461 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001462 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001463 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001464 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001466 !(ifp->flags&IFA_F_TENTATIVE) &&
1467 (dev == NULL || ifp->idev->dev == dev ||
1468 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1469 rcu_read_unlock_bh();
1470 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001473
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001474 rcu_read_unlock_bh();
1475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001477EXPORT_SYMBOL(ipv6_chk_addr);
1478
David S. Miller3e81c6d2010-03-20 16:18:00 -07001479static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1480 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001482 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001483 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Sasha Levinb67bfe02013-02-27 17:06:00 -08001485 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001486 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001487 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (ipv6_addr_equal(&ifp->addr, addr)) {
1489 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001490 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001493 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001496/* Compares an address/prefix_len with addresses on device @dev.
1497 * If one is found it returns true.
1498 */
1499bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1500 const unsigned int prefix_len, struct net_device *dev)
1501{
1502 struct inet6_dev *idev;
1503 struct inet6_ifaddr *ifa;
1504 bool ret = false;
1505
1506 rcu_read_lock();
1507 idev = __in6_dev_get(dev);
1508 if (idev) {
1509 read_lock_bh(&idev->lock);
1510 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1511 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1512 if (ret)
1513 break;
1514 }
1515 read_unlock_bh(&idev->lock);
1516 }
1517 rcu_read_unlock();
1518
1519 return ret;
1520}
1521EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1522
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001523int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001524{
1525 struct inet6_dev *idev;
1526 struct inet6_ifaddr *ifa;
1527 int onlink;
1528
1529 onlink = 0;
1530 rcu_read_lock();
1531 idev = __in6_dev_get(dev);
1532 if (idev) {
1533 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001534 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001535 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1536 ifa->prefix_len);
1537 if (onlink)
1538 break;
1539 }
1540 read_unlock_bh(&idev->lock);
1541 }
1542 rcu_read_unlock();
1543 return onlink;
1544}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001545EXPORT_SYMBOL(ipv6_chk_prefix);
1546
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001547struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001548 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
David S. Millerb79d1d52010-03-25 21:39:21 -07001550 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001551 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
stephen hemminger5c578aed2010-03-17 20:31:11 +00001553 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001554 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001555 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001556 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (ipv6_addr_equal(&ifp->addr, addr)) {
1558 if (dev == NULL || ifp->idev->dev == dev ||
1559 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001560 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 in6_ifa_hold(ifp);
1562 break;
1563 }
1564 }
1565 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001566 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
David S. Millerb79d1d52010-03-25 21:39:21 -07001568 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571/* Gets referenced address, destroys ifaddr */
1572
Brian Haleycc411d02009-09-09 14:41:32 +00001573static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (ifp->flags&IFA_F_PERMANENT) {
1576 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001577 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001579 if (dad_failed)
1580 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001582 if (dad_failed)
1583 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 } else if (ifp->flags&IFA_F_TEMPORARY) {
1586 struct inet6_ifaddr *ifpub;
1587 spin_lock_bh(&ifp->lock);
1588 ifpub = ifp->ifpub;
1589 if (ifpub) {
1590 in6_ifa_hold(ifpub);
1591 spin_unlock_bh(&ifp->lock);
1592 ipv6_create_tempaddr(ifpub, ifp);
1593 in6_ifa_put(ifpub);
1594 } else {
1595 spin_unlock_bh(&ifp->lock);
1596 }
1597 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 } else
1599 ipv6_del_addr(ifp);
1600}
1601
Herbert Xuf2344a12010-05-18 15:55:27 -07001602static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1603{
1604 int err = -ENOENT;
1605
1606 spin_lock(&ifp->state_lock);
1607 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1608 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1609 err = 0;
1610 }
1611 spin_unlock(&ifp->state_lock);
1612
1613 return err;
1614}
1615
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001616void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1617{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001618 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001619
Ursula Braun853dc2e2010-10-24 23:06:43 +00001620 if (addrconf_dad_end(ifp)) {
1621 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001622 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001623 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001624
Joe Perchese87cc472012-05-13 21:56:26 +00001625 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1626 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001627
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001628 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1629 struct in6_addr addr;
1630
1631 addr.s6_addr32[0] = htonl(0xfe800000);
1632 addr.s6_addr32[1] = 0;
1633
1634 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1635 ipv6_addr_equal(&ifp->addr, &addr)) {
1636 /* DAD failed for link-local based on MAC address */
1637 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001638
Joe Perchesf3213832012-05-15 14:11:53 +00001639 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001640 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001641 }
1642 }
1643
Brian Haleycc411d02009-09-09 14:41:32 +00001644 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001645}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647/* Join to solicited addr multicast group. */
1648
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001649void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
1651 struct in6_addr maddr;
1652
1653 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1654 return;
1655
1656 addrconf_addr_solict_mult(addr, &maddr);
1657 ipv6_dev_mc_inc(dev, &maddr);
1658}
1659
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001660void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
1662 struct in6_addr maddr;
1663
1664 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1665 return;
1666
1667 addrconf_addr_solict_mult(addr, &maddr);
1668 __ipv6_dev_mc_dec(idev, &maddr);
1669}
1670
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001671static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001674 if (ifp->prefix_len == 127) /* RFC 6164 */
1675 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1677 if (ipv6_addr_any(&addr))
1678 return;
1679 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1680}
1681
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001682static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001685 if (ifp->prefix_len == 127) /* RFC 6164 */
1686 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1688 if (ipv6_addr_any(&addr))
1689 return;
1690 __ipv6_dev_ac_dec(ifp->idev, &addr);
1691}
1692
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001693static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1694{
1695 if (dev->addr_len != ETH_ALEN)
1696 return -1;
1697 memcpy(eui, dev->dev_addr, 3);
1698 memcpy(eui + 5, dev->dev_addr + 3, 3);
1699
1700 /*
1701 * The zSeries OSA network cards can be shared among various
1702 * OS instances, but the OSA cards have only one MAC address.
1703 * This leads to duplicate address conflicts in conjunction
1704 * with IPv6 if more than one instance uses the same card.
1705 *
1706 * The driver for these cards can deliver a unique 16-bit
1707 * identifier for each instance sharing the same card. It is
1708 * placed instead of 0xFFFE in the interface identifier. The
1709 * "u" bit of the interface identifier is not inverted in this
1710 * case. Hence the resulting interface identifier has local
1711 * scope according to RFC2373.
1712 */
1713 if (dev->dev_id) {
1714 eui[3] = (dev->dev_id >> 8) & 0xFF;
1715 eui[4] = dev->dev_id & 0xFF;
1716 } else {
1717 eui[3] = 0xFF;
1718 eui[4] = 0xFE;
1719 eui[0] ^= 2;
1720 }
1721 return 0;
1722}
1723
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001724static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1725{
1726 if (dev->addr_len != IEEE802154_ADDR_LEN)
1727 return -1;
1728 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001729 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001730 return 0;
1731}
1732
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001733static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1734{
1735 union fwnet_hwaddr *ha;
1736
1737 if (dev->addr_len != FWNET_ALEN)
1738 return -1;
1739
1740 ha = (union fwnet_hwaddr *)dev->dev_addr;
1741
1742 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1743 eui[0] ^= 2;
1744 return 0;
1745}
1746
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001747static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1748{
1749 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1750 if (dev->addr_len != ARCNET_ALEN)
1751 return -1;
1752 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001753 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001754 return 0;
1755}
1756
1757static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1758{
1759 if (dev->addr_len != INFINIBAND_ALEN)
1760 return -1;
1761 memcpy(eui, dev->dev_addr + 12, 8);
1762 eui[0] |= 2;
1763 return 0;
1764}
1765
stephen hemmingerc61393e2010-10-04 20:17:53 +00001766static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001767{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001768 if (addr == 0)
1769 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001770 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1771 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1772 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1773 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1774 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1775 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1776 eui[1] = 0;
1777 eui[2] = 0x5E;
1778 eui[3] = 0xFE;
1779 memcpy(eui + 4, &addr, 4);
1780 return 0;
1781}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001782
1783static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1784{
1785 if (dev->priv_flags & IFF_ISATAP)
1786 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1787 return -1;
1788}
1789
stephen hemmingeraee80b52011-06-08 10:44:30 +00001790static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1791{
1792 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1793}
1794
Nicolas Dichtele8377352013-08-20 12:16:06 +02001795static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1796{
1797 memcpy(eui, dev->perm_addr, 3);
1798 memcpy(eui + 5, dev->perm_addr + 3, 3);
1799 eui[3] = 0xFF;
1800 eui[4] = 0xFE;
1801 eui[0] ^= 2;
1802 return 0;
1803}
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1806{
1807 switch (dev->type) {
1808 case ARPHRD_ETHER:
1809 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001810 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001812 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001814 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001815 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001816 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001817 case ARPHRD_IPGRE:
1818 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001819 case ARPHRD_IEEE802154:
1820 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001821 case ARPHRD_IEEE1394:
1822 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001823 case ARPHRD_TUNNEL6:
1824 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 }
1826 return -1;
1827}
1828
1829static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1830{
1831 int err = -1;
1832 struct inet6_ifaddr *ifp;
1833
1834 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001835 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1837 memcpy(eui, ifp->addr.s6_addr+8, 8);
1838 err = 0;
1839 break;
1840 }
1841 }
1842 read_unlock_bh(&idev->lock);
1843 return err;
1844}
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001847static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001850 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 /*
1854 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1855 * check if generated address is not inappropriate
1856 *
1857 * - Reserved subnet anycast (RFC 2526)
1858 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001859 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 * 00-00-5E-FE-xx-xx-xx-xx
1861 * - value 0
1862 * - XXX: already assigned to an address on the device
1863 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001864 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1866 (idev->rndid[7]&0x80))
1867 goto regen;
1868 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1869 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1870 goto regen;
1871 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1872 goto regen;
1873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
1876static void ipv6_regen_rndid(unsigned long data)
1877{
1878 struct inet6_dev *idev = (struct inet6_dev *) data;
1879 unsigned long expires;
1880
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001881 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 write_lock_bh(&idev->lock);
1883
1884 if (idev->dead)
1885 goto out;
1886
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001887 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001890 idev->cnf.temp_prefered_lft * HZ -
Jiri Pirko1f9248e2013-12-07 19:26:53 +01001891 idev->cnf.regen_max_retry * idev->cnf.dad_transmits *
1892 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) -
Ben Hutchings784e2712010-06-26 11:42:55 +00001893 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001895 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1896 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 goto out;
1898 }
1899
1900 if (!mod_timer(&idev->regen_timer, expires))
1901 in6_dev_hold(idev);
1902
1903out:
1904 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001905 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 in6_dev_put(idev);
1907}
1908
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001909static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001910{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001912 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915/*
1916 * Add prefix route.
1917 */
1918
1919static void
1920addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001921 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Thomas Graf86872cb2006-08-22 00:01:08 -07001923 struct fib6_config cfg = {
1924 .fc_table = RT6_TABLE_PREFIX,
1925 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1926 .fc_ifindex = dev->ifindex,
1927 .fc_expires = expires,
1928 .fc_dst_len = plen,
1929 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001930 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001931 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001932 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001934 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 /* Prevent useless cloning on PtP SIT.
1937 This thing is done here expecting that the whole
1938 class of non-broadcast devices need not cloning.
1939 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001940#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001941 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1942 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001943#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Thomas Graf86872cb2006-08-22 00:01:08 -07001945 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001948
1949static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1950 int plen,
1951 const struct net_device *dev,
1952 u32 flags, u32 noflags)
1953{
1954 struct fib6_node *fn;
1955 struct rt6_info *rt = NULL;
1956 struct fib6_table *table;
1957
1958 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1959 if (table == NULL)
1960 return NULL;
1961
Li RongQing5744dd92012-09-11 21:59:01 +00001962 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001963 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1964 if (!fn)
1965 goto out;
1966 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001967 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001968 continue;
1969 if ((rt->rt6i_flags & flags) != flags)
1970 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001971 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001972 continue;
1973 dst_hold(&rt->dst);
1974 break;
1975 }
1976out:
Li RongQing5744dd92012-09-11 21:59:01 +00001977 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001978 return rt;
1979}
1980
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982/* Create "default" multicast route to the interface */
1983
1984static void addrconf_add_mroute(struct net_device *dev)
1985{
Thomas Graf86872cb2006-08-22 00:01:08 -07001986 struct fib6_config cfg = {
1987 .fc_table = RT6_TABLE_LOCAL,
1988 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1989 .fc_ifindex = dev->ifindex,
1990 .fc_dst_len = 8,
1991 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001992 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001993 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Thomas Graf86872cb2006-08-22 00:01:08 -07001995 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1996
1997 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2001{
2002 struct inet6_dev *idev;
2003
2004 ASSERT_RTNL();
2005
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002006 idev = ipv6_find_idev(dev);
2007 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002008 return ERR_PTR(-ENOBUFS);
2009
2010 if (idev->cnf.disable_ipv6)
2011 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002014 if (!(dev->flags & IFF_LOOPBACK))
2015 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return idev;
2018}
2019
Jiri Pirko53bd6742013-12-06 09:45:22 +01002020static void manage_tempaddrs(struct inet6_dev *idev,
2021 struct inet6_ifaddr *ifp,
2022 __u32 valid_lft, __u32 prefered_lft,
2023 bool create, unsigned long now)
2024{
2025 u32 flags;
2026 struct inet6_ifaddr *ift;
2027
2028 read_lock_bh(&idev->lock);
2029 /* update all temporary addresses in the list */
2030 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2031 int age, max_valid, max_prefered;
2032
2033 if (ifp != ift->ifpub)
2034 continue;
2035
2036 /* RFC 4941 section 3.3:
2037 * If a received option will extend the lifetime of a public
2038 * address, the lifetimes of temporary addresses should
2039 * be extended, subject to the overall constraint that no
2040 * temporary addresses should ever remain "valid" or "preferred"
2041 * for a time longer than (TEMP_VALID_LIFETIME) or
2042 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2043 */
2044 age = (now - ift->cstamp) / HZ;
2045 max_valid = idev->cnf.temp_valid_lft - age;
2046 if (max_valid < 0)
2047 max_valid = 0;
2048
2049 max_prefered = idev->cnf.temp_prefered_lft -
2050 idev->cnf.max_desync_factor - age;
2051 if (max_prefered < 0)
2052 max_prefered = 0;
2053
2054 if (valid_lft > max_valid)
2055 valid_lft = max_valid;
2056
2057 if (prefered_lft > max_prefered)
2058 prefered_lft = max_prefered;
2059
2060 spin_lock(&ift->lock);
2061 flags = ift->flags;
2062 ift->valid_lft = valid_lft;
2063 ift->prefered_lft = prefered_lft;
2064 ift->tstamp = now;
2065 if (prefered_lft > 0)
2066 ift->flags &= ~IFA_F_DEPRECATED;
2067
2068 spin_unlock(&ift->lock);
2069 if (!(flags&IFA_F_TENTATIVE))
2070 ipv6_ifa_notify(0, ift);
2071 }
2072
2073 if ((create || list_empty(&idev->tempaddr_list)) &&
2074 idev->cnf.use_tempaddr > 0) {
2075 /* When a new public address is created as described
2076 * in [ADDRCONF], also create a new temporary address.
2077 * Also create a temporary address if it's enabled but
2078 * no temporary address currently exists.
2079 */
2080 read_unlock_bh(&idev->lock);
2081 ipv6_create_tempaddr(ifp, NULL);
2082 } else {
2083 read_unlock_bh(&idev->lock);
2084 }
2085}
2086
Neil Hormane6bff992012-01-04 10:49:15 +00002087void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 struct prefix_info *pinfo;
2090 __u32 valid_lft;
2091 __u32 prefered_lft;
2092 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002094 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002099 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 return;
2101 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 /*
2104 * Validation checks ([ADDRCONF], page 19)
2105 */
2106
2107 addr_type = ipv6_addr_type(&pinfo->prefix);
2108
2109 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2110 return;
2111
2112 valid_lft = ntohl(pinfo->valid);
2113 prefered_lft = ntohl(pinfo->prefered);
2114
2115 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002116 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 return;
2118 }
2119
2120 in6_dev = in6_dev_get(dev);
2121
2122 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002123 net_dbg_ratelimited("addrconf: device %s not configured\n",
2124 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return;
2126 }
2127
2128 /*
2129 * Two things going on here:
2130 * 1) Add routes for on-link prefixes
2131 * 2) Configure prefixes with the auto flag set
2132 */
2133
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002134 if (pinfo->onlink) {
2135 struct rt6_info *rt;
2136 unsigned long rt_expires;
2137
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002138 /* Avoid arithmetic overflow. Really, we could
2139 * save rt_expires in seconds, likely valid_lft,
2140 * but it would require division in fib gc, that it
2141 * not good.
2142 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002143 if (HZ > USER_HZ)
2144 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2145 else
2146 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002147
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002148 if (addrconf_finite_timeout(rt_expires))
2149 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002151 rt = addrconf_get_prefix_route(&pinfo->prefix,
2152 pinfo->prefix_len,
2153 dev,
2154 RTF_ADDRCONF | RTF_PREFIX_RT,
2155 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002157 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002158 /* Autoconf prefix route */
2159 if (valid_lft == 0) {
2160 ip6_del_rt(rt);
2161 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002162 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002163 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002164 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002165 } else {
Gao feng1716a962012-04-06 00:13:10 +00002166 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 }
2168 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002169 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002170 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2171 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002172 /* not infinity */
2173 flags |= RTF_EXPIRES;
2174 expires = jiffies_to_clock_t(rt_expires);
2175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002177 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002179 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
2181
2182 /* Try to figure out our local address for this prefix */
2183
2184 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002185 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 struct in6_addr addr;
2187 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002188 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 if (pinfo->prefix_len == 64) {
2191 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002192
2193 if (!ipv6_addr_any(&in6_dev->token)) {
2194 read_lock_bh(&in6_dev->lock);
2195 memcpy(addr.s6_addr + 8,
2196 in6_dev->token.s6_addr + 8, 8);
2197 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002198 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002199 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2200 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 in6_dev_put(in6_dev);
2202 return;
2203 }
2204 goto ok;
2205 }
Joe Perchese87cc472012-05-13 21:56:26 +00002206 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2207 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 in6_dev_put(in6_dev);
2209 return;
2210
2211ok:
2212
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002213 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 if (ifp == NULL && valid_lft) {
2216 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002217 u32 addr_flags = 0;
2218
2219#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2220 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002221 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002222 addr_flags = IFA_F_OPTIMISTIC;
2223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 /* Do not allow to create too much of autoconfigured
2226 * addresses; this would be too easy way to crash kernel.
2227 */
2228 if (!max_addresses ||
2229 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002230 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2231 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002232 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002233 addr_flags, valid_lft,
2234 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002236 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 in6_dev_put(in6_dev);
2238 return;
2239 }
2240
Jiri Pirko53bd6742013-12-06 09:45:22 +01002241 ifp->flags |= IFA_F_MANAGETEMPADDR;
Jiri Benc8a226b22013-08-01 10:41:28 +02002242 update_lft = 0;
2243 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002245 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002246 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
2248
2249 if (ifp) {
Jiri Pirko479840f2013-12-06 09:45:21 +01002250 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 u32 stored_lft;
2253
2254 /* update lifetime (RFC2462 5.5.3 e) */
2255 spin_lock(&ifp->lock);
2256 now = jiffies;
2257 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2258 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2259 else
2260 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002261 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002262 const u32 minimum_lft = min(
2263 stored_lft, (u32)MIN_VALID_LIFETIME);
2264 valid_lft = max(valid_lft, minimum_lft);
2265
2266 /* RFC4862 Section 5.5.3e:
2267 * "Note that the preferred lifetime of the
2268 * corresponding address is always reset to
2269 * the Preferred Lifetime in the received
2270 * Prefix Information option, regardless of
2271 * whether the valid lifetime is also reset or
2272 * ignored."
2273 *
2274 * So we should always update prefered_lft here.
2275 */
2276 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 }
2278
2279 if (update_lft) {
2280 ifp->valid_lft = valid_lft;
2281 ifp->prefered_lft = prefered_lft;
2282 ifp->tstamp = now;
2283 flags = ifp->flags;
2284 ifp->flags &= ~IFA_F_DEPRECATED;
2285 spin_unlock(&ifp->lock);
2286
2287 if (!(flags&IFA_F_TENTATIVE))
2288 ipv6_ifa_notify(0, ifp);
2289 } else
2290 spin_unlock(&ifp->lock);
2291
Jiri Pirko53bd6742013-12-06 09:45:22 +01002292 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2293 create, now);
David S. Miller5d9efa72013-10-28 20:07:50 -04002294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 in6_ifa_put(ifp);
2296 addrconf_verify(0);
2297 }
2298 }
2299 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2300 in6_dev_put(in6_dev);
2301}
2302
2303/*
2304 * Set destination address.
2305 * Special case for SIT interfaces where we create a new "virtual"
2306 * device.
2307 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002308int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
2310 struct in6_ifreq ireq;
2311 struct net_device *dev;
2312 int err = -EINVAL;
2313
2314 rtnl_lock();
2315
2316 err = -EFAULT;
2317 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2318 goto err_exit;
2319
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002320 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 err = -ENODEV;
2323 if (dev == NULL)
2324 goto err_exit;
2325
Amerigo Wang07a93622012-10-29 16:23:10 +00002326#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002328 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 struct ip_tunnel_parm p;
2331
2332 err = -EADDRNOTAVAIL;
2333 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2334 goto err_exit;
2335
2336 memset(&p, 0, sizeof(p));
2337 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2338 p.iph.saddr = 0;
2339 p.iph.version = 4;
2340 p.iph.ihl = 5;
2341 p.iph.protocol = IPPROTO_IPV6;
2342 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002343 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002345 if (ops->ndo_do_ioctl) {
2346 mm_segment_t oldfs = get_fs();
2347
2348 set_fs(KERNEL_DS);
2349 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2350 set_fs(oldfs);
2351 } else
2352 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 if (err == 0) {
2355 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002356 dev = __dev_get_by_name(net, p.name);
2357 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 goto err_exit;
2359 err = dev_open(dev);
2360 }
2361 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002362#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364err_exit:
2365 rtnl_unlock();
2366 return err;
2367}
2368
2369/*
2370 * Manual configuration of address on an interface
2371 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002372static int inet6_addr_add(struct net *net, int ifindex,
2373 const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002374 const struct in6_addr *peer_pfx,
Jiri Pirko479840f2013-12-06 09:45:21 +01002375 unsigned int plen, __u32 ifa_flags,
2376 __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
2378 struct inet6_ifaddr *ifp;
2379 struct inet6_dev *idev;
2380 struct net_device *dev;
2381 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002382 u32 flags;
2383 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002384 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002387
Thomas Graf24ef0da2008-05-28 16:54:22 +02002388 if (plen > 128)
2389 return -EINVAL;
2390
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002391 /* check the lifetime */
2392 if (!valid_lft || prefered_lft > valid_lft)
2393 return -EINVAL;
2394
Jiri Pirko53bd6742013-12-06 09:45:22 +01002395 if (ifa_flags & IFA_F_MANAGETEMPADDR && plen != 64)
2396 return -EINVAL;
2397
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002398 dev = __dev_get_by_index(net, ifindex);
2399 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002401
Brian Haley64e724f2010-07-20 10:34:30 +00002402 idev = addrconf_add_dev(dev);
2403 if (IS_ERR(idev))
2404 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 scope = ipv6_addr_scope(pfx);
2407
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002408 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2409 if (addrconf_finite_timeout(timeout)) {
2410 expires = jiffies_to_clock_t(timeout * HZ);
2411 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002412 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002413 } else {
2414 expires = 0;
2415 flags = 0;
2416 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002417 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002418
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002419 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2420 if (addrconf_finite_timeout(timeout)) {
2421 if (timeout == 0)
2422 ifa_flags |= IFA_F_DEPRECATED;
2423 prefered_lft = timeout;
2424 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002425
Jiri Benc8a226b22013-08-01 10:41:28 +02002426 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2427 valid_lft, prefered_lft);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002430 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002431 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002432 /*
2433 * Note that section 3.1 of RFC 4429 indicates
2434 * that the Optimistic flag should not be set for
2435 * manually configured addresses
2436 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002437 addrconf_dad_start(ifp);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002438 if (ifa_flags & IFA_F_MANAGETEMPADDR)
2439 manage_tempaddrs(idev, ifp, valid_lft, prefered_lft,
2440 true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 in6_ifa_put(ifp);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002442 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return 0;
2444 }
2445
2446 return PTR_ERR(ifp);
2447}
2448
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002449static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002450 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
2452 struct inet6_ifaddr *ifp;
2453 struct inet6_dev *idev;
2454 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002455
Thomas Graf24ef0da2008-05-28 16:54:22 +02002456 if (plen > 128)
2457 return -EINVAL;
2458
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002459 dev = __dev_get_by_index(net, ifindex);
2460 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return -ENODEV;
2462
David S. Miller7eaa48a2013-08-20 23:44:39 -07002463 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return -ENXIO;
2465
2466 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002467 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (ifp->prefix_len == plen &&
2469 ipv6_addr_equal(pfx, &ifp->addr)) {
2470 in6_ifa_hold(ifp);
2471 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return 0;
2475 }
2476 }
2477 read_unlock_bh(&idev->lock);
2478 return -EADDRNOTAVAIL;
2479}
2480
2481
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002482int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
2484 struct in6_ifreq ireq;
2485 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002486
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002487 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2491 return -EFAULT;
2492
2493 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002494 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002495 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2496 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 rtnl_unlock();
2498 return err;
2499}
2500
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002501int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
2503 struct in6_ifreq ireq;
2504 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002505
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002506 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return -EPERM;
2508
2509 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2510 return -EFAULT;
2511
2512 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002513 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2514 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 rtnl_unlock();
2516 return err;
2517}
2518
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002519static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2520 int plen, int scope)
2521{
2522 struct inet6_ifaddr *ifp;
2523
Jiri Benc8a226b22013-08-01 10:41:28 +02002524 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2525 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002526 if (!IS_ERR(ifp)) {
2527 spin_lock_bh(&ifp->lock);
2528 ifp->flags &= ~IFA_F_TENTATIVE;
2529 spin_unlock_bh(&ifp->lock);
2530 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2531 in6_ifa_put(ifp);
2532 }
2533}
2534
Amerigo Wang07a93622012-10-29 16:23:10 +00002535#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536static void sit_add_v4_addrs(struct inet6_dev *idev)
2537{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 struct in6_addr addr;
2539 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002540 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002541 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002542 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
2544 ASSERT_RTNL();
2545
2546 memset(&addr, 0, sizeof(struct in6_addr));
2547 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2548
2549 if (idev->dev->flags&IFF_POINTOPOINT) {
2550 addr.s6_addr32[0] = htonl(0xfe800000);
2551 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002552 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 } else {
2554 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002555 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002556 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
2558
2559 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002560 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002561 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 return;
2563 }
2564
Benjamin Thery6fda7352008-03-05 10:47:47 -08002565 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002566 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002568 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 int flag = scope;
2571
2572 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574 addr.s6_addr32[3] = ifa->ifa_local;
2575
2576 if (ifa->ifa_scope == RT_SCOPE_LINK)
2577 continue;
2578 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2579 if (idev->dev->flags&IFF_POINTOPOINT)
2580 continue;
2581 flag |= IFA_HOST;
2582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002584 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002585 addrconf_prefix_route(&addr, plen, idev->dev, 0,
2586 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 }
2588 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593static void init_loopback(struct net_device *dev)
2594{
2595 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302596 struct net_device *sp_dev;
2597 struct inet6_ifaddr *sp_ifa;
2598 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 /* ::1 */
2601
2602 ASSERT_RTNL();
2603
David S. Miller7eaa48a2013-08-20 23:44:39 -07002604 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002605 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 return;
2607 }
2608
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002609 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302610
2611 /* Add routes to other interface's IPv6 addresses */
2612 for_each_netdev(dev_net(dev), sp_dev) {
2613 if (!strcmp(sp_dev->name, dev->name))
2614 continue;
2615
2616 idev = __in6_dev_get(sp_dev);
2617 if (!idev)
2618 continue;
2619
2620 read_lock_bh(&idev->lock);
2621 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2622
2623 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2624 continue;
2625
Gao fenga881ae12013-06-16 11:14:30 +08002626 if (sp_ifa->rt)
2627 continue;
2628
François-Xavier Le Bail57ec0af2013-12-02 11:28:49 +01002629 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302630
2631 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002632 if (!IS_ERR(sp_rt)) {
2633 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302634 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002635 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302636 }
2637 read_unlock_bh(&idev->lock);
2638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
2640
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002641static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002643 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002644 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Neil Horman95c385b2007-04-25 17:08:10 -07002646#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2647 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002648 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002649 addr_flags |= IFA_F_OPTIMISTIC;
2650#endif
2651
2652
Jiri Benc8a226b22013-08-01 10:41:28 +02002653 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002655 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002656 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 in6_ifa_put(ifp);
2658 }
2659}
2660
2661static void addrconf_dev_config(struct net_device *dev)
2662{
2663 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002664 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666 ASSERT_RTNL();
2667
Herbert Xu74235a22007-06-14 13:02:55 -07002668 if ((dev->type != ARPHRD_ETHER) &&
2669 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002670 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002671 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002672 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002673 (dev->type != ARPHRD_IEEE1394) &&
2674 (dev->type != ARPHRD_TUNNEL6)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002675 /* Alas, we support only Ethernet autoconfiguration. */
2676 return;
2677 }
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002680 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 return;
2682
2683 memset(&addr, 0, sizeof(struct in6_addr));
2684 addr.s6_addr32[0] = htonl(0xFE800000);
2685
2686 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2687 addrconf_add_linklocal(idev, &addr);
2688}
2689
Amerigo Wang07a93622012-10-29 16:23:10 +00002690#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691static void addrconf_sit_config(struct net_device *dev)
2692{
2693 struct inet6_dev *idev;
2694
2695 ASSERT_RTNL();
2696
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002697 /*
2698 * Configure the tunnel with one of our IPv4
2699 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 * our v4 addrs in the tunnel
2701 */
2702
David S. Miller7eaa48a2013-08-20 23:44:39 -07002703 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002704 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return;
2706 }
2707
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002708 if (dev->priv_flags & IFF_ISATAP) {
2709 struct in6_addr addr;
2710
2711 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002712 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2713 addrconf_add_linklocal(idev, &addr);
2714 return;
2715 }
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 sit_add_v4_addrs(idev);
2718
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002719 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002722#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Amerigo Wang07a93622012-10-29 16:23:10 +00002724#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002725static void addrconf_gre_config(struct net_device *dev)
2726{
2727 struct inet6_dev *idev;
2728 struct in6_addr addr;
2729
stephen hemmingeraee80b52011-06-08 10:44:30 +00002730 ASSERT_RTNL();
2731
David S. Miller7eaa48a2013-08-20 23:44:39 -07002732 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002733 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002734 return;
2735 }
2736
2737 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002738 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2739 addrconf_add_linklocal(idev, &addr);
2740}
2741#endif
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743static inline int
2744ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2745{
2746 struct in6_addr lladdr;
2747
Neil Horman95c385b2007-04-25 17:08:10 -07002748 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 addrconf_add_linklocal(idev, &lladdr);
2750 return 0;
2751 }
2752 return -1;
2753}
2754
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002755static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002756 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
Jiri Pirko351638e2013-05-28 01:30:21 +00002758 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002759 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002760 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002761 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002763 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002764 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002765 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002766 idev = ipv6_add_dev(dev);
2767 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002768 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002769 }
2770 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002773 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002774 if (dev->flags & IFF_SLAVE)
2775 break;
2776
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002777 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002778 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002779 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002780 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002781 dev->name);
2782 break;
2783 }
Kristian Slavov99081042006-02-08 16:10:53 -08002784
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002785 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2786 idev = ipv6_add_dev(dev);
2787
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002788 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002789 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002790 run_pending = 1;
2791 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002792 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002793 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002794 /* device is still not ready. */
2795 break;
2796 }
2797
2798 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002799 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002800 /* device is already configured. */
2801 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002802 idev->if_flags |= IF_READY;
2803 }
2804
Joe Perchesf3213832012-05-15 14:11:53 +00002805 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2806 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002807
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002808 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002809 }
2810
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002811 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002812#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 case ARPHRD_SIT:
2814 addrconf_sit_config(dev);
2815 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002816#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002817#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002818 case ARPHRD_IPGRE:
2819 addrconf_gre_config(dev);
2820 break;
2821#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 case ARPHRD_LOOPBACK:
2823 init_loopback(dev);
2824 break;
2825
2826 default:
2827 addrconf_dev_config(dev);
2828 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002829 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002832 if (run_pending)
2833 addrconf_dad_run(idev);
2834
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002835 /*
2836 * If the MTU changed during the interface down,
2837 * when the interface up, the changed MTU must be
2838 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002840 if (idev->cnf.mtu6 != dev->mtu &&
2841 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 rt6_mtu_change(dev, dev->mtu);
2843 idev->cnf.mtu6 = dev->mtu;
2844 }
2845 idev->tstamp = jiffies;
2846 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002847
2848 /*
2849 * If the changed mtu during down is lower than
2850 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 */
2852 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002853 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 }
2855 break;
2856
2857 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002858 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 rt6_mtu_change(dev, dev->mtu);
2860 idev->cnf.mtu6 = dev->mtu;
2861 break;
2862 }
2863
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002864 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2865 idev = ipv6_add_dev(dev);
2866 if (idev)
2867 break;
2868 }
2869
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002870 /*
2871 * MTU falled under IPV6_MIN_MTU.
2872 * Stop IPv6 on this interface.
2873 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
2875 case NETDEV_DOWN:
2876 case NETDEV_UNREGISTER:
2877 /*
2878 * Remove all addresses from this interface.
2879 */
2880 addrconf_ifdown(dev, event != NETDEV_DOWN);
2881 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002885 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002886 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002887 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002888 err = snmp6_register_dev(idev);
2889 if (err)
2890 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002893
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002894 case NETDEV_PRE_TYPE_CHANGE:
2895 case NETDEV_POST_TYPE_CHANGE:
2896 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002897 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
2900 return NOTIFY_OK;
2901}
2902
2903/*
2904 * addrconf module should be notified of a device going up
2905 */
2906static struct notifier_block ipv6_dev_notf = {
2907 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908};
2909
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002910static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002911{
2912 struct inet6_dev *idev;
2913 ASSERT_RTNL();
2914
2915 idev = __in6_dev_get(dev);
2916
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002917 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002918 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002919 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002920 ipv6_mc_unmap(idev);
2921}
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923static int addrconf_ifdown(struct net_device *dev, int how)
2924{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002925 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002926 struct inet6_dev *idev;
2927 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002928 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
2930 ASSERT_RTNL();
2931
David S. Miller73a8bd72011-01-23 23:27:15 -08002932 rt6_ifdown(net, dev);
2933 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935 idev = __in6_dev_get(dev);
2936 if (idev == NULL)
2937 return -ENODEV;
2938
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002939 /*
2940 * Step 1: remove reference to ipv6 device from parent device.
2941 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002943 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002945
2946 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002947 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
2949 /* Step 1.5: remove snmp6 entry */
2950 snmp6_unregister_dev(idev);
2951
2952 }
2953
David S. Miller73a8bd72011-01-23 23:27:15 -08002954 /* Step 2: clear hash table */
2955 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2956 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002957
2958 spin_lock_bh(&addrconf_hash_lock);
2959 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002960 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08002961 if (ifa->idev == idev) {
2962 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002963 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08002964 goto restart;
2965 }
2966 }
2967 spin_unlock_bh(&addrconf_hash_lock);
2968 }
2969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 write_lock_bh(&idev->lock);
2971
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002972 addrconf_del_rs_timer(idev);
2973
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002974 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002975 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002976 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Denis V. Lunev439e2382008-04-03 13:30:17 -07002978 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 in6_dev_put(idev);
2980
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002981 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00002982 while (!list_empty(&idev->tempaddr_list)) {
2983 ifa = list_first_entry(&idev->tempaddr_list,
2984 struct inet6_ifaddr, tmp_list);
2985 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 write_unlock_bh(&idev->lock);
2987 spin_lock_bh(&ifa->lock);
2988
2989 if (ifa->ifpub) {
2990 in6_ifa_put(ifa->ifpub);
2991 ifa->ifpub = NULL;
2992 }
2993 spin_unlock_bh(&ifa->lock);
2994 in6_ifa_put(ifa);
2995 write_lock_bh(&idev->lock);
2996 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00002997
stephen hemminger502a2ff2010-03-17 20:31:13 +00002998 while (!list_empty(&idev->addr_list)) {
2999 ifa = list_first_entry(&idev->addr_list,
3000 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003001 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003002
David S. Miller73a8bd72011-01-23 23:27:15 -08003003 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
David S. Miller73a8bd72011-01-23 23:27:15 -08003005 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003006
David S. Miller73a8bd72011-01-23 23:27:15 -08003007 spin_lock_bh(&ifa->state_lock);
3008 state = ifa->state;
3009 ifa->state = INET6_IFADDR_STATE_DEAD;
3010 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003011
David S. Miller73a8bd72011-01-23 23:27:15 -08003012 if (state != INET6_IFADDR_STATE_DEAD) {
3013 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003014 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003015 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003016 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003017
David S. Miller73a8bd72011-01-23 23:27:15 -08003018 write_lock_bh(&idev->lock);
3019 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 write_unlock_bh(&idev->lock);
3022
3023 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003024 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 ipv6_mc_destroy_dev(idev);
3026 else
3027 ipv6_mc_down(idev);
3028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003030
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003031 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003032 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003033 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 neigh_parms_release(&nd_tbl, idev->nd_parms);
3035 neigh_ifdown(&nd_tbl, dev);
3036 in6_dev_put(idev);
3037 }
3038 return 0;
3039}
3040
3041static void addrconf_rs_timer(unsigned long data)
3042{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003043 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003044 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003045 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003047 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003048 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 goto out;
3050
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003051 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003053
3054 /* Announcement received after solicitation was sent */
3055 if (idev->if_flags & IF_RA_RCVD)
3056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003058 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003059 write_unlock(&idev->lock);
3060 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3061 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003062 &in6addr_linklocal_allrouters);
3063 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003064 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Cong Wangcaf92bc2013-08-31 13:44:32 +08003066 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003067 /* The wait after the last probe can be shorter */
3068 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3069 idev->cnf.rtr_solicits) ?
3070 idev->cnf.rtr_solicit_delay :
3071 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 /*
3074 * Note: we do not support deprecated "all on-link"
3075 * assumption any longer.
3076 */
Joe Perches91df42b2012-05-15 14:11:54 +00003077 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
3079
3080out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003081 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003082put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003083 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084}
3085
3086/*
3087 * Duplicate Address Detection
3088 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003089static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3090{
3091 unsigned long rand_num;
3092 struct inet6_dev *idev = ifp->idev;
3093
Neil Horman95c385b2007-04-25 17:08:10 -07003094 if (ifp->flags & IFA_F_OPTIMISTIC)
3095 rand_num = 0;
3096 else
3097 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3098
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003099 ifp->dad_probes = idev->cnf.dad_transmits;
3100 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003101}
3102
David S. Millercf22f9a2012-04-14 21:37:40 -04003103static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104{
3105 struct inet6_dev *idev = ifp->idev;
3106 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108 addrconf_join_solict(dev, &ifp->addr);
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
3112 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003113 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003114 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
3117 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003118 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003119 !(ifp->flags&IFA_F_TENTATIVE) ||
3120 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003121 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003122 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 read_unlock_bh(&idev->lock);
3124
3125 addrconf_dad_completed(ifp);
3126 return;
3127 }
3128
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003129 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003130 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003131 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003132 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003133 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003134 * - keep it tentative if it is a permanent address.
3135 * - otherwise, kill it.
3136 */
3137 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003138 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003139 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003140 }
Neil Horman95c385b2007-04-25 17:08:10 -07003141
3142 /*
3143 * Optimistic nodes can start receiving
3144 * Frames right away
3145 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003146 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003147 ip6_ins_rt(ifp->rt);
3148
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003149 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003151 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 read_unlock_bh(&idev->lock);
3153}
3154
3155static void addrconf_dad_timer(unsigned long data)
3156{
3157 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3158 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 struct in6_addr mcaddr;
3160
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003161 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003162 goto out;
3163
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003164 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003165 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003166 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 goto out;
3168 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003169
3170 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003171 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3172 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003173 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003174 goto out;
3175 }
3176
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003177 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 /*
3179 * DAD was successful
3180 */
3181
Brian Haleycc411d02009-09-09 14:41:32 +00003182 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003183 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003184 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
3186 addrconf_dad_completed(ifp);
3187
3188 goto out;
3189 }
3190
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003191 ifp->dad_probes--;
Jiri Pirko1f9248e2013-12-07 19:26:53 +01003192 addrconf_mod_dad_timer(ifp,
3193 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00003194 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003195 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
3197 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003199 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200out:
3201 in6_ifa_put(ifp);
3202}
3203
3204static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3205{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003206 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003207 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003208 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003209
3210 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
3212 /*
3213 * Configure the address for reception. Now it is valid.
3214 */
3215
3216 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3217
Tore Anderson026359b2011-08-28 23:47:33 +00003218 /* If added prefix is link local and we are prepared to process
3219 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 */
3221
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003222 read_lock_bh(&ifp->idev->lock);
3223 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003224 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3225 ifp->idev->valid_ll_addr_cnt == 1;
3226 send_rs = send_mld &&
3227 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003228 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003229 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003230 spin_unlock(&ifp->lock);
3231 read_unlock_bh(&ifp->idev->lock);
3232
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003233 /* While dad is in progress mld report's source address is in6_addrany.
3234 * Resend with proper ll now.
3235 */
3236 if (send_mld)
3237 ipv6_mc_dad_complete(ifp->idev);
3238
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003239 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 /*
3241 * If a host as already performed a random delay
3242 * [...] as part of DAD [...] there is no need
3243 * to delay again before sending the first RS
3244 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003245 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003246 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003247 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003249 write_lock_bh(&ifp->idev->lock);
3250 spin_lock(&ifp->lock);
3251 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003253 addrconf_mod_rs_timer(ifp->idev,
3254 ifp->idev->cnf.rtr_solicit_interval);
3255 spin_unlock(&ifp->lock);
3256 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 }
3258}
3259
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003260static void addrconf_dad_run(struct inet6_dev *idev)
3261{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003262 struct inet6_ifaddr *ifp;
3263
3264 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003265 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003266 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003267 if (ifp->flags & IFA_F_TENTATIVE &&
3268 ifp->state == INET6_IFADDR_STATE_DAD)
3269 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003270 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003271 }
3272 read_unlock_bh(&idev->lock);
3273}
3274
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275#ifdef CONFIG_PROC_FS
3276struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003277 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003279 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280};
3281
Mihai Maruseac1d578302012-01-03 23:31:35 +00003282static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
3284 struct inet6_ifaddr *ifa = NULL;
3285 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003286 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003287 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Mihai Maruseac1d578302012-01-03 23:31:35 +00003289 /* initial bucket if pos is 0 */
3290 if (pos == 0) {
3291 state->bucket = 0;
3292 state->offset = 0;
3293 }
3294
3295 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003296 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003297 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003298 if (!net_eq(dev_net(ifa->idev->dev), net))
3299 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003300 /* sync with offset */
3301 if (p < state->offset) {
3302 p++;
3303 continue;
3304 }
3305 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003306 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003307 }
3308
3309 /* prepare for next bucket */
3310 state->offset = 0;
3311 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003313 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
stephen hemmingerc2e21292010-03-17 20:31:10 +00003316static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3317 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318{
3319 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003320 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Sasha Levinb67bfe02013-02-27 17:06:00 -08003322 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003323 if (!net_eq(dev_net(ifa->idev->dev), net))
3324 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003325 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003326 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003327 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003328
3329 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003330 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003331 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003332 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003333 if (!net_eq(dev_net(ifa->idev->dev), net))
3334 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003335 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003336 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003337 }
3338 }
3339
stephen hemmingerc2e21292010-03-17 20:31:10 +00003340 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003344 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003346 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003347 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348}
3349
3350static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3351{
3352 struct inet6_ifaddr *ifa;
3353
3354 ifa = if6_get_next(seq, v);
3355 ++*pos;
3356 return ifa;
3357}
3358
3359static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003360 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003362 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363}
3364
3365static int if6_seq_show(struct seq_file *seq, void *v)
3366{
3367 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko479840f2013-12-06 09:45:21 +01003368 seq_printf(seq, "%pi6 %02x %02x %02x %03x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003369 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 ifp->idev->dev->ifindex,
3371 ifp->prefix_len,
3372 ifp->scope,
3373 ifp->flags,
3374 ifp->idev->dev->name);
3375 return 0;
3376}
3377
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003378static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 .start = if6_seq_start,
3380 .next = if6_seq_next,
3381 .show = if6_seq_show,
3382 .stop = if6_seq_stop,
3383};
3384
3385static int if6_seq_open(struct inode *inode, struct file *file)
3386{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003387 return seq_open_net(inode, file, &if6_seq_ops,
3388 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389}
3390
Arjan van de Ven9a321442007-02-12 00:55:35 -08003391static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 .owner = THIS_MODULE,
3393 .open = if6_seq_open,
3394 .read = seq_read,
3395 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003396 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397};
3398
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003399static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400{
Gao fengd4beaa62013-02-18 01:34:54 +00003401 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 return -ENOMEM;
3403 return 0;
3404}
3405
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003406static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003407{
Gao fengece31ff2013-02-18 01:34:56 +00003408 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003409}
3410
3411static struct pernet_operations if6_proc_net_ops = {
3412 .init = if6_proc_net_init,
3413 .exit = if6_proc_net_exit,
3414};
3415
3416int __init if6_proc_init(void)
3417{
3418 return register_pernet_subsys(&if6_proc_net_ops);
3419}
3420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421void if6_proc_exit(void)
3422{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003423 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425#endif /* CONFIG_PROC_FS */
3426
Amerigo Wang07a93622012-10-29 16:23:10 +00003427#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003428/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003429int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003430{
3431 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003432 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003433 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003434
stephen hemminger5c578aed2010-03-17 20:31:11 +00003435 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003436 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003437 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003438 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003439 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003440 (ifp->flags & IFA_F_HOMEADDRESS)) {
3441 ret = 1;
3442 break;
3443 }
3444 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00003445 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003446 return ret;
3447}
3448#endif
3449
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450/*
3451 * Periodic address status verification
3452 */
3453
3454static void addrconf_verify(unsigned long foo)
3455{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003456 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 int i;
3459
stephen hemminger5c578aed2010-03-17 20:31:11 +00003460 rcu_read_lock_bh();
3461 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003463 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 del_timer(&addr_chk_timer);
3466
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003467 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003469 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578aed2010-03-17 20:31:11 +00003470 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
3473 if (ifp->flags & IFA_F_PERMANENT)
3474 continue;
3475
3476 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003477 /* We try to batch several events at once. */
3478 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003480 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3481 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 spin_unlock(&ifp->lock);
3483 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 ipv6_del_addr(ifp);
3485 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003486 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3487 spin_unlock(&ifp->lock);
3488 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003490 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 int deprecate = 0;
3492
3493 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3494 deprecate = 1;
3495 ifp->flags |= IFA_F_DEPRECATED;
3496 }
3497
3498 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3499 next = ifp->tstamp + ifp->valid_lft * HZ;
3500
3501 spin_unlock(&ifp->lock);
3502
3503 if (deprecate) {
3504 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506 ipv6_ifa_notify(0, ifp);
3507 in6_ifa_put(ifp);
3508 goto restart;
3509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3511 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003512 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3513 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01003514 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00003515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 if (age >= ifp->prefered_lft - regen_advance) {
3517 struct inet6_ifaddr *ifpub = ifp->ifpub;
3518 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3519 next = ifp->tstamp + ifp->prefered_lft * HZ;
3520 if (!ifp->regen_count && ifpub) {
3521 ifp->regen_count++;
3522 in6_ifa_hold(ifp);
3523 in6_ifa_hold(ifpub);
3524 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003525
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003526 spin_lock(&ifpub->lock);
3527 ifpub->regen_count = 0;
3528 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 ipv6_create_tempaddr(ifpub, ifp);
3530 in6_ifa_put(ifpub);
3531 in6_ifa_put(ifp);
3532 goto restart;
3533 }
3534 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3535 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3536 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 } else {
3538 /* ifp->prefered_lft <= ifp->valid_lft */
3539 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3540 next = ifp->tstamp + ifp->prefered_lft * HZ;
3541 spin_unlock(&ifp->lock);
3542 }
3543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 }
3545
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003546 next_sec = round_jiffies_up(next);
3547 next_sched = next;
3548
3549 /* If rounded timeout is accurate enough, accept it. */
3550 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3551 next_sched = next_sec;
3552
3553 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3554 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3555 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3556
dingtianhongba3542e2013-08-17 10:27:04 +08003557 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3558 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003559
3560 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 add_timer(&addr_chk_timer);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003562 spin_unlock(&addrconf_verify_lock);
3563 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564}
3565
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003566static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3567 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003568{
3569 struct in6_addr *pfx = NULL;
3570
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003571 *peer_pfx = NULL;
3572
Thomas Graf461d8832006-09-18 00:09:49 -07003573 if (addr)
3574 pfx = nla_data(addr);
3575
3576 if (local) {
3577 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003578 *peer_pfx = pfx;
3579 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003580 }
3581
3582 return pfx;
3583}
3584
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003585static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003586 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3587 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3588 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01003589 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07003590};
3591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592static int
Thomas Graf661d2962013-03-21 07:45:29 +00003593inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003595 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003596 struct ifaddrmsg *ifm;
3597 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003598 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003599 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Thomas Grafb933f712006-09-18 00:10:19 -07003601 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3602 if (err < 0)
3603 return err;
3604
3605 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003606 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 if (pfx == NULL)
3608 return -EINVAL;
3609
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003610 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611}
3612
Jiri Pirko479840f2013-12-06 09:45:21 +01003613static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003614 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003615{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003616 u32 flags;
3617 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003618 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01003619 bool was_managetempaddr;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003620
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003621 if (!valid_lft || (prefered_lft > valid_lft))
3622 return -EINVAL;
3623
Jiri Pirko53bd6742013-12-06 09:45:22 +01003624 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
3625 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
3626 return -EINVAL;
3627
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003628 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3629 if (addrconf_finite_timeout(timeout)) {
3630 expires = jiffies_to_clock_t(timeout * HZ);
3631 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003632 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003633 } else {
3634 expires = 0;
3635 flags = 0;
3636 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003637 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003638
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003639 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3640 if (addrconf_finite_timeout(timeout)) {
3641 if (timeout == 0)
3642 ifa_flags |= IFA_F_DEPRECATED;
3643 prefered_lft = timeout;
3644 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003645
3646 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003647 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
3648 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
3649 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR);
3650 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003651 ifp->tstamp = jiffies;
3652 ifp->valid_lft = valid_lft;
3653 ifp->prefered_lft = prefered_lft;
3654
3655 spin_unlock_bh(&ifp->lock);
3656 if (!(ifp->flags&IFA_F_TENTATIVE))
3657 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003658
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003659 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003660 expires, flags);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003661
3662 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
3663 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
3664 valid_lft = prefered_lft = 0;
3665 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
3666 !was_managetempaddr, jiffies);
3667 }
3668
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003669 addrconf_verify(0);
3670
3671 return 0;
3672}
3673
3674static int
Thomas Graf661d2962013-03-21 07:45:29 +00003675inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003677 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003678 struct ifaddrmsg *ifm;
3679 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003680 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003681 struct inet6_ifaddr *ifa;
3682 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003683 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01003684 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003685 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
Thomas Graf461d8832006-09-18 00:09:49 -07003687 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3688 if (err < 0)
3689 return err;
3690
3691 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003692 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 if (pfx == NULL)
3694 return -EINVAL;
3695
Thomas Graf461d8832006-09-18 00:09:49 -07003696 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003697 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003698
3699 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003700 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003701 preferred_lft = ci->ifa_prefered;
3702 } else {
3703 preferred_lft = INFINITY_LIFE_TIME;
3704 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003705 }
3706
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003707 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003708 if (dev == NULL)
3709 return -ENODEV;
3710
Jiri Pirko479840f2013-12-06 09:45:21 +01003711 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3712
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003713 /* We ignore other flags so far. */
Jiri Pirko53bd6742013-12-06 09:45:22 +01003714 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003715
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003716 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003717 if (ifa == NULL) {
3718 /*
3719 * It would be best to check for !NLM_F_CREATE here but
3720 * userspace alreay relies on not having to provide this.
3721 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003722 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003723 ifm->ifa_prefixlen, ifa_flags,
3724 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003725 }
3726
Thomas Graf7198f8c2006-09-18 00:13:46 -07003727 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3728 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3729 err = -EEXIST;
3730 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003731 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003732
3733 in6_ifa_put(ifa);
3734
3735 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736}
3737
Jiri Pirko479840f2013-12-06 09:45:21 +01003738static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07003739 u8 scope, int ifindex)
3740{
3741 struct ifaddrmsg *ifm;
3742
3743 ifm = nlmsg_data(nlh);
3744 ifm->ifa_family = AF_INET6;
3745 ifm->ifa_prefixlen = prefixlen;
3746 ifm->ifa_flags = flags;
3747 ifm->ifa_scope = scope;
3748 ifm->ifa_index = ifindex;
3749}
3750
Thomas Graf85486af2006-09-18 00:11:24 -07003751static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3752 unsigned long tstamp, u32 preferred, u32 valid)
3753{
3754 struct ifa_cacheinfo ci;
3755
Thomas Graf18a31e12010-11-17 04:12:02 +00003756 ci.cstamp = cstamp_delta(cstamp);
3757 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003758 ci.ifa_prefered = preferred;
3759 ci.ifa_valid = valid;
3760
3761 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3762}
3763
Thomas Graf101bb222006-09-18 00:11:52 -07003764static inline int rt_scope(int ifa_scope)
3765{
3766 if (ifa_scope & IFA_HOST)
3767 return RT_SCOPE_HOST;
3768 else if (ifa_scope & IFA_LINK)
3769 return RT_SCOPE_LINK;
3770 else if (ifa_scope & IFA_SITE)
3771 return RT_SCOPE_SITE;
3772 else
3773 return RT_SCOPE_UNIVERSE;
3774}
3775
Thomas Graf0ab68032006-09-18 00:12:35 -07003776static inline int inet6_ifaddr_msgsize(void)
3777{
Thomas Graf339bf982006-11-10 14:10:15 -08003778 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003779 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003780 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01003781 + nla_total_size(sizeof(struct ifa_cacheinfo))
3782 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07003783}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003786 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003789 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
Eric W. Biederman15e47302012-09-07 20:12:54 +00003791 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003792 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003793 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003794
Thomas Graf101bb222006-09-18 00:11:52 -07003795 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3796 ifa->idev->dev->ifindex);
3797
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003799 preferred = ifa->prefered_lft;
3800 valid = ifa->valid_lft;
3801 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003803 if (preferred > tval)
3804 preferred -= tval;
3805 else
3806 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003807 if (valid != INFINITY_LIFE_TIME) {
3808 if (valid > tval)
3809 valid -= tval;
3810 else
3811 valid = 0;
3812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 }
3814 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003815 preferred = INFINITY_LIFE_TIME;
3816 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 }
Thomas Graf85486af2006-09-18 00:11:24 -07003818
Cong Wang7996c792013-05-22 05:41:06 +00003819 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003820 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3821 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3822 goto error;
3823 } else
3824 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3825 goto error;
3826
3827 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3828 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003829
Jiri Pirko479840f2013-12-06 09:45:21 +01003830 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
3831 goto error;
3832
Thomas Graf0ab68032006-09-18 00:12:35 -07003833 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003834
3835error:
3836 nlmsg_cancel(skb, nlh);
3837 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838}
3839
3840static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003841 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003844 u8 scope = RT_SCOPE_UNIVERSE;
3845 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
Thomas Graf101bb222006-09-18 00:11:52 -07003847 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3848 scope = RT_SCOPE_SITE;
3849
Eric W. Biederman15e47302012-09-07 20:12:54 +00003850 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003851 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003852 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003853
Thomas Graf101bb222006-09-18 00:11:52 -07003854 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003855 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3856 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003857 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3858 nlmsg_cancel(skb, nlh);
3859 return -EMSGSIZE;
3860 }
Thomas Graf85486af2006-09-18 00:11:24 -07003861
Thomas Graf0ab68032006-09-18 00:12:35 -07003862 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863}
3864
3865static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003866 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003869 u8 scope = RT_SCOPE_UNIVERSE;
3870 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Thomas Graf101bb222006-09-18 00:11:52 -07003872 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3873 scope = RT_SCOPE_SITE;
3874
Eric W. Biederman15e47302012-09-07 20:12:54 +00003875 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003876 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003877 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003878
Thomas Graf101bb222006-09-18 00:11:52 -07003879 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003880 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3881 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003882 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3883 nlmsg_cancel(skb, nlh);
3884 return -EMSGSIZE;
3885 }
Thomas Graf85486af2006-09-18 00:11:24 -07003886
Thomas Graf0ab68032006-09-18 00:12:35 -07003887 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888}
3889
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003890enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 UNICAST_ADDR,
3892 MULTICAST_ADDR,
3893 ANYCAST_ADDR,
3894};
3895
Eric Dumazet234b27c2009-11-12 04:11:50 +00003896/* called with rcu_read_lock() */
3897static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3898 struct netlink_callback *cb, enum addr_type_t type,
3899 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 struct ifmcaddr6 *ifmca;
3902 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003903 int err = 1;
3904 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Eric Dumazet234b27c2009-11-12 04:11:50 +00003906 read_lock_bh(&idev->lock);
3907 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003908 case UNICAST_ADDR: {
3909 struct inet6_ifaddr *ifa;
3910
Eric Dumazet234b27c2009-11-12 04:11:50 +00003911 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003912 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3913 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003914 continue;
3915 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003916 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003917 cb->nlh->nlmsg_seq,
3918 RTM_NEWADDR,
3919 NLM_F_MULTI);
3920 if (err <= 0)
3921 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003922 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003924 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003925 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003926 case MULTICAST_ADDR:
3927 /* multicast address */
3928 for (ifmca = idev->mc_list; ifmca;
3929 ifmca = ifmca->next, ip_idx++) {
3930 if (ip_idx < s_ip_idx)
3931 continue;
3932 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003933 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003934 cb->nlh->nlmsg_seq,
3935 RTM_GETMULTICAST,
3936 NLM_F_MULTI);
3937 if (err <= 0)
3938 break;
3939 }
3940 break;
3941 case ANYCAST_ADDR:
3942 /* anycast address */
3943 for (ifaca = idev->ac_list; ifaca;
3944 ifaca = ifaca->aca_next, ip_idx++) {
3945 if (ip_idx < s_ip_idx)
3946 continue;
3947 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003948 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003949 cb->nlh->nlmsg_seq,
3950 RTM_GETANYCAST,
3951 NLM_F_MULTI);
3952 if (err <= 0)
3953 break;
3954 }
3955 break;
3956 default:
3957 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003959 read_unlock_bh(&idev->lock);
3960 *p_ip_idx = ip_idx;
3961 return err;
3962}
3963
3964static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3965 enum addr_type_t type)
3966{
3967 struct net *net = sock_net(skb->sk);
3968 int h, s_h;
3969 int idx, ip_idx;
3970 int s_idx, s_ip_idx;
3971 struct net_device *dev;
3972 struct inet6_dev *idev;
3973 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003974
3975 s_h = cb->args[0];
3976 s_idx = idx = cb->args[1];
3977 s_ip_idx = ip_idx = cb->args[2];
3978
3979 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003980 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003981 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3982 idx = 0;
3983 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003984 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00003985 if (idx < s_idx)
3986 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003987 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003988 s_ip_idx = 0;
3989 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003990 idev = __in6_dev_get(dev);
3991 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003992 goto cont;
3993
3994 if (in6_dump_addrs(idev, skb, cb, type,
3995 s_ip_idx, &ip_idx) <= 0)
3996 goto done;
3997cont:
3998 idx++;
3999 }
4000 }
4001done:
4002 rcu_read_unlock();
4003 cb->args[0] = h;
4004 cb->args[1] = idx;
4005 cb->args[2] = ip_idx;
4006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 return skb->len;
4008}
4009
4010static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4011{
4012 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004013
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 return inet6_dump_addr(skb, cb, type);
4015}
4016
4017static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4018{
4019 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 return inet6_dump_addr(skb, cb, type);
4022}
4023
4024
4025static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4026{
4027 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 return inet6_dump_addr(skb, cb, type);
4030}
4031
Thomas Graf661d2962013-03-21 07:45:29 +00004032static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004033{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004034 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004035 struct ifaddrmsg *ifm;
4036 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004037 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004038 struct net_device *dev = NULL;
4039 struct inet6_ifaddr *ifa;
4040 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004041 int err;
4042
Thomas Graf1b29fc22006-09-18 00:10:50 -07004043 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4044 if (err < 0)
4045 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004046
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004047 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004048 if (addr == NULL) {
4049 err = -EINVAL;
4050 goto errout;
4051 }
4052
4053 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004054 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004055 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004056
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004057 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4058 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004059 err = -EADDRNOTAVAIL;
4060 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004061 }
4062
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004063 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4064 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004065 err = -ENOBUFS;
4066 goto errout_ifa;
4067 }
4068
Eric W. Biederman15e47302012-09-07 20:12:54 +00004069 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004070 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004071 if (err < 0) {
4072 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4073 WARN_ON(err == -EMSGSIZE);
4074 kfree_skb(skb);
4075 goto errout_ifa;
4076 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004077 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004078errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004079 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004080errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004081 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004082}
4083
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4085{
4086 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004087 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004088 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Thomas Graf0ab68032006-09-18 00:12:35 -07004090 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004091 if (skb == NULL)
4092 goto errout;
4093
4094 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004095 if (err < 0) {
4096 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4097 WARN_ON(err == -EMSGSIZE);
4098 kfree_skb(skb);
4099 goto errout;
4100 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004101 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4102 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004103errout:
4104 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004105 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106}
4107
Dave Jonesb6f99a22007-03-22 12:27:49 -07004108static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 __s32 *array, int bytes)
4110{
Thomas Graf04561c12006-11-14 19:53:58 -08004111 BUG_ON(bytes < (DEVCONF_MAX * 4));
4112
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 memset(array, 0, bytes);
4114 array[DEVCONF_FORWARDING] = cnf->forwarding;
4115 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4116 array[DEVCONF_MTU6] = cnf->mtu6;
4117 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4118 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4119 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4120 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4121 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004122 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4123 jiffies_to_msecs(cnf->rtr_solicit_interval);
4124 array[DEVCONF_RTR_SOLICIT_DELAY] =
4125 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004127 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4128 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4129 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4130 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4132 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4133 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4134 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4135 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004137 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004138 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004139#ifdef CONFIG_IPV6_ROUTER_PREF
4140 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004141 array[DEVCONF_RTR_PROBE_INTERVAL] =
4142 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004143#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004144 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4145#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004146#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004147 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004148 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004149#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4150 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4151#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004152#ifdef CONFIG_IPV6_MROUTE
4153 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4154#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004155 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004156 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004157 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004158 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004159 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160}
4161
Thomas Grafb382b192010-11-16 04:33:57 +00004162static inline size_t inet6_ifla6_size(void)
4163{
4164 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4165 + nla_total_size(sizeof(struct ifla_cacheinfo))
4166 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4167 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004168 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4169 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004170}
4171
Thomas Graf339bf982006-11-10 14:10:15 -08004172static inline size_t inet6_if_nlmsg_size(void)
4173{
4174 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4175 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4176 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4177 + nla_total_size(4) /* IFLA_MTU */
4178 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004179 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004180}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004181
Eric Dumazetbe281e52011-05-19 01:14:23 +00004182static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004183 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004184{
4185 int i;
4186 int pad = bytes - sizeof(u64) * items;
4187 BUG_ON(pad < 0);
4188
4189 /* Use put_unaligned() because stats may not be aligned for u64. */
4190 put_unaligned(items, &stats[0]);
4191 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004192 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004193
4194 memset(&stats[items], 0, pad);
4195}
4196
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004197static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4198 int items, int bytes, size_t syncpoff)
4199{
4200 int i;
4201 int pad = bytes - sizeof(u64) * items;
4202 BUG_ON(pad < 0);
4203
4204 /* Use put_unaligned() because stats may not be aligned for u64. */
4205 put_unaligned(items, &stats[0]);
4206 for (i = 1; i < items; i++)
4207 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4208
4209 memset(&stats[items], 0, pad);
4210}
4211
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004212static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4213 int bytes)
4214{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004215 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004216 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004217 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4218 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004219 break;
4220 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004221 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004222 break;
4223 }
4224}
4225
Thomas Grafb382b192010-11-16 04:33:57 +00004226static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004228 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004229 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
David S. Millerc78679e2012-04-01 20:27:33 -04004231 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4232 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004234 ci.tstamp = cstamp_delta(idev->tstamp);
4235 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e2013-12-07 19:26:53 +01004236 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04004237 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4238 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004239 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4240 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004241 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004242 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004244 /* XXX - MC not implemented */
4245
4246 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4247 if (nla == NULL)
4248 goto nla_put_failure;
4249 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4250
4251 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4252 if (nla == NULL)
4253 goto nla_put_failure;
4254 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004256 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4257 if (nla == NULL)
4258 goto nla_put_failure;
4259 read_lock_bh(&idev->lock);
4260 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4261 read_unlock_bh(&idev->lock);
4262
Thomas Grafb382b192010-11-16 04:33:57 +00004263 return 0;
4264
4265nla_put_failure:
4266 return -EMSGSIZE;
4267}
4268
4269static size_t inet6_get_link_af_size(const struct net_device *dev)
4270{
4271 if (!__in6_dev_get(dev))
4272 return 0;
4273
4274 return inet6_ifla6_size();
4275}
4276
4277static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4278{
4279 struct inet6_dev *idev = __in6_dev_get(dev);
4280
4281 if (!idev)
4282 return -ENODATA;
4283
4284 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4285 return -EMSGSIZE;
4286
4287 return 0;
4288}
4289
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004290static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4291{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004292 struct inet6_ifaddr *ifp;
4293 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004294 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004295 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004296
4297 if (token == NULL)
4298 return -EINVAL;
4299 if (ipv6_addr_any(token))
4300 return -EINVAL;
4301 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4302 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004303 if (!ipv6_accept_ra(idev))
4304 return -EINVAL;
4305 if (idev->cnf.rtr_solicits <= 0)
4306 return -EINVAL;
4307
4308 write_lock_bh(&idev->lock);
4309
4310 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4311 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4312
4313 write_unlock_bh(&idev->lock);
4314
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004315 if (!idev->dead && (idev->if_flags & IF_READY) &&
4316 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4317 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004318
4319 /* If we're not ready, then normal ifup will take care
4320 * of this. Otherwise, we need to request our rs here.
4321 */
4322 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4323 update_rs = true;
4324 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004325
4326 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004327
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004328 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004329 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004330 idev->rs_probes = 1;
4331 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4332 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004333
4334 /* Well, that's kinda nasty ... */
4335 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4336 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004337 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004338 ifp->valid_lft = 0;
4339 ifp->prefered_lft = 0;
4340 }
4341 spin_unlock(&ifp->lock);
4342 }
4343
4344 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004345 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004346 return 0;
4347}
4348
4349static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4350{
4351 int err = -EINVAL;
4352 struct inet6_dev *idev = __in6_dev_get(dev);
4353 struct nlattr *tb[IFLA_INET6_MAX + 1];
4354
4355 if (!idev)
4356 return -EAFNOSUPPORT;
4357
4358 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4359 BUG();
4360
4361 if (tb[IFLA_INET6_TOKEN])
4362 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4363
4364 return err;
4365}
4366
Thomas Grafb382b192010-11-16 04:33:57 +00004367static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004368 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004369{
4370 struct net_device *dev = idev->dev;
4371 struct ifinfomsg *hdr;
4372 struct nlmsghdr *nlh;
4373 void *protoinfo;
4374
Eric W. Biederman15e47302012-09-07 20:12:54 +00004375 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004376 if (nlh == NULL)
4377 return -EMSGSIZE;
4378
4379 hdr = nlmsg_data(nlh);
4380 hdr->ifi_family = AF_INET6;
4381 hdr->__ifi_pad = 0;
4382 hdr->ifi_type = dev->type;
4383 hdr->ifi_index = dev->ifindex;
4384 hdr->ifi_flags = dev_get_flags(dev);
4385 hdr->ifi_change = 0;
4386
David S. Millerc78679e2012-04-01 20:27:33 -04004387 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4388 (dev->addr_len &&
4389 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4390 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4391 (dev->ifindex != dev->iflink &&
4392 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4393 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004394 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4395 if (protoinfo == NULL)
4396 goto nla_put_failure;
4397
4398 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4399 goto nla_put_failure;
4400
Thomas Graf04561c12006-11-14 19:53:58 -08004401 nla_nest_end(skb, protoinfo);
4402 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
Thomas Graf04561c12006-11-14 19:53:58 -08004404nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004405 nlmsg_cancel(skb, nlh);
4406 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407}
4408
4409static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4410{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004411 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004412 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004413 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 struct net_device *dev;
4415 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004416 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
Eric Dumazet84d26972009-11-09 12:11:28 +00004418 s_h = cb->args[0];
4419 s_idx = cb->args[1];
4420
4421 rcu_read_lock();
4422 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4423 idx = 0;
4424 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004425 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004426 if (idx < s_idx)
4427 goto cont;
4428 idev = __in6_dev_get(dev);
4429 if (!idev)
4430 goto cont;
4431 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004432 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004433 cb->nlh->nlmsg_seq,
4434 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4435 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004436cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004437 idx++;
4438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004440out:
4441 rcu_read_unlock();
4442 cb->args[1] = idx;
4443 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
4445 return skb->len;
4446}
4447
4448void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4449{
4450 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004451 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004452 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004453
Thomas Graf339bf982006-11-10 14:10:15 -08004454 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004455 if (skb == NULL)
4456 goto errout;
4457
4458 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004459 if (err < 0) {
4460 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4461 WARN_ON(err == -EMSGSIZE);
4462 kfree_skb(skb);
4463 goto errout;
4464 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004465 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004466 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004467errout:
4468 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004469 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470}
4471
Thomas Graf339bf982006-11-10 14:10:15 -08004472static inline size_t inet6_prefix_nlmsg_size(void)
4473{
4474 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4475 + nla_total_size(sizeof(struct in6_addr))
4476 + nla_total_size(sizeof(struct prefix_cacheinfo));
4477}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004480 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004481 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004483 struct prefixmsg *pmsg;
4484 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 struct prefix_cacheinfo ci;
4486
Eric W. Biederman15e47302012-09-07 20:12:54 +00004487 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004488 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004489 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004490
4491 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004493 pmsg->prefix_pad1 = 0;
4494 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 pmsg->prefix_ifindex = idev->dev->ifindex;
4496 pmsg->prefix_len = pinfo->prefix_len;
4497 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004498 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 pmsg->prefix_flags = 0;
4500 if (pinfo->onlink)
4501 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4502 if (pinfo->autoconf)
4503 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4504
David S. Millerc78679e2012-04-01 20:27:33 -04004505 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4506 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 ci.preferred_time = ntohl(pinfo->prefered);
4508 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004509 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4510 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004511 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512
Thomas Graf6051e2f2006-11-14 19:54:19 -08004513nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004514 nlmsg_cancel(skb, nlh);
4515 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516}
4517
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004518static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 struct prefix_info *pinfo)
4520{
4521 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004522 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004523 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Thomas Graf339bf982006-11-10 14:10:15 -08004525 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004526 if (skb == NULL)
4527 goto errout;
4528
4529 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004530 if (err < 0) {
4531 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4532 WARN_ON(err == -EMSGSIZE);
4533 kfree_skb(skb);
4534 goto errout;
4535 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004536 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4537 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004538errout:
4539 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004540 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541}
4542
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004543static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4544{
4545 write_lock_bh(&ifp->idev->lock);
4546 spin_lock(&ifp->lock);
4547 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4548 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4549 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4550 ifp->idev->valid_ll_addr_cnt += count;
4551 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4552 spin_unlock(&ifp->lock);
4553 write_unlock_bh(&ifp->idev->lock);
4554}
4555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4557{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004558 struct net *net = dev_net(ifp->idev->dev);
4559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4561
4562 switch (event) {
4563 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004564 update_valid_ll_addr_cnt(ifp, 1);
4565
Neil Horman95c385b2007-04-25 17:08:10 -07004566 /*
4567 * If the address was optimistic
4568 * we inserted the route at the start of
4569 * our DAD process, so we don't need
4570 * to do it again
4571 */
4572 if (!(ifp->rt->rt6i_node))
4573 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 if (ifp->idev->cnf.forwarding)
4575 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004576 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004577 addrconf_prefix_route(&ifp->peer_addr, 128,
4578 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 break;
4580 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004581 update_valid_ll_addr_cnt(ifp, -1);
4582
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 if (ifp->idev->cnf.forwarding)
4584 addrconf_leave_anycast(ifp);
4585 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004586 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004587 struct rt6_info *rt;
4588 struct net_device *dev = ifp->idev->dev;
4589
4590 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4591 dev->ifindex, 1);
4592 if (rt) {
4593 dst_hold(&rt->dst);
4594 if (ip6_del_rt(rt))
4595 dst_free(&rt->dst);
4596 }
4597 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004598 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004599
David S. Miller73a8bd72011-01-23 23:27:15 -08004600 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004601 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 break;
4603 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004604 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004605 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606}
4607
4608static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4609{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004610 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 if (likely(ifp->idev->dead == 0))
4612 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004613 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614}
4615
4616#ifdef CONFIG_SYSCTL
4617
4618static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004619int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 void __user *buffer, size_t *lenp, loff_t *ppos)
4621{
4622 int *valp = ctl->data;
4623 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004624 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004625 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 int ret;
4627
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004628 /*
4629 * ctl->data points to idev->cnf.forwarding, we should
4630 * not modify it until we get the rtnl lock.
4631 */
4632 lctl = *ctl;
4633 lctl.data = &val;
4634
4635 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004637 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004638 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004639 if (ret)
4640 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004641 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642}
4643
Brian Haley56d417b2009-06-01 03:07:33 -07004644static void dev_disable_change(struct inet6_dev *idev)
4645{
Cong Wang75538c22013-05-29 11:30:50 +08004646 struct netdev_notifier_info info;
4647
Brian Haley56d417b2009-06-01 03:07:33 -07004648 if (!idev || !idev->dev)
4649 return;
4650
Cong Wang75538c22013-05-29 11:30:50 +08004651 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004652 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004653 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004654 else
Cong Wang75538c22013-05-29 11:30:50 +08004655 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004656}
4657
4658static void addrconf_disable_change(struct net *net, __s32 newf)
4659{
4660 struct net_device *dev;
4661 struct inet6_dev *idev;
4662
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004663 rcu_read_lock();
4664 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004665 idev = __in6_dev_get(dev);
4666 if (idev) {
4667 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4668 idev->cnf.disable_ipv6 = newf;
4669 if (changed)
4670 dev_disable_change(idev);
4671 }
Brian Haley56d417b2009-06-01 03:07:33 -07004672 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004673 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004674}
4675
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004676static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004677{
4678 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004679 int old;
4680
4681 if (!rtnl_trylock())
4682 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004683
4684 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004685 old = *p;
4686 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004687
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004688 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4689 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004690 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004691 }
Brian Haley56d417b2009-06-01 03:07:33 -07004692
4693 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004694 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4695 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004696 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004697 dev_disable_change((struct inet6_dev *)table->extra1);
4698
4699 rtnl_unlock();
4700 return 0;
4701}
4702
4703static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004704int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004705 void __user *buffer, size_t *lenp, loff_t *ppos)
4706{
4707 int *valp = ctl->data;
4708 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004709 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004710 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004711 int ret;
4712
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004713 /*
4714 * ctl->data points to idev->cnf.disable_ipv6, we should
4715 * not modify it until we get the rtnl lock.
4716 */
4717 lctl = *ctl;
4718 lctl.data = &val;
4719
4720 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004721
4722 if (write)
4723 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004724 if (ret)
4725 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004726 return ret;
4727}
4728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729static struct addrconf_sysctl_table
4730{
4731 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004732 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004733} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 .sysctl_header = NULL,
4735 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004736 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004737 .procname = "forwarding",
4738 .data = &ipv6_devconf.forwarding,
4739 .maxlen = sizeof(int),
4740 .mode = 0644,
4741 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 },
4743 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004744 .procname = "hop_limit",
4745 .data = &ipv6_devconf.hop_limit,
4746 .maxlen = sizeof(int),
4747 .mode = 0644,
4748 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 },
4750 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004751 .procname = "mtu",
4752 .data = &ipv6_devconf.mtu6,
4753 .maxlen = sizeof(int),
4754 .mode = 0644,
4755 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 },
4757 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004758 .procname = "accept_ra",
4759 .data = &ipv6_devconf.accept_ra,
4760 .maxlen = sizeof(int),
4761 .mode = 0644,
4762 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 },
4764 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004765 .procname = "accept_redirects",
4766 .data = &ipv6_devconf.accept_redirects,
4767 .maxlen = sizeof(int),
4768 .mode = 0644,
4769 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 },
4771 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004772 .procname = "autoconf",
4773 .data = &ipv6_devconf.autoconf,
4774 .maxlen = sizeof(int),
4775 .mode = 0644,
4776 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 },
4778 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004779 .procname = "dad_transmits",
4780 .data = &ipv6_devconf.dad_transmits,
4781 .maxlen = sizeof(int),
4782 .mode = 0644,
4783 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 },
4785 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004786 .procname = "router_solicitations",
4787 .data = &ipv6_devconf.rtr_solicits,
4788 .maxlen = sizeof(int),
4789 .mode = 0644,
4790 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 },
4792 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004793 .procname = "router_solicitation_interval",
4794 .data = &ipv6_devconf.rtr_solicit_interval,
4795 .maxlen = sizeof(int),
4796 .mode = 0644,
4797 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 },
4799 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004800 .procname = "router_solicitation_delay",
4801 .data = &ipv6_devconf.rtr_solicit_delay,
4802 .maxlen = sizeof(int),
4803 .mode = 0644,
4804 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 },
4806 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004807 .procname = "force_mld_version",
4808 .data = &ipv6_devconf.force_mld_version,
4809 .maxlen = sizeof(int),
4810 .mode = 0644,
4811 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004813 {
4814 .procname = "mldv1_unsolicited_report_interval",
4815 .data =
4816 &ipv6_devconf.mldv1_unsolicited_report_interval,
4817 .maxlen = sizeof(int),
4818 .mode = 0644,
4819 .proc_handler = proc_dointvec_ms_jiffies,
4820 },
4821 {
4822 .procname = "mldv2_unsolicited_report_interval",
4823 .data =
4824 &ipv6_devconf.mldv2_unsolicited_report_interval,
4825 .maxlen = sizeof(int),
4826 .mode = 0644,
4827 .proc_handler = proc_dointvec_ms_jiffies,
4828 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004830 .procname = "use_tempaddr",
4831 .data = &ipv6_devconf.use_tempaddr,
4832 .maxlen = sizeof(int),
4833 .mode = 0644,
4834 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 },
4836 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004837 .procname = "temp_valid_lft",
4838 .data = &ipv6_devconf.temp_valid_lft,
4839 .maxlen = sizeof(int),
4840 .mode = 0644,
4841 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 },
4843 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004844 .procname = "temp_prefered_lft",
4845 .data = &ipv6_devconf.temp_prefered_lft,
4846 .maxlen = sizeof(int),
4847 .mode = 0644,
4848 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 },
4850 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004851 .procname = "regen_max_retry",
4852 .data = &ipv6_devconf.regen_max_retry,
4853 .maxlen = sizeof(int),
4854 .mode = 0644,
4855 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 },
4857 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004858 .procname = "max_desync_factor",
4859 .data = &ipv6_devconf.max_desync_factor,
4860 .maxlen = sizeof(int),
4861 .mode = 0644,
4862 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004865 .procname = "max_addresses",
4866 .data = &ipv6_devconf.max_addresses,
4867 .maxlen = sizeof(int),
4868 .mode = 0644,
4869 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 },
4871 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004872 .procname = "accept_ra_defrtr",
4873 .data = &ipv6_devconf.accept_ra_defrtr,
4874 .maxlen = sizeof(int),
4875 .mode = 0644,
4876 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004877 },
4878 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004879 .procname = "accept_ra_pinfo",
4880 .data = &ipv6_devconf.accept_ra_pinfo,
4881 .maxlen = sizeof(int),
4882 .mode = 0644,
4883 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004884 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004885#ifdef CONFIG_IPV6_ROUTER_PREF
4886 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004887 .procname = "accept_ra_rtr_pref",
4888 .data = &ipv6_devconf.accept_ra_rtr_pref,
4889 .maxlen = sizeof(int),
4890 .mode = 0644,
4891 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004892 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004893 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004894 .procname = "router_probe_interval",
4895 .data = &ipv6_devconf.rtr_probe_interval,
4896 .maxlen = sizeof(int),
4897 .mode = 0644,
4898 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004899 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004900#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004901 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004902 .procname = "accept_ra_rt_info_max_plen",
4903 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4904 .maxlen = sizeof(int),
4905 .mode = 0644,
4906 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004907 },
4908#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004909#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004910 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004911 .procname = "proxy_ndp",
4912 .data = &ipv6_devconf.proxy_ndp,
4913 .maxlen = sizeof(int),
4914 .mode = 0644,
4915 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004916 },
4917 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004918 .procname = "accept_source_route",
4919 .data = &ipv6_devconf.accept_source_route,
4920 .maxlen = sizeof(int),
4921 .mode = 0644,
4922 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004923 },
Neil Horman95c385b2007-04-25 17:08:10 -07004924#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4925 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004926 .procname = "optimistic_dad",
4927 .data = &ipv6_devconf.optimistic_dad,
4928 .maxlen = sizeof(int),
4929 .mode = 0644,
4930 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004931
4932 },
4933#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004934#ifdef CONFIG_IPV6_MROUTE
4935 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004936 .procname = "mc_forwarding",
4937 .data = &ipv6_devconf.mc_forwarding,
4938 .maxlen = sizeof(int),
4939 .mode = 0444,
4940 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004941 },
4942#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004943 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004944 .procname = "disable_ipv6",
4945 .data = &ipv6_devconf.disable_ipv6,
4946 .maxlen = sizeof(int),
4947 .mode = 0644,
4948 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004949 },
4950 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004951 .procname = "accept_dad",
4952 .data = &ipv6_devconf.accept_dad,
4953 .maxlen = sizeof(int),
4954 .mode = 0644,
4955 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004956 },
4957 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004958 .procname = "force_tllao",
4959 .data = &ipv6_devconf.force_tllao,
4960 .maxlen = sizeof(int),
4961 .mode = 0644,
4962 .proc_handler = proc_dointvec
4963 },
4964 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004965 .procname = "ndisc_notify",
4966 .data = &ipv6_devconf.ndisc_notify,
4967 .maxlen = sizeof(int),
4968 .mode = 0644,
4969 .proc_handler = proc_dointvec
4970 },
4971 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004972 .procname = "suppress_frag_ndisc",
4973 .data = &ipv6_devconf.suppress_frag_ndisc,
4974 .maxlen = sizeof(int),
4975 .mode = 0644,
4976 .proc_handler = proc_dointvec
4977 },
4978 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004979 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 }
4981 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982};
4983
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004984static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004985 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986{
4987 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004989 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004990
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004991 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004993 goto out;
4994
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004995 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004996 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004998 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
Eric W. Biederman6105e292012-04-19 13:41:24 +00005001 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002
Eric W. Biederman6105e292012-04-19 13:41:24 +00005003 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005005 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005006
5007 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005008 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005010free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005012out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005013 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014}
5015
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005016static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5017{
5018 struct addrconf_sysctl_table *t;
5019
5020 if (p->sysctl == NULL)
5021 return;
5022
5023 t = p->sysctl;
5024 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005025 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005026 kfree(t);
5027}
5028
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005029static void addrconf_sysctl_register(struct inet6_dev *idev)
5030{
Jiri Pirko73af6142013-12-07 19:26:55 +01005031 neigh_sysctl_register(idev->dev, idev->nd_parms,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005032 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005033 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005034 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005035}
5036
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005037static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005039 __addrconf_sysctl_unregister(&idev->cnf);
5040 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041}
5042
5043
5044#endif
5045
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005046static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005047{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005048 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005049 struct ipv6_devconf *all, *dflt;
5050
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005051 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5052 if (all == NULL)
5053 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005054
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005055 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5056 if (dflt == NULL)
5057 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005058
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005059 /* these will be inherited by all namespaces */
5060 dflt->autoconf = ipv6_defaults.autoconf;
5061 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005062
5063 net->ipv6.devconf_all = all;
5064 net->ipv6.devconf_dflt = dflt;
5065
5066#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005067 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005068 if (err < 0)
5069 goto err_reg_all;
5070
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005071 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005072 if (err < 0)
5073 goto err_reg_dflt;
5074#endif
5075 return 0;
5076
5077#ifdef CONFIG_SYSCTL
5078err_reg_dflt:
5079 __addrconf_sysctl_unregister(all);
5080err_reg_all:
5081 kfree(dflt);
5082#endif
5083err_alloc_dflt:
5084 kfree(all);
5085err_alloc_all:
5086 return err;
5087}
5088
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005089static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005090{
5091#ifdef CONFIG_SYSCTL
5092 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5093 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5094#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005095 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005096 kfree(net->ipv6.devconf_dflt);
5097 kfree(net->ipv6.devconf_all);
5098 }
5099}
5100
5101static struct pernet_operations addrconf_ops = {
5102 .init = addrconf_init_net,
5103 .exit = addrconf_exit_net,
5104};
5105
Thomas Grafb382b192010-11-16 04:33:57 +00005106static struct rtnl_af_ops inet6_ops = {
5107 .family = AF_INET6,
5108 .fill_link_af = inet6_fill_link_af,
5109 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005110 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005111};
5112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113/*
5114 * Init / cleanup code
5115 */
5116
5117int __init addrconf_init(void)
5118{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005119 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005120
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005121 err = ipv6_addr_label_init();
5122 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005123 pr_crit("%s: cannot initialize default policy table: %d\n",
5124 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005125 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005128 err = register_pernet_subsys(&addrconf_ops);
5129 if (err < 0)
5130 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 /* The addrconf netdev notifier requires that loopback_dev
5133 * has it's ipv6 private information allocated and setup
5134 * before it can bring up and give link-local addresses
5135 * to other devices which are up.
5136 *
5137 * Unfortunately, loopback_dev is not necessarily the first
5138 * entry in the global dev_base list of net devices. In fact,
5139 * it is likely to be the very last entry on that list.
5140 * So this causes the notifier registry below to try and
5141 * give link-local addresses to all devices besides loopback_dev
5142 * first, then loopback_dev, which cases all the non-loopback_dev
5143 * devices to fail to get a link-local address.
5144 *
5145 * So, as a temporary fix, allocate the ipv6 structure for
5146 * loopback_dev first by hand.
5147 * Longer term, all of the dependencies ipv6 has upon the loopback
5148 * device and it being up should be removed.
5149 */
5150 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005151 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 err = -ENOMEM;
5153 rtnl_unlock();
5154 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005155 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
stephen hemmingerc2e21292010-03-17 20:31:10 +00005157 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5158 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5159
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 register_netdevice_notifier(&ipv6_dev_notf);
5161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005163
Thomas Grafb382b192010-11-16 04:33:57 +00005164 err = rtnl_af_register(&inet6_ops);
5165 if (err < 0)
5166 goto errout_af;
5167
Greg Rosec7ac8672011-06-10 01:27:09 +00005168 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5169 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005170 if (err < 0)
5171 goto errout;
5172
5173 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005174 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5175 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5176 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5177 inet6_dump_ifaddr, NULL);
5178 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5179 inet6_dump_ifmcaddr, NULL);
5180 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5181 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005182 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005183 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005184
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005185 ipv6_addr_label_rtnl_register();
5186
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005188errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005189 rtnl_af_unregister(&inet6_ops);
5190errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005191 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005192errlo:
5193 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005194out_addrlabel:
5195 ipv6_addr_label_cleanup();
5196out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005197 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198}
5199
Daniel Lezcano09f77092007-12-13 05:34:58 -08005200void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005202 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 int i;
5204
5205 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005206 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005207 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
5209 rtnl_lock();
5210
Thomas Grafb382b192010-11-16 04:33:57 +00005211 __rtnl_af_unregister(&inet6_ops);
5212
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005213 /* clean dev list */
5214 for_each_netdev(&init_net, dev) {
5215 if (__in6_dev_get(dev) == NULL)
5216 continue;
5217 addrconf_ifdown(dev, 1);
5218 }
5219 addrconf_ifdown(init_net.loopback_dev, 2);
5220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 * Check hash table.
5223 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00005224 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005225 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5226 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00005227 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228
5229 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231}