blob: 4c03c28430945930a4aaacc5b55742b7f7488bf9 [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
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100136static void addrconf_verify(void);
137static void addrconf_verify_rtnl(void);
138static void addrconf_verify_work(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100140static struct workqueue_struct *addrconf_wq;
141static DECLARE_DELAYED_WORK(addr_chk_work, addrconf_verify_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
144static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
145
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000146static void addrconf_type_change(struct net_device *dev,
147 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static int addrconf_ifdown(struct net_device *dev, int how);
149
Romain Kuntz21caa662013-01-09 21:06:03 +0000150static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
151 int plen,
152 const struct net_device *dev,
153 u32 flags, u32 noflags);
154
David S. Millercf22f9a2012-04-14 21:37:40 -0400155static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100156static void addrconf_dad_work(struct work_struct *w);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900158static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void addrconf_rs_timer(unsigned long data);
160static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
161static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
162
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900163static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700165static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
166 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Adrian Bunk888c8482008-07-22 14:21:58 -0700168static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .forwarding = 0,
170 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
171 .mtu6 = IPV6_MIN_MTU,
172 .accept_ra = 1,
173 .accept_redirects = 1,
174 .autoconf = 1,
175 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200176 .mldv1_unsolicited_report_interval = 10 * HZ,
177 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .dad_transmits = 1,
179 .rtr_solicits = MAX_RTR_SOLICITATIONS,
180 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
181 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .use_tempaddr = 0,
183 .temp_valid_lft = TEMP_VALID_LIFETIME,
184 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
185 .regen_max_retry = REGEN_MAX_RETRY,
186 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800188 .accept_ra_defrtr = 1,
Ben Greeard9333192014-06-25 14:44:53 -0700189 .accept_ra_from_local = 0,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800190 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800191#ifdef CONFIG_IPV6_ROUTER_PREF
192 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800193 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800194#ifdef CONFIG_IPV6_ROUTE_INFO
195 .accept_ra_rt_info_max_plen = 0,
196#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800197#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700198 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700199 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900200 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900201 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200202 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Brian Haleyab32ea52006-09-22 14:15:41 -0700205static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 .forwarding = 0,
207 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
208 .mtu6 = IPV6_MIN_MTU,
209 .accept_ra = 1,
210 .accept_redirects = 1,
211 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200212 .force_mld_version = 0,
213 .mldv1_unsolicited_report_interval = 10 * HZ,
214 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .dad_transmits = 1,
216 .rtr_solicits = MAX_RTR_SOLICITATIONS,
217 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
218 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .use_tempaddr = 0,
220 .temp_valid_lft = TEMP_VALID_LIFETIME,
221 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
222 .regen_max_retry = REGEN_MAX_RETRY,
223 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800225 .accept_ra_defrtr = 1,
Ben Greeard9333192014-06-25 14:44:53 -0700226 .accept_ra_from_local = 0,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800227 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800228#ifdef CONFIG_IPV6_ROUTER_PREF
229 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800230 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800231#ifdef CONFIG_IPV6_ROUTE_INFO
232 .accept_ra_rt_info_max_plen = 0,
233#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800234#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700235 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700236 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900237 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900238 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200239 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700242/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700243static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700244{
David S. Miller05297942008-07-08 23:01:27 -0700245 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700246}
247
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200248static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200250 if (del_timer(&idev->rs_timer))
251 __in6_dev_put(idev);
252}
253
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100254static void addrconf_del_dad_work(struct inet6_ifaddr *ifp)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200255{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100256 if (cancel_delayed_work(&ifp->dad_work))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 __in6_ifa_put(ifp);
258}
259
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200260static void addrconf_mod_rs_timer(struct inet6_dev *idev,
261 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200263 if (!timer_pending(&idev->rs_timer))
264 in6_dev_hold(idev);
265 mod_timer(&idev->rs_timer, jiffies + when);
266}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100268static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp,
269 unsigned long delay)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200270{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100271 if (!delayed_work_pending(&ifp->dad_work))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200272 in6_ifa_hold(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100273 mod_delayed_work(addrconf_wq, &ifp->dad_work, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700276static int snmp6_alloc_dev(struct inet6_dev *idev)
277{
John Stultz827da442013-10-07 15:51:58 -0700278 int i;
279
WANG Cong698365f2014-05-05 15:55:55 -0700280 idev->stats.ipv6 = alloc_percpu(struct ipstats_mib);
281 if (!idev->stats.ipv6)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700282 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700283
284 for_each_possible_cpu(i) {
285 struct ipstats_mib *addrconf_stats;
WANG Cong698365f2014-05-05 15:55:55 -0700286 addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i);
John Stultz827da442013-10-07 15:51:58 -0700287 u64_stats_init(&addrconf_stats->syncp);
John Stultz827da442013-10-07 15:51:58 -0700288 }
289
290
Eric Dumazetbe281e52011-05-19 01:14:23 +0000291 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
292 GFP_KERNEL);
293 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700294 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000295 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
296 GFP_KERNEL);
297 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700298 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700299
300 return 0;
301
David L Stevens14878f72007-09-16 16:52:35 -0700302err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000303 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700304err_icmp:
WANG Cong698365f2014-05-05 15:55:55 -0700305 free_percpu(idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700306err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700307 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700308}
309
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000310static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 struct inet6_dev *ndev;
313
314 ASSERT_RTNL();
315
316 if (dev->mtu < IPV6_MIN_MTU)
317 return NULL;
318
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900319 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900321 if (ndev == NULL)
322 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Ingo Oeser322f74a2006-03-20 23:01:47 -0800324 rwlock_init(&ndev->lock);
325 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000326 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200327 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
328 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900329 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800330 ndev->cnf.mtu6 = dev->mtu;
331 ndev->cnf.sysctl = NULL;
332 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
333 if (ndev->nd_parms == NULL) {
334 kfree(ndev);
335 return NULL;
336 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700337 if (ndev->cnf.forwarding)
338 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800339 /* We refer to the device */
340 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Ingo Oeser322f74a2006-03-20 23:01:47 -0800342 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800343 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000344 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800345 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800346 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400347 dev_put(dev);
348 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800349 return NULL;
350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Ingo Oeser322f74a2006-03-20 23:01:47 -0800352 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800353 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000354 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800355 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800356 neigh_parms_release(&nd_tbl, ndev->nd_parms);
357 ndev->dead = 1;
358 in6_dev_finish_destroy(ndev);
359 return NULL;
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Ingo Oeser322f74a2006-03-20 23:01:47 -0800362 /* One reference from device. We must do this before
363 * we invoke __ipv6_regen_rndid().
364 */
365 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900367 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
368 ndev->cnf.accept_dad = -1;
369
Amerigo Wang07a93622012-10-29 16:23:10 +0000370#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700371 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000372 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700373 ndev->cnf.rtr_solicits = 0;
374 }
375#endif
376
stephen hemminger372e6c82010-03-17 20:31:09 +0000377 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800378 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800379 if ((dev->flags&IFF_LOOPBACK) ||
380 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700381 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700382 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700383 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800384 ndev->cnf.use_tempaddr = -1;
385 } else {
386 in6_dev_hold(ndev);
387 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
David S. Miller5d9efa72013-10-28 20:07:50 -0400389
Daniel Borkmann914faa12013-04-09 03:47:14 +0000390 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700392 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700393 ndev->if_flags |= IF_READY;
394
Ingo Oeser322f74a2006-03-20 23:01:47 -0800395 ipv6_mc_init_dev(ndev);
396 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100397 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800398 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000399 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800400
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000401 /* Join interface-local all-node multicast group */
402 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
403
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800404 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900405 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800406
Li Weid6ddef92012-03-05 14:45:17 +0000407 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000408 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000409 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return ndev;
412}
413
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000414static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 struct inet6_dev *idev;
417
418 ASSERT_RTNL();
419
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700420 idev = __in6_dev_get(dev);
421 if (!idev) {
422 idev = ipv6_add_dev(dev);
423 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return NULL;
425 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (dev->flags&IFF_UP)
428 ipv6_mc_up(idev);
429 return idev;
430}
431
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000432static int inet6_netconf_msgsize_devconf(int type)
433{
434 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
435 + nla_total_size(4); /* NETCONFA_IFINDEX */
436
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000437 /* type -1 is used for ALL */
438 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000439 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500440#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000441 if (type == -1 || type == NETCONFA_MC_FORWARDING)
442 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500443#endif
stephen hemmingerc92d5492013-12-17 22:37:14 -0800444 if (type == -1 || type == NETCONFA_PROXY_NEIGH)
445 size += nla_total_size(4);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000446
447 return size;
448}
449
450static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
451 struct ipv6_devconf *devconf, u32 portid,
452 u32 seq, int event, unsigned int flags,
453 int type)
454{
455 struct nlmsghdr *nlh;
456 struct netconfmsg *ncm;
457
458 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
459 flags);
460 if (nlh == NULL)
461 return -EMSGSIZE;
462
463 ncm = nlmsg_data(nlh);
464 ncm->ncm_family = AF_INET6;
465
466 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
467 goto nla_put_failure;
468
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000469 /* type -1 is used for ALL */
470 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000471 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
472 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500473#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000474 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
475 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
476 devconf->mc_forwarding) < 0)
477 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500478#endif
stephen hemmingerc92d5492013-12-17 22:37:14 -0800479 if ((type == -1 || type == NETCONFA_PROXY_NEIGH) &&
480 nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
481 goto nla_put_failure;
482
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000483 return nlmsg_end(skb, nlh);
484
485nla_put_failure:
486 nlmsg_cancel(skb, nlh);
487 return -EMSGSIZE;
488}
489
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000490void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
491 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000492{
493 struct sk_buff *skb;
494 int err = -ENOBUFS;
495
496 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
497 if (skb == NULL)
498 goto errout;
499
500 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
501 RTM_NEWNETCONF, 0, type);
502 if (err < 0) {
503 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
504 WARN_ON(err == -EMSGSIZE);
505 kfree_skb(skb);
506 goto errout;
507 }
508 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
509 return;
510errout:
Cong Dingbd779022012-12-18 12:08:56 +0000511 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000512}
513
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000514static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
515 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
516 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
stephen hemmingerc92d5492013-12-17 22:37:14 -0800517 [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) },
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000518};
519
520static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000521 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000522{
523 struct net *net = sock_net(in_skb->sk);
524 struct nlattr *tb[NETCONFA_MAX+1];
525 struct netconfmsg *ncm;
526 struct sk_buff *skb;
527 struct ipv6_devconf *devconf;
528 struct inet6_dev *in6_dev;
529 struct net_device *dev;
530 int ifindex;
531 int err;
532
533 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
534 devconf_ipv6_policy);
535 if (err < 0)
536 goto errout;
537
538 err = EINVAL;
539 if (!tb[NETCONFA_IFINDEX])
540 goto errout;
541
542 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
543 switch (ifindex) {
544 case NETCONFA_IFINDEX_ALL:
545 devconf = net->ipv6.devconf_all;
546 break;
547 case NETCONFA_IFINDEX_DEFAULT:
548 devconf = net->ipv6.devconf_dflt;
549 break;
550 default:
551 dev = __dev_get_by_index(net, ifindex);
552 if (dev == NULL)
553 goto errout;
554 in6_dev = __in6_dev_get(dev);
555 if (in6_dev == NULL)
556 goto errout;
557 devconf = &in6_dev->cnf;
558 break;
559 }
560
561 err = -ENOBUFS;
562 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
563 if (skb == NULL)
564 goto errout;
565
566 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
567 NETLINK_CB(in_skb).portid,
568 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
569 -1);
570 if (err < 0) {
571 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
572 WARN_ON(err == -EMSGSIZE);
573 kfree_skb(skb);
574 goto errout;
575 }
576 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
577errout:
578 return err;
579}
580
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000581static int inet6_netconf_dump_devconf(struct sk_buff *skb,
582 struct netlink_callback *cb)
583{
584 struct net *net = sock_net(skb->sk);
585 int h, s_h;
586 int idx, s_idx;
587 struct net_device *dev;
588 struct inet6_dev *idev;
589 struct hlist_head *head;
590
591 s_h = cb->args[0];
592 s_idx = idx = cb->args[1];
593
594 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
595 idx = 0;
596 head = &net->dev_index_head[h];
597 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000598 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
599 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000600 hlist_for_each_entry_rcu(dev, head, index_hlist) {
601 if (idx < s_idx)
602 goto cont;
603 idev = __in6_dev_get(dev);
604 if (!idev)
605 goto cont;
606
607 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
608 &idev->cnf,
609 NETLINK_CB(cb->skb).portid,
610 cb->nlh->nlmsg_seq,
611 RTM_NEWNETCONF,
612 NLM_F_MULTI,
613 -1) <= 0) {
614 rcu_read_unlock();
615 goto done;
616 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000617 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000618cont:
619 idx++;
620 }
621 rcu_read_unlock();
622 }
623 if (h == NETDEV_HASHENTRIES) {
624 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
625 net->ipv6.devconf_all,
626 NETLINK_CB(cb->skb).portid,
627 cb->nlh->nlmsg_seq,
628 RTM_NEWNETCONF, NLM_F_MULTI,
629 -1) <= 0)
630 goto done;
631 else
632 h++;
633 }
634 if (h == NETDEV_HASHENTRIES + 1) {
635 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
636 net->ipv6.devconf_dflt,
637 NETLINK_CB(cb->skb).portid,
638 cb->nlh->nlmsg_seq,
639 RTM_NEWNETCONF, NLM_F_MULTI,
640 -1) <= 0)
641 goto done;
642 else
643 h++;
644 }
645done:
646 cb->args[0] = h;
647 cb->args[1] = idx;
648
649 return skb->len;
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#ifdef CONFIG_SYSCTL
653static void dev_forward_change(struct inet6_dev *idev)
654{
655 struct net_device *dev;
656 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 if (!idev)
659 return;
660 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700661 if (idev->cnf.forwarding)
662 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000663 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000664 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900665 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000666 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
667 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
668 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900669 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000670 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
671 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000674
675 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800676 if (ifa->flags&IFA_F_TENTATIVE)
677 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (idev->cnf.forwarding)
679 addrconf_join_anycast(ifa);
680 else
681 addrconf_leave_anycast(ifa);
682 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000683 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
684 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687
Pavel Emelyanove1869322008-01-10 17:43:50 -0800688static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 struct net_device *dev;
691 struct inet6_dev *idev;
692
Ben Hutchings4acd4942012-08-14 08:54:51 +0000693 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 idev = __in6_dev_get(dev);
695 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800696 int changed = (!idev->cnf.forwarding) ^ (!newf);
697 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (changed)
699 dev_forward_change(idev);
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800703
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000704static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800705{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800706 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000707 int old;
708
709 if (!rtnl_trylock())
710 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800711
712 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000713 old = *p;
714 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800715
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000716 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000717 if ((!newf) ^ (!old))
718 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
719 NETCONFA_IFINDEX_DEFAULT,
720 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000721 rtnl_unlock();
722 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000723 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000724
Pavel Emelyanove1869322008-01-10 17:43:50 -0800725 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800726 net->ipv6.devconf_dflt->forwarding = newf;
727 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000728 if ((!newf) ^ (!old))
729 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
730 NETCONFA_IFINDEX_ALL,
731 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000732 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800733 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700734 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800735
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000736 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800737 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000738 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800739}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
741
stephen hemminger5c578aed2010-03-17 20:31:11 +0000742/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
744{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000745 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000748 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749#endif
750
751 in6_dev_put(ifp->idev);
752
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100753 if (cancel_delayed_work(&ifp->dad_work))
754 pr_notice("delayed DAD work was pending while freeing ifa=%p\n",
755 ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Herbert Xue9d3e082010-05-18 15:36:06 -0700757 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000758 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return;
760 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000761 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Lai Jiangshane5785982011-03-15 18:00:14 +0800763 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Brian Haleye55ffac2006-07-10 15:25:51 -0700766static void
767ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
768{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000769 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700770 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700771
772 /*
773 * Each device address list is sorted in order of scope -
774 * global before linklocal.
775 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000776 list_for_each(p, &idev->addr_list) {
777 struct inet6_ifaddr *ifa
778 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700779 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700780 break;
781 }
782
David S. Millerb54c9b92010-03-25 21:25:30 -0700783 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700784}
785
Eric Dumazetddbe5032012-07-18 08:11:12 +0000786static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900787{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000788 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/* On success it returns ifp with increased reference count */
792
793static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200794ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
795 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200796 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct inet6_ifaddr *ifa = NULL;
799 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000800 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900802 int addr_type = ipv6_addr_type(addr);
803
804 if (addr_type == IPV6_ADDR_ANY ||
805 addr_type & IPV6_ADDR_MULTICAST ||
806 (!(idev->dev->flags & IFF_LOOPBACK) &&
807 addr_type & IPV6_ADDR_LOOPBACK))
808 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700810 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (idev->dead) {
812 err = -ENODEV; /*XXX*/
813 goto out2;
814 }
815
Brian Haley56d417b2009-06-01 03:07:33 -0700816 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700817 err = -EACCES;
818 goto out2;
819 }
820
stephen hemminger5c578aed2010-03-17 20:31:11 +0000821 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900824 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800825 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 err = -EEXIST;
827 goto out;
828 }
829
Ingo Oeser322f74a2006-03-20 23:01:47 -0800830 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800833 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 err = -ENOBUFS;
835 goto out;
836 }
837
David S. Miller8f031512011-12-06 16:48:14 -0500838 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (IS_ERR(rt)) {
840 err = PTR_ERR(rt);
841 goto out;
842 }
843
Jiri Pirkobba24892013-12-07 19:26:57 +0100844 neigh_parms_data_state_setall(idev->nd_parms);
845
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000846 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200847 if (peer_addr)
848 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700851 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100852 INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000853 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 ifa->scope = scope;
855 ifa->prefix_len = pfxlen;
856 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200857 ifa->valid_lft = valid_lft;
858 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000860 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Keir Fraser57f5f542006-08-29 02:43:49 -0700862 ifa->rt = rt;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 ifa->idev = idev;
865 in6_dev_hold(idev);
866 /* For caller */
867 in6_ifa_hold(ifa);
868
869 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000870 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
stephen hemminger5c578aed2010-03-17 20:31:11 +0000872 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000873 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 write_lock(&idev->lock);
876 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700877 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000880 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 in6_ifa_hold(ifa);
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 in6_ifa_hold(ifa);
885 write_unlock(&idev->lock);
886out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700887 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700889 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800890 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 else {
892 kfree(ifa);
893 ifa = ERR_PTR(err);
894 }
895
896 return ifa;
897out:
stephen hemminger5c578aed2010-03-17 20:31:11 +0000898 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 goto out2;
900}
901
Thomas Haller5b84efe2014-01-15 15:36:59 +0100902enum cleanup_prefix_rt_t {
903 CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */
904 CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */
905 CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */
906};
907
908/*
909 * Check, whether the prefix for ifp would still need a prefix route
910 * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
911 * constants.
912 *
913 * 1) we don't purge prefix if address was not permanent.
914 * prefix is managed by its own lifetime.
915 * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
916 * 3) if there are no addresses, delete prefix.
917 * 4) if there are still other permanent address(es),
918 * corresponding prefix is still permanent.
919 * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
920 * don't purge the prefix, assume user space is managing it.
921 * 6) otherwise, update prefix lifetime to the
922 * longest valid lifetime among the corresponding
923 * addresses on the device.
924 * Note: subsequent RA will update lifetime.
925 **/
926static enum cleanup_prefix_rt_t
927check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires)
928{
929 struct inet6_ifaddr *ifa;
930 struct inet6_dev *idev = ifp->idev;
931 unsigned long lifetime;
932 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL;
933
934 *expires = jiffies;
935
936 list_for_each_entry(ifa, &idev->addr_list, if_list) {
937 if (ifa == ifp)
938 continue;
939 if (!ipv6_prefix_equal(&ifa->addr, &ifp->addr,
940 ifp->prefix_len))
941 continue;
942 if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE))
943 return CLEANUP_PREFIX_RT_NOP;
944
945 action = CLEANUP_PREFIX_RT_EXPIRE;
946
947 spin_lock(&ifa->lock);
948
949 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
950 /*
951 * Note: Because this address is
952 * not permanent, lifetime <
953 * LONG_MAX / HZ here.
954 */
955 if (time_before(*expires, ifa->tstamp + lifetime * HZ))
956 *expires = ifa->tstamp + lifetime * HZ;
957 spin_unlock(&ifa->lock);
958 }
959
960 return action;
961}
962
963static void
964cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires, bool del_rt)
965{
966 struct rt6_info *rt;
967
968 rt = addrconf_get_prefix_route(&ifp->addr,
969 ifp->prefix_len,
970 ifp->idev->dev,
971 0, RTF_GATEWAY | RTF_DEFAULT);
972 if (rt) {
973 if (del_rt)
974 ip6_del_rt(rt);
975 else {
976 if (!(rt->rt6i_flags & RTF_EXPIRES))
977 rt6_set_expires(rt, expires);
978 ip6_rt_put(rt);
979 }
980 }
981}
982
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984/* This function wants to get referenced ifp and releases it before return */
985
986static void ipv6_del_addr(struct inet6_ifaddr *ifp)
987{
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700988 int state;
Thomas Haller5b84efe2014-01-15 15:36:59 +0100989 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP;
990 unsigned long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100992 ASSERT_RTNL();
993
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700994 spin_lock_bh(&ifp->state_lock);
995 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700996 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700997 spin_unlock_bh(&ifp->state_lock);
998
999 if (state == INET6_IFADDR_STATE_DEAD)
1000 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
stephen hemminger5c578aed2010-03-17 20:31:11 +00001002 spin_lock_bh(&addrconf_hash_lock);
1003 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +00001004 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Thomas Haller5b84efe2014-01-15 15:36:59 +01001006 write_lock_bh(&ifp->idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -04001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001009 list_del(&ifp->tmp_list);
1010 if (ifp->ifpub) {
1011 in6_ifa_put(ifp->ifpub);
1012 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
stephen hemminger372e6c82010-03-17 20:31:09 +00001014 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Thomas Haller5b84efe2014-01-15 15:36:59 +01001017 if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE))
1018 action = check_cleanup_prefix_route(ifp, &expires);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001019
Thomas Haller5b84efe2014-01-15 15:36:59 +01001020 list_del_init(&ifp->if_list);
1021 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Thomas Haller5b84efe2014-01-15 15:36:59 +01001023 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001025 addrconf_del_dad_work(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 ipv6_ifa_notify(RTM_DELADDR, ifp);
1028
Cong Wangf88c91d2013-04-14 23:18:43 +08001029 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Thomas Haller5b84efe2014-01-15 15:36:59 +01001031 if (action != CLEANUP_PREFIX_RT_NOP) {
1032 cleanup_prefix_route(ifp, expires,
1033 action == CLEANUP_PREFIX_RT_DEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035
Daniel Walterc3968a82011-04-13 21:10:57 +00001036 /* clean up prefsrc entries */
1037 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001038out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 in6_ifa_put(ifp);
1040}
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1043{
1044 struct inet6_dev *idev = ifp->idev;
1045 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001046 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001047 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 int tmp_plen;
1049 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001050 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001051 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Jiri Pirko53bd6742013-12-06 09:45:22 +01001053 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (ift) {
1055 spin_lock_bh(&ift->lock);
1056 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1057 spin_unlock_bh(&ift->lock);
1058 tmpaddr = &addr;
1059 } else {
1060 tmpaddr = NULL;
1061 }
1062retry:
1063 in6_dev_hold(idev);
1064 if (idev->cnf.use_tempaddr <= 0) {
Jiri Pirko53bd6742013-12-06 09:45:22 +01001065 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001066 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 in6_dev_put(idev);
1068 ret = -1;
1069 goto out;
1070 }
1071 spin_lock_bh(&ifp->lock);
1072 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1073 idev->cnf.use_tempaddr = -1; /*XXX*/
1074 spin_unlock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01001075 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001076 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1077 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 in6_dev_put(idev);
1079 ret = -1;
1080 goto out;
1081 }
1082 in6_ifa_hold(ifp);
1083 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001084 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001086 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 tmp_valid_lft = min_t(__u32,
1088 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001089 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001090 tmp_prefered_lft = min_t(__u32,
1091 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001092 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001093 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 tmp_plen = ifp->prefix_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 tmp_tstamp = ifp->tstamp;
1096 spin_unlock_bh(&ifp->lock);
1097
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001098 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001099 idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01001100 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) / HZ;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001101 write_unlock_bh(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001102
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001103 /* A temporary address is created only if this calculated Preferred
1104 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1105 * an implementation must not create a temporary address with a zero
1106 * Preferred Lifetime.
Heiner Kallweitecab6702014-03-12 22:13:19 +01001107 * Use age calculation as in addrconf_verify to avoid unnecessary
1108 * temporary addresses being generated.
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001109 */
Heiner Kallweitecab6702014-03-12 22:13:19 +01001110 age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
1111 if (tmp_prefered_lft <= regen_advance + age) {
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001112 in6_ifa_put(ifp);
1113 in6_dev_put(idev);
1114 ret = -1;
1115 goto out;
1116 }
1117
Neil Horman95c385b2007-04-25 17:08:10 -07001118 addr_flags = IFA_F_TEMPORARY;
1119 /* set in addrconf_prefix_rcv() */
1120 if (ifp->flags & IFA_F_OPTIMISTIC)
1121 addr_flags |= IFA_F_OPTIMISTIC;
1122
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001123 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1124 ipv6_addr_scope(&addr), addr_flags,
1125 tmp_valid_lft, tmp_prefered_lft);
1126 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 in6_ifa_put(ifp);
1128 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001129 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 tmpaddr = &addr;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001131 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 goto retry;
1133 }
1134
1135 spin_lock_bh(&ift->lock);
1136 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001137 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 ift->tstamp = tmp_tstamp;
1139 spin_unlock_bh(&ift->lock);
1140
David S. Millercf22f9a2012-04-14 21:37:40 -04001141 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 in6_ifa_put(ift);
1143 in6_dev_put(idev);
1144out:
1145 return ret;
1146}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001149 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001151enum {
1152 IPV6_SADDR_RULE_INIT = 0,
1153 IPV6_SADDR_RULE_LOCAL,
1154 IPV6_SADDR_RULE_SCOPE,
1155 IPV6_SADDR_RULE_PREFERRED,
1156#ifdef CONFIG_IPV6_MIP6
1157 IPV6_SADDR_RULE_HOA,
1158#endif
1159 IPV6_SADDR_RULE_OIF,
1160 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001161 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001162 IPV6_SADDR_RULE_ORCHID,
1163 IPV6_SADDR_RULE_PREFIX,
1164 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001165};
1166
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001167struct ipv6_saddr_score {
1168 int rule;
1169 int addr_type;
1170 struct inet6_ifaddr *ifa;
1171 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1172 int scopedist;
1173 int matchlen;
1174};
1175
1176struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001177 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001178 int ifindex;
1179 int scope;
1180 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001181 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001182};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001183
Dave Jonesb6f99a22007-03-22 12:27:49 -07001184static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001186 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001187 return 1;
1188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
Benjamin Thery3de23252008-05-28 14:51:24 +02001191static int ipv6_get_saddr_eval(struct net *net,
1192 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001193 struct ipv6_saddr_dst *dst,
1194 int i)
1195{
1196 int ret;
1197
1198 if (i <= score->rule) {
1199 switch (i) {
1200 case IPV6_SADDR_RULE_SCOPE:
1201 ret = score->scopedist;
1202 break;
1203 case IPV6_SADDR_RULE_PREFIX:
1204 ret = score->matchlen;
1205 break;
1206 default:
1207 ret = !!test_bit(i, score->scorebits);
1208 }
1209 goto out;
1210 }
1211
1212 switch (i) {
1213 case IPV6_SADDR_RULE_INIT:
1214 /* Rule 0: remember if hiscore is not ready yet */
1215 ret = !!score->ifa;
1216 break;
1217 case IPV6_SADDR_RULE_LOCAL:
1218 /* Rule 1: Prefer same address */
1219 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1220 break;
1221 case IPV6_SADDR_RULE_SCOPE:
1222 /* Rule 2: Prefer appropriate scope
1223 *
1224 * ret
1225 * ^
1226 * -1 | d 15
1227 * ---+--+-+---> scope
1228 * |
1229 * | d is scope of the destination.
1230 * B-d | \
1231 * | \ <- smaller scope is better if
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08001232 * B-15 | \ if scope is enough for destination.
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001233 * | ret = B - scope (-1 <= scope >= d <= 15).
1234 * d-C-1 | /
1235 * |/ <- greater is better
1236 * -C / if scope is not enough for destination.
1237 * /| ret = scope - C (-1 <= d < scope <= 15).
1238 *
1239 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1240 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1241 * Assume B = 0 and we get C > 29.
1242 */
1243 ret = __ipv6_addr_src_scope(score->addr_type);
1244 if (ret >= dst->scope)
1245 ret = -ret;
1246 else
1247 ret -= 128; /* 30 is enough */
1248 score->scopedist = ret;
1249 break;
1250 case IPV6_SADDR_RULE_PREFERRED:
1251 /* Rule 3: Avoid deprecated and optimistic addresses */
1252 ret = ipv6_saddr_preferred(score->addr_type) ||
1253 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1254 break;
1255#ifdef CONFIG_IPV6_MIP6
1256 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001257 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001258 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001259 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1260 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001261 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001262 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001263#endif
1264 case IPV6_SADDR_RULE_OIF:
1265 /* Rule 5: Prefer outgoing interface */
1266 ret = (!dst->ifindex ||
1267 dst->ifindex == score->ifa->idev->dev->ifindex);
1268 break;
1269 case IPV6_SADDR_RULE_LABEL:
1270 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001271 ret = ipv6_addr_label(net,
1272 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001273 score->ifa->idev->dev->ifindex) == dst->label;
1274 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001275 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001276 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001277 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001278 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001279 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001280 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1281 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1282 score->ifa->idev->cnf.use_tempaddr >= 2;
1283 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001284 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001285 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001286 case IPV6_SADDR_RULE_ORCHID:
1287 /* Rule 8-: Prefer ORCHID vs ORCHID or
1288 * non-ORCHID vs non-ORCHID
1289 */
1290 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1291 ipv6_addr_orchid(dst->addr));
1292 break;
1293 case IPV6_SADDR_RULE_PREFIX:
1294 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001295 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1296 if (ret > score->ifa->prefix_len)
1297 ret = score->ifa->prefix_len;
1298 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001299 break;
1300 default:
1301 ret = 0;
1302 }
1303
1304 if (ret)
1305 __set_bit(i, score->scorebits);
1306 score->rule = i;
1307out:
1308 return ret;
1309}
1310
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001311int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001312 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001313 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001315 struct ipv6_saddr_score scores[2],
1316 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001317 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001318 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001319 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001321 dst_type = __ipv6_addr_type(daddr);
1322 dst.addr = daddr;
1323 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1324 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001325 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001326 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001327
1328 hiscore->rule = -1;
1329 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001331 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001332
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001333 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001334 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001335
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001336 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001337 * - multicast and link-local destination address,
1338 * the set of candidate source address MUST only
1339 * include addresses assigned to interfaces
1340 * belonging to the same link as the outgoing
1341 * interface.
1342 * (- For site-local destination addresses, the
1343 * set of candidate source addresses MUST only
1344 * include addresses assigned to interfaces
1345 * belonging to the same site as the outgoing
1346 * interface.)
1347 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001348 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1349 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1350 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001351 continue;
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001354 if (!idev)
1355 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001357 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001358 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001359 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001361 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001362 * - Tentative Address (RFC2462 section 5.4)
1363 * - A tentative address is not considered
1364 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001365 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001366 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001367 * - In any case, anycast addresses, multicast
1368 * addresses, and the unspecified address MUST
1369 * NOT be included in a candidate set.
1370 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001371 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1372 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001373 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001374
1375 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1376
1377 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1378 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001379 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001380 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001381 "assigned as unicast address on %s",
1382 dev->name);
1383 continue;
1384 }
1385
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001386 score->rule = -1;
1387 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001388
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001389 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1390 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001391
Benjamin Thery3de23252008-05-28 14:51:24 +02001392 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1393 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001394
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001395 if (minihiscore > miniscore) {
1396 if (i == IPV6_SADDR_RULE_SCOPE &&
1397 score->scopedist > 0) {
1398 /*
1399 * special case:
1400 * each remaining entry
1401 * has too small (not enough)
1402 * scope, because ifa entries
1403 * are sorted by their scope
1404 * values.
1405 */
1406 goto try_nextdev;
1407 }
1408 break;
1409 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001410 if (hiscore->ifa)
1411 in6_ifa_put(hiscore->ifa);
1412
1413 in6_ifa_hold(score->ifa);
1414
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001415 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001416
1417 /* restore our iterator */
1418 score->ifa = hiscore->ifa;
1419
1420 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001423 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001424try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001425 read_unlock_bh(&idev->lock);
1426 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001427 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001429 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001430 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001431
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001432 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001433 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001434 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001436EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Amerigo Wang89657792013-06-29 21:30:49 +08001438int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001439 u32 banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001440{
1441 struct inet6_ifaddr *ifp;
1442 int err = -EADDRNOTAVAIL;
1443
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001444 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1445 if (ifp->scope > IFA_LINK)
1446 break;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001447 if (ifp->scope == IFA_LINK &&
1448 !(ifp->flags & banned_flags)) {
1449 *addr = ifp->addr;
1450 err = 0;
1451 break;
1452 }
1453 }
1454 return err;
1455}
1456
Neil Horman95c385b2007-04-25 17:08:10 -07001457int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001458 u32 banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct inet6_dev *idev;
1461 int err = -EADDRNOTAVAIL;
1462
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001463 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001464 idev = __in6_dev_get(dev);
1465 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001467 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 read_unlock_bh(&idev->lock);
1469 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001470 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return err;
1472}
1473
1474static int ipv6_count_addresses(struct inet6_dev *idev)
1475{
1476 int cnt = 0;
1477 struct inet6_ifaddr *ifp;
1478
1479 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001480 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 cnt++;
1482 read_unlock_bh(&idev->lock);
1483 return cnt;
1484}
1485
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001486int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001487 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001489 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001490 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
stephen hemminger5c578aed2010-03-17 20:31:11 +00001492 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001493 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001494 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001495 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001497 !(ifp->flags&IFA_F_TENTATIVE) &&
1498 (dev == NULL || ifp->idev->dev == dev ||
1499 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1500 rcu_read_unlock_bh();
1501 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001504
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001505 rcu_read_unlock_bh();
1506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001508EXPORT_SYMBOL(ipv6_chk_addr);
1509
David S. Miller3e81c6d2010-03-20 16:18:00 -07001510static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1511 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001513 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001514 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Sasha Levinb67bfe02013-02-27 17:06:00 -08001516 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001517 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001518 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (ipv6_addr_equal(&ifp->addr, addr)) {
1520 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001521 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001524 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001527/* Compares an address/prefix_len with addresses on device @dev.
1528 * If one is found it returns true.
1529 */
1530bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1531 const unsigned int prefix_len, struct net_device *dev)
1532{
1533 struct inet6_dev *idev;
1534 struct inet6_ifaddr *ifa;
1535 bool ret = false;
1536
1537 rcu_read_lock();
1538 idev = __in6_dev_get(dev);
1539 if (idev) {
1540 read_lock_bh(&idev->lock);
1541 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1542 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1543 if (ret)
1544 break;
1545 }
1546 read_unlock_bh(&idev->lock);
1547 }
1548 rcu_read_unlock();
1549
1550 return ret;
1551}
1552EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1553
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001554int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001555{
1556 struct inet6_dev *idev;
1557 struct inet6_ifaddr *ifa;
1558 int onlink;
1559
1560 onlink = 0;
1561 rcu_read_lock();
1562 idev = __in6_dev_get(dev);
1563 if (idev) {
1564 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001565 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001566 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1567 ifa->prefix_len);
1568 if (onlink)
1569 break;
1570 }
1571 read_unlock_bh(&idev->lock);
1572 }
1573 rcu_read_unlock();
1574 return onlink;
1575}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001576EXPORT_SYMBOL(ipv6_chk_prefix);
1577
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001578struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001579 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
David S. Millerb79d1d52010-03-25 21:39:21 -07001581 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001582 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
stephen hemminger5c578aed2010-03-17 20:31:11 +00001584 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001585 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001586 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001587 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (ipv6_addr_equal(&ifp->addr, addr)) {
1589 if (dev == NULL || ifp->idev->dev == dev ||
1590 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001591 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 in6_ifa_hold(ifp);
1593 break;
1594 }
1595 }
1596 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001597 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
David S. Millerb79d1d52010-03-25 21:39:21 -07001599 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602/* Gets referenced address, destroys ifaddr */
1603
Brian Haleycc411d02009-09-09 14:41:32 +00001604static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (ifp->flags&IFA_F_PERMANENT) {
1607 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001608 addrconf_del_dad_work(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001610 if (dad_failed)
1611 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001613 if (dad_failed)
1614 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 } else if (ifp->flags&IFA_F_TEMPORARY) {
1617 struct inet6_ifaddr *ifpub;
1618 spin_lock_bh(&ifp->lock);
1619 ifpub = ifp->ifpub;
1620 if (ifpub) {
1621 in6_ifa_hold(ifpub);
1622 spin_unlock_bh(&ifp->lock);
1623 ipv6_create_tempaddr(ifpub, ifp);
1624 in6_ifa_put(ifpub);
1625 } else {
1626 spin_unlock_bh(&ifp->lock);
1627 }
1628 ipv6_del_addr(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001629 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 ipv6_del_addr(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Herbert Xuf2344a12010-05-18 15:55:27 -07001634static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1635{
1636 int err = -ENOENT;
1637
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001638 spin_lock_bh(&ifp->state_lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07001639 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1640 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1641 err = 0;
1642 }
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001643 spin_unlock_bh(&ifp->state_lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07001644
1645 return err;
1646}
1647
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001648void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1649{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001650 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001651
Ursula Braun853dc2e2010-10-24 23:06:43 +00001652 if (addrconf_dad_end(ifp)) {
1653 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001654 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001655 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001656
Joe Perchese87cc472012-05-13 21:56:26 +00001657 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1658 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001659
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001660 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1661 struct in6_addr addr;
1662
1663 addr.s6_addr32[0] = htonl(0xfe800000);
1664 addr.s6_addr32[1] = 0;
1665
1666 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1667 ipv6_addr_equal(&ifp->addr, &addr)) {
1668 /* DAD failed for link-local based on MAC address */
1669 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001670
Joe Perchesf3213832012-05-15 14:11:53 +00001671 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001672 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001673 }
1674 }
1675
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001676 spin_lock_bh(&ifp->state_lock);
1677 /* transition from _POSTDAD to _ERRDAD */
1678 ifp->state = INET6_IFADDR_STATE_ERRDAD;
1679 spin_unlock_bh(&ifp->state_lock);
1680
1681 addrconf_mod_dad_work(ifp, 0);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001682}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684/* Join to solicited addr multicast group. */
1685
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001686void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
1688 struct in6_addr maddr;
1689
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001690 ASSERT_RTNL();
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1693 return;
1694
1695 addrconf_addr_solict_mult(addr, &maddr);
1696 ipv6_dev_mc_inc(dev, &maddr);
1697}
1698
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001699void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
1701 struct in6_addr maddr;
1702
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001703 ASSERT_RTNL();
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1706 return;
1707
1708 addrconf_addr_solict_mult(addr, &maddr);
1709 __ipv6_dev_mc_dec(idev, &maddr);
1710}
1711
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001712static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001715
1716 ASSERT_RTNL();
1717
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001718 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001719 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1721 if (ipv6_addr_any(&addr))
1722 return;
1723 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1724}
1725
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001726static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001729
1730 ASSERT_RTNL();
1731
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01001732 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001733 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1735 if (ipv6_addr_any(&addr))
1736 return;
1737 __ipv6_dev_ac_dec(ifp->idev, &addr);
1738}
1739
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001740static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1741{
1742 if (dev->addr_len != ETH_ALEN)
1743 return -1;
1744 memcpy(eui, dev->dev_addr, 3);
1745 memcpy(eui + 5, dev->dev_addr + 3, 3);
1746
1747 /*
1748 * The zSeries OSA network cards can be shared among various
1749 * OS instances, but the OSA cards have only one MAC address.
1750 * This leads to duplicate address conflicts in conjunction
1751 * with IPv6 if more than one instance uses the same card.
1752 *
1753 * The driver for these cards can deliver a unique 16-bit
1754 * identifier for each instance sharing the same card. It is
1755 * placed instead of 0xFFFE in the interface identifier. The
1756 * "u" bit of the interface identifier is not inverted in this
1757 * case. Hence the resulting interface identifier has local
1758 * scope according to RFC2373.
1759 */
1760 if (dev->dev_id) {
1761 eui[3] = (dev->dev_id >> 8) & 0xFF;
1762 eui[4] = dev->dev_id & 0xFF;
1763 } else {
1764 eui[3] = 0xFF;
1765 eui[4] = 0xFE;
1766 eui[0] ^= 2;
1767 }
1768 return 0;
1769}
1770
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001771static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1772{
1773 if (dev->addr_len != IEEE802154_ADDR_LEN)
1774 return -1;
1775 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001776 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001777 return 0;
1778}
1779
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001780static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1781{
1782 union fwnet_hwaddr *ha;
1783
1784 if (dev->addr_len != FWNET_ALEN)
1785 return -1;
1786
1787 ha = (union fwnet_hwaddr *)dev->dev_addr;
1788
1789 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1790 eui[0] ^= 2;
1791 return 0;
1792}
1793
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001794static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1795{
1796 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1797 if (dev->addr_len != ARCNET_ALEN)
1798 return -1;
1799 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001800 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001801 return 0;
1802}
1803
1804static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1805{
1806 if (dev->addr_len != INFINIBAND_ALEN)
1807 return -1;
1808 memcpy(eui, dev->dev_addr + 12, 8);
1809 eui[0] |= 2;
1810 return 0;
1811}
1812
stephen hemmingerc61393e2010-10-04 20:17:53 +00001813static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001814{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001815 if (addr == 0)
1816 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001817 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1818 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1819 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1820 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1821 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1822 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1823 eui[1] = 0;
1824 eui[2] = 0x5E;
1825 eui[3] = 0xFE;
1826 memcpy(eui + 4, &addr, 4);
1827 return 0;
1828}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001829
1830static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1831{
1832 if (dev->priv_flags & IFF_ISATAP)
1833 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1834 return -1;
1835}
1836
stephen hemmingeraee80b52011-06-08 10:44:30 +00001837static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1838{
1839 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1840}
1841
Nicolas Dichtele8377352013-08-20 12:16:06 +02001842static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1843{
1844 memcpy(eui, dev->perm_addr, 3);
1845 memcpy(eui + 5, dev->perm_addr + 3, 3);
1846 eui[3] = 0xFF;
1847 eui[4] = 0xFE;
1848 eui[0] ^= 2;
1849 return 0;
1850}
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1853{
1854 switch (dev->type) {
1855 case ARPHRD_ETHER:
1856 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001857 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001859 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001861 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001862 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001863 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001864 case ARPHRD_IPGRE:
1865 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb82013-12-11 17:05:36 +02001866 case ARPHRD_6LOWPAN:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001867 case ARPHRD_IEEE802154:
1868 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001869 case ARPHRD_IEEE1394:
1870 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001871 case ARPHRD_TUNNEL6:
1872 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874 return -1;
1875}
1876
1877static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1878{
1879 int err = -1;
1880 struct inet6_ifaddr *ifp;
1881
1882 read_lock_bh(&idev->lock);
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001883 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1884 if (ifp->scope > IFA_LINK)
1885 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1887 memcpy(eui, ifp->addr.s6_addr+8, 8);
1888 err = 0;
1889 break;
1890 }
1891 }
1892 read_unlock_bh(&idev->lock);
1893 return err;
1894}
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001897static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001900 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 /*
1904 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1905 * check if generated address is not inappropriate
1906 *
1907 * - Reserved subnet anycast (RFC 2526)
1908 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001909 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 * 00-00-5E-FE-xx-xx-xx-xx
1911 * - value 0
1912 * - XXX: already assigned to an address on the device
1913 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001914 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1916 (idev->rndid[7]&0x80))
1917 goto regen;
1918 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1919 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1920 goto regen;
1921 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1922 goto regen;
1923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924}
1925
1926static void ipv6_regen_rndid(unsigned long data)
1927{
1928 struct inet6_dev *idev = (struct inet6_dev *) data;
1929 unsigned long expires;
1930
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001931 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 write_lock_bh(&idev->lock);
1933
1934 if (idev->dead)
1935 goto out;
1936
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001937 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001940 idev->cnf.temp_prefered_lft * HZ -
Jiri Pirko1f9248e2013-12-07 19:26:53 +01001941 idev->cnf.regen_max_retry * idev->cnf.dad_transmits *
1942 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) -
Ben Hutchings784e2712010-06-26 11:42:55 +00001943 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001945 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1946 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 goto out;
1948 }
1949
1950 if (!mod_timer(&idev->regen_timer, expires))
1951 in6_dev_hold(idev);
1952
1953out:
1954 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001955 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 in6_dev_put(idev);
1957}
1958
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001959static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001960{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001962 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965/*
1966 * Add prefix route.
1967 */
1968
1969static void
1970addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001971 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
Thomas Graf86872cb2006-08-22 00:01:08 -07001973 struct fib6_config cfg = {
1974 .fc_table = RT6_TABLE_PREFIX,
1975 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1976 .fc_ifindex = dev->ifindex,
1977 .fc_expires = expires,
1978 .fc_dst_len = plen,
1979 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001980 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001981 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001982 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001984 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 /* Prevent useless cloning on PtP SIT.
1987 This thing is done here expecting that the whole
1988 class of non-broadcast devices need not cloning.
1989 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001990#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001991 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1992 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001993#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Thomas Graf86872cb2006-08-22 00:01:08 -07001995 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001998
1999static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
2000 int plen,
2001 const struct net_device *dev,
2002 u32 flags, u32 noflags)
2003{
2004 struct fib6_node *fn;
2005 struct rt6_info *rt = NULL;
2006 struct fib6_table *table;
2007
2008 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
2009 if (table == NULL)
2010 return NULL;
2011
Li RongQing5744dd92012-09-11 21:59:01 +00002012 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002013 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
2014 if (!fn)
2015 goto out;
2016 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002017 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002018 continue;
2019 if ((rt->rt6i_flags & flags) != flags)
2020 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01002021 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002022 continue;
2023 dst_hold(&rt->dst);
2024 break;
2025 }
2026out:
Li RongQing5744dd92012-09-11 21:59:01 +00002027 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002028 return rt;
2029}
2030
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032/* Create "default" multicast route to the interface */
2033
2034static void addrconf_add_mroute(struct net_device *dev)
2035{
Thomas Graf86872cb2006-08-22 00:01:08 -07002036 struct fib6_config cfg = {
2037 .fc_table = RT6_TABLE_LOCAL,
2038 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2039 .fc_ifindex = dev->ifindex,
2040 .fc_dst_len = 8,
2041 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002042 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002043 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Thomas Graf86872cb2006-08-22 00:01:08 -07002045 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2046
2047 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2051{
2052 struct inet6_dev *idev;
2053
2054 ASSERT_RTNL();
2055
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002056 idev = ipv6_find_idev(dev);
2057 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002058 return ERR_PTR(-ENOBUFS);
2059
2060 if (idev->cnf.disable_ipv6)
2061 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002064 if (!(dev->flags & IFF_LOOPBACK))
2065 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return idev;
2068}
2069
Jiri Pirko53bd6742013-12-06 09:45:22 +01002070static void manage_tempaddrs(struct inet6_dev *idev,
2071 struct inet6_ifaddr *ifp,
2072 __u32 valid_lft, __u32 prefered_lft,
2073 bool create, unsigned long now)
2074{
2075 u32 flags;
2076 struct inet6_ifaddr *ift;
2077
2078 read_lock_bh(&idev->lock);
2079 /* update all temporary addresses in the list */
2080 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2081 int age, max_valid, max_prefered;
2082
2083 if (ifp != ift->ifpub)
2084 continue;
2085
2086 /* RFC 4941 section 3.3:
2087 * If a received option will extend the lifetime of a public
2088 * address, the lifetimes of temporary addresses should
2089 * be extended, subject to the overall constraint that no
2090 * temporary addresses should ever remain "valid" or "preferred"
2091 * for a time longer than (TEMP_VALID_LIFETIME) or
2092 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2093 */
2094 age = (now - ift->cstamp) / HZ;
2095 max_valid = idev->cnf.temp_valid_lft - age;
2096 if (max_valid < 0)
2097 max_valid = 0;
2098
2099 max_prefered = idev->cnf.temp_prefered_lft -
2100 idev->cnf.max_desync_factor - age;
2101 if (max_prefered < 0)
2102 max_prefered = 0;
2103
2104 if (valid_lft > max_valid)
2105 valid_lft = max_valid;
2106
2107 if (prefered_lft > max_prefered)
2108 prefered_lft = max_prefered;
2109
2110 spin_lock(&ift->lock);
2111 flags = ift->flags;
2112 ift->valid_lft = valid_lft;
2113 ift->prefered_lft = prefered_lft;
2114 ift->tstamp = now;
2115 if (prefered_lft > 0)
2116 ift->flags &= ~IFA_F_DEPRECATED;
2117
2118 spin_unlock(&ift->lock);
2119 if (!(flags&IFA_F_TENTATIVE))
2120 ipv6_ifa_notify(0, ift);
2121 }
2122
2123 if ((create || list_empty(&idev->tempaddr_list)) &&
2124 idev->cnf.use_tempaddr > 0) {
2125 /* When a new public address is created as described
2126 * in [ADDRCONF], also create a new temporary address.
2127 * Also create a temporary address if it's enabled but
2128 * no temporary address currently exists.
2129 */
2130 read_unlock_bh(&idev->lock);
2131 ipv6_create_tempaddr(ifp, NULL);
2132 } else {
2133 read_unlock_bh(&idev->lock);
2134 }
2135}
2136
Neil Hormane6bff992012-01-04 10:49:15 +00002137void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 struct prefix_info *pinfo;
2140 __u32 valid_lft;
2141 __u32 prefered_lft;
2142 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002144 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002149 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return;
2151 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 /*
2154 * Validation checks ([ADDRCONF], page 19)
2155 */
2156
2157 addr_type = ipv6_addr_type(&pinfo->prefix);
2158
2159 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2160 return;
2161
2162 valid_lft = ntohl(pinfo->valid);
2163 prefered_lft = ntohl(pinfo->prefered);
2164
2165 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002166 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 return;
2168 }
2169
2170 in6_dev = in6_dev_get(dev);
2171
2172 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002173 net_dbg_ratelimited("addrconf: device %s not configured\n",
2174 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 return;
2176 }
2177
2178 /*
2179 * Two things going on here:
2180 * 1) Add routes for on-link prefixes
2181 * 2) Configure prefixes with the auto flag set
2182 */
2183
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002184 if (pinfo->onlink) {
2185 struct rt6_info *rt;
2186 unsigned long rt_expires;
2187
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002188 /* Avoid arithmetic overflow. Really, we could
2189 * save rt_expires in seconds, likely valid_lft,
2190 * but it would require division in fib gc, that it
2191 * not good.
2192 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002193 if (HZ > USER_HZ)
2194 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2195 else
2196 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002197
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002198 if (addrconf_finite_timeout(rt_expires))
2199 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002201 rt = addrconf_get_prefix_route(&pinfo->prefix,
2202 pinfo->prefix_len,
2203 dev,
2204 RTF_ADDRCONF | RTF_PREFIX_RT,
2205 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002207 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002208 /* Autoconf prefix route */
2209 if (valid_lft == 0) {
2210 ip6_del_rt(rt);
2211 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002212 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002213 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002214 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002215 } else {
Gao feng1716a962012-04-06 00:13:10 +00002216 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
2218 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002219 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002220 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2221 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002222 /* not infinity */
2223 flags |= RTF_EXPIRES;
2224 expires = jiffies_to_clock_t(rt_expires);
2225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002227 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002229 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
2231
2232 /* Try to figure out our local address for this prefix */
2233
2234 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002235 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 struct in6_addr addr;
2237 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002238 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 if (pinfo->prefix_len == 64) {
2241 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002242
2243 if (!ipv6_addr_any(&in6_dev->token)) {
2244 read_lock_bh(&in6_dev->lock);
2245 memcpy(addr.s6_addr + 8,
2246 in6_dev->token.s6_addr + 8, 8);
2247 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002248 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002249 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2250 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 in6_dev_put(in6_dev);
2252 return;
2253 }
2254 goto ok;
2255 }
Joe Perchese87cc472012-05-13 21:56:26 +00002256 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2257 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 in6_dev_put(in6_dev);
2259 return;
2260
2261ok:
2262
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002263 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 if (ifp == NULL && valid_lft) {
2266 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002267 u32 addr_flags = 0;
2268
2269#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2270 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002271 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002272 addr_flags = IFA_F_OPTIMISTIC;
2273#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 /* Do not allow to create too much of autoconfigured
2276 * addresses; this would be too easy way to crash kernel.
2277 */
2278 if (!max_addresses ||
2279 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002280 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2281 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002282 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002283 addr_flags, valid_lft,
2284 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002286 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 in6_dev_put(in6_dev);
2288 return;
2289 }
2290
Jiri Benc8a226b22013-08-01 10:41:28 +02002291 update_lft = 0;
2292 create = 1;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002293 spin_lock_bh(&ifp->lock);
2294 ifp->flags |= IFA_F_MANAGETEMPADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002296 ifp->tokenized = tokenized;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002297 spin_unlock_bh(&ifp->lock);
David S. Millercf22f9a2012-04-14 21:37:40 -04002298 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300
2301 if (ifp) {
Jiri Pirko479840f2013-12-06 09:45:21 +01002302 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 u32 stored_lft;
2305
2306 /* update lifetime (RFC2462 5.5.3 e) */
2307 spin_lock(&ifp->lock);
2308 now = jiffies;
2309 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2310 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2311 else
2312 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002313 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002314 const u32 minimum_lft = min(
2315 stored_lft, (u32)MIN_VALID_LIFETIME);
2316 valid_lft = max(valid_lft, minimum_lft);
2317
2318 /* RFC4862 Section 5.5.3e:
2319 * "Note that the preferred lifetime of the
2320 * corresponding address is always reset to
2321 * the Preferred Lifetime in the received
2322 * Prefix Information option, regardless of
2323 * whether the valid lifetime is also reset or
2324 * ignored."
2325 *
2326 * So we should always update prefered_lft here.
2327 */
2328 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
2331 if (update_lft) {
2332 ifp->valid_lft = valid_lft;
2333 ifp->prefered_lft = prefered_lft;
2334 ifp->tstamp = now;
2335 flags = ifp->flags;
2336 ifp->flags &= ~IFA_F_DEPRECATED;
2337 spin_unlock(&ifp->lock);
2338
2339 if (!(flags&IFA_F_TENTATIVE))
2340 ipv6_ifa_notify(0, ifp);
2341 } else
2342 spin_unlock(&ifp->lock);
2343
Jiri Pirko53bd6742013-12-06 09:45:22 +01002344 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2345 create, now);
David S. Miller5d9efa72013-10-28 20:07:50 -04002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002348 addrconf_verify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
2350 }
2351 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2352 in6_dev_put(in6_dev);
2353}
2354
2355/*
2356 * Set destination address.
2357 * Special case for SIT interfaces where we create a new "virtual"
2358 * device.
2359 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002360int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
2362 struct in6_ifreq ireq;
2363 struct net_device *dev;
2364 int err = -EINVAL;
2365
2366 rtnl_lock();
2367
2368 err = -EFAULT;
2369 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2370 goto err_exit;
2371
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002372 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374 err = -ENODEV;
2375 if (dev == NULL)
2376 goto err_exit;
2377
Amerigo Wang07a93622012-10-29 16:23:10 +00002378#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002380 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 struct ip_tunnel_parm p;
2383
2384 err = -EADDRNOTAVAIL;
2385 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2386 goto err_exit;
2387
2388 memset(&p, 0, sizeof(p));
2389 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2390 p.iph.saddr = 0;
2391 p.iph.version = 4;
2392 p.iph.ihl = 5;
2393 p.iph.protocol = IPPROTO_IPV6;
2394 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002395 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002397 if (ops->ndo_do_ioctl) {
2398 mm_segment_t oldfs = get_fs();
2399
2400 set_fs(KERNEL_DS);
2401 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2402 set_fs(oldfs);
2403 } else
2404 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 if (err == 0) {
2407 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002408 dev = __dev_get_by_name(net, p.name);
2409 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 goto err_exit;
2411 err = dev_open(dev);
2412 }
2413 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002414#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416err_exit:
2417 rtnl_unlock();
2418 return err;
2419}
2420
2421/*
2422 * Manual configuration of address on an interface
2423 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002424static int inet6_addr_add(struct net *net, int ifindex,
2425 const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002426 const struct in6_addr *peer_pfx,
Jiri Pirko479840f2013-12-06 09:45:21 +01002427 unsigned int plen, __u32 ifa_flags,
2428 __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429{
2430 struct inet6_ifaddr *ifp;
2431 struct inet6_dev *idev;
2432 struct net_device *dev;
2433 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002434 u32 flags;
2435 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002436 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002439
Thomas Graf24ef0da2008-05-28 16:54:22 +02002440 if (plen > 128)
2441 return -EINVAL;
2442
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002443 /* check the lifetime */
2444 if (!valid_lft || prefered_lft > valid_lft)
2445 return -EINVAL;
2446
Jiri Pirko53bd6742013-12-06 09:45:22 +01002447 if (ifa_flags & IFA_F_MANAGETEMPADDR && plen != 64)
2448 return -EINVAL;
2449
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002450 dev = __dev_get_by_index(net, ifindex);
2451 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002453
Brian Haley64e724f2010-07-20 10:34:30 +00002454 idev = addrconf_add_dev(dev);
2455 if (IS_ERR(idev))
2456 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
2458 scope = ipv6_addr_scope(pfx);
2459
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002460 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2461 if (addrconf_finite_timeout(timeout)) {
2462 expires = jiffies_to_clock_t(timeout * HZ);
2463 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002464 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002465 } else {
2466 expires = 0;
2467 flags = 0;
2468 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002469 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002470
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002471 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2472 if (addrconf_finite_timeout(timeout)) {
2473 if (timeout == 0)
2474 ifa_flags |= IFA_F_DEPRECATED;
2475 prefered_lft = timeout;
2476 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002477
Jiri Benc8a226b22013-08-01 10:41:28 +02002478 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2479 valid_lft, prefered_lft);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (!IS_ERR(ifp)) {
Thomas Haller761aac72014-01-15 15:36:58 +01002482 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
2483 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2484 expires, flags);
2485 }
2486
Neil Horman95c385b2007-04-25 17:08:10 -07002487 /*
2488 * Note that section 3.1 of RFC 4429 indicates
2489 * that the Optimistic flag should not be set for
2490 * manually configured addresses
2491 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002492 addrconf_dad_start(ifp);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002493 if (ifa_flags & IFA_F_MANAGETEMPADDR)
2494 manage_tempaddrs(idev, ifp, valid_lft, prefered_lft,
2495 true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002497 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 return 0;
2499 }
2500
2501 return PTR_ERR(ifp);
2502}
2503
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002504static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags,
2505 const struct in6_addr *pfx, unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
2507 struct inet6_ifaddr *ifp;
2508 struct inet6_dev *idev;
2509 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002510
Thomas Graf24ef0da2008-05-28 16:54:22 +02002511 if (plen > 128)
2512 return -EINVAL;
2513
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002514 dev = __dev_get_by_index(net, ifindex);
2515 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 return -ENODEV;
2517
David S. Miller7eaa48a2013-08-20 23:44:39 -07002518 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return -ENXIO;
2520
2521 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002522 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 if (ifp->prefix_len == plen &&
2524 ipv6_addr_equal(pfx, &ifp->addr)) {
2525 in6_ifa_hold(ifp);
2526 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002527
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002528 if (!(ifp->flags & IFA_F_TEMPORARY) &&
2529 (ifa_flags & IFA_F_MANAGETEMPADDR))
2530 manage_tempaddrs(idev, ifp, 0, 0, false,
2531 jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 ipv6_del_addr(ifp);
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002533 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 return 0;
2535 }
2536 }
2537 read_unlock_bh(&idev->lock);
2538 return -EADDRNOTAVAIL;
2539}
2540
2541
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002542int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
2544 struct in6_ifreq ireq;
2545 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002546
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002547 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002549
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2551 return -EFAULT;
2552
2553 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002554 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002555 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2556 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 rtnl_unlock();
2558 return err;
2559}
2560
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002561int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
2563 struct in6_ifreq ireq;
2564 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002565
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002566 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 return -EPERM;
2568
2569 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2570 return -EFAULT;
2571
2572 rtnl_lock();
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002573 err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002574 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 rtnl_unlock();
2576 return err;
2577}
2578
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002579static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2580 int plen, int scope)
2581{
2582 struct inet6_ifaddr *ifp;
2583
Jiri Benc8a226b22013-08-01 10:41:28 +02002584 ifp = ipv6_add_addr(idev, addr, NULL, plen,
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002585 scope, IFA_F_PERMANENT,
2586 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002587 if (!IS_ERR(ifp)) {
2588 spin_lock_bh(&ifp->lock);
2589 ifp->flags &= ~IFA_F_TENTATIVE;
2590 spin_unlock_bh(&ifp->lock);
2591 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2592 in6_ifa_put(ifp);
2593 }
2594}
2595
Amerigo Wang07a93622012-10-29 16:23:10 +00002596#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597static void sit_add_v4_addrs(struct inet6_dev *idev)
2598{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 struct in6_addr addr;
2600 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002601 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002602 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002603 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 ASSERT_RTNL();
2606
2607 memset(&addr, 0, sizeof(struct in6_addr));
2608 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2609
2610 if (idev->dev->flags&IFF_POINTOPOINT) {
2611 addr.s6_addr32[0] = htonl(0xfe800000);
2612 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002613 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 } else {
2615 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002616 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002617 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 }
2619
2620 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002621 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002622 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 return;
2624 }
2625
Benjamin Thery6fda7352008-03-05 10:47:47 -08002626 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002627 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002629 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631 int flag = scope;
2632
2633 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 addr.s6_addr32[3] = ifa->ifa_local;
2636
2637 if (ifa->ifa_scope == RT_SCOPE_LINK)
2638 continue;
2639 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2640 if (idev->dev->flags&IFF_POINTOPOINT)
2641 continue;
2642 flag |= IFA_HOST;
2643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002645 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002646 addrconf_prefix_route(&addr, plen, idev->dev, 0,
2647 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 }
2649 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654static void init_loopback(struct net_device *dev)
2655{
2656 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302657 struct net_device *sp_dev;
2658 struct inet6_ifaddr *sp_ifa;
2659 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 /* ::1 */
2662
2663 ASSERT_RTNL();
2664
David S. Miller7eaa48a2013-08-20 23:44:39 -07002665 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002666 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 return;
2668 }
2669
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002670 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302671
2672 /* Add routes to other interface's IPv6 addresses */
2673 for_each_netdev(dev_net(dev), sp_dev) {
2674 if (!strcmp(sp_dev->name, dev->name))
2675 continue;
2676
2677 idev = __in6_dev_get(sp_dev);
2678 if (!idev)
2679 continue;
2680
2681 read_lock_bh(&idev->lock);
2682 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2683
2684 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2685 continue;
2686
Gao feng33d99112014-01-24 16:29:11 +08002687 if (sp_ifa->rt) {
2688 /* This dst has been added to garbage list when
2689 * lo device down, release this obsolete dst and
2690 * reallocate a new router for ifa.
2691 */
2692 if (sp_ifa->rt->dst.obsolete > 0) {
2693 ip6_rt_put(sp_ifa->rt);
2694 sp_ifa->rt = NULL;
2695 } else {
2696 continue;
2697 }
2698 }
Gao fenga881ae12013-06-16 11:14:30 +08002699
François-Xavier Le Bail57ec0af2013-12-02 11:28:49 +01002700 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302701
2702 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002703 if (!IS_ERR(sp_rt)) {
2704 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302705 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002706 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302707 }
2708 read_unlock_bh(&idev->lock);
2709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002712static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002714 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002715 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Neil Horman95c385b2007-04-25 17:08:10 -07002717#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2718 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002719 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002720 addr_flags |= IFA_F_OPTIMISTIC;
2721#endif
2722
2723
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002724 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags,
2725 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002727 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002728 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 in6_ifa_put(ifp);
2730 }
2731}
2732
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02002733static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route)
2734{
2735 if (idev->addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64) {
2736 struct in6_addr addr;
2737
2738 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2739 /* addrconf_add_linklocal also adds a prefix_route and we
2740 * only need to care about prefix routes if ipv6_generate_eui64
2741 * couldn't generate one.
2742 */
2743 if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0)
2744 addrconf_add_linklocal(idev, &addr);
2745 else if (prefix_route)
2746 addrconf_prefix_route(&addr, 64, idev->dev, 0, 0);
2747 }
2748}
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750static void addrconf_dev_config(struct net_device *dev)
2751{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002752 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 ASSERT_RTNL();
2755
Herbert Xu74235a22007-06-14 13:02:55 -07002756 if ((dev->type != ARPHRD_ETHER) &&
2757 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002758 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002759 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002760 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002761 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb82013-12-11 17:05:36 +02002762 (dev->type != ARPHRD_TUNNEL6) &&
2763 (dev->type != ARPHRD_6LOWPAN)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002764 /* Alas, we support only Ethernet autoconfiguration. */
2765 return;
2766 }
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002769 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 return;
2771
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02002772 addrconf_addr_gen(idev, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773}
2774
Amerigo Wang07a93622012-10-29 16:23:10 +00002775#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776static void addrconf_sit_config(struct net_device *dev)
2777{
2778 struct inet6_dev *idev;
2779
2780 ASSERT_RTNL();
2781
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002782 /*
2783 * Configure the tunnel with one of our IPv4
2784 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 * our v4 addrs in the tunnel
2786 */
2787
David S. Miller7eaa48a2013-08-20 23:44:39 -07002788 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002789 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 return;
2791 }
2792
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002793 if (dev->priv_flags & IFF_ISATAP) {
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02002794 addrconf_addr_gen(idev, false);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002795 return;
2796 }
2797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 sit_add_v4_addrs(idev);
2799
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002800 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002803#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Amerigo Wang07a93622012-10-29 16:23:10 +00002805#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002806static void addrconf_gre_config(struct net_device *dev)
2807{
2808 struct inet6_dev *idev;
stephen hemmingeraee80b52011-06-08 10:44:30 +00002809
stephen hemmingeraee80b52011-06-08 10:44:30 +00002810 ASSERT_RTNL();
2811
David S. Miller7eaa48a2013-08-20 23:44:39 -07002812 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002813 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002814 return;
2815 }
2816
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02002817 addrconf_addr_gen(idev, true);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002818}
2819#endif
2820
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002821static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002822 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823{
Jiri Pirko351638e2013-05-28 01:30:21 +00002824 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002825 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002826 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002827 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002829 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002830 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002831 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002832 idev = ipv6_add_dev(dev);
2833 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002834 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002835 }
2836 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002837
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002839 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002840 if (dev->flags & IFF_SLAVE)
2841 break;
2842
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002843 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002844 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002845 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002846 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002847 dev->name);
2848 break;
2849 }
Kristian Slavov99081042006-02-08 16:10:53 -08002850
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002851 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2852 idev = ipv6_add_dev(dev);
2853
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002854 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002855 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002856 run_pending = 1;
2857 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002858 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002859 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002860 /* device is still not ready. */
2861 break;
2862 }
2863
2864 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002865 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002866 /* device is already configured. */
2867 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002868 idev->if_flags |= IF_READY;
2869 }
2870
Joe Perchesf3213832012-05-15 14:11:53 +00002871 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2872 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002873
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002874 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002875 }
2876
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002877 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002878#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 case ARPHRD_SIT:
2880 addrconf_sit_config(dev);
2881 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002882#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002883#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002884 case ARPHRD_IPGRE:
2885 addrconf_gre_config(dev);
2886 break;
2887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 case ARPHRD_LOOPBACK:
2889 init_loopback(dev);
2890 break;
2891
2892 default:
2893 addrconf_dev_config(dev);
2894 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002895 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002896
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002898 if (run_pending)
2899 addrconf_dad_run(idev);
2900
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002901 /*
2902 * If the MTU changed during the interface down,
2903 * when the interface up, the changed MTU must be
2904 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002906 if (idev->cnf.mtu6 != dev->mtu &&
2907 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 rt6_mtu_change(dev, dev->mtu);
2909 idev->cnf.mtu6 = dev->mtu;
2910 }
2911 idev->tstamp = jiffies;
2912 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002913
2914 /*
2915 * If the changed mtu during down is lower than
2916 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 */
2918 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002919 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 }
2921 break;
2922
2923 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002924 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 rt6_mtu_change(dev, dev->mtu);
2926 idev->cnf.mtu6 = dev->mtu;
2927 break;
2928 }
2929
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002930 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2931 idev = ipv6_add_dev(dev);
2932 if (idev)
2933 break;
2934 }
2935
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002936 /*
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08002937 * if MTU under IPV6_MIN_MTU.
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002938 * Stop IPv6 on this interface.
2939 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
2941 case NETDEV_DOWN:
2942 case NETDEV_UNREGISTER:
2943 /*
2944 * Remove all addresses from this interface.
2945 */
2946 addrconf_ifdown(dev, event != NETDEV_DOWN);
2947 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002951 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002952 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002953 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002954 err = snmp6_register_dev(idev);
2955 if (err)
2956 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002959
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002960 case NETDEV_PRE_TYPE_CHANGE:
2961 case NETDEV_POST_TYPE_CHANGE:
2962 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002963 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966 return NOTIFY_OK;
2967}
2968
2969/*
2970 * addrconf module should be notified of a device going up
2971 */
2972static struct notifier_block ipv6_dev_notf = {
2973 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974};
2975
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002976static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002977{
2978 struct inet6_dev *idev;
2979 ASSERT_RTNL();
2980
2981 idev = __in6_dev_get(dev);
2982
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002983 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002984 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002985 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002986 ipv6_mc_unmap(idev);
2987}
2988
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989static int addrconf_ifdown(struct net_device *dev, int how)
2990{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002991 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002992 struct inet6_dev *idev;
2993 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002994 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 ASSERT_RTNL();
2997
David S. Miller73a8bd72011-01-23 23:27:15 -08002998 rt6_ifdown(net, dev);
2999 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 idev = __in6_dev_get(dev);
3002 if (idev == NULL)
3003 return -ENODEV;
3004
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003005 /*
3006 * Step 1: remove reference to ipv6 device from parent device.
3007 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003009 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003011
3012 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003013 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015 /* Step 1.5: remove snmp6 entry */
3016 snmp6_unregister_dev(idev);
3017
3018 }
3019
David S. Miller73a8bd72011-01-23 23:27:15 -08003020 /* Step 2: clear hash table */
3021 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3022 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003023
3024 spin_lock_bh(&addrconf_hash_lock);
3025 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003026 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003027 if (ifa->idev == idev) {
3028 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003029 addrconf_del_dad_work(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003030 goto restart;
3031 }
3032 }
3033 spin_unlock_bh(&addrconf_hash_lock);
3034 }
3035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 write_lock_bh(&idev->lock);
3037
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003038 addrconf_del_rs_timer(idev);
3039
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003040 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003041 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003042 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Denis V. Lunev439e2382008-04-03 13:30:17 -07003044 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 in6_dev_put(idev);
3046
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003047 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003048 while (!list_empty(&idev->tempaddr_list)) {
3049 ifa = list_first_entry(&idev->tempaddr_list,
3050 struct inet6_ifaddr, tmp_list);
3051 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 write_unlock_bh(&idev->lock);
3053 spin_lock_bh(&ifa->lock);
3054
3055 if (ifa->ifpub) {
3056 in6_ifa_put(ifa->ifpub);
3057 ifa->ifpub = NULL;
3058 }
3059 spin_unlock_bh(&ifa->lock);
3060 in6_ifa_put(ifa);
3061 write_lock_bh(&idev->lock);
3062 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003063
stephen hemminger502a2ff2010-03-17 20:31:13 +00003064 while (!list_empty(&idev->addr_list)) {
3065 ifa = list_first_entry(&idev->addr_list,
3066 struct inet6_ifaddr, if_list);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003067 addrconf_del_dad_work(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003068
David S. Miller73a8bd72011-01-23 23:27:15 -08003069 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
David S. Miller73a8bd72011-01-23 23:27:15 -08003071 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003072
David S. Miller73a8bd72011-01-23 23:27:15 -08003073 spin_lock_bh(&ifa->state_lock);
3074 state = ifa->state;
3075 ifa->state = INET6_IFADDR_STATE_DEAD;
3076 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003077
David S. Miller73a8bd72011-01-23 23:27:15 -08003078 if (state != INET6_IFADDR_STATE_DEAD) {
3079 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003080 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003081 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003082 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003083
David S. Miller73a8bd72011-01-23 23:27:15 -08003084 write_lock_bh(&idev->lock);
3085 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 write_unlock_bh(&idev->lock);
3088
3089 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003090 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 ipv6_mc_destroy_dev(idev);
3092 else
3093 ipv6_mc_down(idev);
3094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003096
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003097 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003098 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003099 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 neigh_parms_release(&nd_tbl, idev->nd_parms);
3101 neigh_ifdown(&nd_tbl, dev);
3102 in6_dev_put(idev);
3103 }
3104 return 0;
3105}
3106
3107static void addrconf_rs_timer(unsigned long data)
3108{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003109 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003110 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003111 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003113 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003114 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 goto out;
3116
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003117 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003119
3120 /* Announcement received after solicitation was sent */
3121 if (idev->if_flags & IF_RA_RCVD)
3122 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003124 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003125 write_unlock(&idev->lock);
3126 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3127 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003128 &in6addr_linklocal_allrouters);
3129 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003130 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Cong Wangcaf92bc2013-08-31 13:44:32 +08003132 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003133 /* The wait after the last probe can be shorter */
3134 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3135 idev->cnf.rtr_solicits) ?
3136 idev->cnf.rtr_solicit_delay :
3137 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 /*
3140 * Note: we do not support deprecated "all on-link"
3141 * assumption any longer.
3142 */
Joe Perches91df42b2012-05-15 14:11:54 +00003143 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 }
3145
3146out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003147 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003148put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003149 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150}
3151
3152/*
3153 * Duplicate Address Detection
3154 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003155static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3156{
3157 unsigned long rand_num;
3158 struct inet6_dev *idev = ifp->idev;
3159
Neil Horman95c385b2007-04-25 17:08:10 -07003160 if (ifp->flags & IFA_F_OPTIMISTIC)
3161 rand_num = 0;
3162 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003163 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003164
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003165 ifp->dad_probes = idev->cnf.dad_transmits;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003166 addrconf_mod_dad_work(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003167}
3168
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003169static void addrconf_dad_begin(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170{
3171 struct inet6_dev *idev = ifp->idev;
3172 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174 addrconf_join_solict(dev, &ifp->addr);
3175
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003176 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
3178 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003179 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003180 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003184 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003185 !(ifp->flags&IFA_F_TENTATIVE) ||
3186 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003187 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003188 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 read_unlock_bh(&idev->lock);
3190
3191 addrconf_dad_completed(ifp);
3192 return;
3193 }
3194
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003195 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003196 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003197 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003198 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003199 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003200 * - keep it tentative if it is a permanent address.
3201 * - otherwise, kill it.
3202 */
3203 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003204 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003205 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003206 }
Neil Horman95c385b2007-04-25 17:08:10 -07003207
3208 /*
3209 * Optimistic nodes can start receiving
3210 * Frames right away
3211 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003212 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003213 ip6_ins_rt(ifp->rt);
3214
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003215 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003217 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 read_unlock_bh(&idev->lock);
3219}
3220
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003221static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003223 bool begin_dad = false;
3224
3225 spin_lock_bh(&ifp->state_lock);
3226 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
3227 ifp->state = INET6_IFADDR_STATE_PREDAD;
3228 begin_dad = true;
3229 }
3230 spin_unlock_bh(&ifp->state_lock);
3231
3232 if (begin_dad)
3233 addrconf_mod_dad_work(ifp, 0);
3234}
3235
3236static void addrconf_dad_work(struct work_struct *w)
3237{
3238 struct inet6_ifaddr *ifp = container_of(to_delayed_work(w),
3239 struct inet6_ifaddr,
3240 dad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 struct in6_addr mcaddr;
3243
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003244 enum {
3245 DAD_PROCESS,
3246 DAD_BEGIN,
3247 DAD_ABORT,
3248 } action = DAD_PROCESS;
3249
3250 rtnl_lock();
3251
3252 spin_lock_bh(&ifp->state_lock);
3253 if (ifp->state == INET6_IFADDR_STATE_PREDAD) {
3254 action = DAD_BEGIN;
3255 ifp->state = INET6_IFADDR_STATE_DAD;
3256 } else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) {
3257 action = DAD_ABORT;
3258 ifp->state = INET6_IFADDR_STATE_POSTDAD;
3259 }
3260 spin_unlock_bh(&ifp->state_lock);
3261
3262 if (action == DAD_BEGIN) {
3263 addrconf_dad_begin(ifp);
3264 goto out;
3265 } else if (action == DAD_ABORT) {
3266 addrconf_dad_stop(ifp, 1);
3267 goto out;
3268 }
3269
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003270 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003271 goto out;
3272
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003273 write_lock_bh(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003274 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003275 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 goto out;
3277 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003278
3279 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003280 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3281 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003282 write_unlock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003283 goto out;
3284 }
3285
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003286 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 /*
3288 * DAD was successful
3289 */
3290
Brian Haleycc411d02009-09-09 14:41:32 +00003291 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003292 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003293 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295 addrconf_dad_completed(ifp);
3296
3297 goto out;
3298 }
3299
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003300 ifp->dad_probes--;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003301 addrconf_mod_dad_work(ifp,
3302 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00003303 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003304 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
3306 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003308 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309out:
3310 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003311 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312}
3313
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003314/* ifp->idev must be at least read locked */
3315static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
3316{
3317 struct inet6_ifaddr *ifpiter;
3318 struct inet6_dev *idev = ifp->idev;
3319
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01003320 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
3321 if (ifpiter->scope > IFA_LINK)
3322 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003323 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
3324 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
3325 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
3326 IFA_F_PERMANENT)
3327 return false;
3328 }
3329 return true;
3330}
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3333{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003334 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003335 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003336 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003337
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003338 addrconf_del_dad_work(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340 /*
3341 * Configure the address for reception. Now it is valid.
3342 */
3343
3344 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3345
Tore Anderson026359b2011-08-28 23:47:33 +00003346 /* If added prefix is link local and we are prepared to process
3347 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 */
3349
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003350 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01003351 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003352 send_rs = send_mld &&
3353 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003354 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003355 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003356 read_unlock_bh(&ifp->idev->lock);
3357
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003358 /* While dad is in progress mld report's source address is in6_addrany.
3359 * Resend with proper ll now.
3360 */
3361 if (send_mld)
3362 ipv6_mc_dad_complete(ifp->idev);
3363
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003364 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 /*
3366 * If a host as already performed a random delay
3367 * [...] as part of DAD [...] there is no need
3368 * to delay again before sending the first RS
3369 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003370 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003371 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003372 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003374 write_lock_bh(&ifp->idev->lock);
3375 spin_lock(&ifp->lock);
3376 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003378 addrconf_mod_rs_timer(ifp->idev,
3379 ifp->idev->cnf.rtr_solicit_interval);
3380 spin_unlock(&ifp->lock);
3381 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 }
3383}
3384
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003385static void addrconf_dad_run(struct inet6_dev *idev)
3386{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003387 struct inet6_ifaddr *ifp;
3388
3389 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003390 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003391 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003392 if (ifp->flags & IFA_F_TENTATIVE &&
3393 ifp->state == INET6_IFADDR_STATE_DAD)
3394 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003395 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003396 }
3397 read_unlock_bh(&idev->lock);
3398}
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400#ifdef CONFIG_PROC_FS
3401struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003402 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003404 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405};
3406
Mihai Maruseac1d578302012-01-03 23:31:35 +00003407static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408{
3409 struct inet6_ifaddr *ifa = NULL;
3410 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003411 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003412 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Mihai Maruseac1d578302012-01-03 23:31:35 +00003414 /* initial bucket if pos is 0 */
3415 if (pos == 0) {
3416 state->bucket = 0;
3417 state->offset = 0;
3418 }
3419
3420 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003421 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003422 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003423 if (!net_eq(dev_net(ifa->idev->dev), net))
3424 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003425 /* sync with offset */
3426 if (p < state->offset) {
3427 p++;
3428 continue;
3429 }
3430 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003431 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003432 }
3433
3434 /* prepare for next bucket */
3435 state->offset = 0;
3436 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003438 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439}
3440
stephen hemmingerc2e21292010-03-17 20:31:10 +00003441static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3442 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
3444 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003445 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Sasha Levinb67bfe02013-02-27 17:06:00 -08003447 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003448 if (!net_eq(dev_net(ifa->idev->dev), net))
3449 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003450 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003451 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003452 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003453
3454 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003455 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003456 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003457 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003458 if (!net_eq(dev_net(ifa->idev->dev), net))
3459 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003460 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003461 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003462 }
3463 }
3464
stephen hemmingerc2e21292010-03-17 20:31:10 +00003465 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466}
3467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003469 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003471 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003472 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473}
3474
3475static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3476{
3477 struct inet6_ifaddr *ifa;
3478
3479 ifa = if6_get_next(seq, v);
3480 ++*pos;
3481 return ifa;
3482}
3483
3484static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003485 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003487 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488}
3489
3490static int if6_seq_show(struct seq_file *seq, void *v)
3491{
3492 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01003493 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003494 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 ifp->idev->dev->ifindex,
3496 ifp->prefix_len,
3497 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01003498 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 ifp->idev->dev->name);
3500 return 0;
3501}
3502
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003503static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 .start = if6_seq_start,
3505 .next = if6_seq_next,
3506 .show = if6_seq_show,
3507 .stop = if6_seq_stop,
3508};
3509
3510static int if6_seq_open(struct inode *inode, struct file *file)
3511{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003512 return seq_open_net(inode, file, &if6_seq_ops,
3513 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514}
3515
Arjan van de Ven9a321442007-02-12 00:55:35 -08003516static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 .owner = THIS_MODULE,
3518 .open = if6_seq_open,
3519 .read = seq_read,
3520 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003521 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522};
3523
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003524static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525{
Gao fengd4beaa62013-02-18 01:34:54 +00003526 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 return -ENOMEM;
3528 return 0;
3529}
3530
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003531static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003532{
Gao fengece31ff2013-02-18 01:34:56 +00003533 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003534}
3535
3536static struct pernet_operations if6_proc_net_ops = {
3537 .init = if6_proc_net_init,
3538 .exit = if6_proc_net_exit,
3539};
3540
3541int __init if6_proc_init(void)
3542{
3543 return register_pernet_subsys(&if6_proc_net_ops);
3544}
3545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546void if6_proc_exit(void)
3547{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003548 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549}
3550#endif /* CONFIG_PROC_FS */
3551
Amerigo Wang07a93622012-10-29 16:23:10 +00003552#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003553/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003554int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003555{
3556 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003557 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003558 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003559
stephen hemminger5c578aed2010-03-17 20:31:11 +00003560 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003561 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003562 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003563 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003564 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003565 (ifp->flags & IFA_F_HOMEADDRESS)) {
3566 ret = 1;
3567 break;
3568 }
3569 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00003570 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003571 return ret;
3572}
3573#endif
3574
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575/*
3576 * Periodic address status verification
3577 */
3578
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003579static void addrconf_verify_rtnl(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003581 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 int i;
3584
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003585 ASSERT_RTNL();
3586
stephen hemminger5c578aed2010-03-17 20:31:11 +00003587 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003589 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003591 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003593 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594restart:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003595 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
Yasushi Asanofad8da32013-12-31 12:04:19 +09003598 /* When setting preferred_lft to a value not zero or
3599 * infinity, while valid_lft is infinity
3600 * IFA_F_PERMANENT has a non-infinity life time.
3601 */
3602 if ((ifp->flags & IFA_F_PERMANENT) &&
3603 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 continue;
3605
3606 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003607 /* We try to batch several events at once. */
3608 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003610 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3611 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 spin_unlock(&ifp->lock);
3613 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 ipv6_del_addr(ifp);
3615 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003616 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3617 spin_unlock(&ifp->lock);
3618 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003620 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 int deprecate = 0;
3622
3623 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3624 deprecate = 1;
3625 ifp->flags |= IFA_F_DEPRECATED;
3626 }
3627
Yasushi Asanofad8da32013-12-31 12:04:19 +09003628 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
3629 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 next = ifp->tstamp + ifp->valid_lft * HZ;
3631
3632 spin_unlock(&ifp->lock);
3633
3634 if (deprecate) {
3635 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
3637 ipv6_ifa_notify(0, ifp);
3638 in6_ifa_put(ifp);
3639 goto restart;
3640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3642 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003643 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3644 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01003645 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00003646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 if (age >= ifp->prefered_lft - regen_advance) {
3648 struct inet6_ifaddr *ifpub = ifp->ifpub;
3649 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3650 next = ifp->tstamp + ifp->prefered_lft * HZ;
3651 if (!ifp->regen_count && ifpub) {
3652 ifp->regen_count++;
3653 in6_ifa_hold(ifp);
3654 in6_ifa_hold(ifpub);
3655 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003656
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003657 spin_lock(&ifpub->lock);
3658 ifpub->regen_count = 0;
3659 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 ipv6_create_tempaddr(ifpub, ifp);
3661 in6_ifa_put(ifpub);
3662 in6_ifa_put(ifp);
3663 goto restart;
3664 }
3665 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3666 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3667 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 } else {
3669 /* ifp->prefered_lft <= ifp->valid_lft */
3670 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3671 next = ifp->tstamp + ifp->prefered_lft * HZ;
3672 spin_unlock(&ifp->lock);
3673 }
3674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 }
3676
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003677 next_sec = round_jiffies_up(next);
3678 next_sched = next;
3679
3680 /* If rounded timeout is accurate enough, accept it. */
3681 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3682 next_sched = next_sec;
3683
3684 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3685 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3686 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3687
dingtianhongba3542e2013-08-17 10:27:04 +08003688 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3689 now, next, next_sec, next_sched);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003690 mod_delayed_work(addrconf_wq, &addr_chk_work, next_sched - now);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003691 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692}
3693
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003694static void addrconf_verify_work(struct work_struct *w)
3695{
3696 rtnl_lock();
3697 addrconf_verify_rtnl();
3698 rtnl_unlock();
3699}
3700
3701static void addrconf_verify(void)
3702{
3703 mod_delayed_work(addrconf_wq, &addr_chk_work, 0);
3704}
3705
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003706static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3707 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003708{
3709 struct in6_addr *pfx = NULL;
3710
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003711 *peer_pfx = NULL;
3712
Thomas Graf461d8832006-09-18 00:09:49 -07003713 if (addr)
3714 pfx = nla_data(addr);
3715
3716 if (local) {
3717 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003718 *peer_pfx = pfx;
3719 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003720 }
3721
3722 return pfx;
3723}
3724
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003725static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003726 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3727 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3728 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01003729 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07003730};
3731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732static int
Thomas Graf661d2962013-03-21 07:45:29 +00003733inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003735 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003736 struct ifaddrmsg *ifm;
3737 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003738 struct in6_addr *pfx, *peer_pfx;
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003739 u32 ifa_flags;
Thomas Grafb933f712006-09-18 00:10:19 -07003740 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Thomas Grafb933f712006-09-18 00:10:19 -07003742 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3743 if (err < 0)
3744 return err;
3745
3746 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003747 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 if (pfx == NULL)
3749 return -EINVAL;
3750
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003751 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3752
3753 /* We ignore other flags so far. */
3754 ifa_flags &= IFA_F_MANAGETEMPADDR;
3755
3756 return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx,
3757 ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758}
3759
Jiri Pirko479840f2013-12-06 09:45:21 +01003760static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003761 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003762{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003763 u32 flags;
3764 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003765 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01003766 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003767 bool had_prefixroute;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003768
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003769 ASSERT_RTNL();
3770
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003771 if (!valid_lft || (prefered_lft > valid_lft))
3772 return -EINVAL;
3773
Jiri Pirko53bd6742013-12-06 09:45:22 +01003774 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
3775 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
3776 return -EINVAL;
3777
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003778 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3779 if (addrconf_finite_timeout(timeout)) {
3780 expires = jiffies_to_clock_t(timeout * HZ);
3781 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003782 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003783 } else {
3784 expires = 0;
3785 flags = 0;
3786 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003787 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003788
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003789 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3790 if (addrconf_finite_timeout(timeout)) {
3791 if (timeout == 0)
3792 ifa_flags |= IFA_F_DEPRECATED;
3793 prefered_lft = timeout;
3794 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003795
3796 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003797 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01003798 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
3799 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003800 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01003801 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3802 IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01003803 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003804 ifp->tstamp = jiffies;
3805 ifp->valid_lft = valid_lft;
3806 ifp->prefered_lft = prefered_lft;
3807
3808 spin_unlock_bh(&ifp->lock);
3809 if (!(ifp->flags&IFA_F_TENTATIVE))
3810 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003811
Thomas Haller761aac72014-01-15 15:36:58 +01003812 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
3813 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
3814 expires, flags);
Thomas Haller5b84efe2014-01-15 15:36:59 +01003815 } else if (had_prefixroute) {
3816 enum cleanup_prefix_rt_t action;
3817 unsigned long rt_expires;
3818
3819 write_lock_bh(&ifp->idev->lock);
3820 action = check_cleanup_prefix_route(ifp, &rt_expires);
3821 write_unlock_bh(&ifp->idev->lock);
3822
3823 if (action != CLEANUP_PREFIX_RT_NOP) {
3824 cleanup_prefix_route(ifp, rt_expires,
3825 action == CLEANUP_PREFIX_RT_DEL);
3826 }
Thomas Haller761aac72014-01-15 15:36:58 +01003827 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01003828
3829 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
3830 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
3831 valid_lft = prefered_lft = 0;
3832 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
3833 !was_managetempaddr, jiffies);
3834 }
3835
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003836 addrconf_verify_rtnl();
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003837
3838 return 0;
3839}
3840
3841static int
Thomas Graf661d2962013-03-21 07:45:29 +00003842inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003844 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003845 struct ifaddrmsg *ifm;
3846 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003847 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003848 struct inet6_ifaddr *ifa;
3849 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003850 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01003851 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003852 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Thomas Graf461d8832006-09-18 00:09:49 -07003854 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3855 if (err < 0)
3856 return err;
3857
3858 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003859 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 if (pfx == NULL)
3861 return -EINVAL;
3862
Thomas Graf461d8832006-09-18 00:09:49 -07003863 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003864 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003865
3866 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003867 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003868 preferred_lft = ci->ifa_prefered;
3869 } else {
3870 preferred_lft = INFINITY_LIFE_TIME;
3871 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09003872 }
3873
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003874 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003875 if (dev == NULL)
3876 return -ENODEV;
3877
Jiri Pirko479840f2013-12-06 09:45:21 +01003878 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
3879
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003880 /* We ignore other flags so far. */
Thomas Haller761aac72014-01-15 15:36:58 +01003881 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
3882 IFA_F_NOPREFIXROUTE;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003883
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003884 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003885 if (ifa == NULL) {
3886 /*
3887 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08003888 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07003889 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003890 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003891 ifm->ifa_prefixlen, ifa_flags,
3892 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003893 }
3894
Thomas Graf7198f8c2006-09-18 00:13:46 -07003895 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3896 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3897 err = -EEXIST;
3898 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003899 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003900
3901 in6_ifa_put(ifa);
3902
3903 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904}
3905
Jiri Pirko479840f2013-12-06 09:45:21 +01003906static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07003907 u8 scope, int ifindex)
3908{
3909 struct ifaddrmsg *ifm;
3910
3911 ifm = nlmsg_data(nlh);
3912 ifm->ifa_family = AF_INET6;
3913 ifm->ifa_prefixlen = prefixlen;
3914 ifm->ifa_flags = flags;
3915 ifm->ifa_scope = scope;
3916 ifm->ifa_index = ifindex;
3917}
3918
Thomas Graf85486af2006-09-18 00:11:24 -07003919static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3920 unsigned long tstamp, u32 preferred, u32 valid)
3921{
3922 struct ifa_cacheinfo ci;
3923
Thomas Graf18a31e12010-11-17 04:12:02 +00003924 ci.cstamp = cstamp_delta(cstamp);
3925 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003926 ci.ifa_prefered = preferred;
3927 ci.ifa_valid = valid;
3928
3929 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3930}
3931
Thomas Graf101bb222006-09-18 00:11:52 -07003932static inline int rt_scope(int ifa_scope)
3933{
3934 if (ifa_scope & IFA_HOST)
3935 return RT_SCOPE_HOST;
3936 else if (ifa_scope & IFA_LINK)
3937 return RT_SCOPE_LINK;
3938 else if (ifa_scope & IFA_SITE)
3939 return RT_SCOPE_SITE;
3940 else
3941 return RT_SCOPE_UNIVERSE;
3942}
3943
Thomas Graf0ab68032006-09-18 00:12:35 -07003944static inline int inet6_ifaddr_msgsize(void)
3945{
Thomas Graf339bf982006-11-10 14:10:15 -08003946 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003947 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003948 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01003949 + nla_total_size(sizeof(struct ifa_cacheinfo))
3950 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07003951}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003952
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003954 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003957 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Eric W. Biederman15e47302012-09-07 20:12:54 +00003959 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003960 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003961 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003962
Thomas Graf101bb222006-09-18 00:11:52 -07003963 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3964 ifa->idev->dev->ifindex);
3965
Yasushi Asanofad8da32013-12-31 12:04:19 +09003966 if (!((ifa->flags&IFA_F_PERMANENT) &&
3967 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07003968 preferred = ifa->prefered_lft;
3969 valid = ifa->valid_lft;
3970 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003972 if (preferred > tval)
3973 preferred -= tval;
3974 else
3975 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003976 if (valid != INFINITY_LIFE_TIME) {
3977 if (valid > tval)
3978 valid -= tval;
3979 else
3980 valid = 0;
3981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 }
3983 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003984 preferred = INFINITY_LIFE_TIME;
3985 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 }
Thomas Graf85486af2006-09-18 00:11:24 -07003987
Cong Wang7996c792013-05-22 05:41:06 +00003988 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003989 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3990 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3991 goto error;
3992 } else
3993 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3994 goto error;
3995
3996 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3997 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003998
Jiri Pirko479840f2013-12-06 09:45:21 +01003999 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
4000 goto error;
4001
Thomas Graf0ab68032006-09-18 00:12:35 -07004002 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004003
4004error:
4005 nlmsg_cancel(skb, nlh);
4006 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007}
4008
4009static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004010 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07004013 u8 scope = RT_SCOPE_UNIVERSE;
4014 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
Thomas Graf101bb222006-09-18 00:11:52 -07004016 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
4017 scope = RT_SCOPE_SITE;
4018
Eric W. Biederman15e47302012-09-07 20:12:54 +00004019 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07004020 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004021 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004022
Thomas Graf101bb222006-09-18 00:11:52 -07004023 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07004024 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
4025 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08004026 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
4027 nlmsg_cancel(skb, nlh);
4028 return -EMSGSIZE;
4029 }
Thomas Graf85486af2006-09-18 00:11:24 -07004030
Thomas Graf0ab68032006-09-18 00:12:35 -07004031 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032}
4033
4034static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004035 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07004038 u8 scope = RT_SCOPE_UNIVERSE;
4039 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Thomas Graf101bb222006-09-18 00:11:52 -07004041 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
4042 scope = RT_SCOPE_SITE;
4043
Eric W. Biederman15e47302012-09-07 20:12:54 +00004044 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07004045 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004046 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004047
Thomas Graf101bb222006-09-18 00:11:52 -07004048 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07004049 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
4050 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08004051 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
4052 nlmsg_cancel(skb, nlh);
4053 return -EMSGSIZE;
4054 }
Thomas Graf85486af2006-09-18 00:11:24 -07004055
Thomas Graf0ab68032006-09-18 00:12:35 -07004056 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057}
4058
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004059enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 UNICAST_ADDR,
4061 MULTICAST_ADDR,
4062 ANYCAST_ADDR,
4063};
4064
Eric Dumazet234b27c2009-11-12 04:11:50 +00004065/* called with rcu_read_lock() */
4066static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
4067 struct netlink_callback *cb, enum addr_type_t type,
4068 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 struct ifmcaddr6 *ifmca;
4071 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004072 int err = 1;
4073 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Eric Dumazet234b27c2009-11-12 04:11:50 +00004075 read_lock_bh(&idev->lock);
4076 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00004077 case UNICAST_ADDR: {
4078 struct inet6_ifaddr *ifa;
4079
Eric Dumazet234b27c2009-11-12 04:11:50 +00004080 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00004081 list_for_each_entry(ifa, &idev->addr_list, if_list) {
4082 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004083 continue;
4084 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004085 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004086 cb->nlh->nlmsg_seq,
4087 RTM_NEWADDR,
4088 NLM_F_MULTI);
4089 if (err <= 0)
4090 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004091 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004093 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00004094 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004095 case MULTICAST_ADDR:
4096 /* multicast address */
4097 for (ifmca = idev->mc_list; ifmca;
4098 ifmca = ifmca->next, ip_idx++) {
4099 if (ip_idx < s_ip_idx)
4100 continue;
4101 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004102 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004103 cb->nlh->nlmsg_seq,
4104 RTM_GETMULTICAST,
4105 NLM_F_MULTI);
4106 if (err <= 0)
4107 break;
4108 }
4109 break;
4110 case ANYCAST_ADDR:
4111 /* anycast address */
4112 for (ifaca = idev->ac_list; ifaca;
4113 ifaca = ifaca->aca_next, ip_idx++) {
4114 if (ip_idx < s_ip_idx)
4115 continue;
4116 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004117 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004118 cb->nlh->nlmsg_seq,
4119 RTM_GETANYCAST,
4120 NLM_F_MULTI);
4121 if (err <= 0)
4122 break;
4123 }
4124 break;
4125 default:
4126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004128 read_unlock_bh(&idev->lock);
4129 *p_ip_idx = ip_idx;
4130 return err;
4131}
4132
4133static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4134 enum addr_type_t type)
4135{
4136 struct net *net = sock_net(skb->sk);
4137 int h, s_h;
4138 int idx, ip_idx;
4139 int s_idx, s_ip_idx;
4140 struct net_device *dev;
4141 struct inet6_dev *idev;
4142 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004143
4144 s_h = cb->args[0];
4145 s_idx = idx = cb->args[1];
4146 s_ip_idx = ip_idx = cb->args[2];
4147
4148 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004149 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004150 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4151 idx = 0;
4152 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004153 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004154 if (idx < s_idx)
4155 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004156 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004157 s_ip_idx = 0;
4158 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004159 idev = __in6_dev_get(dev);
4160 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004161 goto cont;
4162
4163 if (in6_dump_addrs(idev, skb, cb, type,
4164 s_ip_idx, &ip_idx) <= 0)
4165 goto done;
4166cont:
4167 idx++;
4168 }
4169 }
4170done:
4171 rcu_read_unlock();
4172 cb->args[0] = h;
4173 cb->args[1] = idx;
4174 cb->args[2] = ip_idx;
4175
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 return skb->len;
4177}
4178
4179static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4180{
4181 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 return inet6_dump_addr(skb, cb, type);
4184}
4185
4186static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4187{
4188 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004189
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 return inet6_dump_addr(skb, cb, type);
4191}
4192
4193
4194static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4195{
4196 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004197
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 return inet6_dump_addr(skb, cb, type);
4199}
4200
Thomas Graf661d2962013-03-21 07:45:29 +00004201static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004202{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004203 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004204 struct ifaddrmsg *ifm;
4205 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004206 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004207 struct net_device *dev = NULL;
4208 struct inet6_ifaddr *ifa;
4209 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004210 int err;
4211
Thomas Graf1b29fc22006-09-18 00:10:50 -07004212 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4213 if (err < 0)
4214 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004215
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004216 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004217 if (addr == NULL) {
4218 err = -EINVAL;
4219 goto errout;
4220 }
4221
4222 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004223 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004224 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004225
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004226 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4227 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004228 err = -EADDRNOTAVAIL;
4229 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004230 }
4231
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004232 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4233 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004234 err = -ENOBUFS;
4235 goto errout_ifa;
4236 }
4237
Eric W. Biederman15e47302012-09-07 20:12:54 +00004238 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004239 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004240 if (err < 0) {
4241 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4242 WARN_ON(err == -EMSGSIZE);
4243 kfree_skb(skb);
4244 goto errout_ifa;
4245 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004246 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004247errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004248 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004249errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004250 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004251}
4252
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4254{
4255 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004256 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004257 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
Thomas Graf0ab68032006-09-18 00:12:35 -07004259 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004260 if (skb == NULL)
4261 goto errout;
4262
4263 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004264 if (err < 0) {
4265 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4266 WARN_ON(err == -EMSGSIZE);
4267 kfree_skb(skb);
4268 goto errout;
4269 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004270 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4271 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004272errout:
4273 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004274 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275}
4276
Dave Jonesb6f99a22007-03-22 12:27:49 -07004277static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 __s32 *array, int bytes)
4279{
Thomas Graf04561c12006-11-14 19:53:58 -08004280 BUG_ON(bytes < (DEVCONF_MAX * 4));
4281
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 memset(array, 0, bytes);
4283 array[DEVCONF_FORWARDING] = cnf->forwarding;
4284 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4285 array[DEVCONF_MTU6] = cnf->mtu6;
4286 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4287 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4288 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4289 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4290 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004291 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4292 jiffies_to_msecs(cnf->rtr_solicit_interval);
4293 array[DEVCONF_RTR_SOLICIT_DELAY] =
4294 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004296 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4297 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4298 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4299 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4301 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4302 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4303 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4304 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004306 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004307 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004308#ifdef CONFIG_IPV6_ROUTER_PREF
4309 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004310 array[DEVCONF_RTR_PROBE_INTERVAL] =
4311 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004312#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004313 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4314#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004315#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004316 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004317 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004318#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4319 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4320#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004321#ifdef CONFIG_IPV6_MROUTE
4322 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4323#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004324 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004325 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004326 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004327 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004328 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Ben Greeard9333192014-06-25 14:44:53 -07004329 array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330}
4331
Thomas Grafb382b192010-11-16 04:33:57 +00004332static inline size_t inet6_ifla6_size(void)
4333{
4334 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4335 + nla_total_size(sizeof(struct ifla_cacheinfo))
4336 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4337 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004338 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4339 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004340}
4341
Thomas Graf339bf982006-11-10 14:10:15 -08004342static inline size_t inet6_if_nlmsg_size(void)
4343{
4344 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4345 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4346 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4347 + nla_total_size(4) /* IFLA_MTU */
4348 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004349 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004350}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004351
Eric Dumazetbe281e52011-05-19 01:14:23 +00004352static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004353 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004354{
4355 int i;
4356 int pad = bytes - sizeof(u64) * items;
4357 BUG_ON(pad < 0);
4358
4359 /* Use put_unaligned() because stats may not be aligned for u64. */
4360 put_unaligned(items, &stats[0]);
4361 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004362 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004363
4364 memset(&stats[items], 0, pad);
4365}
4366
WANG Cong698365f2014-05-05 15:55:55 -07004367static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib,
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004368 int items, int bytes, size_t syncpoff)
4369{
4370 int i;
4371 int pad = bytes - sizeof(u64) * items;
4372 BUG_ON(pad < 0);
4373
4374 /* Use put_unaligned() because stats may not be aligned for u64. */
4375 put_unaligned(items, &stats[0]);
4376 for (i = 1; i < items; i++)
4377 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4378
4379 memset(&stats[items], 0, pad);
4380}
4381
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004382static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4383 int bytes)
4384{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004385 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004386 case IFLA_INET6_STATS:
WANG Cong698365f2014-05-05 15:55:55 -07004387 __snmp6_fill_stats64(stats, idev->stats.ipv6,
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004388 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004389 break;
4390 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004391 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004392 break;
4393 }
4394}
4395
Thomas Grafb382b192010-11-16 04:33:57 +00004396static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004398 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004399 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
David S. Millerc78679e2012-04-01 20:27:33 -04004401 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4402 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004404 ci.tstamp = cstamp_delta(idev->tstamp);
4405 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e2013-12-07 19:26:53 +01004406 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04004407 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4408 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004409 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4410 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004411 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004412 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004414 /* XXX - MC not implemented */
4415
4416 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4417 if (nla == NULL)
4418 goto nla_put_failure;
4419 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4420
4421 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4422 if (nla == NULL)
4423 goto nla_put_failure;
4424 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004426 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4427 if (nla == NULL)
4428 goto nla_put_failure;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02004429
4430 if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->addr_gen_mode))
4431 goto nla_put_failure;
4432
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004433 read_lock_bh(&idev->lock);
4434 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4435 read_unlock_bh(&idev->lock);
4436
Thomas Grafb382b192010-11-16 04:33:57 +00004437 return 0;
4438
4439nla_put_failure:
4440 return -EMSGSIZE;
4441}
4442
4443static size_t inet6_get_link_af_size(const struct net_device *dev)
4444{
4445 if (!__in6_dev_get(dev))
4446 return 0;
4447
4448 return inet6_ifla6_size();
4449}
4450
4451static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4452{
4453 struct inet6_dev *idev = __in6_dev_get(dev);
4454
4455 if (!idev)
4456 return -ENODATA;
4457
4458 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4459 return -EMSGSIZE;
4460
4461 return 0;
4462}
4463
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004464static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4465{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004466 struct inet6_ifaddr *ifp;
4467 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004468 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004469 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004470
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004471 ASSERT_RTNL();
4472
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004473 if (token == NULL)
4474 return -EINVAL;
4475 if (ipv6_addr_any(token))
4476 return -EINVAL;
4477 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4478 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004479 if (!ipv6_accept_ra(idev))
4480 return -EINVAL;
4481 if (idev->cnf.rtr_solicits <= 0)
4482 return -EINVAL;
4483
4484 write_lock_bh(&idev->lock);
4485
4486 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4487 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4488
4489 write_unlock_bh(&idev->lock);
4490
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004491 if (!idev->dead && (idev->if_flags & IF_READY) &&
4492 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4493 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004494
4495 /* If we're not ready, then normal ifup will take care
4496 * of this. Otherwise, we need to request our rs here.
4497 */
4498 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4499 update_rs = true;
4500 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004501
4502 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004503
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004504 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004505 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004506 idev->rs_probes = 1;
4507 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4508 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004509
4510 /* Well, that's kinda nasty ... */
4511 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4512 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004513 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004514 ifp->valid_lft = 0;
4515 ifp->prefered_lft = 0;
4516 }
4517 spin_unlock(&ifp->lock);
4518 }
4519
4520 write_unlock_bh(&idev->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004521 addrconf_verify_rtnl();
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004522 return 0;
4523}
4524
4525static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4526{
4527 int err = -EINVAL;
4528 struct inet6_dev *idev = __in6_dev_get(dev);
4529 struct nlattr *tb[IFLA_INET6_MAX + 1];
4530
4531 if (!idev)
4532 return -EAFNOSUPPORT;
4533
4534 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4535 BUG();
4536
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02004537 if (tb[IFLA_INET6_TOKEN]) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004538 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02004539 if (err)
4540 return err;
4541 }
4542
4543 if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
4544 u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
4545
4546 if (mode != IN6_ADDR_GEN_MODE_EUI64 &&
4547 mode != IN6_ADDR_GEN_MODE_NONE)
4548 return -EINVAL;
4549 idev->addr_gen_mode = mode;
4550 err = 0;
4551 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004552
4553 return err;
4554}
4555
Thomas Grafb382b192010-11-16 04:33:57 +00004556static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004557 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004558{
4559 struct net_device *dev = idev->dev;
4560 struct ifinfomsg *hdr;
4561 struct nlmsghdr *nlh;
4562 void *protoinfo;
4563
Eric W. Biederman15e47302012-09-07 20:12:54 +00004564 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004565 if (nlh == NULL)
4566 return -EMSGSIZE;
4567
4568 hdr = nlmsg_data(nlh);
4569 hdr->ifi_family = AF_INET6;
4570 hdr->__ifi_pad = 0;
4571 hdr->ifi_type = dev->type;
4572 hdr->ifi_index = dev->ifindex;
4573 hdr->ifi_flags = dev_get_flags(dev);
4574 hdr->ifi_change = 0;
4575
David S. Millerc78679e2012-04-01 20:27:33 -04004576 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4577 (dev->addr_len &&
4578 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4579 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4580 (dev->ifindex != dev->iflink &&
4581 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4582 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004583 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4584 if (protoinfo == NULL)
4585 goto nla_put_failure;
4586
4587 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4588 goto nla_put_failure;
4589
Thomas Graf04561c12006-11-14 19:53:58 -08004590 nla_nest_end(skb, protoinfo);
4591 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
Thomas Graf04561c12006-11-14 19:53:58 -08004593nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004594 nlmsg_cancel(skb, nlh);
4595 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596}
4597
4598static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4599{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004600 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004601 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004602 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 struct net_device *dev;
4604 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004605 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
Eric Dumazet84d26972009-11-09 12:11:28 +00004607 s_h = cb->args[0];
4608 s_idx = cb->args[1];
4609
4610 rcu_read_lock();
4611 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4612 idx = 0;
4613 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004614 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004615 if (idx < s_idx)
4616 goto cont;
4617 idev = __in6_dev_get(dev);
4618 if (!idev)
4619 goto cont;
4620 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004621 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004622 cb->nlh->nlmsg_seq,
4623 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4624 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004625cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004626 idx++;
4627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004629out:
4630 rcu_read_unlock();
4631 cb->args[1] = idx;
4632 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
4634 return skb->len;
4635}
4636
4637void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4638{
4639 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004640 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004641 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004642
Thomas Graf339bf982006-11-10 14:10:15 -08004643 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004644 if (skb == NULL)
4645 goto errout;
4646
4647 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004648 if (err < 0) {
4649 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4650 WARN_ON(err == -EMSGSIZE);
4651 kfree_skb(skb);
4652 goto errout;
4653 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004654 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004655 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004656errout:
4657 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004658 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659}
4660
Thomas Graf339bf982006-11-10 14:10:15 -08004661static inline size_t inet6_prefix_nlmsg_size(void)
4662{
4663 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4664 + nla_total_size(sizeof(struct in6_addr))
4665 + nla_total_size(sizeof(struct prefix_cacheinfo));
4666}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004667
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004669 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004670 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004672 struct prefixmsg *pmsg;
4673 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 struct prefix_cacheinfo ci;
4675
Eric W. Biederman15e47302012-09-07 20:12:54 +00004676 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004677 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004678 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004679
4680 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004682 pmsg->prefix_pad1 = 0;
4683 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 pmsg->prefix_ifindex = idev->dev->ifindex;
4685 pmsg->prefix_len = pinfo->prefix_len;
4686 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004687 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 pmsg->prefix_flags = 0;
4689 if (pinfo->onlink)
4690 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4691 if (pinfo->autoconf)
4692 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4693
David S. Millerc78679e2012-04-01 20:27:33 -04004694 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4695 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 ci.preferred_time = ntohl(pinfo->prefered);
4697 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004698 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4699 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004700 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Thomas Graf6051e2f2006-11-14 19:54:19 -08004702nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004703 nlmsg_cancel(skb, nlh);
4704 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705}
4706
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004707static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 struct prefix_info *pinfo)
4709{
4710 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004711 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004712 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Thomas Graf339bf982006-11-10 14:10:15 -08004714 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004715 if (skb == NULL)
4716 goto errout;
4717
4718 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004719 if (err < 0) {
4720 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4721 WARN_ON(err == -EMSGSIZE);
4722 kfree_skb(skb);
4723 goto errout;
4724 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004725 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4726 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004727errout:
4728 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004729 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730}
4731
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4733{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004734 struct net *net = dev_net(ifp->idev->dev);
4735
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004736 if (event)
4737 ASSERT_RTNL();
4738
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4740
4741 switch (event) {
4742 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004743 /*
4744 * If the address was optimistic
4745 * we inserted the route at the start of
4746 * our DAD process, so we don't need
4747 * to do it again
4748 */
4749 if (!(ifp->rt->rt6i_node))
4750 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 if (ifp->idev->cnf.forwarding)
4752 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004753 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004754 addrconf_prefix_route(&ifp->peer_addr, 128,
4755 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 break;
4757 case RTM_DELADDR:
4758 if (ifp->idev->cnf.forwarding)
4759 addrconf_leave_anycast(ifp);
4760 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004761 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004762 struct rt6_info *rt;
4763 struct net_device *dev = ifp->idev->dev;
4764
4765 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4766 dev->ifindex, 1);
4767 if (rt) {
4768 dst_hold(&rt->dst);
4769 if (ip6_del_rt(rt))
4770 dst_free(&rt->dst);
4771 }
4772 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004773 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004774
David S. Miller73a8bd72011-01-23 23:27:15 -08004775 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004776 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 break;
4778 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004779 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004780 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781}
4782
4783static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4784{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004785 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 if (likely(ifp->idev->dead == 0))
4787 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004788 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789}
4790
4791#ifdef CONFIG_SYSCTL
4792
4793static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004794int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 void __user *buffer, size_t *lenp, loff_t *ppos)
4796{
4797 int *valp = ctl->data;
4798 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004799 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004800 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 int ret;
4802
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004803 /*
4804 * ctl->data points to idev->cnf.forwarding, we should
4805 * not modify it until we get the rtnl lock.
4806 */
4807 lctl = *ctl;
4808 lctl.data = &val;
4809
4810 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004812 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004813 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004814 if (ret)
4815 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004816 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817}
4818
Brian Haley56d417b2009-06-01 03:07:33 -07004819static void dev_disable_change(struct inet6_dev *idev)
4820{
Cong Wang75538c22013-05-29 11:30:50 +08004821 struct netdev_notifier_info info;
4822
Brian Haley56d417b2009-06-01 03:07:33 -07004823 if (!idev || !idev->dev)
4824 return;
4825
Cong Wang75538c22013-05-29 11:30:50 +08004826 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004827 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004828 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004829 else
Cong Wang75538c22013-05-29 11:30:50 +08004830 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004831}
4832
4833static void addrconf_disable_change(struct net *net, __s32 newf)
4834{
4835 struct net_device *dev;
4836 struct inet6_dev *idev;
4837
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004838 rcu_read_lock();
4839 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004840 idev = __in6_dev_get(dev);
4841 if (idev) {
4842 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4843 idev->cnf.disable_ipv6 = newf;
4844 if (changed)
4845 dev_disable_change(idev);
4846 }
Brian Haley56d417b2009-06-01 03:07:33 -07004847 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004848 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004849}
4850
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004851static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004852{
4853 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004854 int old;
4855
4856 if (!rtnl_trylock())
4857 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004858
4859 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004860 old = *p;
4861 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004862
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004863 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4864 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004865 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004866 }
Brian Haley56d417b2009-06-01 03:07:33 -07004867
4868 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004869 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4870 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004871 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004872 dev_disable_change((struct inet6_dev *)table->extra1);
4873
4874 rtnl_unlock();
4875 return 0;
4876}
4877
4878static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004879int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004880 void __user *buffer, size_t *lenp, loff_t *ppos)
4881{
4882 int *valp = ctl->data;
4883 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004884 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004885 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004886 int ret;
4887
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004888 /*
4889 * ctl->data points to idev->cnf.disable_ipv6, we should
4890 * not modify it until we get the rtnl lock.
4891 */
4892 lctl = *ctl;
4893 lctl.data = &val;
4894
4895 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004896
4897 if (write)
4898 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004899 if (ret)
4900 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004901 return ret;
4902}
4903
stephen hemmingerc92d5492013-12-17 22:37:14 -08004904static
4905int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
4906 void __user *buffer, size_t *lenp, loff_t *ppos)
4907{
4908 int *valp = ctl->data;
4909 int ret;
4910 int old, new;
4911
4912 old = *valp;
4913 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
4914 new = *valp;
4915
4916 if (write && old != new) {
4917 struct net *net = ctl->extra2;
4918
4919 if (!rtnl_trylock())
4920 return restart_syscall();
4921
4922 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
4923 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4924 NETCONFA_IFINDEX_DEFAULT,
4925 net->ipv6.devconf_dflt);
4926 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
4927 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4928 NETCONFA_IFINDEX_ALL,
4929 net->ipv6.devconf_all);
4930 else {
4931 struct inet6_dev *idev = ctl->extra1;
4932
4933 inet6_netconf_notify_devconf(net, NETCONFA_PROXY_NEIGH,
4934 idev->dev->ifindex,
4935 &idev->cnf);
4936 }
4937 rtnl_unlock();
4938 }
4939
4940 return ret;
4941}
4942
4943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944static struct addrconf_sysctl_table
4945{
4946 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004947 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004948} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949 .sysctl_header = NULL,
4950 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004951 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004952 .procname = "forwarding",
4953 .data = &ipv6_devconf.forwarding,
4954 .maxlen = sizeof(int),
4955 .mode = 0644,
4956 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 },
4958 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004959 .procname = "hop_limit",
4960 .data = &ipv6_devconf.hop_limit,
4961 .maxlen = sizeof(int),
4962 .mode = 0644,
4963 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 },
4965 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004966 .procname = "mtu",
4967 .data = &ipv6_devconf.mtu6,
4968 .maxlen = sizeof(int),
4969 .mode = 0644,
4970 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 },
4972 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004973 .procname = "accept_ra",
4974 .data = &ipv6_devconf.accept_ra,
4975 .maxlen = sizeof(int),
4976 .mode = 0644,
4977 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 },
4979 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004980 .procname = "accept_redirects",
4981 .data = &ipv6_devconf.accept_redirects,
4982 .maxlen = sizeof(int),
4983 .mode = 0644,
4984 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 },
4986 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004987 .procname = "autoconf",
4988 .data = &ipv6_devconf.autoconf,
4989 .maxlen = sizeof(int),
4990 .mode = 0644,
4991 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 },
4993 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004994 .procname = "dad_transmits",
4995 .data = &ipv6_devconf.dad_transmits,
4996 .maxlen = sizeof(int),
4997 .mode = 0644,
4998 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 },
5000 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005001 .procname = "router_solicitations",
5002 .data = &ipv6_devconf.rtr_solicits,
5003 .maxlen = sizeof(int),
5004 .mode = 0644,
5005 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 },
5007 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005008 .procname = "router_solicitation_interval",
5009 .data = &ipv6_devconf.rtr_solicit_interval,
5010 .maxlen = sizeof(int),
5011 .mode = 0644,
5012 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 },
5014 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005015 .procname = "router_solicitation_delay",
5016 .data = &ipv6_devconf.rtr_solicit_delay,
5017 .maxlen = sizeof(int),
5018 .mode = 0644,
5019 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 },
5021 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005022 .procname = "force_mld_version",
5023 .data = &ipv6_devconf.force_mld_version,
5024 .maxlen = sizeof(int),
5025 .mode = 0644,
5026 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02005028 {
5029 .procname = "mldv1_unsolicited_report_interval",
5030 .data =
5031 &ipv6_devconf.mldv1_unsolicited_report_interval,
5032 .maxlen = sizeof(int),
5033 .mode = 0644,
5034 .proc_handler = proc_dointvec_ms_jiffies,
5035 },
5036 {
5037 .procname = "mldv2_unsolicited_report_interval",
5038 .data =
5039 &ipv6_devconf.mldv2_unsolicited_report_interval,
5040 .maxlen = sizeof(int),
5041 .mode = 0644,
5042 .proc_handler = proc_dointvec_ms_jiffies,
5043 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005045 .procname = "use_tempaddr",
5046 .data = &ipv6_devconf.use_tempaddr,
5047 .maxlen = sizeof(int),
5048 .mode = 0644,
5049 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 },
5051 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005052 .procname = "temp_valid_lft",
5053 .data = &ipv6_devconf.temp_valid_lft,
5054 .maxlen = sizeof(int),
5055 .mode = 0644,
5056 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 },
5058 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005059 .procname = "temp_prefered_lft",
5060 .data = &ipv6_devconf.temp_prefered_lft,
5061 .maxlen = sizeof(int),
5062 .mode = 0644,
5063 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 },
5065 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005066 .procname = "regen_max_retry",
5067 .data = &ipv6_devconf.regen_max_retry,
5068 .maxlen = sizeof(int),
5069 .mode = 0644,
5070 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 },
5072 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005073 .procname = "max_desync_factor",
5074 .data = &ipv6_devconf.max_desync_factor,
5075 .maxlen = sizeof(int),
5076 .mode = 0644,
5077 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005080 .procname = "max_addresses",
5081 .data = &ipv6_devconf.max_addresses,
5082 .maxlen = sizeof(int),
5083 .mode = 0644,
5084 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 },
5086 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005087 .procname = "accept_ra_defrtr",
5088 .data = &ipv6_devconf.accept_ra_defrtr,
5089 .maxlen = sizeof(int),
5090 .mode = 0644,
5091 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08005092 },
5093 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005094 .procname = "accept_ra_pinfo",
5095 .data = &ipv6_devconf.accept_ra_pinfo,
5096 .maxlen = sizeof(int),
5097 .mode = 0644,
5098 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005099 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005100#ifdef CONFIG_IPV6_ROUTER_PREF
5101 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005102 .procname = "accept_ra_rtr_pref",
5103 .data = &ipv6_devconf.accept_ra_rtr_pref,
5104 .maxlen = sizeof(int),
5105 .mode = 0644,
5106 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005107 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08005108 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005109 .procname = "router_probe_interval",
5110 .data = &ipv6_devconf.rtr_probe_interval,
5111 .maxlen = sizeof(int),
5112 .mode = 0644,
5113 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08005114 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08005115#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005116 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005117 .procname = "accept_ra_rt_info_max_plen",
5118 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
5119 .maxlen = sizeof(int),
5120 .mode = 0644,
5121 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005122 },
5123#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005124#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005125 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005126 .procname = "proxy_ndp",
5127 .data = &ipv6_devconf.proxy_ndp,
5128 .maxlen = sizeof(int),
5129 .mode = 0644,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005130 .proc_handler = addrconf_sysctl_proxy_ndp,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005131 },
5132 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005133 .procname = "accept_source_route",
5134 .data = &ipv6_devconf.accept_source_route,
5135 .maxlen = sizeof(int),
5136 .mode = 0644,
5137 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005138 },
Neil Horman95c385b2007-04-25 17:08:10 -07005139#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5140 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005141 .procname = "optimistic_dad",
5142 .data = &ipv6_devconf.optimistic_dad,
5143 .maxlen = sizeof(int),
5144 .mode = 0644,
5145 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07005146
5147 },
5148#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005149#ifdef CONFIG_IPV6_MROUTE
5150 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005151 .procname = "mc_forwarding",
5152 .data = &ipv6_devconf.mc_forwarding,
5153 .maxlen = sizeof(int),
5154 .mode = 0444,
5155 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005156 },
5157#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005158 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005159 .procname = "disable_ipv6",
5160 .data = &ipv6_devconf.disable_ipv6,
5161 .maxlen = sizeof(int),
5162 .mode = 0644,
5163 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005164 },
5165 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005166 .procname = "accept_dad",
5167 .data = &ipv6_devconf.accept_dad,
5168 .maxlen = sizeof(int),
5169 .mode = 0644,
5170 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005171 },
5172 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00005173 .procname = "force_tllao",
5174 .data = &ipv6_devconf.force_tllao,
5175 .maxlen = sizeof(int),
5176 .mode = 0644,
5177 .proc_handler = proc_dointvec
5178 },
5179 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005180 .procname = "ndisc_notify",
5181 .data = &ipv6_devconf.ndisc_notify,
5182 .maxlen = sizeof(int),
5183 .mode = 0644,
5184 .proc_handler = proc_dointvec
5185 },
5186 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005187 .procname = "suppress_frag_ndisc",
5188 .data = &ipv6_devconf.suppress_frag_ndisc,
5189 .maxlen = sizeof(int),
5190 .mode = 0644,
5191 .proc_handler = proc_dointvec
5192 },
5193 {
Ben Greeard9333192014-06-25 14:44:53 -07005194 .procname = "accept_ra_from_local",
5195 .data = &ipv6_devconf.accept_ra_from_local,
5196 .maxlen = sizeof(int),
5197 .mode = 0644,
5198 .proc_handler = proc_dointvec,
5199 },
5200 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005201 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 }
5203 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204};
5205
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005206static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005207 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208{
5209 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005211 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005212
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005213 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005215 goto out;
5216
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005217 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005218 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005220 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222
Eric W. Biederman6105e292012-04-19 13:41:24 +00005223 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
Eric W. Biederman6105e292012-04-19 13:41:24 +00005225 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005227 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005228
5229 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005232free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005234out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005235 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236}
5237
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005238static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5239{
5240 struct addrconf_sysctl_table *t;
5241
5242 if (p->sysctl == NULL)
5243 return;
5244
5245 t = p->sysctl;
5246 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005247 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005248 kfree(t);
5249}
5250
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005251static void addrconf_sysctl_register(struct inet6_dev *idev)
5252{
Jiri Pirko73af6142013-12-07 19:26:55 +01005253 neigh_sysctl_register(idev->dev, idev->nd_parms,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005254 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005255 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005256 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005257}
5258
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005259static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005261 __addrconf_sysctl_unregister(&idev->cnf);
5262 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263}
5264
5265
5266#endif
5267
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005268static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005269{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005270 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005271 struct ipv6_devconf *all, *dflt;
5272
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005273 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5274 if (all == NULL)
5275 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005276
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005277 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5278 if (dflt == NULL)
5279 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005280
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005281 /* these will be inherited by all namespaces */
5282 dflt->autoconf = ipv6_defaults.autoconf;
5283 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005284
5285 net->ipv6.devconf_all = all;
5286 net->ipv6.devconf_dflt = dflt;
5287
5288#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005289 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005290 if (err < 0)
5291 goto err_reg_all;
5292
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005293 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005294 if (err < 0)
5295 goto err_reg_dflt;
5296#endif
5297 return 0;
5298
5299#ifdef CONFIG_SYSCTL
5300err_reg_dflt:
5301 __addrconf_sysctl_unregister(all);
5302err_reg_all:
5303 kfree(dflt);
5304#endif
5305err_alloc_dflt:
5306 kfree(all);
5307err_alloc_all:
5308 return err;
5309}
5310
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005311static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005312{
5313#ifdef CONFIG_SYSCTL
5314 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5315 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5316#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005317 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005318 kfree(net->ipv6.devconf_dflt);
5319 kfree(net->ipv6.devconf_all);
5320 }
5321}
5322
5323static struct pernet_operations addrconf_ops = {
5324 .init = addrconf_init_net,
5325 .exit = addrconf_exit_net,
5326};
5327
Thomas Grafb382b192010-11-16 04:33:57 +00005328static struct rtnl_af_ops inet6_ops = {
5329 .family = AF_INET6,
5330 .fill_link_af = inet6_fill_link_af,
5331 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005332 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005333};
5334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335/*
5336 * Init / cleanup code
5337 */
5338
5339int __init addrconf_init(void)
5340{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005341 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005342
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005343 err = ipv6_addr_label_init();
5344 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005345 pr_crit("%s: cannot initialize default policy table: %d\n",
5346 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005347 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005350 err = register_pernet_subsys(&addrconf_ops);
5351 if (err < 0)
5352 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005353
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005354 addrconf_wq = create_workqueue("ipv6_addrconf");
5355 if (!addrconf_wq) {
5356 err = -ENOMEM;
5357 goto out_nowq;
5358 }
5359
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 /* The addrconf netdev notifier requires that loopback_dev
5361 * has it's ipv6 private information allocated and setup
5362 * before it can bring up and give link-local addresses
5363 * to other devices which are up.
5364 *
5365 * Unfortunately, loopback_dev is not necessarily the first
5366 * entry in the global dev_base list of net devices. In fact,
5367 * it is likely to be the very last entry on that list.
5368 * So this causes the notifier registry below to try and
5369 * give link-local addresses to all devices besides loopback_dev
5370 * first, then loopback_dev, which cases all the non-loopback_dev
5371 * devices to fail to get a link-local address.
5372 *
5373 * So, as a temporary fix, allocate the ipv6 structure for
5374 * loopback_dev first by hand.
5375 * Longer term, all of the dependencies ipv6 has upon the loopback
5376 * device and it being up should be removed.
5377 */
5378 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005379 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 err = -ENOMEM;
5381 rtnl_unlock();
5382 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005383 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
stephen hemmingerc2e21292010-03-17 20:31:10 +00005385 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5386 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5387
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388 register_netdevice_notifier(&ipv6_dev_notf);
5389
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005390 addrconf_verify();
Thomas Grafc127ea22007-03-22 11:58:32 -07005391
stephen hemminger3678a9d2013-12-30 10:41:32 -08005392 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00005393
Greg Rosec7ac8672011-06-10 01:27:09 +00005394 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5395 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005396 if (err < 0)
5397 goto errout;
5398
5399 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005400 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5401 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5402 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5403 inet6_dump_ifaddr, NULL);
5404 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5405 inet6_dump_ifmcaddr, NULL);
5406 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5407 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005408 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005409 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005410
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005411 ipv6_addr_label_rtnl_register();
5412
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005414errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005415 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07005416 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005417errlo:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005418 destroy_workqueue(addrconf_wq);
5419out_nowq:
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005420 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005421out_addrlabel:
5422 ipv6_addr_label_cleanup();
5423out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005424 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425}
5426
Daniel Lezcano09f77092007-12-13 05:34:58 -08005427void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005429 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 int i;
5431
5432 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005433 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005434 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435
5436 rtnl_lock();
5437
Thomas Grafb382b192010-11-16 04:33:57 +00005438 __rtnl_af_unregister(&inet6_ops);
5439
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005440 /* clean dev list */
5441 for_each_netdev(&init_net, dev) {
5442 if (__in6_dev_get(dev) == NULL)
5443 continue;
5444 addrconf_ifdown(dev, 1);
5445 }
5446 addrconf_ifdown(init_net.loopback_dev, 2);
5447
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 * Check hash table.
5450 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00005451 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005452 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5453 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00005454 spin_unlock_bh(&addrconf_hash_lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005455 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 rtnl_unlock();
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005457
5458 destroy_workqueue(addrconf_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459}