blob: 24e319dfb5103d88097d1afa0a0675655ec1836d [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * IPv6 Address [auto]configuration
4 * Linux INET6 implementation
5 *
6 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09007 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/*
12 * Changes:
13 *
14 * Janos Farkas : delete timer on ifdown
15 * <chexum@bankinf.banki.hu>
16 * Andi Kleen : kill double kfree on module
17 * unload.
18 * Maciej W. Rozycki : FDDI support
19 * sekiya@USAGI : Don't send too many RS
20 * packets.
21 * yoshfuji@USAGI : Fixed interval between DAD
22 * packets.
23 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
24 * address validation timer.
25 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
26 * support.
27 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
28 * address on a same interface.
29 * YOSHIFUJI Hideaki @USAGI : ARCnet support
30 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
31 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080032 * YOSHIFUJI Hideaki @USAGI : improved source address
33 * selection; consider scope,
34 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
Joe Perchesf3213832012-05-15 14:11:53 +000037#define pr_fmt(fmt) "IPv6: " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/errno.h>
40#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070041#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010042#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/socket.h>
44#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/net.h>
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +010046#include <linux/inet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/in6.h>
48#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070049#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/if_arp.h>
51#include <linux/if_arcnet.h>
52#include <linux/if_infiniband.h>
53#include <linux/route.h>
54#include <linux/inetdevice.h>
55#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#ifdef CONFIG_SYSCTL
58#include <linux/sysctl.h>
59#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080060#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/delay.h>
62#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070063#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000064#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020066#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <net/sock.h>
68#include <net/snmp.h>
69
Alexander Aring5241c2d2015-12-14 20:55:22 +010070#include <net/6lowpan.h>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000071#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <net/ipv6.h>
73#include <net/protocol.h>
74#include <net/ndisc.h>
75#include <net/ip6_route.h>
76#include <net/addrconf.h>
77#include <net/tcp.h>
78#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070079#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070080#include <net/pkt_sched.h>
David Ahernca254492015-10-12 11:47:10 -070081#include <net/l3mdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/if_tunnel.h>
83#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000084#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/random.h>
Stephen Hemmingere21e8462010-03-20 16:09:01 -070086#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070087#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#include <linux/proc_fs.h>
90#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040091#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +000094
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +010095#define IPV6_MAX_STRLEN \
96 sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
97
Thomas Graf18a31e12010-11-17 04:12:02 +000098static inline u32 cstamp_delta(unsigned long cstamp)
99{
100 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
101}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700103static inline s32 rfc3315_s14_backoff_init(s32 irt)
104{
105 /* multiply 'initial retransmission time' by 0.9 .. 1.1 */
106 u64 tmp = (900000 + prandom_u32() % 200001) * (u64)irt;
107 do_div(tmp, 1000000);
108 return (s32)tmp;
109}
110
111static inline s32 rfc3315_s14_backoff_update(s32 rt, s32 mrt)
112{
113 /* multiply 'retransmission timeout' by 1.9 .. 2.1 */
114 u64 tmp = (1900000 + prandom_u32() % 200001) * (u64)rt;
115 do_div(tmp, 1000000);
116 if ((s32)tmp > mrt) {
117 /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */
118 tmp = (900000 + prandom_u32() % 200001) * (u64)mrt;
119 do_div(tmp, 1000000);
120 }
121 return (s32)tmp;
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#ifdef CONFIG_SYSCTL
WANG Conga317a2f2014-07-25 15:25:09 -0700125static int addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800126static void addrconf_sysctl_unregister(struct inet6_dev *idev);
127#else
WANG Conga317a2f2014-07-25 15:25:09 -0700128static inline int addrconf_sysctl_register(struct inet6_dev *idev)
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800129{
WANG Conga317a2f2014-07-25 15:25:09 -0700130 return 0;
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800131}
132
133static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
134{
135}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#endif
137
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200138static void ipv6_regen_rndid(struct inet6_dev *idev);
139static void ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900141static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Eric Dumazetd9bf82c2017-10-07 19:30:24 -0700142static int ipv6_count_addresses(const struct inet6_dev *idev);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +0100143static int ipv6_generate_stable_address(struct in6_addr *addr,
144 u8 dad_count,
145 const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Eric Dumazet27c565a2017-11-04 08:53:27 -0700147#define IN6_ADDR_HSIZE_SHIFT 8
148#define IN6_ADDR_HSIZE (1 << IN6_ADDR_HSIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * Configured unicast address hash table
151 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000152static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578aed2010-03-17 20:31:11 +0000153static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100155static void addrconf_verify(void);
156static void addrconf_verify_rtnl(void);
157static void addrconf_verify_work(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100159static struct workqueue_struct *addrconf_wq;
160static DECLARE_DELAYED_WORK(addr_chk_work, addrconf_verify_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
163static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
164
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000165static void addrconf_type_change(struct net_device *dev,
166 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static int addrconf_ifdown(struct net_device *dev, int how);
168
David Ahern8d1c8022018-04-17 17:33:26 -0700169static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
Romain Kuntz21caa662013-01-09 21:06:03 +0000170 int plen,
171 const struct net_device *dev,
David Ahern2b2450c2019-03-27 20:53:52 -0700172 u32 flags, u32 noflags,
173 bool no_gw);
Romain Kuntz21caa662013-01-09 21:06:03 +0000174
David S. Millercf22f9a2012-04-14 21:37:40 -0400175static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100176static void addrconf_dad_work(struct work_struct *w);
David Ahernc76fe2d2018-01-25 20:16:29 -0800177static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id,
178 bool send_na);
Hangbin Liu896585d2018-11-21 21:52:33 +0800179static void addrconf_dad_run(struct inet6_dev *idev, bool restart);
Kees Cooke99e88a2017-10-16 14:43:17 -0700180static void addrconf_rs_timer(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
182static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
183
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900184static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct prefix_info *pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Adrian Bunk888c8482008-07-22 14:21:58 -0700187static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 .forwarding = 0,
189 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
190 .mtu6 = IPV6_MIN_MTU,
191 .accept_ra = 1,
192 .accept_redirects = 1,
193 .autoconf = 1,
194 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200195 .mldv1_unsolicited_report_interval = 10 * HZ,
196 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .dad_transmits = 1,
198 .rtr_solicits = MAX_RTR_SOLICITATIONS,
199 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700200 .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Ian Morris67ba4152014-08-24 21:53:10 +0100202 .use_tempaddr = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .temp_valid_lft = TEMP_VALID_LIFETIME,
204 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
205 .regen_max_retry = REGEN_MAX_RETRY,
206 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800208 .accept_ra_defrtr = 1,
Ben Greeard9333192014-06-25 14:44:53 -0700209 .accept_ra_from_local = 0,
Hangbin Liu8013d1d72015-07-30 14:28:42 +0800210 .accept_ra_min_hop_limit= 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800211 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800212#ifdef CONFIG_IPV6_ROUTER_PREF
213 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800214 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800215#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +0900216 .accept_ra_rt_info_min_plen = 0,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800217 .accept_ra_rt_info_max_plen = 0,
218#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800219#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700220 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700221 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900222 .disable_ipv6 = 0,
Nicolas Dichtel09400952017-11-14 14:21:32 +0100223 .accept_dad = 0,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200224 .suppress_frag_ndisc = 1,
Harout Hedeshianc2943f12015-01-20 10:06:05 -0700225 .accept_ra_mtu = 1,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100226 .stable_secret = {
227 .initialized = false,
Erik Kline3985e8a2015-07-22 16:38:25 +0900228 },
229 .use_oif_addrs_only = 0,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400230 .ignore_routes_with_linkdown = 0,
David Ahernf1705ec2016-02-24 09:25:37 -0800231 .keep_addr_on_down = 0,
David Lebrun1ababeb2016-11-08 14:57:39 +0100232 .seg6_enabled = 0,
David Lebrunbf355b82016-11-08 14:57:42 +0100233#ifdef CONFIG_IPV6_SEG6_HMAC
234 .seg6_require_hmac = 0,
235#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800236 .enhanced_dad = 1,
Felix Jiad35a00b2017-01-26 16:59:17 +1300237 .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64,
David Forsterdf789fe2017-02-23 16:27:18 +0000238 .disable_policy = 0,
Alexander Aring8610c7c2020-03-27 18:00:20 -0400239 .rpl_seg_enabled = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Brian Haleyab32ea52006-09-22 14:15:41 -0700242static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .forwarding = 0,
244 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
245 .mtu6 = IPV6_MIN_MTU,
246 .accept_ra = 1,
247 .accept_redirects = 1,
248 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200249 .force_mld_version = 0,
250 .mldv1_unsolicited_report_interval = 10 * HZ,
251 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 .dad_transmits = 1,
253 .rtr_solicits = MAX_RTR_SOLICITATIONS,
254 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700255 .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 .use_tempaddr = 0,
258 .temp_valid_lft = TEMP_VALID_LIFETIME,
259 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
260 .regen_max_retry = REGEN_MAX_RETRY,
261 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800263 .accept_ra_defrtr = 1,
Ben Greeard9333192014-06-25 14:44:53 -0700264 .accept_ra_from_local = 0,
Hangbin Liu8013d1d72015-07-30 14:28:42 +0800265 .accept_ra_min_hop_limit= 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800266 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800267#ifdef CONFIG_IPV6_ROUTER_PREF
268 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800269 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800270#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +0900271 .accept_ra_rt_info_min_plen = 0,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800272 .accept_ra_rt_info_max_plen = 0,
273#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800274#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700275 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700276 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900277 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900278 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200279 .suppress_frag_ndisc = 1,
Harout Hedeshianc2943f12015-01-20 10:06:05 -0700280 .accept_ra_mtu = 1,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100281 .stable_secret = {
282 .initialized = false,
283 },
Erik Kline3985e8a2015-07-22 16:38:25 +0900284 .use_oif_addrs_only = 0,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400285 .ignore_routes_with_linkdown = 0,
David Ahernf1705ec2016-02-24 09:25:37 -0800286 .keep_addr_on_down = 0,
David Lebrun1ababeb2016-11-08 14:57:39 +0100287 .seg6_enabled = 0,
David Lebrunbf355b82016-11-08 14:57:42 +0100288#ifdef CONFIG_IPV6_SEG6_HMAC
289 .seg6_require_hmac = 0,
290#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800291 .enhanced_dad = 1,
Felix Jiad35a00b2017-01-26 16:59:17 +1300292 .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64,
David Forsterdf789fe2017-02-23 16:27:18 +0000293 .disable_policy = 0,
Alexander Aring8610c7c2020-03-27 18:00:20 -0400294 .rpl_seg_enabled = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
Mike Manning1f372c72017-09-25 22:01:36 +0100297/* Check if link is ready: is it up and is a valid qdisc available */
298static inline bool addrconf_link_ready(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700299{
Mike Manning1f372c72017-09-25 22:01:36 +0100300 return netif_oper_up(dev) && !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700301}
302
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200303static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200305 if (del_timer(&idev->rs_timer))
306 __in6_dev_put(idev);
307}
308
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100309static void addrconf_del_dad_work(struct inet6_ifaddr *ifp)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200310{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100311 if (cancel_delayed_work(&ifp->dad_work))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 __in6_ifa_put(ifp);
313}
314
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200315static void addrconf_mod_rs_timer(struct inet6_dev *idev,
316 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200318 if (!timer_pending(&idev->rs_timer))
319 in6_dev_hold(idev);
320 mod_timer(&idev->rs_timer, jiffies + when);
321}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100323static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp,
324 unsigned long delay)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200325{
Xin Longf8a894b2017-06-15 16:33:58 +0800326 in6_ifa_hold(ifp);
327 if (mod_delayed_work(addrconf_wq, &ifp->dad_work, delay))
328 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700331static int snmp6_alloc_dev(struct inet6_dev *idev)
332{
John Stultz827da442013-10-07 15:51:58 -0700333 int i;
334
WANG Cong698365f2014-05-05 15:55:55 -0700335 idev->stats.ipv6 = alloc_percpu(struct ipstats_mib);
336 if (!idev->stats.ipv6)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700337 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700338
339 for_each_possible_cpu(i) {
340 struct ipstats_mib *addrconf_stats;
WANG Cong698365f2014-05-05 15:55:55 -0700341 addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i);
John Stultz827da442013-10-07 15:51:58 -0700342 u64_stats_init(&addrconf_stats->syncp);
John Stultz827da442013-10-07 15:51:58 -0700343 }
344
345
Eric Dumazetbe281e52011-05-19 01:14:23 +0000346 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
347 GFP_KERNEL);
348 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700349 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000350 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
351 GFP_KERNEL);
352 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700353 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700354
355 return 0;
356
David L Stevens14878f72007-09-16 16:52:35 -0700357err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000358 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700359err_icmp:
WANG Cong698365f2014-05-05 15:55:55 -0700360 free_percpu(idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700361err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700362 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700363}
364
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000365static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct inet6_dev *ndev;
WANG Conga317a2f2014-07-25 15:25:09 -0700368 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 ASSERT_RTNL();
371
372 if (dev->mtu < IPV6_MIN_MTU)
WANG Conga317a2f2014-07-25 15:25:09 -0700373 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900375 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100376 if (!ndev)
WANG Conga317a2f2014-07-25 15:25:09 -0700377 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Ingo Oeser322f74a2006-03-20 23:01:47 -0800379 rwlock_init(&ndev->lock);
380 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000381 INIT_LIST_HEAD(&ndev->addr_list);
Kees Cooke99e88a2017-10-16 14:43:17 -0700382 timer_setup(&ndev->rs_timer, addrconf_rs_timer, 0);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900383 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Hannes Frederic Sowa9b29c692015-12-15 22:59:12 +0100384
385 if (ndev->cnf.stable_secret.initialized)
Felix Jiad35a00b2017-01-26 16:59:17 +1300386 ndev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
Hannes Frederic Sowa9b29c692015-12-15 22:59:12 +0100387
Ingo Oeser322f74a2006-03-20 23:01:47 -0800388 ndev->cnf.mtu6 = dev->mtu;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800389 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
Ian Morris63159f22015-03-29 14:00:04 +0100390 if (!ndev->nd_parms) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391 kfree(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700392 return ERR_PTR(err);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800393 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700394 if (ndev->cnf.forwarding)
395 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 /* We refer to the device */
397 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Ingo Oeser322f74a2006-03-20 23:01:47 -0800399 if (snmp6_alloc_dev(ndev) < 0) {
Joe Perchese32ac252018-03-26 08:35:01 -0700400 netdev_dbg(dev, "%s: cannot allocate memory for statistics\n",
401 __func__);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800402 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400403 dev_put(dev);
404 kfree(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700405 return ERR_PTR(err);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Ingo Oeser322f74a2006-03-20 23:01:47 -0800408 if (snmp6_register_dev(ndev) < 0) {
Joe Perchese32ac252018-03-26 08:35:01 -0700409 netdev_dbg(dev, "%s: cannot create /proc/net/dev_snmp6/%s\n",
410 __func__, dev->name);
WANG Conga317a2f2014-07-25 15:25:09 -0700411 goto err_release;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200414 /* One reference from device. */
Reshetova, Elena1be92462017-07-04 09:34:55 +0300415 refcount_set(&ndev->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900417 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
418 ndev->cnf.accept_dad = -1;
419
Amerigo Wang07a93622012-10-29 16:23:10 +0000420#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700421 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000422 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700423 ndev->cnf.rtr_solicits = 0;
424 }
425#endif
426
stephen hemminger372e6c82010-03-17 20:31:09 +0000427 INIT_LIST_HEAD(&ndev->tempaddr_list);
Jiri Bohac76506a92016-10-13 18:52:15 +0200428 ndev->desync_factor = U32_MAX;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800429 if ((dev->flags&IFF_LOOPBACK) ||
430 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700431 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700432 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700433 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800434 ndev->cnf.use_tempaddr = -1;
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200435 } else
436 ipv6_regen_rndid(ndev);
David S. Miller5d9efa72013-10-28 20:07:50 -0400437
Daniel Borkmann914faa12013-04-09 03:47:14 +0000438 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800439
Mike Manning1f372c72017-09-25 22:01:36 +0100440 if (netif_running(dev) && addrconf_link_ready(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700441 ndev->if_flags |= IF_READY;
442
Ingo Oeser322f74a2006-03-20 23:01:47 -0800443 ipv6_mc_init_dev(ndev);
444 ndev->tstamp = jiffies;
WANG Conga317a2f2014-07-25 15:25:09 -0700445 err = addrconf_sysctl_register(ndev);
446 if (err) {
447 ipv6_mc_destroy_dev(ndev);
Sabrina Dubroca2a189f9e2015-11-04 14:47:53 +0100448 snmp6_unregister_dev(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700449 goto err_release;
450 }
David L Stevens30c4cf52007-01-04 12:31:14 -0800451 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000452 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800453
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000454 /* Join interface-local all-node multicast group */
455 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
456
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800457 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900458 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800459
Li Weid6ddef92012-03-05 14:45:17 +0000460 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000461 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000462 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return ndev;
WANG Conga317a2f2014-07-25 15:25:09 -0700465
466err_release:
467 neigh_parms_release(&nd_tbl, ndev->nd_parms);
468 ndev->dead = 1;
469 in6_dev_finish_destroy(ndev);
470 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000473static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct inet6_dev *idev;
476
477 ASSERT_RTNL();
478
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700479 idev = __in6_dev_get(dev);
480 if (!idev) {
481 idev = ipv6_add_dev(dev);
WANG Conga317a2f2014-07-25 15:25:09 -0700482 if (IS_ERR(idev))
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +0200483 return idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (dev->flags&IFF_UP)
487 ipv6_mc_up(idev);
488 return idev;
489}
490
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000491static int inet6_netconf_msgsize_devconf(int type)
492{
493 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
494 + nla_total_size(4); /* NETCONFA_IFINDEX */
Zhang Shengju136ba622016-03-10 08:55:50 +0000495 bool all = false;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000496
Zhang Shengju136ba622016-03-10 08:55:50 +0000497 if (type == NETCONFA_ALL)
498 all = true;
499
500 if (all || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000501 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500502#ifdef CONFIG_IPV6_MROUTE
Zhang Shengju136ba622016-03-10 08:55:50 +0000503 if (all || type == NETCONFA_MC_FORWARDING)
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000504 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500505#endif
Zhang Shengju136ba622016-03-10 08:55:50 +0000506 if (all || type == NETCONFA_PROXY_NEIGH)
stephen hemmingerc92d5492013-12-17 22:37:14 -0800507 size += nla_total_size(4);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000508
Zhang Shengju136ba622016-03-10 08:55:50 +0000509 if (all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN)
Andy Gospodarek35103d12015-08-13 10:39:01 -0400510 size += nla_total_size(4);
511
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000512 return size;
513}
514
515static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
516 struct ipv6_devconf *devconf, u32 portid,
517 u32 seq, int event, unsigned int flags,
518 int type)
519{
520 struct nlmsghdr *nlh;
521 struct netconfmsg *ncm;
Zhang Shengju136ba622016-03-10 08:55:50 +0000522 bool all = false;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000523
524 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
525 flags);
Ian Morris63159f22015-03-29 14:00:04 +0100526 if (!nlh)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000527 return -EMSGSIZE;
528
Zhang Shengju136ba622016-03-10 08:55:50 +0000529 if (type == NETCONFA_ALL)
530 all = true;
531
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000532 ncm = nlmsg_data(nlh);
533 ncm->ncm_family = AF_INET6;
534
535 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
536 goto nla_put_failure;
537
David Ahern23452172017-03-28 14:28:05 -0700538 if (!devconf)
539 goto out;
540
Zhang Shengju136ba622016-03-10 08:55:50 +0000541 if ((all || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000542 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
543 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500544#ifdef CONFIG_IPV6_MROUTE
Zhang Shengju136ba622016-03-10 08:55:50 +0000545 if ((all || type == NETCONFA_MC_FORWARDING) &&
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000546 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
547 devconf->mc_forwarding) < 0)
548 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500549#endif
Zhang Shengju136ba622016-03-10 08:55:50 +0000550 if ((all || type == NETCONFA_PROXY_NEIGH) &&
stephen hemmingerc92d5492013-12-17 22:37:14 -0800551 nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
552 goto nla_put_failure;
553
Zhang Shengju136ba622016-03-10 08:55:50 +0000554 if ((all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) &&
Andy Gospodarek35103d12015-08-13 10:39:01 -0400555 nla_put_s32(skb, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
556 devconf->ignore_routes_with_linkdown) < 0)
557 goto nla_put_failure;
558
David Ahern23452172017-03-28 14:28:05 -0700559out:
Johannes Berg053c0952015-01-16 22:09:00 +0100560 nlmsg_end(skb, nlh);
561 return 0;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000562
563nla_put_failure:
564 nlmsg_cancel(skb, nlh);
565 return -EMSGSIZE;
566}
567
David Ahern85b3daa2017-03-28 14:28:04 -0700568void inet6_netconf_notify_devconf(struct net *net, int event, int type,
569 int ifindex, struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000570{
571 struct sk_buff *skb;
572 int err = -ENOBUFS;
573
Eric Dumazet927265b2016-07-08 05:46:04 +0200574 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100575 if (!skb)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000576 goto errout;
577
578 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
David Ahern85b3daa2017-03-28 14:28:04 -0700579 event, 0, type);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000580 if (err < 0) {
581 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
582 WARN_ON(err == -EMSGSIZE);
583 kfree_skb(skb);
584 goto errout;
585 }
Eric Dumazet927265b2016-07-08 05:46:04 +0200586 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_KERNEL);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000587 return;
588errout:
Cong Dingbd779022012-12-18 12:08:56 +0000589 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000590}
591
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000592static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
593 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
594 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
stephen hemmingerc92d5492013-12-17 22:37:14 -0800595 [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) },
Andy Gospodarek35103d12015-08-13 10:39:01 -0400596 [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN] = { .len = sizeof(int) },
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000597};
598
Jakub Kicinski38d51812019-01-18 10:46:22 -0800599static int inet6_netconf_valid_get_req(struct sk_buff *skb,
600 const struct nlmsghdr *nlh,
601 struct nlattr **tb,
602 struct netlink_ext_ack *extack)
603{
604 int i, err;
605
606 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(struct netconfmsg))) {
607 NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf get request");
608 return -EINVAL;
609 }
610
611 if (!netlink_strict_get_check(skb))
Johannes Berg8cb08172019-04-26 14:07:28 +0200612 return nlmsg_parse_deprecated(nlh, sizeof(struct netconfmsg),
613 tb, NETCONFA_MAX,
614 devconf_ipv6_policy, extack);
Jakub Kicinski38d51812019-01-18 10:46:22 -0800615
Johannes Berg8cb08172019-04-26 14:07:28 +0200616 err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct netconfmsg),
617 tb, NETCONFA_MAX,
618 devconf_ipv6_policy, extack);
Jakub Kicinski38d51812019-01-18 10:46:22 -0800619 if (err)
620 return err;
621
622 for (i = 0; i <= NETCONFA_MAX; i++) {
623 if (!tb[i])
624 continue;
625
626 switch (i) {
627 case NETCONFA_IFINDEX:
628 break;
629 default:
630 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in netconf get request");
631 return -EINVAL;
632 }
633 }
634
635 return 0;
636}
637
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000638static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
David Ahernc21ef3e2017-04-16 09:48:24 -0700639 struct nlmsghdr *nlh,
640 struct netlink_ext_ack *extack)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000641{
642 struct net *net = sock_net(in_skb->sk);
643 struct nlattr *tb[NETCONFA_MAX+1];
Florian Westphal4ea26072017-10-11 10:28:00 +0200644 struct inet6_dev *in6_dev = NULL;
645 struct net_device *dev = NULL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000646 struct sk_buff *skb;
647 struct ipv6_devconf *devconf;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000648 int ifindex;
649 int err;
650
Jakub Kicinski38d51812019-01-18 10:46:22 -0800651 err = inet6_netconf_valid_get_req(in_skb, nlh, tb, extack);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000652 if (err < 0)
Florian Westphal4ea26072017-10-11 10:28:00 +0200653 return err;
654
655 if (!tb[NETCONFA_IFINDEX])
656 return -EINVAL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000657
Anton Protopopova97eb332016-02-16 21:43:16 -0500658 err = -EINVAL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000659 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
660 switch (ifindex) {
661 case NETCONFA_IFINDEX_ALL:
662 devconf = net->ipv6.devconf_all;
663 break;
664 case NETCONFA_IFINDEX_DEFAULT:
665 devconf = net->ipv6.devconf_dflt;
666 break;
667 default:
Florian Westphal4ea26072017-10-11 10:28:00 +0200668 dev = dev_get_by_index(net, ifindex);
Ian Morris63159f22015-03-29 14:00:04 +0100669 if (!dev)
Florian Westphal4ea26072017-10-11 10:28:00 +0200670 return -EINVAL;
671 in6_dev = in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +0100672 if (!in6_dev)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000673 goto errout;
674 devconf = &in6_dev->cnf;
675 break;
676 }
677
678 err = -ENOBUFS;
Florian Westphal4ea26072017-10-11 10:28:00 +0200679 skb = nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100680 if (!skb)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000681 goto errout;
682
683 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
684 NETLINK_CB(in_skb).portid,
685 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
Zhang Shengju136ba622016-03-10 08:55:50 +0000686 NETCONFA_ALL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000687 if (err < 0) {
688 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
689 WARN_ON(err == -EMSGSIZE);
690 kfree_skb(skb);
691 goto errout;
692 }
693 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
694errout:
Florian Westphal4ea26072017-10-11 10:28:00 +0200695 if (in6_dev)
696 in6_dev_put(in6_dev);
697 if (dev)
698 dev_put(dev);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000699 return err;
700}
701
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000702static int inet6_netconf_dump_devconf(struct sk_buff *skb,
703 struct netlink_callback *cb)
704{
David Ahernaddd3832018-10-07 20:16:41 -0700705 const struct nlmsghdr *nlh = cb->nlh;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000706 struct net *net = sock_net(skb->sk);
707 int h, s_h;
708 int idx, s_idx;
709 struct net_device *dev;
710 struct inet6_dev *idev;
711 struct hlist_head *head;
712
David Ahernaddd3832018-10-07 20:16:41 -0700713 if (cb->strict_check) {
714 struct netlink_ext_ack *extack = cb->extack;
715 struct netconfmsg *ncm;
716
717 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ncm))) {
718 NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf dump request");
719 return -EINVAL;
720 }
721
722 if (nlmsg_attrlen(nlh, sizeof(*ncm))) {
723 NL_SET_ERR_MSG_MOD(extack, "Invalid data after header in netconf dump request");
724 return -EINVAL;
725 }
726 }
727
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000728 s_h = cb->args[0];
729 s_idx = idx = cb->args[1];
730
731 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
732 idx = 0;
733 head = &net->dev_index_head[h];
734 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000735 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
736 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000737 hlist_for_each_entry_rcu(dev, head, index_hlist) {
738 if (idx < s_idx)
739 goto cont;
740 idev = __in6_dev_get(dev);
741 if (!idev)
742 goto cont;
743
744 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
745 &idev->cnf,
746 NETLINK_CB(cb->skb).portid,
David Ahernaddd3832018-10-07 20:16:41 -0700747 nlh->nlmsg_seq,
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000748 RTM_NEWNETCONF,
749 NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000750 NETCONFA_ALL) < 0) {
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000751 rcu_read_unlock();
752 goto done;
753 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000754 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000755cont:
756 idx++;
757 }
758 rcu_read_unlock();
759 }
760 if (h == NETDEV_HASHENTRIES) {
761 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
762 net->ipv6.devconf_all,
763 NETLINK_CB(cb->skb).portid,
David Ahernaddd3832018-10-07 20:16:41 -0700764 nlh->nlmsg_seq,
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000765 RTM_NEWNETCONF, NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000766 NETCONFA_ALL) < 0)
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000767 goto done;
768 else
769 h++;
770 }
771 if (h == NETDEV_HASHENTRIES + 1) {
772 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
773 net->ipv6.devconf_dflt,
774 NETLINK_CB(cb->skb).portid,
David Ahernaddd3832018-10-07 20:16:41 -0700775 nlh->nlmsg_seq,
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000776 RTM_NEWNETCONF, NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000777 NETCONFA_ALL) < 0)
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000778 goto done;
779 else
780 h++;
781 }
782done:
783 cb->args[0] = h;
784 cb->args[1] = idx;
785
786 return skb->len;
787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789#ifdef CONFIG_SYSCTL
790static void dev_forward_change(struct inet6_dev *idev)
791{
792 struct net_device *dev;
793 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if (!idev)
796 return;
797 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700798 if (idev->cnf.forwarding)
799 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000800 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000801 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900802 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000803 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
804 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
805 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900806 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000807 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
808 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000811
812 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800813 if (ifa->flags&IFA_F_TENTATIVE)
814 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (idev->cnf.forwarding)
816 addrconf_join_anycast(ifa);
817 else
818 addrconf_leave_anycast(ifa);
819 }
David Ahern85b3daa2017-03-28 14:28:04 -0700820 inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF,
821 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000822 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825
Pavel Emelyanove1869322008-01-10 17:43:50 -0800826static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 struct net_device *dev;
829 struct inet6_dev *idev;
830
Ben Hutchings4acd4942012-08-14 08:54:51 +0000831 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 idev = __in6_dev_get(dev);
833 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800834 int changed = (!idev->cnf.forwarding) ^ (!newf);
835 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (changed)
837 dev_forward_change(idev);
838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800841
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000842static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800843{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800844 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000845 int old;
846
847 if (!rtnl_trylock())
848 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800849
850 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000851 old = *p;
852 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800853
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000854 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000855 if ((!newf) ^ (!old))
David Ahern85b3daa2017-03-28 14:28:04 -0700856 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
857 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000858 NETCONFA_IFINDEX_DEFAULT,
859 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000860 rtnl_unlock();
861 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000862 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000863
Pavel Emelyanove1869322008-01-10 17:43:50 -0800864 if (p == &net->ipv6.devconf_all->forwarding) {
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200865 int old_dflt = net->ipv6.devconf_dflt->forwarding;
866
Pavel Emelyanove1869322008-01-10 17:43:50 -0800867 net->ipv6.devconf_dflt->forwarding = newf;
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200868 if ((!newf) ^ (!old_dflt))
David Ahern85b3daa2017-03-28 14:28:04 -0700869 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
870 NETCONFA_FORWARDING,
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200871 NETCONFA_IFINDEX_DEFAULT,
872 net->ipv6.devconf_dflt);
873
Pavel Emelyanove1869322008-01-10 17:43:50 -0800874 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000875 if ((!newf) ^ (!old))
David Ahern85b3daa2017-03-28 14:28:04 -0700876 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
877 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000878 NETCONFA_IFINDEX_ALL,
879 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000880 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800881 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700882 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800883
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000884 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800885 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000886 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800887}
Andy Gospodarek35103d12015-08-13 10:39:01 -0400888
889static void addrconf_linkdown_change(struct net *net, __s32 newf)
890{
891 struct net_device *dev;
892 struct inet6_dev *idev;
893
894 for_each_netdev(net, dev) {
895 idev = __in6_dev_get(dev);
896 if (idev) {
897 int changed = (!idev->cnf.ignore_routes_with_linkdown) ^ (!newf);
898
899 idev->cnf.ignore_routes_with_linkdown = newf;
900 if (changed)
901 inet6_netconf_notify_devconf(dev_net(dev),
David Ahern85b3daa2017-03-28 14:28:04 -0700902 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400903 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
904 dev->ifindex,
905 &idev->cnf);
906 }
907 }
908}
909
910static int addrconf_fixup_linkdown(struct ctl_table *table, int *p, int newf)
911{
912 struct net *net;
913 int old;
914
915 if (!rtnl_trylock())
916 return restart_syscall();
917
918 net = (struct net *)table->extra2;
919 old = *p;
920 *p = newf;
921
922 if (p == &net->ipv6.devconf_dflt->ignore_routes_with_linkdown) {
923 if ((!newf) ^ (!old))
924 inet6_netconf_notify_devconf(net,
David Ahern85b3daa2017-03-28 14:28:04 -0700925 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400926 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
927 NETCONFA_IFINDEX_DEFAULT,
928 net->ipv6.devconf_dflt);
929 rtnl_unlock();
930 return 0;
931 }
932
933 if (p == &net->ipv6.devconf_all->ignore_routes_with_linkdown) {
934 net->ipv6.devconf_dflt->ignore_routes_with_linkdown = newf;
935 addrconf_linkdown_change(net, newf);
936 if ((!newf) ^ (!old))
937 inet6_netconf_notify_devconf(net,
David Ahern85b3daa2017-03-28 14:28:04 -0700938 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400939 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
940 NETCONFA_IFINDEX_ALL,
941 net->ipv6.devconf_all);
942 }
943 rtnl_unlock();
944
945 return 1;
946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948#endif
949
stephen hemminger5c578aed2010-03-17 20:31:11 +0000950/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
952{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000953 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000956 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957#endif
958
959 in6_dev_put(ifp->idev);
960
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100961 if (cancel_delayed_work(&ifp->dad_work))
962 pr_notice("delayed DAD work was pending while freeing ifa=%p\n",
963 ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Herbert Xue9d3e082010-05-18 15:36:06 -0700965 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000966 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return;
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Lai Jiangshane5785982011-03-15 18:00:14 +0800970 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Brian Haleye55ffac2006-07-10 15:25:51 -0700973static void
974ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
975{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000976 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700977 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700978
979 /*
980 * Each device address list is sorted in order of scope -
981 * global before linklocal.
982 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000983 list_for_each(p, &idev->addr_list) {
984 struct inet6_ifaddr *ifa
985 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700986 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700987 break;
988 }
989
Eric Dumazet8ef802a2017-10-07 19:30:23 -0700990 list_add_tail_rcu(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700991}
992
Eric Dumazet3f27fb22017-10-23 16:17:47 -0700993static u32 inet6_addr_hash(const struct net *net, const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900994{
Eric Dumazet3f27fb22017-10-23 16:17:47 -0700995 u32 val = ipv6_addr_hash(addr) ^ net_hash_mix(net);
996
997 return hash_32(val, IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900998}
999
Eric Dumazet56fc7092017-10-23 16:17:45 -07001000static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
Eric Dumazet752a9292017-10-23 16:17:46 -07001001 struct net_device *dev, unsigned int hash)
Eric Dumazet56fc7092017-10-23 16:17:45 -07001002{
Eric Dumazet56fc7092017-10-23 16:17:45 -07001003 struct inet6_ifaddr *ifp;
1004
1005 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
1006 if (!net_eq(dev_net(ifp->idev->dev), net))
1007 continue;
1008 if (ipv6_addr_equal(&ifp->addr, addr)) {
1009 if (!dev || ifp->idev->dev == dev)
1010 return true;
1011 }
1012 }
1013 return false;
1014}
1015
David Ahernf3d98322017-10-18 09:56:52 -07001016static int ipv6_add_addr_hash(struct net_device *dev, struct inet6_ifaddr *ifa)
1017{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07001018 unsigned int hash = inet6_addr_hash(dev_net(dev), &ifa->addr);
David Ahernf3d98322017-10-18 09:56:52 -07001019 int err = 0;
1020
1021 spin_lock(&addrconf_hash_lock);
1022
1023 /* Ignore adding duplicate addresses on an interface */
Eric Dumazet752a9292017-10-23 16:17:46 -07001024 if (ipv6_chk_same_addr(dev_net(dev), &ifa->addr, dev, hash)) {
Joe Perchese32ac252018-03-26 08:35:01 -07001025 netdev_dbg(dev, "ipv6_add_addr: already assigned\n");
David Ahernf3d98322017-10-18 09:56:52 -07001026 err = -EEXIST;
Eric Dumazet752a9292017-10-23 16:17:46 -07001027 } else {
1028 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
David Ahernf3d98322017-10-18 09:56:52 -07001029 }
1030
David Ahernf3d98322017-10-18 09:56:52 -07001031 spin_unlock(&addrconf_hash_lock);
1032
1033 return err;
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/* On success it returns ifp with increased reference count */
1037
1038static struct inet6_ifaddr *
David Aherne6464b82018-05-27 08:09:53 -07001039ipv6_add_addr(struct inet6_dev *idev, struct ifa6_config *cfg,
David Ahernde95e042017-10-18 09:56:54 -07001040 bool can_block, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
David Ahernf3d98322017-10-18 09:56:52 -07001042 gfp_t gfp_flags = can_block ? GFP_KERNEL : GFP_ATOMIC;
David Aherne6464b82018-05-27 08:09:53 -07001043 int addr_type = ipv6_addr_type(cfg->pfx);
David Forsterdf789fe2017-02-23 16:27:18 +00001044 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct inet6_ifaddr *ifa = NULL;
David Ahern360a9882018-04-18 15:39:00 -07001046 struct fib6_info *f6i = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +09001048
1049 if (addr_type == IPV6_ADDR_ANY ||
Hangbin Liuf17f7642019-08-20 10:19:47 +08001050 (addr_type & IPV6_ADDR_MULTICAST &&
1051 !(cfg->ifa_flags & IFA_F_MCAUTOJOIN)) ||
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +09001052 (!(idev->dev->flags & IFF_LOOPBACK) &&
Robert Shearman3ede0bb2018-09-19 13:56:53 +01001053 !netif_is_l3_master(idev->dev) &&
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +09001054 addr_type & IPV6_ADDR_LOOPBACK))
1055 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (idev->dead) {
1058 err = -ENODEV; /*XXX*/
David Ahernf3d98322017-10-18 09:56:52 -07001059 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061
Brian Haley56d417b2009-06-01 03:07:33 -07001062 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -07001063 err = -EACCES;
David Ahernf3d98322017-10-18 09:56:52 -07001064 goto out;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001065 }
1066
David Ahernff7883e2017-10-18 09:56:53 -07001067 /* validator notifier needs to be blocking;
1068 * do not call in atomic context
1069 */
1070 if (can_block) {
1071 struct in6_validator_info i6vi = {
David Aherne6464b82018-05-27 08:09:53 -07001072 .i6vi_addr = *cfg->pfx,
David Ahernff7883e2017-10-18 09:56:53 -07001073 .i6vi_dev = idev,
David Ahernde95e042017-10-18 09:56:54 -07001074 .extack = extack,
David Ahernff7883e2017-10-18 09:56:53 -07001075 };
1076
1077 err = inet6addr_validator_notifier_call_chain(NETDEV_UP, &i6vi);
1078 err = notifier_to_errno(err);
1079 if (err < 0)
1080 goto out;
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David Ahernf3d98322017-10-18 09:56:52 -07001083 ifa = kzalloc(sizeof(*ifa), gfp_flags);
Ian Morris63159f22015-03-29 14:00:04 +01001084 if (!ifa) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 err = -ENOBUFS;
1086 goto out;
1087 }
1088
David Aherne6464b82018-05-27 08:09:53 -07001089 f6i = addrconf_f6i_alloc(net, idev, cfg->pfx, false, gfp_flags);
David Ahern360a9882018-04-18 15:39:00 -07001090 if (IS_ERR(f6i)) {
1091 err = PTR_ERR(f6i);
1092 f6i = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 goto out;
1094 }
1095
David Forsterdf789fe2017-02-23 16:27:18 +00001096 if (net->ipv6.devconf_all->disable_policy ||
1097 idev->cnf.disable_policy)
David Ahern360a9882018-04-18 15:39:00 -07001098 f6i->dst_nopolicy = true;
David Forsterdf789fe2017-02-23 16:27:18 +00001099
Jiri Pirkobba24892013-12-07 19:26:57 +01001100 neigh_parms_data_state_setall(idev->nd_parms);
1101
David Aherne6464b82018-05-27 08:09:53 -07001102 ifa->addr = *cfg->pfx;
1103 if (cfg->peer_pfx)
1104 ifa->peer_addr = *cfg->peer_pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 spin_lock_init(&ifa->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001107 INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001108 INIT_HLIST_NODE(&ifa->addr_lst);
David Aherne6464b82018-05-27 08:09:53 -07001109 ifa->scope = cfg->scope;
1110 ifa->prefix_len = cfg->plen;
David Ahern8308f3f2018-05-27 08:09:58 -07001111 ifa->rt_priority = cfg->rt_priority;
David Aherne6464b82018-05-27 08:09:53 -07001112 ifa->flags = cfg->ifa_flags;
Mahesh Bandewar66eb9f82017-05-12 17:03:39 -07001113 /* No need to add the TENTATIVE flag for addresses with NODAD */
David Aherne6464b82018-05-27 08:09:53 -07001114 if (!(cfg->ifa_flags & IFA_F_NODAD))
Mahesh Bandewar66eb9f82017-05-12 17:03:39 -07001115 ifa->flags |= IFA_F_TENTATIVE;
David Aherne6464b82018-05-27 08:09:53 -07001116 ifa->valid_lft = cfg->valid_lft;
1117 ifa->prefered_lft = cfg->preferred_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00001119 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
David Ahern360a9882018-04-18 15:39:00 -07001121 ifa->rt = f6i;
Keir Fraser57f5f542006-08-29 02:43:49 -07001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 ifa->idev = idev;
David Ahernf3d98322017-10-18 09:56:52 -07001124 in6_dev_hold(idev);
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 /* For caller */
Reshetova, Elena271201c2017-07-04 09:34:56 +03001127 refcount_set(&ifa->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
David Ahernf3d98322017-10-18 09:56:52 -07001129 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
David Ahernf3d98322017-10-18 09:56:52 -07001131 err = ipv6_add_addr_hash(idev->dev, ifa);
1132 if (err < 0) {
1133 rcu_read_unlock_bh();
1134 goto out;
1135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 write_lock(&idev->lock);
David Ahernf3d98322017-10-18 09:56:52 -07001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -07001140 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001143 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 in6_ifa_hold(ifa);
1145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 in6_ifa_hold(ifa);
1148 write_unlock(&idev->lock);
David Ahernf3d98322017-10-18 09:56:52 -07001149
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001150 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
David Ahernf3d98322017-10-18 09:56:52 -07001152 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
1153out:
1154 if (unlikely(err < 0)) {
David Ahern360a9882018-04-18 15:39:00 -07001155 fib6_info_release(f6i);
David Ahern93531c62018-04-17 17:33:25 -07001156
David Ahernf3d98322017-10-18 09:56:52 -07001157 if (ifa) {
1158 if (ifa->idev)
1159 in6_dev_put(ifa->idev);
1160 kfree(ifa);
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 ifa = ERR_PTR(err);
1163 }
1164
1165 return ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
Thomas Haller5b84efe2014-01-15 15:36:59 +01001168enum cleanup_prefix_rt_t {
1169 CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */
1170 CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */
1171 CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */
1172};
1173
1174/*
1175 * Check, whether the prefix for ifp would still need a prefix route
1176 * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
1177 * constants.
1178 *
1179 * 1) we don't purge prefix if address was not permanent.
1180 * prefix is managed by its own lifetime.
1181 * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
1182 * 3) if there are no addresses, delete prefix.
1183 * 4) if there are still other permanent address(es),
1184 * corresponding prefix is still permanent.
1185 * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
1186 * don't purge the prefix, assume user space is managing it.
1187 * 6) otherwise, update prefix lifetime to the
1188 * longest valid lifetime among the corresponding
1189 * addresses on the device.
1190 * Note: subsequent RA will update lifetime.
1191 **/
1192static enum cleanup_prefix_rt_t
1193check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires)
1194{
1195 struct inet6_ifaddr *ifa;
1196 struct inet6_dev *idev = ifp->idev;
1197 unsigned long lifetime;
1198 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL;
1199
1200 *expires = jiffies;
1201
1202 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1203 if (ifa == ifp)
1204 continue;
Zhiqiang Liue75913c2019-02-11 10:57:46 +08001205 if (ifa->prefix_len != ifp->prefix_len ||
1206 !ipv6_prefix_equal(&ifa->addr, &ifp->addr,
Thomas Haller5b84efe2014-01-15 15:36:59 +01001207 ifp->prefix_len))
1208 continue;
1209 if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE))
1210 return CLEANUP_PREFIX_RT_NOP;
1211
1212 action = CLEANUP_PREFIX_RT_EXPIRE;
1213
1214 spin_lock(&ifa->lock);
1215
1216 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
1217 /*
1218 * Note: Because this address is
1219 * not permanent, lifetime <
1220 * LONG_MAX / HZ here.
1221 */
1222 if (time_before(*expires, ifa->tstamp + lifetime * HZ))
1223 *expires = ifa->tstamp + lifetime * HZ;
1224 spin_unlock(&ifa->lock);
1225 }
1226
1227 return action;
1228}
1229
1230static void
Hangbin Liud0098e42020-03-03 14:37:35 +08001231cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires,
1232 bool del_rt, bool del_peer)
Thomas Haller5b84efe2014-01-15 15:36:59 +01001233{
David Ahern93c2fb22018-04-18 15:38:59 -07001234 struct fib6_info *f6i;
Thomas Haller5b84efe2014-01-15 15:36:59 +01001235
Hangbin Liud0098e42020-03-03 14:37:35 +08001236 f6i = addrconf_get_prefix_route(del_peer ? &ifp->peer_addr : &ifp->addr,
1237 ifp->prefix_len,
David Ahern2b2450c2019-03-27 20:53:52 -07001238 ifp->idev->dev, 0, RTF_DEFAULT, true);
David Ahern93c2fb22018-04-18 15:38:59 -07001239 if (f6i) {
Thomas Haller5b84efe2014-01-15 15:36:59 +01001240 if (del_rt)
David Ahern93c2fb22018-04-18 15:38:59 -07001241 ip6_del_rt(dev_net(ifp->idev->dev), f6i);
Thomas Haller5b84efe2014-01-15 15:36:59 +01001242 else {
David Ahern93c2fb22018-04-18 15:38:59 -07001243 if (!(f6i->fib6_flags & RTF_EXPIRES))
1244 fib6_set_expires(f6i, expires);
1245 fib6_info_release(f6i);
Thomas Haller5b84efe2014-01-15 15:36:59 +01001246 }
1247 }
1248}
1249
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/* This function wants to get referenced ifp and releases it before return */
1252
1253static void ipv6_del_addr(struct inet6_ifaddr *ifp)
1254{
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001255 int state;
Thomas Haller5b84efe2014-01-15 15:36:59 +01001256 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP;
1257 unsigned long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001259 ASSERT_RTNL();
1260
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001261 spin_lock_bh(&ifp->lock);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001262 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -07001263 ifp->state = INET6_IFADDR_STATE_DEAD;
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001264 spin_unlock_bh(&ifp->lock);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001265
1266 if (state == INET6_IFADDR_STATE_DEAD)
1267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
stephen hemminger5c578aed2010-03-17 20:31:11 +00001269 spin_lock_bh(&addrconf_hash_lock);
1270 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +00001271 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Thomas Haller5b84efe2014-01-15 15:36:59 +01001273 write_lock_bh(&ifp->idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -04001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001276 list_del(&ifp->tmp_list);
1277 if (ifp->ifpub) {
1278 in6_ifa_put(ifp->ifpub);
1279 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
stephen hemminger372e6c82010-03-17 20:31:09 +00001281 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Thomas Haller5b84efe2014-01-15 15:36:59 +01001284 if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE))
1285 action = check_cleanup_prefix_route(ifp, &expires);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001286
Eric Dumazet8ef802a2017-10-07 19:30:23 -07001287 list_del_rcu(&ifp->if_list);
Thomas Haller5b84efe2014-01-15 15:36:59 +01001288 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Thomas Haller5b84efe2014-01-15 15:36:59 +01001290 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001292 addrconf_del_dad_work(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 ipv6_ifa_notify(RTM_DELADDR, ifp);
1295
Cong Wangf88c91d2013-04-14 23:18:43 +08001296 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Thomas Haller5b84efe2014-01-15 15:36:59 +01001298 if (action != CLEANUP_PREFIX_RT_NOP) {
1299 cleanup_prefix_route(ifp, expires,
Hangbin Liud0098e42020-03-03 14:37:35 +08001300 action == CLEANUP_PREFIX_RT_DEL, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
Daniel Walterc3968a82011-04-13 21:10:57 +00001303 /* clean up prefsrc entries */
1304 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001305out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 in6_ifa_put(ifp);
1307}
1308
Eric Dumazetfffcefe2017-11-06 14:13:29 -08001309static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp,
1310 struct inet6_ifaddr *ift,
1311 bool block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 struct inet6_dev *idev = ifp->idev;
1314 struct in6_addr addr, *tmpaddr;
David Aherne6464b82018-05-27 08:09:53 -07001315 unsigned long tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001316 unsigned long regen_advance;
David Aherne6464b82018-05-27 08:09:53 -07001317 struct ifa6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 int ret = 0;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001319 unsigned long now = jiffies;
Jiri Bohac76506a92016-10-13 18:52:15 +02001320 long max_desync_factor;
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001321 s32 cnf_temp_preferred_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Jiri Pirko53bd6742013-12-06 09:45:22 +01001323 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (ift) {
1325 spin_lock_bh(&ift->lock);
1326 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1327 spin_unlock_bh(&ift->lock);
1328 tmpaddr = &addr;
1329 } else {
1330 tmpaddr = NULL;
1331 }
1332retry:
1333 in6_dev_hold(idev);
1334 if (idev->cnf.use_tempaddr <= 0) {
Jiri Pirko53bd6742013-12-06 09:45:22 +01001335 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001336 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 in6_dev_put(idev);
1338 ret = -1;
1339 goto out;
1340 }
1341 spin_lock_bh(&ifp->lock);
1342 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1343 idev->cnf.use_tempaddr = -1; /*XXX*/
1344 spin_unlock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01001345 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001346 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1347 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 in6_dev_put(idev);
1349 ret = -1;
1350 goto out;
1351 }
1352 in6_ifa_hold(ifp);
1353 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Jiri Bohac9d6280d2016-10-13 18:50:02 +02001354 ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001356 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001358 regen_advance = idev->cnf.regen_max_retry *
Ian Morris67ba4152014-08-24 21:53:10 +01001359 idev->cnf.dad_transmits *
Hangbin Liu19e16d22020-04-01 14:46:20 +08001360 max(NEIGH_VAR(idev->nd_parms, RETRANS_TIME), HZ/100) / HZ;
Jiri Bohac76506a92016-10-13 18:52:15 +02001361
1362 /* recalculate max_desync_factor each time and update
1363 * idev->desync_factor if it's larger
1364 */
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001365 cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft);
Jiri Bohac76506a92016-10-13 18:52:15 +02001366 max_desync_factor = min_t(__u32,
1367 idev->cnf.max_desync_factor,
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001368 cnf_temp_preferred_lft - regen_advance);
Jiri Bohac76506a92016-10-13 18:52:15 +02001369
1370 if (unlikely(idev->desync_factor > max_desync_factor)) {
1371 if (max_desync_factor > 0) {
1372 get_random_bytes(&idev->desync_factor,
1373 sizeof(idev->desync_factor));
1374 idev->desync_factor %= max_desync_factor;
1375 } else {
1376 idev->desync_factor = 0;
1377 }
1378 }
1379
David Ahern3f2d67b2018-06-11 07:12:12 -07001380 memset(&cfg, 0, sizeof(cfg));
David Aherne6464b82018-05-27 08:09:53 -07001381 cfg.valid_lft = min_t(__u32, ifp->valid_lft,
Jiri Bohac76506a92016-10-13 18:52:15 +02001382 idev->cnf.temp_valid_lft + age);
David Aherne6464b82018-05-27 08:09:53 -07001383 cfg.preferred_lft = cnf_temp_preferred_lft + age - idev->desync_factor;
1384 cfg.preferred_lft = min_t(__u32, ifp->prefered_lft, cfg.preferred_lft);
1385
1386 cfg.plen = ifp->prefix_len;
Jiri Bohac76506a92016-10-13 18:52:15 +02001387 tmp_tstamp = ifp->tstamp;
1388 spin_unlock_bh(&ifp->lock);
1389
Jiri Pirko53bd6742013-12-06 09:45:22 +01001390 write_unlock_bh(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001391
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001392 /* A temporary address is created only if this calculated Preferred
1393 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1394 * an implementation must not create a temporary address with a zero
1395 * Preferred Lifetime.
Heiner Kallweitecab6702014-03-12 22:13:19 +01001396 * Use age calculation as in addrconf_verify to avoid unnecessary
1397 * temporary addresses being generated.
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001398 */
Heiner Kallweitecab6702014-03-12 22:13:19 +01001399 age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
David Aherne6464b82018-05-27 08:09:53 -07001400 if (cfg.preferred_lft <= regen_advance + age) {
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001401 in6_ifa_put(ifp);
1402 in6_dev_put(idev);
1403 ret = -1;
1404 goto out;
1405 }
1406
David Aherne6464b82018-05-27 08:09:53 -07001407 cfg.ifa_flags = IFA_F_TEMPORARY;
Neil Horman95c385b2007-04-25 17:08:10 -07001408 /* set in addrconf_prefix_rcv() */
1409 if (ifp->flags & IFA_F_OPTIMISTIC)
David Aherne6464b82018-05-27 08:09:53 -07001410 cfg.ifa_flags |= IFA_F_OPTIMISTIC;
Neil Horman95c385b2007-04-25 17:08:10 -07001411
David Aherne6464b82018-05-27 08:09:53 -07001412 cfg.pfx = &addr;
1413 cfg.scope = ipv6_addr_scope(cfg.pfx);
1414
1415 ift = ipv6_add_addr(idev, &cfg, block, NULL);
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001416 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 in6_ifa_put(ifp);
1418 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001419 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 tmpaddr = &addr;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001421 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 goto retry;
1423 }
1424
1425 spin_lock_bh(&ift->lock);
1426 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001427 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 ift->tstamp = tmp_tstamp;
1429 spin_unlock_bh(&ift->lock);
1430
David S. Millercf22f9a2012-04-14 21:37:40 -04001431 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 in6_ifa_put(ift);
1433 in6_dev_put(idev);
1434out:
1435 return ret;
1436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438/*
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001439 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001441enum {
1442 IPV6_SADDR_RULE_INIT = 0,
1443 IPV6_SADDR_RULE_LOCAL,
1444 IPV6_SADDR_RULE_SCOPE,
1445 IPV6_SADDR_RULE_PREFERRED,
1446#ifdef CONFIG_IPV6_MIP6
1447 IPV6_SADDR_RULE_HOA,
1448#endif
1449 IPV6_SADDR_RULE_OIF,
1450 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001451 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001452 IPV6_SADDR_RULE_ORCHID,
1453 IPV6_SADDR_RULE_PREFIX,
Erik Kline7fd25612014-10-28 18:11:14 +09001454#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1455 IPV6_SADDR_RULE_NOT_OPTIMISTIC,
1456#endif
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001457 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001458};
1459
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001460struct ipv6_saddr_score {
1461 int rule;
1462 int addr_type;
1463 struct inet6_ifaddr *ifa;
1464 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1465 int scopedist;
1466 int matchlen;
1467};
1468
1469struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001470 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001471 int ifindex;
1472 int scope;
1473 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001474 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001475};
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001476
Dave Jonesb6f99a22007-03-22 12:27:49 -07001477static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001479 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001480 return 1;
1481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Matteo Croce35e015e2017-09-12 17:46:37 +02001484static bool ipv6_use_optimistic_addr(struct net *net,
1485 struct inet6_dev *idev)
Erik Kline7fd25612014-10-28 18:11:14 +09001486{
1487#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Matteo Croce35e015e2017-09-12 17:46:37 +02001488 if (!idev)
1489 return false;
1490 if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad)
1491 return false;
1492 if (!net->ipv6.devconf_all->use_optimistic && !idev->cnf.use_optimistic)
1493 return false;
1494
1495 return true;
Erik Kline7fd25612014-10-28 18:11:14 +09001496#else
1497 return false;
1498#endif
1499}
1500
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01001501static bool ipv6_allow_optimistic_dad(struct net *net,
1502 struct inet6_dev *idev)
1503{
1504#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1505 if (!idev)
1506 return false;
1507 if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad)
1508 return false;
1509
1510 return true;
1511#else
1512 return false;
1513#endif
1514}
1515
Benjamin Thery3de23252008-05-28 14:51:24 +02001516static int ipv6_get_saddr_eval(struct net *net,
1517 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001518 struct ipv6_saddr_dst *dst,
1519 int i)
1520{
1521 int ret;
1522
1523 if (i <= score->rule) {
1524 switch (i) {
1525 case IPV6_SADDR_RULE_SCOPE:
1526 ret = score->scopedist;
1527 break;
1528 case IPV6_SADDR_RULE_PREFIX:
1529 ret = score->matchlen;
1530 break;
1531 default:
1532 ret = !!test_bit(i, score->scorebits);
1533 }
1534 goto out;
1535 }
1536
1537 switch (i) {
1538 case IPV6_SADDR_RULE_INIT:
1539 /* Rule 0: remember if hiscore is not ready yet */
1540 ret = !!score->ifa;
1541 break;
1542 case IPV6_SADDR_RULE_LOCAL:
1543 /* Rule 1: Prefer same address */
1544 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1545 break;
1546 case IPV6_SADDR_RULE_SCOPE:
1547 /* Rule 2: Prefer appropriate scope
1548 *
1549 * ret
1550 * ^
1551 * -1 | d 15
1552 * ---+--+-+---> scope
1553 * |
1554 * | d is scope of the destination.
1555 * B-d | \
1556 * | \ <- smaller scope is better if
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08001557 * B-15 | \ if scope is enough for destination.
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001558 * | ret = B - scope (-1 <= scope >= d <= 15).
1559 * d-C-1 | /
1560 * |/ <- greater is better
1561 * -C / if scope is not enough for destination.
1562 * /| ret = scope - C (-1 <= d < scope <= 15).
1563 *
1564 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1565 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1566 * Assume B = 0 and we get C > 29.
1567 */
1568 ret = __ipv6_addr_src_scope(score->addr_type);
1569 if (ret >= dst->scope)
1570 ret = -ret;
1571 else
1572 ret -= 128; /* 30 is enough */
1573 score->scopedist = ret;
1574 break;
1575 case IPV6_SADDR_RULE_PREFERRED:
Erik Kline7fd25612014-10-28 18:11:14 +09001576 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001577 /* Rule 3: Avoid deprecated and optimistic addresses */
Erik Kline7fd25612014-10-28 18:11:14 +09001578 u8 avoid = IFA_F_DEPRECATED;
1579
Matteo Croce35e015e2017-09-12 17:46:37 +02001580 if (!ipv6_use_optimistic_addr(net, score->ifa->idev))
Erik Kline7fd25612014-10-28 18:11:14 +09001581 avoid |= IFA_F_OPTIMISTIC;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001582 ret = ipv6_saddr_preferred(score->addr_type) ||
Erik Kline7fd25612014-10-28 18:11:14 +09001583 !(score->ifa->flags & avoid);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001584 break;
Erik Kline7fd25612014-10-28 18:11:14 +09001585 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001586#ifdef CONFIG_IPV6_MIP6
1587 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001588 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001589 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001590 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1591 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001592 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001593 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001594#endif
1595 case IPV6_SADDR_RULE_OIF:
1596 /* Rule 5: Prefer outgoing interface */
1597 ret = (!dst->ifindex ||
1598 dst->ifindex == score->ifa->idev->dev->ifindex);
1599 break;
1600 case IPV6_SADDR_RULE_LABEL:
1601 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001602 ret = ipv6_addr_label(net,
1603 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001604 score->ifa->idev->dev->ifindex) == dst->label;
1605 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001606 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001607 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001608 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001609 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001610 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001611 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1612 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1613 score->ifa->idev->cnf.use_tempaddr >= 2;
1614 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001615 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001616 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001617 case IPV6_SADDR_RULE_ORCHID:
1618 /* Rule 8-: Prefer ORCHID vs ORCHID or
1619 * non-ORCHID vs non-ORCHID
1620 */
1621 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1622 ipv6_addr_orchid(dst->addr));
1623 break;
1624 case IPV6_SADDR_RULE_PREFIX:
1625 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001626 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1627 if (ret > score->ifa->prefix_len)
1628 ret = score->ifa->prefix_len;
1629 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001630 break;
Erik Kline7fd25612014-10-28 18:11:14 +09001631#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1632 case IPV6_SADDR_RULE_NOT_OPTIMISTIC:
1633 /* Optimistic addresses still have lower precedence than other
1634 * preferred addresses.
1635 */
1636 ret = !(score->ifa->flags & IFA_F_OPTIMISTIC);
1637 break;
1638#endif
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001639 default:
1640 ret = 0;
1641 }
1642
1643 if (ret)
1644 __set_bit(i, score->scorebits);
1645 score->rule = i;
1646out:
1647 return ret;
1648}
1649
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001650static int __ipv6_dev_get_saddr(struct net *net,
1651 struct ipv6_saddr_dst *dst,
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001652 struct inet6_dev *idev,
1653 struct ipv6_saddr_score *scores,
1654 int hiscore_idx)
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001655{
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001656 struct ipv6_saddr_score *score = &scores[1 - hiscore_idx], *hiscore = &scores[hiscore_idx];
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001657
Eric Dumazetf59c0312017-10-07 19:30:27 -07001658 list_for_each_entry_rcu(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001659 int i;
1660
1661 /*
1662 * - Tentative Address (RFC2462 section 5.4)
1663 * - A tentative address is not considered
1664 * "assigned to an interface" in the traditional
1665 * sense, unless it is also flagged as optimistic.
1666 * - Candidate Source Address (section 4)
1667 * - In any case, anycast addresses, multicast
1668 * addresses, and the unspecified address MUST
1669 * NOT be included in a candidate set.
1670 */
1671 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1672 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
1673 continue;
1674
1675 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1676
1677 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1678 score->addr_type & IPV6_ADDR_MULTICAST)) {
1679 net_dbg_ratelimited("ADDRCONF: unspecified / multicast address assigned as unicast address on %s",
1680 idev->dev->name);
1681 continue;
1682 }
1683
1684 score->rule = -1;
1685 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
1686
1687 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1688 int minihiscore, miniscore;
1689
1690 minihiscore = ipv6_get_saddr_eval(net, hiscore, dst, i);
1691 miniscore = ipv6_get_saddr_eval(net, score, dst, i);
1692
1693 if (minihiscore > miniscore) {
1694 if (i == IPV6_SADDR_RULE_SCOPE &&
1695 score->scopedist > 0) {
1696 /*
1697 * special case:
1698 * each remaining entry
1699 * has too small (not enough)
1700 * scope, because ifa entries
1701 * are sorted by their scope
1702 * values.
1703 */
1704 goto out;
1705 }
1706 break;
1707 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001708 swap(hiscore, score);
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001709 hiscore_idx = 1 - hiscore_idx;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001710
1711 /* restore our iterator */
1712 score->ifa = hiscore->ifa;
1713
1714 break;
1715 }
1716 }
1717 }
1718out:
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001719 return hiscore_idx;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001720}
1721
David Ahernafbac6012016-06-16 16:24:26 -07001722static int ipv6_get_saddr_master(struct net *net,
1723 const struct net_device *dst_dev,
1724 const struct net_device *master,
1725 struct ipv6_saddr_dst *dst,
1726 struct ipv6_saddr_score *scores,
1727 int hiscore_idx)
1728{
1729 struct inet6_dev *idev;
1730
1731 idev = __in6_dev_get(dst_dev);
1732 if (idev)
1733 hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev,
1734 scores, hiscore_idx);
1735
1736 idev = __in6_dev_get(master);
1737 if (idev)
1738 hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev,
1739 scores, hiscore_idx);
1740
1741 return hiscore_idx;
1742}
1743
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001744int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001745 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001746 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001748 struct ipv6_saddr_score scores[2], *hiscore;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001749 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001750 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001751 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001752 int dst_type;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001753 bool use_oif_addr = false;
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001754 int hiscore_idx = 0;
Eric Dumazetcc429c82017-10-07 19:30:28 -07001755 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001757 dst_type = __ipv6_addr_type(daddr);
1758 dst.addr = daddr;
1759 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1760 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001761 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001762 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001763
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001764 scores[hiscore_idx].rule = -1;
1765 scores[hiscore_idx].ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001767 rcu_read_lock();
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001768
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001769 /* Candidate Source Address (section 4)
1770 * - multicast and link-local destination address,
1771 * the set of candidate source address MUST only
1772 * include addresses assigned to interfaces
1773 * belonging to the same link as the outgoing
1774 * interface.
1775 * (- For site-local destination addresses, the
1776 * set of candidate source addresses MUST only
1777 * include addresses assigned to interfaces
1778 * belonging to the same site as the outgoing
1779 * interface.)
Erik Kline3985e8a2015-07-22 16:38:25 +09001780 * - "It is RECOMMENDED that the candidate source addresses
1781 * be the set of unicast addresses assigned to the
1782 * interface that will be used to send to the destination
1783 * (the 'outgoing' interface)." (RFC 6724)
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001784 */
1785 if (dst_dev) {
Erik Kline3985e8a2015-07-22 16:38:25 +09001786 idev = __in6_dev_get(dst_dev);
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001787 if ((dst_type & IPV6_ADDR_MULTICAST) ||
Erik Kline3985e8a2015-07-22 16:38:25 +09001788 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL ||
1789 (idev && idev->cnf.use_oif_addrs_only)) {
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001790 use_oif_addr = true;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001791 }
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001792 }
1793
1794 if (use_oif_addr) {
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001795 if (idev)
YOSHIFUJI Hideakic15df302015-07-16 16:51:30 +09001796 hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx);
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001797 } else {
David Ahernafbac6012016-06-16 16:24:26 -07001798 const struct net_device *master;
1799 int master_idx = 0;
1800
1801 /* if dst_dev exists and is enslaved to an L3 device, then
1802 * prefer addresses from dst_dev and then the master over
1803 * any other enslaved devices in the L3 domain.
1804 */
1805 master = l3mdev_master_dev_rcu(dst_dev);
1806 if (master) {
1807 master_idx = master->ifindex;
1808
1809 hiscore_idx = ipv6_get_saddr_master(net, dst_dev,
1810 master, &dst,
1811 scores, hiscore_idx);
1812
1813 if (scores[hiscore_idx].ifa)
1814 goto out;
1815 }
1816
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001817 for_each_netdev_rcu(net, dev) {
David Ahernafbac6012016-06-16 16:24:26 -07001818 /* only consider addresses on devices in the
1819 * same L3 domain
1820 */
1821 if (l3mdev_master_ifindex_rcu(dev) != master_idx)
1822 continue;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001823 idev = __in6_dev_get(dev);
1824 if (!idev)
1825 continue;
YOSHIFUJI Hideakic15df302015-07-16 16:51:30 +09001826 hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx);
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001827 }
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001828 }
David Ahernafbac6012016-06-16 16:24:26 -07001829
1830out:
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001831 hiscore = &scores[hiscore_idx];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001832 if (!hiscore->ifa)
Eric Dumazetcc429c82017-10-07 19:30:28 -07001833 ret = -EADDRNOTAVAIL;
1834 else
1835 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001836
Eric Dumazetcc429c82017-10-07 19:30:28 -07001837 rcu_read_unlock();
1838 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001840EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Amerigo Wang89657792013-06-29 21:30:49 +08001842int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001843 u32 banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001844{
1845 struct inet6_ifaddr *ifp;
1846 int err = -EADDRNOTAVAIL;
1847
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001848 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1849 if (ifp->scope > IFA_LINK)
1850 break;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001851 if (ifp->scope == IFA_LINK &&
1852 !(ifp->flags & banned_flags)) {
1853 *addr = ifp->addr;
1854 err = 0;
1855 break;
1856 }
1857 }
1858 return err;
1859}
1860
Neil Horman95c385b2007-04-25 17:08:10 -07001861int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001862 u32 banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct inet6_dev *idev;
1865 int err = -EADDRNOTAVAIL;
1866
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001867 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001868 idev = __in6_dev_get(dev);
1869 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001871 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 read_unlock_bh(&idev->lock);
1873 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001874 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return err;
1876}
1877
Eric Dumazetd9bf82c2017-10-07 19:30:24 -07001878static int ipv6_count_addresses(const struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Eric Dumazetd9bf82c2017-10-07 19:30:24 -07001880 const struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Eric Dumazetd9bf82c2017-10-07 19:30:24 -07001883 rcu_read_lock();
1884 list_for_each_entry_rcu(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 cnt++;
Eric Dumazetd9bf82c2017-10-07 19:30:24 -07001886 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return cnt;
1888}
1889
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001890int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001891 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
David Ahern232378e2018-03-13 08:29:37 -07001893 return ipv6_chk_addr_and_flags(net, addr, dev, !dev,
1894 strict, IFA_F_TENTATIVE);
Erik Klinec58da4c2015-02-04 20:01:23 +09001895}
1896EXPORT_SYMBOL(ipv6_chk_addr);
1897
David Ahern1893ff22018-03-13 08:29:38 -07001898/* device argument is used to find the L3 domain of interest. If
1899 * skip_dev_check is set, then the ifp device is not checked against
1900 * the passed in dev argument. So the 2 cases for addresses checks are:
1901 * 1. does the address exist in the L3 domain that dev is part of
1902 * (skip_dev_check = true), or
1903 *
1904 * 2. does the address exist on the specific device
1905 * (skip_dev_check = false)
1906 */
Erik Klinec58da4c2015-02-04 20:01:23 +09001907int ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr,
David Ahern232378e2018-03-13 08:29:37 -07001908 const struct net_device *dev, bool skip_dev_check,
1909 int strict, u32 banned_flags)
Erik Klinec58da4c2015-02-04 20:01:23 +09001910{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07001911 unsigned int hash = inet6_addr_hash(net, addr);
David Ahern1893ff22018-03-13 08:29:38 -07001912 const struct net_device *l3mdev;
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001913 struct inet6_ifaddr *ifp;
Erik Klinec58da4c2015-02-04 20:01:23 +09001914 u32 ifp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Eric Dumazet480318a2017-10-23 16:17:48 -07001916 rcu_read_lock();
David Ahern232378e2018-03-13 08:29:37 -07001917
David Ahern1893ff22018-03-13 08:29:38 -07001918 l3mdev = l3mdev_master_dev_rcu(dev);
David Ahern232378e2018-03-13 08:29:37 -07001919 if (skip_dev_check)
1920 dev = NULL;
1921
Sasha Levinb67bfe02013-02-27 17:06:00 -08001922 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001923 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001924 continue;
David Ahern1893ff22018-03-13 08:29:38 -07001925
1926 if (l3mdev_master_dev_rcu(ifp->idev->dev) != l3mdev)
1927 continue;
1928
Erik Klinec58da4c2015-02-04 20:01:23 +09001929 /* Decouple optimistic from tentative for evaluation here.
1930 * Ban optimistic addresses explicitly, when required.
1931 */
1932 ifp_flags = (ifp->flags&IFA_F_OPTIMISTIC)
1933 ? (ifp->flags&~IFA_F_TENTATIVE)
1934 : ifp->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (ipv6_addr_equal(&ifp->addr, addr) &&
Erik Klinec58da4c2015-02-04 20:01:23 +09001936 !(ifp_flags&banned_flags) &&
Ian Morris63159f22015-03-29 14:00:04 +01001937 (!dev || ifp->idev->dev == dev ||
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001938 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
Eric Dumazet480318a2017-10-23 16:17:48 -07001939 rcu_read_unlock();
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001940 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001943
Eric Dumazet480318a2017-10-23 16:17:48 -07001944 rcu_read_unlock();
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
Erik Klinec58da4c2015-02-04 20:01:23 +09001947EXPORT_SYMBOL(ipv6_chk_addr_and_flags);
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001950/* Compares an address/prefix_len with addresses on device @dev.
1951 * If one is found it returns true.
1952 */
1953bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1954 const unsigned int prefix_len, struct net_device *dev)
1955{
Eric Dumazet47e26942017-10-07 19:30:25 -07001956 const struct inet6_ifaddr *ifa;
1957 const struct inet6_dev *idev;
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001958 bool ret = false;
1959
1960 rcu_read_lock();
1961 idev = __in6_dev_get(dev);
1962 if (idev) {
Eric Dumazet47e26942017-10-07 19:30:25 -07001963 list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) {
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001964 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1965 if (ret)
1966 break;
1967 }
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001968 }
1969 rcu_read_unlock();
1970
1971 return ret;
1972}
1973EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1974
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001975int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001976{
Eric Dumazet24ba3332017-10-07 19:30:26 -07001977 const struct inet6_ifaddr *ifa;
1978 const struct inet6_dev *idev;
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001979 int onlink;
1980
1981 onlink = 0;
1982 rcu_read_lock();
1983 idev = __in6_dev_get(dev);
1984 if (idev) {
Eric Dumazet24ba3332017-10-07 19:30:26 -07001985 list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001986 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1987 ifa->prefix_len);
1988 if (onlink)
1989 break;
1990 }
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001991 }
1992 rcu_read_unlock();
1993 return onlink;
1994}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001995EXPORT_SYMBOL(ipv6_chk_prefix);
1996
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001997struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001998 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07002000 unsigned int hash = inet6_addr_hash(net, addr);
David S. Millerb79d1d52010-03-25 21:39:21 -07002001 struct inet6_ifaddr *ifp, *result = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Eric Dumazet24f226d2017-10-23 16:17:49 -07002003 rcu_read_lock();
2004 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002005 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08002006 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (ipv6_addr_equal(&ifp->addr, addr)) {
Ian Morris63159f22015-03-29 14:00:04 +01002008 if (!dev || ifp->idev->dev == dev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07002010 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 in6_ifa_hold(ifp);
2012 break;
2013 }
2014 }
2015 }
Eric Dumazet24f226d2017-10-23 16:17:49 -07002016 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
David S. Millerb79d1d52010-03-25 21:39:21 -07002018 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021/* Gets referenced address, destroys ifaddr */
2022
Brian Haleycc411d02009-09-09 14:41:32 +00002023static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
Lubomir Rintel3d171f32016-01-08 13:47:23 +01002025 if (dad_failed)
2026 ifp->flags |= IFA_F_DADFAILED;
2027
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02002028 if (ifp->flags&IFA_F_TEMPORARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 struct inet6_ifaddr *ifpub;
2030 spin_lock_bh(&ifp->lock);
2031 ifpub = ifp->ifpub;
2032 if (ifpub) {
2033 in6_ifa_hold(ifpub);
2034 spin_unlock_bh(&ifp->lock);
Eric Dumazetfffcefe2017-11-06 14:13:29 -08002035 ipv6_create_tempaddr(ifpub, ifp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 in6_ifa_put(ifpub);
2037 } else {
2038 spin_unlock_bh(&ifp->lock);
2039 }
2040 ipv6_del_addr(ifp);
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02002041 } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) {
2042 spin_lock_bh(&ifp->lock);
2043 addrconf_del_dad_work(ifp);
2044 ifp->flags |= IFA_F_TENTATIVE;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01002045 if (dad_failed)
2046 ifp->flags &= ~IFA_F_OPTIMISTIC;
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02002047 spin_unlock_bh(&ifp->lock);
2048 if (dad_failed)
2049 ipv6_ifa_notify(0, ifp);
2050 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002051 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 ipv6_del_addr(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
Herbert Xuf2344a12010-05-18 15:55:27 -07002056static int addrconf_dad_end(struct inet6_ifaddr *ifp)
2057{
2058 int err = -ENOENT;
2059
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002060 spin_lock_bh(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07002061 if (ifp->state == INET6_IFADDR_STATE_DAD) {
2062 ifp->state = INET6_IFADDR_STATE_POSTDAD;
2063 err = 0;
2064 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002065 spin_unlock_bh(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07002066
2067 return err;
2068}
2069
Vishwanath Paida13c592017-10-30 19:38:52 -04002070void addrconf_dad_failure(struct sk_buff *skb, struct inet6_ifaddr *ifp)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002071{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002072 struct inet6_dev *idev = ifp->idev;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002073 struct net *net = dev_net(ifp->idev->dev);
Brian Haley9bdd8d42009-03-18 18:22:48 -07002074
Ursula Braun853dc2e2010-10-24 23:06:43 +00002075 if (addrconf_dad_end(ifp)) {
2076 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07002077 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00002078 }
Herbert Xuf2344a12010-05-18 15:55:27 -07002079
Vishwanath Paida13c592017-10-30 19:38:52 -04002080 net_info_ratelimited("%s: IPv6 duplicate address %pI6c used by %pM detected!\n",
2081 ifp->idev->dev->name, &ifp->addr, eth_hdr(skb)->h_source);
Brian Haley9bdd8d42009-03-18 18:22:48 -07002082
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002083 spin_lock_bh(&ifp->lock);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002084
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002085 if (ifp->flags & IFA_F_STABLE_PRIVACY) {
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002086 struct in6_addr new_addr;
2087 struct inet6_ifaddr *ifp2;
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002088 int retries = ifp->stable_privacy_retry + 1;
David Aherne6464b82018-05-27 08:09:53 -07002089 struct ifa6_config cfg = {
2090 .pfx = &new_addr,
2091 .plen = ifp->prefix_len,
2092 .ifa_flags = ifp->flags,
2093 .valid_lft = ifp->valid_lft,
2094 .preferred_lft = ifp->prefered_lft,
2095 .scope = ifp->scope,
2096 };
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002097
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002098 if (retries > net->ipv6.sysctl.idgen_retries) {
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002099 net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n",
2100 ifp->idev->dev->name);
2101 goto errdad;
2102 }
2103
2104 new_addr = ifp->addr;
2105 if (ipv6_generate_stable_address(&new_addr, retries,
2106 idev))
2107 goto errdad;
2108
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002109 spin_unlock_bh(&ifp->lock);
2110
2111 if (idev->cnf.max_addresses &&
2112 ipv6_count_addresses(idev) >=
2113 idev->cnf.max_addresses)
2114 goto lock_errdad;
2115
2116 net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n",
2117 ifp->idev->dev->name);
2118
David Aherne6464b82018-05-27 08:09:53 -07002119 ifp2 = ipv6_add_addr(idev, &cfg, false, NULL);
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002120 if (IS_ERR(ifp2))
2121 goto lock_errdad;
2122
2123 spin_lock_bh(&ifp2->lock);
2124 ifp2->stable_privacy_retry = retries;
2125 ifp2->state = INET6_IFADDR_STATE_PREDAD;
2126 spin_unlock_bh(&ifp2->lock);
2127
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002128 addrconf_mod_dad_work(ifp2, net->ipv6.sysctl.idgen_delay);
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002129 in6_ifa_put(ifp2);
2130lock_errdad:
2131 spin_lock_bh(&ifp->lock);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002132 }
2133
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002134errdad:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002135 /* transition from _POSTDAD to _ERRDAD */
2136 ifp->state = INET6_IFADDR_STATE_ERRDAD;
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002137 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002138
2139 addrconf_mod_dad_work(ifp, 0);
Wei Yongjun751eb6b2016-09-05 16:06:31 +08002140 in6_ifa_put(ifp);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002141}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002143/* Join to solicited addr multicast group.
2144 * caller must hold RTNL */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002145void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
2147 struct in6_addr maddr;
2148
2149 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2150 return;
2151
2152 addrconf_addr_solict_mult(addr, &maddr);
2153 ipv6_dev_mc_inc(dev, &maddr);
2154}
2155
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002156/* caller must hold RTNL */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002157void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
2159 struct in6_addr maddr;
2160
2161 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2162 return;
2163
2164 addrconf_addr_solict_mult(addr, &maddr);
2165 __ipv6_dev_mc_dec(idev, &maddr);
2166}
2167
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002168/* caller must hold RTNL */
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002169static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
2171 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002172
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01002173 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00002174 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2176 if (ipv6_addr_any(&addr))
2177 return;
WANG Cong013b4d92014-09-11 15:35:11 -07002178 __ipv6_dev_ac_inc(ifp->idev, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002181/* caller must hold RTNL */
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002182static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002185
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01002186 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00002187 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2189 if (ipv6_addr_any(&addr))
2190 return;
2191 __ipv6_dev_ac_dec(ifp->idev, &addr);
2192}
2193
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002194static int addrconf_ifid_6lowpan(u8 *eui, struct net_device *dev)
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002195{
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002196 switch (dev->addr_len) {
2197 case ETH_ALEN:
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +02002198 memcpy(eui, dev->dev_addr, 3);
2199 eui[3] = 0xFF;
2200 eui[4] = 0xFE;
2201 memcpy(eui + 5, dev->dev_addr + 3, 3);
2202 break;
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002203 case EUI64_ADDR_LEN:
2204 memcpy(eui, dev->dev_addr, EUI64_ADDR_LEN);
2205 eui[0] ^= 2;
2206 break;
2207 default:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002208 return -1;
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002209 }
2210
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002211 return 0;
2212}
2213
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002214static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
2215{
2216 union fwnet_hwaddr *ha;
2217
2218 if (dev->addr_len != FWNET_ALEN)
2219 return -1;
2220
2221 ha = (union fwnet_hwaddr *)dev->dev_addr;
2222
2223 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
2224 eui[0] ^= 2;
2225 return 0;
2226}
2227
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002228static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
2229{
2230 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
2231 if (dev->addr_len != ARCNET_ALEN)
2232 return -1;
2233 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002234 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002235 return 0;
2236}
2237
2238static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
2239{
2240 if (dev->addr_len != INFINIBAND_ALEN)
2241 return -1;
2242 memcpy(eui, dev->dev_addr + 12, 8);
2243 eui[0] |= 2;
2244 return 0;
2245}
2246
stephen hemmingerc61393e2010-10-04 20:17:53 +00002247static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002248{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00002249 if (addr == 0)
2250 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002251 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
2252 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
2253 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
2254 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
2255 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
2256 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
2257 eui[1] = 0;
2258 eui[2] = 0x5E;
2259 eui[3] = 0xFE;
2260 memcpy(eui + 4, &addr, 4);
2261 return 0;
2262}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002263
2264static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
2265{
2266 if (dev->priv_flags & IFF_ISATAP)
2267 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2268 return -1;
2269}
2270
stephen hemmingeraee80b52011-06-08 10:44:30 +00002271static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
2272{
2273 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2274}
2275
Nicolas Dichtele8377352013-08-20 12:16:06 +02002276static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
2277{
2278 memcpy(eui, dev->perm_addr, 3);
2279 memcpy(eui + 5, dev->perm_addr + 3, 3);
2280 eui[3] = 0xFF;
2281 eui[4] = 0xFE;
2282 eui[0] ^= 2;
2283 return 0;
2284}
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
2287{
2288 switch (dev->type) {
2289 case ARPHRD_ETHER:
2290 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002291 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002293 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002295 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002296 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002297 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002298 case ARPHRD_IPGRE:
Felix Jia45ce0fd2017-01-26 16:59:18 +13002299 case ARPHRD_TUNNEL:
stephen hemmingeraee80b52011-06-08 10:44:30 +00002300 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb82013-12-11 17:05:36 +02002301 case ARPHRD_6LOWPAN:
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002302 return addrconf_ifid_6lowpan(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002303 case ARPHRD_IEEE1394:
2304 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02002305 case ARPHRD_TUNNEL6:
Felix Jia45ce0fd2017-01-26 16:59:18 +13002306 case ARPHRD_IP6GRE:
Subash Abhinov Kasiviswanathan9deb4412018-06-04 19:26:07 -06002307 case ARPHRD_RAWIP:
Nicolas Dichtele8377352013-08-20 12:16:06 +02002308 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310 return -1;
2311}
2312
2313static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
2314{
2315 int err = -1;
2316 struct inet6_ifaddr *ifp;
2317
2318 read_lock_bh(&idev->lock);
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01002319 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
2320 if (ifp->scope > IFA_LINK)
2321 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
2323 memcpy(eui, ifp->addr.s6_addr+8, 8);
2324 err = 0;
2325 break;
2326 }
2327 }
2328 read_unlock_bh(&idev->lock);
2329 return err;
2330}
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Jiri Bohac9d6280d2016-10-13 18:50:02 +02002333static void ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08002336 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 /*
2340 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
2341 * check if generated address is not inappropriate
2342 *
2343 * - Reserved subnet anycast (RFC 2526)
2344 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002345 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 * 00-00-5E-FE-xx-xx-xx-xx
2347 * - value 0
2348 * - XXX: already assigned to an address on the device
2349 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002350 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
2352 (idev->rndid[7]&0x80))
2353 goto regen;
2354 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
2355 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
2356 goto regen;
2357 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
2358 goto regen;
2359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360}
2361
Jiri Bohac9d6280d2016-10-13 18:50:02 +02002362static void ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002363{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Jiri Bohac9d6280d2016-10-13 18:50:02 +02002365 ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368/*
2369 * Add prefix route.
2370 */
2371
2372static void
David Ahern8308f3f2018-05-27 08:09:58 -07002373addrconf_prefix_route(struct in6_addr *pfx, int plen, u32 metric,
2374 struct net_device *dev, unsigned long expires,
2375 u32 flags, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
Thomas Graf86872cb2006-08-22 00:01:08 -07002377 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002378 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX,
David Ahern8308f3f2018-05-27 08:09:58 -07002379 .fc_metric = metric ? : IP6_RT_PRIO_ADDRCONF,
Thomas Graf86872cb2006-08-22 00:01:08 -07002380 .fc_ifindex = dev->ifindex,
2381 .fc_expires = expires,
2382 .fc_dst_len = plen,
2383 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002384 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07002385 .fc_protocol = RTPROT_KERNEL,
David Aherne8478e82018-04-17 17:33:13 -07002386 .fc_type = RTN_UNICAST,
Thomas Graf86872cb2006-08-22 00:01:08 -07002387 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002389 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 /* Prevent useless cloning on PtP SIT.
2392 This thing is done here expecting that the whole
2393 class of non-broadcast devices need not cloning.
2394 */
Amerigo Wang07a93622012-10-29 16:23:10 +00002395#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07002396 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
2397 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
David Ahernacb54e32018-04-17 17:33:22 -07002400 ip6_route_add(&cfg, gfp_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
2402
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002403
David Ahern8d1c8022018-04-17 17:33:26 -07002404static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002405 int plen,
2406 const struct net_device *dev,
David Ahern2b2450c2019-03-27 20:53:52 -07002407 u32 flags, u32 noflags,
2408 bool no_gw)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002409{
2410 struct fib6_node *fn;
David Ahern8d1c8022018-04-17 17:33:26 -07002411 struct fib6_info *rt = NULL;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002412 struct fib6_table *table;
David Ahernca254492015-10-12 11:47:10 -07002413 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002414
David Ahernca254492015-10-12 11:47:10 -07002415 table = fib6_get_table(dev_net(dev), tb_id);
Ian Morris63159f22015-03-29 14:00:04 +01002416 if (!table)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002417 return NULL;
2418
Wei Wang66f5d6c2017-10-06 12:06:10 -07002419 rcu_read_lock();
Wei Wang38fbeee2017-10-06 12:06:02 -07002420 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0, true);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002421 if (!fn)
2422 goto out;
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002423
Wei Wang66f5d6c2017-10-06 12:06:10 -07002424 for_each_fib6_node_rt_rcu(fn) {
David Ahernf88d8ea2019-06-03 20:19:52 -07002425 /* prefix routes only use builtin fib6_nh */
2426 if (rt->nh)
2427 continue;
2428
David Ahern1cf844c2019-05-22 20:27:59 -07002429 if (rt->fib6_nh->fib_nh_dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002430 continue;
David Ahern1cf844c2019-05-22 20:27:59 -07002431 if (no_gw && rt->fib6_nh->fib_nh_gw_family)
David Ahern2b2450c2019-03-27 20:53:52 -07002432 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07002433 if ((rt->fib6_flags & flags) != flags)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002434 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07002435 if ((rt->fib6_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002436 continue;
Wei Wange873e4b2018-07-21 20:56:32 -07002437 if (!fib6_info_hold_safe(rt))
2438 continue;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002439 break;
2440 }
2441out:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002442 rcu_read_unlock();
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002443 return rt;
2444}
2445
2446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447/* Create "default" multicast route to the interface */
2448
2449static void addrconf_add_mroute(struct net_device *dev)
2450{
Thomas Graf86872cb2006-08-22 00:01:08 -07002451 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002452 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_LOCAL,
Thomas Graf86872cb2006-08-22 00:01:08 -07002453 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2454 .fc_ifindex = dev->ifindex,
2455 .fc_dst_len = 8,
2456 .fc_flags = RTF_UP,
David Aherne8478e82018-04-17 17:33:13 -07002457 .fc_type = RTN_UNICAST,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002458 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002459 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Thomas Graf86872cb2006-08-22 00:01:08 -07002461 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2462
Cong Wange500c6d2018-08-22 12:58:34 -07002463 ip6_route_add(&cfg, GFP_KERNEL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2467{
2468 struct inet6_dev *idev;
2469
2470 ASSERT_RTNL();
2471
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002472 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02002473 if (IS_ERR(idev))
2474 return idev;
Brian Haley64e724f2010-07-20 10:34:30 +00002475
2476 if (idev->cnf.disable_ipv6)
2477 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 /* Add default multicast route */
David Ahernba46ee42016-06-13 13:44:18 -07002480 if (!(dev->flags & IFF_LOOPBACK) && !netif_is_l3_master(dev))
Li Wei4af04ab2011-12-06 21:23:45 +00002481 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return idev;
2484}
2485
Jiri Pirko53bd6742013-12-06 09:45:22 +01002486static void manage_tempaddrs(struct inet6_dev *idev,
2487 struct inet6_ifaddr *ifp,
2488 __u32 valid_lft, __u32 prefered_lft,
2489 bool create, unsigned long now)
2490{
2491 u32 flags;
2492 struct inet6_ifaddr *ift;
2493
2494 read_lock_bh(&idev->lock);
2495 /* update all temporary addresses in the list */
2496 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2497 int age, max_valid, max_prefered;
2498
2499 if (ifp != ift->ifpub)
2500 continue;
2501
2502 /* RFC 4941 section 3.3:
2503 * If a received option will extend the lifetime of a public
2504 * address, the lifetimes of temporary addresses should
2505 * be extended, subject to the overall constraint that no
2506 * temporary addresses should ever remain "valid" or "preferred"
2507 * for a time longer than (TEMP_VALID_LIFETIME) or
2508 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2509 */
2510 age = (now - ift->cstamp) / HZ;
2511 max_valid = idev->cnf.temp_valid_lft - age;
2512 if (max_valid < 0)
2513 max_valid = 0;
2514
2515 max_prefered = idev->cnf.temp_prefered_lft -
Jiri Bohac76506a92016-10-13 18:52:15 +02002516 idev->desync_factor - age;
Jiri Pirko53bd6742013-12-06 09:45:22 +01002517 if (max_prefered < 0)
2518 max_prefered = 0;
2519
2520 if (valid_lft > max_valid)
2521 valid_lft = max_valid;
2522
2523 if (prefered_lft > max_prefered)
2524 prefered_lft = max_prefered;
2525
2526 spin_lock(&ift->lock);
2527 flags = ift->flags;
2528 ift->valid_lft = valid_lft;
2529 ift->prefered_lft = prefered_lft;
2530 ift->tstamp = now;
2531 if (prefered_lft > 0)
2532 ift->flags &= ~IFA_F_DEPRECATED;
2533
2534 spin_unlock(&ift->lock);
2535 if (!(flags&IFA_F_TENTATIVE))
2536 ipv6_ifa_notify(0, ift);
2537 }
2538
2539 if ((create || list_empty(&idev->tempaddr_list)) &&
2540 idev->cnf.use_tempaddr > 0) {
2541 /* When a new public address is created as described
2542 * in [ADDRCONF], also create a new temporary address.
2543 * Also create a temporary address if it's enabled but
2544 * no temporary address currently exists.
2545 */
2546 read_unlock_bh(&idev->lock);
Eric Dumazetfffcefe2017-11-06 14:13:29 -08002547 ipv6_create_tempaddr(ifp, NULL, false);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002548 } else {
2549 read_unlock_bh(&idev->lock);
2550 }
2551}
2552
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002553static bool is_addr_mode_generate_stable(struct inet6_dev *idev)
2554{
Felix Jiad35a00b2017-01-26 16:59:17 +13002555 return idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY ||
2556 idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_RANDOM;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002557}
2558
Alexander Aringcc84b3c2016-06-15 21:20:24 +02002559int addrconf_prefix_rcv_add_addr(struct net *net, struct net_device *dev,
2560 const struct prefix_info *pinfo,
2561 struct inet6_dev *in6_dev,
2562 const struct in6_addr *addr, int addr_type,
2563 u32 addr_flags, bool sllao, bool tokenized,
2564 __u32 valid_lft, u32 prefered_lft)
Alexander Aring4f672232016-06-15 21:20:22 +02002565{
2566 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(net, addr, dev, 1);
2567 int create = 0, update_lft = 0;
2568
2569 if (!ifp && valid_lft) {
2570 int max_addresses = in6_dev->cnf.max_addresses;
David Aherne6464b82018-05-27 08:09:53 -07002571 struct ifa6_config cfg = {
2572 .pfx = addr,
2573 .plen = pinfo->prefix_len,
2574 .ifa_flags = addr_flags,
2575 .valid_lft = valid_lft,
2576 .preferred_lft = prefered_lft,
2577 .scope = addr_type & IPV6_ADDR_SCOPE_MASK,
2578 };
Alexander Aring4f672232016-06-15 21:20:22 +02002579
2580#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Matteo Croce35e015e2017-09-12 17:46:37 +02002581 if ((net->ipv6.devconf_all->optimistic_dad ||
2582 in6_dev->cnf.optimistic_dad) &&
Alexander Aring4f672232016-06-15 21:20:22 +02002583 !net->ipv6.devconf_all->forwarding && sllao)
David Aherne6464b82018-05-27 08:09:53 -07002584 cfg.ifa_flags |= IFA_F_OPTIMISTIC;
Alexander Aring4f672232016-06-15 21:20:22 +02002585#endif
2586
2587 /* Do not allow to create too much of autoconfigured
2588 * addresses; this would be too easy way to crash kernel.
2589 */
2590 if (!max_addresses ||
2591 ipv6_count_addresses(in6_dev) < max_addresses)
David Aherne6464b82018-05-27 08:09:53 -07002592 ifp = ipv6_add_addr(in6_dev, &cfg, false, NULL);
Alexander Aring4f672232016-06-15 21:20:22 +02002593
2594 if (IS_ERR_OR_NULL(ifp))
2595 return -1;
2596
Alexander Aring4f672232016-06-15 21:20:22 +02002597 create = 1;
2598 spin_lock_bh(&ifp->lock);
2599 ifp->flags |= IFA_F_MANAGETEMPADDR;
2600 ifp->cstamp = jiffies;
2601 ifp->tokenized = tokenized;
2602 spin_unlock_bh(&ifp->lock);
2603 addrconf_dad_start(ifp);
2604 }
2605
2606 if (ifp) {
2607 u32 flags;
2608 unsigned long now;
2609 u32 stored_lft;
2610
2611 /* update lifetime (RFC2462 5.5.3 e) */
2612 spin_lock_bh(&ifp->lock);
2613 now = jiffies;
2614 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2615 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2616 else
2617 stored_lft = 0;
Lorenzo Bianconif85f94b2018-04-16 17:52:59 +02002618 if (!create && stored_lft) {
Alexander Aring4f672232016-06-15 21:20:22 +02002619 const u32 minimum_lft = min_t(u32,
2620 stored_lft, MIN_VALID_LIFETIME);
2621 valid_lft = max(valid_lft, minimum_lft);
2622
2623 /* RFC4862 Section 5.5.3e:
2624 * "Note that the preferred lifetime of the
2625 * corresponding address is always reset to
2626 * the Preferred Lifetime in the received
2627 * Prefix Information option, regardless of
2628 * whether the valid lifetime is also reset or
2629 * ignored."
2630 *
2631 * So we should always update prefered_lft here.
2632 */
2633 update_lft = 1;
2634 }
2635
2636 if (update_lft) {
2637 ifp->valid_lft = valid_lft;
2638 ifp->prefered_lft = prefered_lft;
2639 ifp->tstamp = now;
2640 flags = ifp->flags;
2641 ifp->flags &= ~IFA_F_DEPRECATED;
2642 spin_unlock_bh(&ifp->lock);
2643
2644 if (!(flags&IFA_F_TENTATIVE))
2645 ipv6_ifa_notify(0, ifp);
2646 } else
2647 spin_unlock_bh(&ifp->lock);
2648
2649 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2650 create, now);
2651
2652 in6_ifa_put(ifp);
2653 addrconf_verify();
2654 }
2655
2656 return 0;
2657}
Alexander Aringcc84b3c2016-06-15 21:20:24 +02002658EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr);
Alexander Aring4f672232016-06-15 21:20:22 +02002659
Neil Hormane6bff992012-01-04 10:49:15 +00002660void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
2662 struct prefix_info *pinfo;
2663 __u32 valid_lft;
2664 __u32 prefered_lft;
Alexander Aring4f672232016-06-15 21:20:22 +02002665 int addr_type, err;
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01002666 u32 addr_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002668 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (len < sizeof(struct prefix_info)) {
Joe Perchese32ac252018-03-26 08:35:01 -07002673 netdev_dbg(dev, "addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 return;
2675 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 /*
2678 * Validation checks ([ADDRCONF], page 19)
2679 */
2680
2681 addr_type = ipv6_addr_type(&pinfo->prefix);
2682
2683 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2684 return;
2685
2686 valid_lft = ntohl(pinfo->valid);
2687 prefered_lft = ntohl(pinfo->prefered);
2688
2689 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002690 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 return;
2692 }
2693
2694 in6_dev = in6_dev_get(dev);
2695
Ian Morris63159f22015-03-29 14:00:04 +01002696 if (!in6_dev) {
Joe Perchese87cc472012-05-13 21:56:26 +00002697 net_dbg_ratelimited("addrconf: device %s not configured\n",
2698 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 return;
2700 }
2701
2702 /*
2703 * Two things going on here:
2704 * 1) Add routes for on-link prefixes
2705 * 2) Configure prefixes with the auto flag set
2706 */
2707
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002708 if (pinfo->onlink) {
David Ahern8d1c8022018-04-17 17:33:26 -07002709 struct fib6_info *rt;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002710 unsigned long rt_expires;
2711
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002712 /* Avoid arithmetic overflow. Really, we could
2713 * save rt_expires in seconds, likely valid_lft,
2714 * but it would require division in fib gc, that it
2715 * not good.
2716 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002717 if (HZ > USER_HZ)
2718 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2719 else
2720 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002721
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002722 if (addrconf_finite_timeout(rt_expires))
2723 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002725 rt = addrconf_get_prefix_route(&pinfo->prefix,
2726 pinfo->prefix_len,
2727 dev,
2728 RTF_ADDRCONF | RTF_PREFIX_RT,
David Ahern2b2450c2019-03-27 20:53:52 -07002729 RTF_DEFAULT, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002731 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002732 /* Autoconf prefix route */
2733 if (valid_lft == 0) {
David Ahernafb1d4b52018-04-17 17:33:11 -07002734 ip6_del_rt(net, rt);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002735 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002736 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002737 /* not infinity */
David Ahern14895682018-04-17 17:33:17 -07002738 fib6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002739 } else {
David Ahern14895682018-04-17 17:33:17 -07002740 fib6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
2742 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002743 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002744 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2745 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002746 /* not infinity */
2747 flags |= RTF_EXPIRES;
2748 expires = jiffies_to_clock_t(rt_expires);
2749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
David Ahern8308f3f2018-05-27 08:09:58 -07002751 0, dev, expires, flags,
2752 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
David Ahern93531c62018-04-17 17:33:25 -07002754 fib6_info_release(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
2756
2757 /* Try to figure out our local address for this prefix */
2758
2759 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 struct in6_addr addr;
Alexander Aringf997c552016-06-15 21:20:23 +02002761 bool tokenized = false, dev_addr_generated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 if (pinfo->prefix_len == 64) {
2764 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002765
2766 if (!ipv6_addr_any(&in6_dev->token)) {
2767 read_lock_bh(&in6_dev->lock);
2768 memcpy(addr.s6_addr + 8,
2769 in6_dev->token.s6_addr + 8, 8);
2770 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002771 tokenized = true;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002772 } else if (is_addr_mode_generate_stable(in6_dev) &&
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01002773 !ipv6_generate_stable_address(&addr, 0,
2774 in6_dev)) {
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01002775 addr_flags |= IFA_F_STABLE_PRIVACY;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01002776 goto ok;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002777 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2778 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Alexander Aring4f672232016-06-15 21:20:22 +02002779 goto put;
Alexander Aringf997c552016-06-15 21:20:23 +02002780 } else {
2781 dev_addr_generated = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
2783 goto ok;
2784 }
Joe Perchese87cc472012-05-13 21:56:26 +00002785 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2786 pinfo->prefix_len);
Alexander Aring4f672232016-06-15 21:20:22 +02002787 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789ok:
Alexander Aring4f672232016-06-15 21:20:22 +02002790 err = addrconf_prefix_rcv_add_addr(net, dev, pinfo, in6_dev,
2791 &addr, addr_type,
2792 addr_flags, sllao,
2793 tokenized, valid_lft,
2794 prefered_lft);
2795 if (err)
2796 goto put;
Alexander Aringf997c552016-06-15 21:20:23 +02002797
2798 /* Ignore error case here because previous prefix add addr was
2799 * successful which will be notified.
2800 */
2801 ndisc_ops_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, &addr,
2802 addr_type, addr_flags, sllao,
2803 tokenized, valid_lft,
2804 prefered_lft,
2805 dev_addr_generated);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 }
2807 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
Alexander Aring4f672232016-06-15 21:20:22 +02002808put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 in6_dev_put(in6_dev);
2810}
2811
2812/*
2813 * Set destination address.
2814 * Special case for SIT interfaces where we create a new "virtual"
2815 * device.
2816 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002817int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
2819 struct in6_ifreq ireq;
2820 struct net_device *dev;
2821 int err = -EINVAL;
2822
2823 rtnl_lock();
2824
2825 err = -EFAULT;
2826 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2827 goto err_exit;
2828
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002829 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 err = -ENODEV;
Ian Morris63159f22015-03-29 14:00:04 +01002832 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 goto err_exit;
2834
Amerigo Wang07a93622012-10-29 16:23:10 +00002835#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002837 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 struct ip_tunnel_parm p;
2840
2841 err = -EADDRNOTAVAIL;
2842 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2843 goto err_exit;
2844
2845 memset(&p, 0, sizeof(p));
2846 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2847 p.iph.saddr = 0;
2848 p.iph.version = 4;
2849 p.iph.ihl = 5;
2850 p.iph.protocol = IPPROTO_IPV6;
2851 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002852 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002854 if (ops->ndo_do_ioctl) {
2855 mm_segment_t oldfs = get_fs();
2856
2857 set_fs(KERNEL_DS);
2858 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2859 set_fs(oldfs);
2860 } else
2861 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
2863 if (err == 0) {
2864 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002865 dev = __dev_get_by_name(net, p.name);
2866 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 goto err_exit;
Petr Machata00f54e62018-12-06 17:05:36 +00002868 err = dev_open(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
2870 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873err_exit:
2874 rtnl_unlock();
2875 return err;
2876}
2877
Madhu Challa93a714d2015-02-25 09:58:35 -08002878static int ipv6_mc_config(struct sock *sk, bool join,
2879 const struct in6_addr *addr, int ifindex)
2880{
2881 int ret;
2882
2883 ASSERT_RTNL();
2884
2885 lock_sock(sk);
2886 if (join)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002887 ret = ipv6_sock_mc_join(sk, ifindex, addr);
Madhu Challa93a714d2015-02-25 09:58:35 -08002888 else
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002889 ret = ipv6_sock_mc_drop(sk, ifindex, addr);
Madhu Challa93a714d2015-02-25 09:58:35 -08002890 release_sock(sk);
2891
2892 return ret;
2893}
2894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895/*
2896 * Manual configuration of address on an interface
2897 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002898static int inet6_addr_add(struct net *net, int ifindex,
David Ahern19b15182018-05-27 08:09:54 -07002899 struct ifa6_config *cfg,
David Ahernde95e042017-10-18 09:56:54 -07002900 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 struct inet6_ifaddr *ifp;
2903 struct inet6_dev *idev;
2904 struct net_device *dev;
Madhu Challa93a714d2015-02-25 09:58:35 -08002905 unsigned long timeout;
2906 clock_t expires;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002907 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002910
David Ahern19b15182018-05-27 08:09:54 -07002911 if (cfg->plen > 128)
Thomas Graf24ef0da2008-05-28 16:54:22 +02002912 return -EINVAL;
2913
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002914 /* check the lifetime */
David Ahern19b15182018-05-27 08:09:54 -07002915 if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft)
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002916 return -EINVAL;
2917
David Ahern19b15182018-05-27 08:09:54 -07002918 if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && cfg->plen != 64)
Jiri Pirko53bd6742013-12-06 09:45:22 +01002919 return -EINVAL;
2920
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002921 dev = __dev_get_by_index(net, ifindex);
2922 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002924
Brian Haley64e724f2010-07-20 10:34:30 +00002925 idev = addrconf_add_dev(dev);
2926 if (IS_ERR(idev))
2927 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
David Ahern19b15182018-05-27 08:09:54 -07002929 if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
Madhu Challa93a714d2015-02-25 09:58:35 -08002930 int ret = ipv6_mc_config(net->ipv6.mc_autojoin_sk,
David Ahern19b15182018-05-27 08:09:54 -07002931 true, cfg->pfx, ifindex);
Madhu Challa93a714d2015-02-25 09:58:35 -08002932
2933 if (ret < 0)
2934 return ret;
2935 }
2936
David Ahern19b15182018-05-27 08:09:54 -07002937 cfg->scope = ipv6_addr_scope(cfg->pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
David Ahern19b15182018-05-27 08:09:54 -07002939 timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002940 if (addrconf_finite_timeout(timeout)) {
2941 expires = jiffies_to_clock_t(timeout * HZ);
David Ahern19b15182018-05-27 08:09:54 -07002942 cfg->valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002943 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002944 } else {
2945 expires = 0;
2946 flags = 0;
David Ahern19b15182018-05-27 08:09:54 -07002947 cfg->ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002948 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002949
David Ahern19b15182018-05-27 08:09:54 -07002950 timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002951 if (addrconf_finite_timeout(timeout)) {
2952 if (timeout == 0)
David Ahern19b15182018-05-27 08:09:54 -07002953 cfg->ifa_flags |= IFA_F_DEPRECATED;
2954 cfg->preferred_lft = timeout;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002955 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002956
David Ahern19b15182018-05-27 08:09:54 -07002957 ifp = ipv6_add_addr(idev, cfg, true, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (!IS_ERR(ifp)) {
David Ahern19b15182018-05-27 08:09:54 -07002959 if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) {
David Ahern8308f3f2018-05-27 08:09:58 -07002960 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
2961 ifp->rt_priority, dev, expires,
2962 flags, GFP_KERNEL);
Thomas Haller761aac72014-01-15 15:36:58 +01002963 }
2964
Lorenzo Bianconia2d481b2018-04-17 11:54:39 +02002965 /* Send a netlink notification if DAD is enabled and
2966 * optimistic flag is not set
2967 */
2968 if (!(ifp->flags & (IFA_F_OPTIMISTIC | IFA_F_NODAD)))
2969 ipv6_ifa_notify(0, ifp);
Neil Horman95c385b2007-04-25 17:08:10 -07002970 /*
2971 * Note that section 3.1 of RFC 4429 indicates
2972 * that the Optimistic flag should not be set for
2973 * manually configured addresses
2974 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002975 addrconf_dad_start(ifp);
David Ahern19b15182018-05-27 08:09:54 -07002976 if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR)
2977 manage_tempaddrs(idev, ifp, cfg->valid_lft,
2978 cfg->preferred_lft, true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002980 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 return 0;
David Ahern19b15182018-05-27 08:09:54 -07002982 } else if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
2983 ipv6_mc_config(net->ipv6.mc_autojoin_sk, false,
2984 cfg->pfx, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986
2987 return PTR_ERR(ifp);
2988}
2989
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002990static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags,
2991 const struct in6_addr *pfx, unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
2993 struct inet6_ifaddr *ifp;
2994 struct inet6_dev *idev;
2995 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002996
Thomas Graf24ef0da2008-05-28 16:54:22 +02002997 if (plen > 128)
2998 return -EINVAL;
2999
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003000 dev = __dev_get_by_index(net, ifindex);
3001 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 return -ENODEV;
3003
Ian Morrise5d08d72014-11-23 21:28:43 +00003004 idev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003005 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return -ENXIO;
3007
3008 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003009 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 if (ifp->prefix_len == plen &&
3011 ipv6_addr_equal(pfx, &ifp->addr)) {
3012 in6_ifa_hold(ifp);
3013 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003014
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003015 if (!(ifp->flags & IFA_F_TEMPORARY) &&
3016 (ifa_flags & IFA_F_MANAGETEMPADDR))
3017 manage_tempaddrs(idev, ifp, 0, 0, false,
3018 jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 ipv6_del_addr(ifp);
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003020 addrconf_verify_rtnl();
Madhu Challa93a714d2015-02-25 09:58:35 -08003021 if (ipv6_addr_is_multicast(pfx)) {
3022 ipv6_mc_config(net->ipv6.mc_autojoin_sk,
3023 false, pfx, dev->ifindex);
3024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 return 0;
3026 }
3027 }
3028 read_unlock_bh(&idev->lock);
3029 return -EADDRNOTAVAIL;
3030}
3031
3032
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003033int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
David Ahern19b15182018-05-27 08:09:54 -07003035 struct ifa6_config cfg = {
3036 .ifa_flags = IFA_F_PERMANENT,
3037 .preferred_lft = INFINITY_LIFE_TIME,
3038 .valid_lft = INFINITY_LIFE_TIME,
3039 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 struct in6_ifreq ireq;
3041 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003042
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003043 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
3047 return -EFAULT;
3048
David Ahern19b15182018-05-27 08:09:54 -07003049 cfg.pfx = &ireq.ifr6_addr;
3050 cfg.plen = ireq.ifr6_prefixlen;
3051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 rtnl_lock();
David Ahern19b15182018-05-27 08:09:54 -07003053 err = inet6_addr_add(net, ireq.ifr6_ifindex, &cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 rtnl_unlock();
3055 return err;
3056}
3057
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003058int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
3060 struct in6_ifreq ireq;
3061 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003062
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003063 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return -EPERM;
3065
3066 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
3067 return -EFAULT;
3068
3069 rtnl_lock();
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003070 err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003071 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 rtnl_unlock();
3073 return err;
3074}
3075
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003076static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
3077 int plen, int scope)
3078{
3079 struct inet6_ifaddr *ifp;
David Aherne6464b82018-05-27 08:09:53 -07003080 struct ifa6_config cfg = {
3081 .pfx = addr,
3082 .plen = plen,
3083 .ifa_flags = IFA_F_PERMANENT,
3084 .valid_lft = INFINITY_LIFE_TIME,
3085 .preferred_lft = INFINITY_LIFE_TIME,
3086 .scope = scope
3087 };
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003088
David Aherne6464b82018-05-27 08:09:53 -07003089 ifp = ipv6_add_addr(idev, &cfg, true, NULL);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003090 if (!IS_ERR(ifp)) {
3091 spin_lock_bh(&ifp->lock);
3092 ifp->flags &= ~IFA_F_TENTATIVE;
3093 spin_unlock_bh(&ifp->lock);
Paolo Abeni764d3be2016-11-22 16:57:40 +01003094 rt_genid_bump_ipv6(dev_net(idev->dev));
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003095 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3096 in6_ifa_put(ifp);
3097 }
3098}
3099
Amerigo Wang07a93622012-10-29 16:23:10 +00003100#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101static void sit_add_v4_addrs(struct inet6_dev *idev)
3102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 struct in6_addr addr;
3104 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003105 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003106 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01003107 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
3109 ASSERT_RTNL();
3110
3111 memset(&addr, 0, sizeof(struct in6_addr));
3112 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
3113
3114 if (idev->dev->flags&IFF_POINTOPOINT) {
3115 addr.s6_addr32[0] = htonl(0xfe800000);
3116 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003117 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 } else {
3119 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003120 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01003121 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 }
3123
3124 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003125 add_addr(idev, &addr, plen, scope);
David Ahern8308f3f2018-05-27 08:09:58 -07003126 addrconf_prefix_route(&addr, plen, 0, idev->dev, 0, pflags,
Cong Wange500c6d2018-08-22 12:58:34 -07003127 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 return;
3129 }
3130
Benjamin Thery6fda7352008-03-05 10:47:47 -08003131 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003132 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003134 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 int flag = scope;
3136
Florian Westphalcd5a4112019-05-31 18:27:07 +02003137 in_dev_for_each_ifa_rtnl(ifa, in_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 addr.s6_addr32[3] = ifa->ifa_local;
3139
3140 if (ifa->ifa_scope == RT_SCOPE_LINK)
3141 continue;
3142 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
3143 if (idev->dev->flags&IFF_POINTOPOINT)
3144 continue;
3145 flag |= IFA_HOST;
3146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003148 add_addr(idev, &addr, plen, flag);
David Ahern8308f3f2018-05-27 08:09:58 -07003149 addrconf_prefix_route(&addr, plen, 0, idev->dev,
Cong Wange500c6d2018-08-22 12:58:34 -07003150 0, pflags, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 }
3152 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
Joerg Roedel0be669b2006-10-10 14:49:53 -07003155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157static void init_loopback(struct net_device *dev)
3158{
3159 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 /* ::1 */
3162
3163 ASSERT_RTNL();
3164
Ian Morrise5d08d72014-11-23 21:28:43 +00003165 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02003166 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00003167 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 return;
3169 }
3170
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003171 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172}
3173
Alexander Aring2ad3ed52016-06-15 21:20:17 +02003174void addrconf_add_linklocal(struct inet6_dev *idev,
3175 const struct in6_addr *addr, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176{
David Aherne6464b82018-05-27 08:09:53 -07003177 struct ifa6_config cfg = {
3178 .pfx = addr,
3179 .plen = 64,
3180 .ifa_flags = flags | IFA_F_PERMANENT,
3181 .valid_lft = INFINITY_LIFE_TIME,
3182 .preferred_lft = INFINITY_LIFE_TIME,
3183 .scope = IFA_LINK
3184 };
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003185 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Neil Horman95c385b2007-04-25 17:08:10 -07003187#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Matteo Croce35e015e2017-09-12 17:46:37 +02003188 if ((dev_net(idev->dev)->ipv6.devconf_all->optimistic_dad ||
3189 idev->cnf.optimistic_dad) &&
David Miller702beb82008-07-20 18:17:02 -07003190 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
David Aherne6464b82018-05-27 08:09:53 -07003191 cfg.ifa_flags |= IFA_F_OPTIMISTIC;
Neil Horman95c385b2007-04-25 17:08:10 -07003192#endif
3193
David Aherne6464b82018-05-27 08:09:53 -07003194 ifp = ipv6_add_addr(idev, &cfg, true, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 if (!IS_ERR(ifp)) {
David Ahern8308f3f2018-05-27 08:09:58 -07003196 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, 0, idev->dev,
David Ahernacb54e32018-04-17 17:33:22 -07003197 0, 0, GFP_ATOMIC);
David S. Millercf22f9a2012-04-14 21:37:40 -04003198 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 in6_ifa_put(ifp);
3200 }
3201}
Alexander Aring2ad3ed52016-06-15 21:20:17 +02003202EXPORT_SYMBOL_GPL(addrconf_add_linklocal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003204static bool ipv6_reserved_interfaceid(struct in6_addr address)
3205{
3206 if ((address.s6_addr32[2] | address.s6_addr32[3]) == 0)
3207 return true;
3208
3209 if (address.s6_addr32[2] == htonl(0x02005eff) &&
3210 ((address.s6_addr32[3] & htonl(0xfe000000)) == htonl(0xfe000000)))
3211 return true;
3212
3213 if (address.s6_addr32[2] == htonl(0xfdffffff) &&
3214 ((address.s6_addr32[3] & htonl(0xffffff80)) == htonl(0xffffff80)))
3215 return true;
3216
3217 return false;
3218}
3219
3220static int ipv6_generate_stable_address(struct in6_addr *address,
3221 u8 dad_count,
3222 const struct inet6_dev *idev)
3223{
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003224 static DEFINE_SPINLOCK(lock);
3225 static __u32 digest[SHA_DIGEST_WORDS];
3226 static __u32 workspace[SHA_WORKSPACE_WORDS];
3227
3228 static union {
3229 char __data[SHA_MESSAGE_BYTES];
3230 struct {
3231 struct in6_addr secret;
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003232 __be32 prefix[2];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003233 unsigned char hwaddr[MAX_ADDR_LEN];
3234 u8 dad_count;
3235 } __packed;
3236 } data;
3237
3238 struct in6_addr secret;
3239 struct in6_addr temp;
3240 struct net *net = dev_net(idev->dev);
3241
3242 BUILD_BUG_ON(sizeof(data.__data) != sizeof(data));
3243
3244 if (idev->cnf.stable_secret.initialized)
3245 secret = idev->cnf.stable_secret.secret;
3246 else if (net->ipv6.devconf_dflt->stable_secret.initialized)
3247 secret = net->ipv6.devconf_dflt->stable_secret.secret;
3248 else
3249 return -1;
3250
3251retry:
3252 spin_lock_bh(&lock);
3253
3254 sha_init(digest);
3255 memset(&data, 0, sizeof(data));
3256 memset(workspace, 0, sizeof(workspace));
3257 memcpy(data.hwaddr, idev->dev->perm_addr, idev->dev->addr_len);
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003258 data.prefix[0] = address->s6_addr32[0];
3259 data.prefix[1] = address->s6_addr32[1];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003260 data.secret = secret;
3261 data.dad_count = dad_count;
3262
3263 sha_transform(digest, data.__data, workspace);
3264
3265 temp = *address;
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003266 temp.s6_addr32[2] = (__force __be32)digest[0];
3267 temp.s6_addr32[3] = (__force __be32)digest[1];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003268
3269 spin_unlock_bh(&lock);
3270
3271 if (ipv6_reserved_interfaceid(temp)) {
3272 dad_count++;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01003273 if (dad_count > dev_net(idev->dev)->ipv6.sysctl.idgen_retries)
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003274 return -1;
3275 goto retry;
3276 }
3277
3278 *address = temp;
3279 return 0;
3280}
3281
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003282static void ipv6_gen_mode_random_init(struct inet6_dev *idev)
3283{
3284 struct ipv6_stable_secret *s = &idev->cnf.stable_secret;
3285
3286 if (s->initialized)
3287 return;
3288 s = &idev->cnf.stable_secret;
3289 get_random_bytes(&s->secret, sizeof(s->secret));
3290 s->initialized = true;
3291}
3292
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003293static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route)
3294{
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003295 struct in6_addr addr;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003296
David Ahernca254492015-10-12 11:47:10 -07003297 /* no link local addresses on L3 master devices */
3298 if (netif_is_l3_master(idev->dev))
3299 return;
3300
Jarod Wilson744fdc822020-03-30 11:22:19 -04003301 /* no link local addresses on devices flagged as slaves */
3302 if (idev->dev->flags & IFF_SLAVE)
3303 return;
3304
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003305 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
3306
Felix Jiad35a00b2017-01-26 16:59:17 +13003307 switch (idev->cnf.addr_gen_mode) {
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003308 case IN6_ADDR_GEN_MODE_RANDOM:
3309 ipv6_gen_mode_random_init(idev);
Joe Perchesa8eceea2020-03-12 15:50:22 -07003310 fallthrough;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003311 case IN6_ADDR_GEN_MODE_STABLE_PRIVACY:
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003312 if (!ipv6_generate_stable_address(&addr, 0, idev))
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003313 addrconf_add_linklocal(idev, &addr,
3314 IFA_F_STABLE_PRIVACY);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003315 else if (prefix_route)
David Ahern8308f3f2018-05-27 08:09:58 -07003316 addrconf_prefix_route(&addr, 64, 0, idev->dev,
David Ahernacb54e32018-04-17 17:33:22 -07003317 0, 0, GFP_KERNEL);
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003318 break;
3319 case IN6_ADDR_GEN_MODE_EUI64:
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003320 /* addrconf_add_linklocal also adds a prefix_route and we
3321 * only need to care about prefix routes if ipv6_generate_eui64
3322 * couldn't generate one.
3323 */
3324 if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0)
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003325 addrconf_add_linklocal(idev, &addr, 0);
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003326 else if (prefix_route)
David Ahern8308f3f2018-05-27 08:09:58 -07003327 addrconf_prefix_route(&addr, 64, 0, idev->dev,
David Ahern27b10602018-04-18 15:39:06 -07003328 0, 0, GFP_KERNEL);
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003329 break;
3330 case IN6_ADDR_GEN_MODE_NONE:
3331 default:
3332 /* will not add any link local address */
3333 break;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003334 }
3335}
3336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337static void addrconf_dev_config(struct net_device *dev)
3338{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003339 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
3341 ASSERT_RTNL();
3342
Herbert Xu74235a22007-06-14 13:02:55 -07003343 if ((dev->type != ARPHRD_ETHER) &&
3344 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07003345 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00003346 (dev->type != ARPHRD_INFINIBAND) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02003347 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb82013-12-11 17:05:36 +02003348 (dev->type != ARPHRD_TUNNEL6) &&
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003349 (dev->type != ARPHRD_6LOWPAN) &&
Felix Jia45ce0fd2017-01-26 16:59:18 +13003350 (dev->type != ARPHRD_IP6GRE) &&
3351 (dev->type != ARPHRD_IPGRE) &&
3352 (dev->type != ARPHRD_TUNNEL) &&
Subash Abhinov Kasiviswanathan9deb4412018-06-04 19:26:07 -06003353 (dev->type != ARPHRD_NONE) &&
3354 (dev->type != ARPHRD_RAWIP)) {
Herbert Xu74235a22007-06-14 13:02:55 -07003355 /* Alas, we support only Ethernet autoconfiguration. */
Hangbin Liu60380482020-03-10 15:27:37 +08003356 idev = __in6_dev_get(dev);
3357 if (!IS_ERR_OR_NULL(idev) && dev->flags & IFF_UP &&
3358 dev->flags & IFF_MULTICAST)
3359 ipv6_mc_up(idev);
Herbert Xu74235a22007-06-14 13:02:55 -07003360 return;
3361 }
3362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00003364 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 return;
3366
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003367 /* this device type has no EUI support */
3368 if (dev->type == ARPHRD_NONE &&
Felix Jiad35a00b2017-01-26 16:59:17 +13003369 idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64)
3370 idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_RANDOM;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003371
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003372 addrconf_addr_gen(idev, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373}
3374
Amerigo Wang07a93622012-10-29 16:23:10 +00003375#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376static void addrconf_sit_config(struct net_device *dev)
3377{
3378 struct inet6_dev *idev;
3379
3380 ASSERT_RTNL();
3381
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003382 /*
3383 * Configure the tunnel with one of our IPv4
3384 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 * our v4 addrs in the tunnel
3386 */
3387
Ian Morrise5d08d72014-11-23 21:28:43 +00003388 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02003389 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00003390 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 return;
3392 }
3393
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11003394 if (dev->priv_flags & IFF_ISATAP) {
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003395 addrconf_addr_gen(idev, false);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11003396 return;
3397 }
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 sit_add_v4_addrs(idev);
3400
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00003401 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
Joerg Roedel0be669b2006-10-10 14:49:53 -07003404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Amerigo Wang07a93622012-10-29 16:23:10 +00003406#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00003407static void addrconf_gre_config(struct net_device *dev)
3408{
3409 struct inet6_dev *idev;
stephen hemmingeraee80b52011-06-08 10:44:30 +00003410
stephen hemmingeraee80b52011-06-08 10:44:30 +00003411 ASSERT_RTNL();
3412
Ian Morrise5d08d72014-11-23 21:28:43 +00003413 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02003414 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00003415 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00003416 return;
3417 }
3418
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003419 addrconf_addr_gen(idev, true);
Hannes Frederic Sowad9e4ce62015-10-08 18:19:39 +02003420 if (dev->flags & IFF_POINTOPOINT)
3421 addrconf_add_mroute(dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00003422}
3423#endif
3424
David Ahernafb1d4b52018-04-17 17:33:11 -07003425static int fixup_permanent_addr(struct net *net,
3426 struct inet6_dev *idev,
David Ahernf1705ec2016-02-24 09:25:37 -08003427 struct inet6_ifaddr *ifp)
3428{
David Ahern93c2fb22018-04-18 15:38:59 -07003429 /* !fib6_node means the host route was removed from the
David Ahern8048ced2017-04-25 09:17:29 -07003430 * FIB, for example, if 'lo' device is taken down. In that
3431 * case regenerate the host route.
3432 */
David Ahern93c2fb22018-04-18 15:38:59 -07003433 if (!ifp->rt || !ifp->rt->fib6_node) {
David Ahern360a9882018-04-18 15:39:00 -07003434 struct fib6_info *f6i, *prev;
David Ahernf1705ec2016-02-24 09:25:37 -08003435
David Ahern360a9882018-04-18 15:39:00 -07003436 f6i = addrconf_f6i_alloc(net, idev, &ifp->addr, false,
3437 GFP_ATOMIC);
3438 if (IS_ERR(f6i))
3439 return PTR_ERR(f6i);
David Ahernf1705ec2016-02-24 09:25:37 -08003440
David Ahern8048ced2017-04-25 09:17:29 -07003441 /* ifp->rt can be accessed outside of rtnl */
3442 spin_lock(&ifp->lock);
3443 prev = ifp->rt;
David Ahern360a9882018-04-18 15:39:00 -07003444 ifp->rt = f6i;
David Ahern8048ced2017-04-25 09:17:29 -07003445 spin_unlock(&ifp->lock);
3446
David Ahern93531c62018-04-17 17:33:25 -07003447 fib6_info_release(prev);
David Ahernf1705ec2016-02-24 09:25:37 -08003448 }
3449
3450 if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) {
3451 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
David Ahern8308f3f2018-05-27 08:09:58 -07003452 ifp->rt_priority, idev->dev, 0, 0,
3453 GFP_ATOMIC);
David Ahernf1705ec2016-02-24 09:25:37 -08003454 }
3455
David Ahern6d717132017-05-02 14:43:44 -07003456 if (ifp->state == INET6_IFADDR_STATE_PREDAD)
3457 addrconf_dad_start(ifp);
David Ahernf1705ec2016-02-24 09:25:37 -08003458
3459 return 0;
3460}
3461
David Ahernafb1d4b52018-04-17 17:33:11 -07003462static void addrconf_permanent_addr(struct net *net, struct net_device *dev)
David Ahernf1705ec2016-02-24 09:25:37 -08003463{
3464 struct inet6_ifaddr *ifp, *tmp;
3465 struct inet6_dev *idev;
3466
3467 idev = __in6_dev_get(dev);
3468 if (!idev)
3469 return;
3470
3471 write_lock_bh(&idev->lock);
3472
3473 list_for_each_entry_safe(ifp, tmp, &idev->addr_list, if_list) {
3474 if ((ifp->flags & IFA_F_PERMANENT) &&
David Ahernafb1d4b52018-04-17 17:33:11 -07003475 fixup_permanent_addr(net, idev, ifp) < 0) {
David Ahernf1705ec2016-02-24 09:25:37 -08003476 write_unlock_bh(&idev->lock);
Eric Dumazete669b862017-10-30 22:47:09 -07003477 in6_ifa_hold(ifp);
David Ahernf1705ec2016-02-24 09:25:37 -08003478 ipv6_del_addr(ifp);
3479 write_lock_bh(&idev->lock);
3480
3481 net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n",
3482 idev->dev->name, &ifp->addr);
3483 }
3484 }
3485
3486 write_unlock_bh(&idev->lock);
3487}
3488
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003489static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00003490 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
Jiri Pirko351638e2013-05-28 01:30:21 +00003492 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Hangbin Liu896585d2018-11-21 21:52:33 +08003493 struct netdev_notifier_change_info *change_info;
David Ahern4f7f34e2016-04-07 11:10:41 -07003494 struct netdev_notifier_changeupper_info *info;
Eric Dumazet748e2d92012-08-22 21:50:59 +00003495 struct inet6_dev *idev = __in6_dev_get(dev);
WANG Cong60abc0b2017-06-21 14:34:58 -07003496 struct net *net = dev_net(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003497 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07003498 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003500 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003501 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07003502 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003503 idev = ipv6_add_dev(dev);
WANG Conga317a2f2014-07-25 15:25:09 -07003504 if (IS_ERR(idev))
3505 return notifier_from_errno(PTR_ERR(idev));
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003506 }
3507 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003508
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003509 case NETDEV_CHANGEMTU:
3510 /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */
3511 if (dev->mtu < IPV6_MIN_MTU) {
WANG Cong60abc0b2017-06-21 14:34:58 -07003512 addrconf_ifdown(dev, dev != net->loopback_dev);
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003513 break;
3514 }
3515
3516 if (idev) {
3517 rt6_mtu_change(dev, dev->mtu);
3518 idev->cnf.mtu6 = dev->mtu;
3519 break;
3520 }
3521
3522 /* allocate new idev */
3523 idev = ipv6_add_dev(dev);
3524 if (IS_ERR(idev))
3525 break;
3526
3527 /* device is still not ready */
3528 if (!(idev->if_flags & IF_READY))
3529 break;
3530
3531 run_pending = 1;
Joe Perchesa8eceea2020-03-12 15:50:22 -07003532 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003534 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07003535 if (dev->flags & IFF_SLAVE)
3536 break;
3537
WANG Cong3ce62a82014-09-11 15:07:16 -07003538 if (idev && idev->cnf.disable_ipv6)
3539 break;
3540
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003541 if (event == NETDEV_UP) {
David Ahern38bd10c2016-04-21 20:56:12 -07003542 /* restore routes for permanent addresses */
David Ahernafb1d4b52018-04-17 17:33:11 -07003543 addrconf_permanent_addr(net, dev);
David Ahern38bd10c2016-04-21 20:56:12 -07003544
Mike Manning1f372c72017-09-25 22:01:36 +01003545 if (!addrconf_link_ready(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003546 /* device is not ready yet. */
Lubomir Rintel7c62b8d2019-01-21 14:54:20 +01003547 pr_debug("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
3548 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003549 break;
3550 }
Kristian Slavov99081042006-02-08 16:10:53 -08003551
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11003552 if (!idev && dev->mtu >= IPV6_MIN_MTU)
3553 idev = ipv6_add_dev(dev);
3554
WANG Conga317a2f2014-07-25 15:25:09 -07003555 if (!IS_ERR_OR_NULL(idev)) {
Kristian Slavov99081042006-02-08 16:10:53 -08003556 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08003557 run_pending = 1;
3558 }
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003559 } else if (event == NETDEV_CHANGE) {
Mike Manning1f372c72017-09-25 22:01:36 +01003560 if (!addrconf_link_ready(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003561 /* device is still not ready. */
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003562 rt6_sync_down_dev(dev, event);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003563 break;
3564 }
3565
Hangbin Liu896585d2018-11-21 21:52:33 +08003566 if (!IS_ERR_OR_NULL(idev)) {
Linus Lüssinga088d1d2017-02-03 08:11:03 +01003567 if (idev->if_flags & IF_READY) {
3568 /* device is already configured -
3569 * but resend MLD reports, we might
3570 * have roamed and need to update
3571 * multicast snooping switches
3572 */
3573 ipv6_mc_up(idev);
Hangbin Liu896585d2018-11-21 21:52:33 +08003574 change_info = ptr;
3575 if (change_info->flags_changed & IFF_NOARP)
3576 addrconf_dad_run(idev, true);
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003577 rt6_sync_up(dev, RTNH_F_LINKDOWN);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003578 break;
Linus Lüssinga088d1d2017-02-03 08:11:03 +01003579 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003580 idev->if_flags |= IF_READY;
3581 }
3582
Joe Perchesf3213832012-05-15 14:11:53 +00003583 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
3584 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003585
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003586 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003587 }
3588
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003589 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00003590#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 case ARPHRD_SIT:
3592 addrconf_sit_config(dev);
3593 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07003594#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00003595#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00003596 case ARPHRD_IPGRE:
3597 addrconf_gre_config(dev);
3598 break;
3599#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 case ARPHRD_LOOPBACK:
3601 init_loopback(dev);
3602 break;
3603
3604 default:
3605 addrconf_dev_config(dev);
3606 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003607 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003608
WANG Conga317a2f2014-07-25 15:25:09 -07003609 if (!IS_ERR_OR_NULL(idev)) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003610 if (run_pending)
Hangbin Liu896585d2018-11-21 21:52:33 +08003611 addrconf_dad_run(idev, false);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003612
Ido Schimmel2127d952018-01-07 12:45:03 +02003613 /* Device has an address by now */
3614 rt6_sync_up(dev, RTNH_F_DEAD);
3615
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003616 /*
3617 * If the MTU changed during the interface down,
3618 * when the interface up, the changed MTU must be
3619 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003621 if (idev->cnf.mtu6 != dev->mtu &&
3622 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 rt6_mtu_change(dev, dev->mtu);
3624 idev->cnf.mtu6 = dev->mtu;
3625 }
3626 idev->tstamp = jiffies;
3627 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003628
3629 /*
3630 * If the changed mtu during down is lower than
3631 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 */
3633 if (dev->mtu < IPV6_MIN_MTU)
WANG Cong60abc0b2017-06-21 14:34:58 -07003634 addrconf_ifdown(dev, dev != net->loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 }
3636 break;
3637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 case NETDEV_DOWN:
3639 case NETDEV_UNREGISTER:
3640 /*
3641 * Remove all addresses from this interface.
3642 */
3643 addrconf_ifdown(dev, event != NETDEV_DOWN);
3644 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07003648 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003649 addrconf_sysctl_unregister(idev);
WANG Conga317a2f2014-07-25 15:25:09 -07003650 err = addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07003651 if (err)
3652 return notifier_from_errno(err);
WANG Conga317a2f2014-07-25 15:25:09 -07003653 err = snmp6_register_dev(idev);
3654 if (err) {
3655 addrconf_sysctl_unregister(idev);
3656 return notifier_from_errno(err);
3657 }
Stephen Hemminger5632c512007-04-28 21:16:39 -07003658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003660
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003661 case NETDEV_PRE_TYPE_CHANGE:
3662 case NETDEV_POST_TYPE_CHANGE:
Andrew Lunn3ef09522015-12-03 21:12:32 +01003663 if (idev)
3664 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07003665 break;
David Ahern4f7f34e2016-04-07 11:10:41 -07003666
3667 case NETDEV_CHANGEUPPER:
3668 info = ptr;
3669
3670 /* flush all routes if dev is linked to or unlinked from
3671 * an L3 master device (e.g., VRF)
3672 */
3673 if (info->upper_dev && netif_is_l3_master(info->upper_dev))
3674 addrconf_ifdown(dev, 0);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
3677 return NOTIFY_OK;
3678}
3679
3680/*
3681 * addrconf module should be notified of a device going up
3682 */
3683static struct notifier_block ipv6_dev_notf = {
3684 .notifier_call = addrconf_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07003685 .priority = ADDRCONF_NOTIFY_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686};
3687
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003688static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07003689{
3690 struct inet6_dev *idev;
3691 ASSERT_RTNL();
3692
3693 idev = __in6_dev_get(dev);
3694
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003695 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003696 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003697 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003698 ipv6_mc_unmap(idev);
3699}
3700
David Ahern70af9212016-04-08 12:01:21 -07003701static bool addr_is_local(const struct in6_addr *addr)
3702{
3703 return ipv6_addr_type(addr) &
3704 (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
3705}
3706
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707static int addrconf_ifdown(struct net_device *dev, int how)
3708{
Ido Schimmel4c981e22018-01-07 12:45:04 +02003709 unsigned long event = how ? NETDEV_UNREGISTER : NETDEV_DOWN;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003710 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003711 struct inet6_dev *idev;
David Ahernf1705ec2016-02-24 09:25:37 -08003712 struct inet6_ifaddr *ifa, *tmp;
Ivan Vecera0aef78a2018-04-24 19:51:29 +02003713 bool keep_addr = false;
David S. Miller73a8bd72011-01-23 23:27:15 -08003714 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
3716 ASSERT_RTNL();
3717
Ido Schimmel4c981e22018-01-07 12:45:04 +02003718 rt6_disable_ip(dev, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
3720 idev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003721 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 return -ENODEV;
3723
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003724 /*
3725 * Step 1: remove reference to ipv6 device from parent device.
3726 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003728 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003730
3731 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003732 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
3734 /* Step 1.5: remove snmp6 entry */
3735 snmp6_unregister_dev(idev);
3736
3737 }
3738
David Ahernf1705ec2016-02-24 09:25:37 -08003739 /* combine the user config with event to determine if permanent
3740 * addresses are to be removed from address hash table
3741 */
Ivan Vecera0aef78a2018-04-24 19:51:29 +02003742 if (!how && !idev->cnf.disable_ipv6) {
3743 /* aggregate the system setting and interface setting */
3744 int _keep_addr = net->ipv6.devconf_all->keep_addr_on_down;
3745
3746 if (!_keep_addr)
3747 _keep_addr = idev->cnf.keep_addr_on_down;
3748
3749 keep_addr = (_keep_addr > 0);
3750 }
David Ahernf1705ec2016-02-24 09:25:37 -08003751
David S. Miller73a8bd72011-01-23 23:27:15 -08003752 /* Step 2: clear hash table */
3753 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3754 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003755
3756 spin_lock_bh(&addrconf_hash_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01003757restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003758 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003759 if (ifa->idev == idev) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003760 addrconf_del_dad_work(ifa);
David Ahernf1705ec2016-02-24 09:25:37 -08003761 /* combined flag + permanent flag decide if
3762 * address is retained on a down event
3763 */
3764 if (!keep_addr ||
David Ahern70af9212016-04-08 12:01:21 -07003765 !(ifa->flags & IFA_F_PERMANENT) ||
3766 addr_is_local(&ifa->addr)) {
David Ahernf1705ec2016-02-24 09:25:37 -08003767 hlist_del_init_rcu(&ifa->addr_lst);
3768 goto restart;
3769 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003770 }
3771 }
3772 spin_unlock_bh(&addrconf_hash_lock);
3773 }
3774
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 write_lock_bh(&idev->lock);
3776
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003777 addrconf_del_rs_timer(idev);
3778
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003779 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003780 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003781 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003783 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003784 while (!list_empty(&idev->tempaddr_list)) {
3785 ifa = list_first_entry(&idev->tempaddr_list,
3786 struct inet6_ifaddr, tmp_list);
3787 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 write_unlock_bh(&idev->lock);
3789 spin_lock_bh(&ifa->lock);
3790
3791 if (ifa->ifpub) {
3792 in6_ifa_put(ifa->ifpub);
3793 ifa->ifpub = NULL;
3794 }
3795 spin_unlock_bh(&ifa->lock);
3796 in6_ifa_put(ifa);
3797 write_lock_bh(&idev->lock);
3798 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003799
David Ahernf1705ec2016-02-24 09:25:37 -08003800 list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) {
David Ahern8d1c8022018-04-17 17:33:26 -07003801 struct fib6_info *rt = NULL;
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003802 bool keep;
David Ahern38bd10c2016-04-21 20:56:12 -07003803
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003804 addrconf_del_dad_work(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003805
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003806 keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) &&
3807 !addr_is_local(&ifa->addr);
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003808
David S. Miller73a8bd72011-01-23 23:27:15 -08003809 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003810 spin_lock_bh(&ifa->lock);
David Ahernf1705ec2016-02-24 09:25:37 -08003811
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003812 if (keep) {
David Ahernf1705ec2016-02-24 09:25:37 -08003813 /* set state to skip the notifier below */
3814 state = INET6_IFADDR_STATE_DEAD;
David Ahern6d717132017-05-02 14:43:44 -07003815 ifa->state = INET6_IFADDR_STATE_PREDAD;
David Ahernf1705ec2016-02-24 09:25:37 -08003816 if (!(ifa->flags & IFA_F_NODAD))
3817 ifa->flags |= IFA_F_TENTATIVE;
David Ahern38bd10c2016-04-21 20:56:12 -07003818
3819 rt = ifa->rt;
3820 ifa->rt = NULL;
David Ahernf1705ec2016-02-24 09:25:37 -08003821 } else {
3822 state = ifa->state;
3823 ifa->state = INET6_IFADDR_STATE_DEAD;
David Ahernf1705ec2016-02-24 09:25:37 -08003824 }
3825
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003826 spin_unlock_bh(&ifa->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003827
David Ahern38bd10c2016-04-21 20:56:12 -07003828 if (rt)
David Ahernafb1d4b52018-04-17 17:33:11 -07003829 ip6_del_rt(net, rt);
David Ahern38bd10c2016-04-21 20:56:12 -07003830
David S. Miller73a8bd72011-01-23 23:27:15 -08003831 if (state != INET6_IFADDR_STATE_DEAD) {
3832 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003833 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
Mike Manningea06f712016-07-22 18:32:11 +01003834 } else {
3835 if (idev->cnf.forwarding)
3836 addrconf_leave_anycast(ifa);
3837 addrconf_leave_solict(ifa->idev, &ifa->addr);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003838 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003839
David S. Miller73a8bd72011-01-23 23:27:15 -08003840 write_lock_bh(&idev->lock);
Eric Dumazet8ef802a2017-10-07 19:30:23 -07003841 if (!keep) {
3842 list_del_rcu(&ifa->if_list);
3843 in6_ifa_put(ifa);
3844 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003845 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003846
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 write_unlock_bh(&idev->lock);
3848
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003849 /* Step 5: Discard anycast and multicast list */
3850 if (how) {
3851 ipv6_ac_destroy_dev(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 ipv6_mc_destroy_dev(idev);
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003853 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 ipv6_mc_down(idev);
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003858
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003859 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003860 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003861 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 neigh_parms_release(&nd_tbl, idev->nd_parms);
3863 neigh_ifdown(&nd_tbl, dev);
3864 in6_dev_put(idev);
3865 }
3866 return 0;
3867}
3868
Kees Cooke99e88a2017-10-16 14:43:17 -07003869static void addrconf_rs_timer(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870{
Kees Cooke99e88a2017-10-16 14:43:17 -07003871 struct inet6_dev *idev = from_timer(idev, t, rs_timer);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003872 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003873 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003875 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003876 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 goto out;
3878
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003879 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003881
3882 /* Announcement received after solicitation was sent */
3883 if (idev->if_flags & IF_RA_RCVD)
3884 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003886 if (idev->rs_probes++ < idev->cnf.rtr_solicits || idev->cnf.rtr_solicits < 0) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003887 write_unlock(&idev->lock);
3888 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3889 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003890 &in6addr_linklocal_allrouters);
3891 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003892 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Cong Wangcaf92bc2013-08-31 13:44:32 +08003894 write_lock(&idev->lock);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003895 idev->rs_interval = rfc3315_s14_backoff_update(
3896 idev->rs_interval, idev->cnf.rtr_solicit_max_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003897 /* The wait after the last probe can be shorter */
3898 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3899 idev->cnf.rtr_solicits) ?
3900 idev->cnf.rtr_solicit_delay :
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003901 idev->rs_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 /*
3904 * Note: we do not support deprecated "all on-link"
3905 * assumption any longer.
3906 */
Joe Perches91df42b2012-05-15 14:11:54 +00003907 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 }
3909
3910out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003911 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003912put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003913 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914}
3915
3916/*
3917 * Duplicate Address Detection
3918 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003919static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3920{
3921 unsigned long rand_num;
3922 struct inet6_dev *idev = ifp->idev;
Erik Nordmarkadc176c2016-12-02 14:00:08 -08003923 u64 nonce;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003924
Neil Horman95c385b2007-04-25 17:08:10 -07003925 if (ifp->flags & IFA_F_OPTIMISTIC)
3926 rand_num = 0;
3927 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003928 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003929
Erik Nordmarkadc176c2016-12-02 14:00:08 -08003930 nonce = 0;
3931 if (idev->cnf.enhanced_dad ||
3932 dev_net(idev->dev)->ipv6.devconf_all->enhanced_dad) {
3933 do
3934 get_random_bytes(&nonce, 6);
3935 while (nonce == 0);
3936 }
3937 ifp->dad_nonce = nonce;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003938 ifp->dad_probes = idev->cnf.dad_transmits;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003939 addrconf_mod_dad_work(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003940}
3941
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003942static void addrconf_dad_begin(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943{
3944 struct inet6_dev *idev = ifp->idev;
3945 struct net_device *dev = idev->dev;
Paolo Abeni764d3be2016-11-22 16:57:40 +01003946 bool bump_id, notify = false;
David Ahernafb1d4b52018-04-17 17:33:11 -07003947 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 addrconf_join_solict(dev, &ifp->addr);
3950
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003951 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003954 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003955 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
David Ahernafb1d4b52018-04-17 17:33:11 -07003958 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
David Ahernafb1d4b52018-04-17 17:33:11 -07003960 (net->ipv6.devconf_all->accept_dad < 1 &&
Matteo Crocea2d3f3e2017-10-05 19:03:05 +02003961 idev->cnf.accept_dad < 1) ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003962 !(ifp->flags&IFA_F_TENTATIVE) ||
3963 ifp->flags & IFA_F_NODAD) {
David Ahernc76fe2d2018-01-25 20:16:29 -08003964 bool send_na = false;
3965
3966 if (ifp->flags & IFA_F_TENTATIVE &&
3967 !(ifp->flags & IFA_F_OPTIMISTIC))
3968 send_na = true;
Paolo Abeni764d3be2016-11-22 16:57:40 +01003969 bump_id = ifp->flags & IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00003970 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003971 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 read_unlock_bh(&idev->lock);
3973
David Ahernc76fe2d2018-01-25 20:16:29 -08003974 addrconf_dad_completed(ifp, bump_id, send_na);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 return;
3976 }
3977
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003978 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003979 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003980 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003981 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003982 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003983 * - keep it tentative if it is a permanent address.
3984 * - otherwise, kill it.
3985 */
3986 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003987 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003988 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003989 }
Neil Horman95c385b2007-04-25 17:08:10 -07003990
3991 /*
3992 * Optimistic nodes can start receiving
3993 * Frames right away
3994 */
Erik Kline7fd25612014-10-28 18:11:14 +09003995 if (ifp->flags & IFA_F_OPTIMISTIC) {
David Ahernafb1d4b52018-04-17 17:33:11 -07003996 ip6_ins_rt(net, ifp->rt);
3997 if (ipv6_use_optimistic_addr(net, idev)) {
Erik Kline7fd25612014-10-28 18:11:14 +09003998 /* Because optimistic nodes can use this address,
3999 * notify listeners. If DAD fails, RTM_DELADDR is sent.
4000 */
subashab@codeaurora.org16186a82016-02-02 02:11:10 +00004001 notify = true;
Erik Kline7fd25612014-10-28 18:11:14 +09004002 }
4003 }
Neil Horman95c385b2007-04-25 17:08:10 -07004004
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08004005 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07004007 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 read_unlock_bh(&idev->lock);
subashab@codeaurora.org16186a82016-02-02 02:11:10 +00004009 if (notify)
4010 ipv6_ifa_notify(RTM_NEWADDR, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011}
4012
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004013static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004015 bool begin_dad = false;
4016
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004017 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004018 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
4019 ifp->state = INET6_IFADDR_STATE_PREDAD;
4020 begin_dad = true;
4021 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004022 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004023
4024 if (begin_dad)
4025 addrconf_mod_dad_work(ifp, 0);
4026}
4027
4028static void addrconf_dad_work(struct work_struct *w)
4029{
4030 struct inet6_ifaddr *ifp = container_of(to_delayed_work(w),
4031 struct inet6_ifaddr,
4032 dad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 struct inet6_dev *idev = ifp->idev;
Paolo Abeni764d3be2016-11-22 16:57:40 +01004034 bool bump_id, disable_ipv6 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 struct in6_addr mcaddr;
4036
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004037 enum {
4038 DAD_PROCESS,
4039 DAD_BEGIN,
4040 DAD_ABORT,
4041 } action = DAD_PROCESS;
4042
4043 rtnl_lock();
4044
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004045 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004046 if (ifp->state == INET6_IFADDR_STATE_PREDAD) {
4047 action = DAD_BEGIN;
4048 ifp->state = INET6_IFADDR_STATE_DAD;
4049 } else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) {
4050 action = DAD_ABORT;
4051 ifp->state = INET6_IFADDR_STATE_POSTDAD;
Mike Manning85b51b12016-08-18 14:39:40 +01004052
Matteo Croce35e015e2017-09-12 17:46:37 +02004053 if ((dev_net(idev->dev)->ipv6.devconf_all->accept_dad > 1 ||
4054 idev->cnf.accept_dad > 1) &&
4055 !idev->cnf.disable_ipv6 &&
Mike Manning85b51b12016-08-18 14:39:40 +01004056 !(ifp->flags & IFA_F_STABLE_PRIVACY)) {
4057 struct in6_addr addr;
4058
4059 addr.s6_addr32[0] = htonl(0xfe800000);
4060 addr.s6_addr32[1] = 0;
4061
4062 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
4063 ipv6_addr_equal(&ifp->addr, &addr)) {
4064 /* DAD failed for link-local based on MAC */
4065 idev->cnf.disable_ipv6 = 1;
4066
4067 pr_info("%s: IPv6 being disabled!\n",
4068 ifp->idev->dev->name);
4069 disable_ipv6 = true;
4070 }
4071 }
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004072 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004073 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004074
4075 if (action == DAD_BEGIN) {
4076 addrconf_dad_begin(ifp);
4077 goto out;
4078 } else if (action == DAD_ABORT) {
Wei Yongjun751eb6b2016-09-05 16:06:31 +08004079 in6_ifa_hold(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004080 addrconf_dad_stop(ifp, 1);
Mike Manning85b51b12016-08-18 14:39:40 +01004081 if (disable_ipv6)
4082 addrconf_ifdown(idev->dev, 0);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004083 goto out;
4084 }
4085
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004086 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07004087 goto out;
4088
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004089 write_lock_bh(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00004090 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004091 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 goto out;
4093 }
stephen hemminger21809fa2010-02-08 19:48:52 +00004094
4095 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07004096 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
4097 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004098 write_unlock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07004099 goto out;
4100 }
4101
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004102 if (ifp->dad_probes == 0) {
David Ahernc76fe2d2018-01-25 20:16:29 -08004103 bool send_na = false;
4104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 /*
4106 * DAD was successful
4107 */
4108
David Ahernc76fe2d2018-01-25 20:16:29 -08004109 if (ifp->flags & IFA_F_TENTATIVE &&
4110 !(ifp->flags & IFA_F_OPTIMISTIC))
4111 send_na = true;
Paolo Abeni764d3be2016-11-22 16:57:40 +01004112 bump_id = ifp->flags & IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00004113 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00004114 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004115 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
David Ahernc76fe2d2018-01-25 20:16:29 -08004117 addrconf_dad_completed(ifp, bump_id, send_na);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
4119 goto out;
4120 }
4121
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004122 ifp->dad_probes--;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004123 addrconf_mod_dad_work(ifp,
Hangbin Liu19e16d22020-04-01 14:46:20 +08004124 max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME),
4125 HZ/100));
stephen hemminger21809fa2010-02-08 19:48:52 +00004126 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004127 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
4129 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -08004131 ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any,
4132 ifp->dad_nonce);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133out:
4134 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004135 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136}
4137
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004138/* ifp->idev must be at least read locked */
4139static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
4140{
4141 struct inet6_ifaddr *ifpiter;
4142 struct inet6_dev *idev = ifp->idev;
4143
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01004144 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
4145 if (ifpiter->scope > IFA_LINK)
4146 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004147 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
4148 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
4149 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
4150 IFA_F_PERMANENT)
4151 return false;
4152 }
4153 return true;
4154}
4155
David Ahernc76fe2d2018-01-25 20:16:29 -08004156static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id,
4157 bool send_na)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004159 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004160 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004161 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004162
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004163 addrconf_del_dad_work(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
4165 /*
4166 * Configure the address for reception. Now it is valid.
4167 */
4168
4169 ipv6_ifa_notify(RTM_NEWADDR, ifp);
4170
Tore Anderson026359b2011-08-28 23:47:33 +00004171 /* If added prefix is link local and we are prepared to process
4172 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 */
4174
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004175 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004176 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004177 send_rs = send_mld &&
4178 ipv6_accept_ra(ifp->idev) &&
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004179 ifp->idev->cnf.rtr_solicits != 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004180 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004181 read_unlock_bh(&ifp->idev->lock);
4182
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004183 /* While dad is in progress mld report's source address is in6_addrany.
4184 * Resend with proper ll now.
4185 */
4186 if (send_mld)
4187 ipv6_mc_dad_complete(ifp->idev);
4188
David Ahernc76fe2d2018-01-25 20:16:29 -08004189 /* send unsolicited NA if enabled */
4190 if (send_na &&
4191 (ifp->idev->cnf.ndisc_notify ||
4192 dev_net(dev)->ipv6.devconf_all->ndisc_notify)) {
4193 ndisc_send_na(dev, &in6addr_linklocal_allnodes, &ifp->addr,
4194 /*router=*/ !!ifp->idev->cnf.forwarding,
4195 /*solicited=*/ false, /*override=*/ true,
4196 /*inc_opt=*/ true);
4197 }
4198
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004199 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 /*
4201 * If a host as already performed a random delay
4202 * [...] as part of DAD [...] there is no need
4203 * to delay again before sending the first RS
4204 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004205 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004206 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004207 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004209 write_lock_bh(&ifp->idev->lock);
4210 spin_lock(&ifp->lock);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004211 ifp->idev->rs_interval = rfc3315_s14_backoff_init(
4212 ifp->idev->cnf.rtr_solicit_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004213 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 ifp->idev->if_flags |= IF_RS_SENT;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004215 addrconf_mod_rs_timer(ifp->idev, ifp->idev->rs_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004216 spin_unlock(&ifp->lock);
4217 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 }
Paolo Abeni764d3be2016-11-22 16:57:40 +01004219
4220 if (bump_id)
4221 rt_genid_bump_ipv6(dev_net(dev));
Marcus Huewea11a7f72017-02-06 18:34:56 +01004222
4223 /* Make sure that a new temporary address will be created
4224 * before this temporary address becomes deprecated.
4225 */
4226 if (ifp->flags & IFA_F_TEMPORARY)
4227 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
Hangbin Liu896585d2018-11-21 21:52:33 +08004230static void addrconf_dad_run(struct inet6_dev *idev, bool restart)
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004231{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09004232 struct inet6_ifaddr *ifp;
4233
4234 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00004235 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00004236 spin_lock(&ifp->lock);
Hangbin Liu896585d2018-11-21 21:52:33 +08004237 if ((ifp->flags & IFA_F_TENTATIVE &&
4238 ifp->state == INET6_IFADDR_STATE_DAD) || restart) {
4239 if (restart)
4240 ifp->state = INET6_IFADDR_STATE_PREDAD;
Herbert Xuf2344a12010-05-18 15:55:27 -07004241 addrconf_dad_kick(ifp);
Hangbin Liu896585d2018-11-21 21:52:33 +08004242 }
stephen hemminger21809fa2010-02-08 19:48:52 +00004243 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09004244 }
4245 read_unlock_bh(&idev->lock);
4246}
4247
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248#ifdef CONFIG_PROC_FS
4249struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08004250 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004252 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253};
4254
Mihai Maruseac1d578302012-01-03 23:31:35 +00004255static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09004258 struct net *net = seq_file_net(seq);
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004259 struct inet6_ifaddr *ifa = NULL;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004260 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Mihai Maruseac1d578302012-01-03 23:31:35 +00004262 /* initial bucket if pos is 0 */
4263 if (pos == 0) {
4264 state->bucket = 0;
4265 state->offset = 0;
4266 }
4267
4268 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004269 hlist_for_each_entry_rcu(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00004270 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004271 if (!net_eq(dev_net(ifa->idev->dev), net))
4272 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004273 /* sync with offset */
4274 if (p < state->offset) {
4275 p++;
4276 continue;
4277 }
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004278 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004279 }
4280
4281 /* prepare for next bucket */
4282 state->offset = 0;
4283 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00004285 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286}
4287
stephen hemmingerc2e21292010-03-17 20:31:10 +00004288static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
4289 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290{
4291 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09004292 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004294 hlist_for_each_entry_continue_rcu(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004295 if (!net_eq(dev_net(ifa->idev->dev), net))
4296 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004297 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004298 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004299 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00004300
Jeff Barnhill86f9bd12018-09-21 00:45:27 +00004301 state->offset = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00004302 while (++state->bucket < IN6_ADDR_HSIZE) {
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004303 hlist_for_each_entry_rcu(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00004304 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004305 if (!net_eq(dev_net(ifa->idev->dev), net))
4306 continue;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004307 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08004308 }
4309 }
4310
stephen hemmingerc2e21292010-03-17 20:31:10 +00004311 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312}
4313
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004315 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316{
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004317 rcu_read_lock();
Mihai Maruseac1d578302012-01-03 23:31:35 +00004318 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319}
4320
4321static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4322{
4323 struct inet6_ifaddr *ifa;
4324
4325 ifa = if6_get_next(seq, v);
4326 ++*pos;
4327 return ifa;
4328}
4329
4330static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004331 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332{
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004333 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334}
4335
4336static int if6_seq_show(struct seq_file *seq, void *v)
4337{
4338 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01004339 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07004340 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 ifp->idev->dev->ifindex,
4342 ifp->prefix_len,
4343 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01004344 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 ifp->idev->dev->name);
4346 return 0;
4347}
4348
Philippe De Muyter56b3d972007-07-10 23:07:31 -07004349static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 .start = if6_seq_start,
4351 .next = if6_seq_next,
4352 .show = if6_seq_show,
4353 .stop = if6_seq_stop,
4354};
4355
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004356static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357{
Christoph Hellwigc3506372018-04-10 19:42:55 +02004358 if (!proc_create_net("if_inet6", 0444, net->proc_net, &if6_seq_ops,
4359 sizeof(struct if6_iter_state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 return -ENOMEM;
4361 return 0;
4362}
4363
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004364static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08004365{
Gao fengece31ff2013-02-18 01:34:56 +00004366 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08004367}
4368
4369static struct pernet_operations if6_proc_net_ops = {
Ian Morris67ba4152014-08-24 21:53:10 +01004370 .init = if6_proc_net_init,
4371 .exit = if6_proc_net_exit,
Daniel Lezcano3c400902008-01-10 22:42:49 -08004372};
4373
4374int __init if6_proc_init(void)
4375{
4376 return register_pernet_subsys(&if6_proc_net_ops);
4377}
4378
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379void if6_proc_exit(void)
4380{
Daniel Lezcano3c400902008-01-10 22:42:49 -08004381 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382}
4383#endif /* CONFIG_PROC_FS */
4384
Amerigo Wang07a93622012-10-29 16:23:10 +00004385#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004386/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00004387int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004388{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07004389 unsigned int hash = inet6_addr_hash(net, addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00004390 struct inet6_ifaddr *ifp = NULL;
Eric Dumazet3f27fb22017-10-23 16:17:47 -07004391 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00004392
Eric Dumazet4e5f47a2017-10-23 16:17:51 -07004393 rcu_read_lock();
4394 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09004395 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08004396 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09004397 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004398 (ifp->flags & IFA_F_HOMEADDRESS)) {
4399 ret = 1;
4400 break;
4401 }
4402 }
Eric Dumazet4e5f47a2017-10-23 16:17:51 -07004403 rcu_read_unlock();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004404 return ret;
4405}
4406#endif
4407
Alexander Aringf37c6052020-03-27 18:00:19 -04004408/* RFC6554 has some algorithm to avoid loops in segment routing by
4409 * checking if the segments contains any of a local interface address.
4410 *
4411 * Quote:
4412 *
4413 * To detect loops in the SRH, a router MUST determine if the SRH
4414 * includes multiple addresses assigned to any interface on that router.
4415 * If such addresses appear more than once and are separated by at least
4416 * one address not assigned to that router.
4417 */
4418int ipv6_chk_rpl_srh_loop(struct net *net, const struct in6_addr *segs,
4419 unsigned char nsegs)
4420{
4421 const struct in6_addr *addr;
4422 int i, ret = 0, found = 0;
4423 struct inet6_ifaddr *ifp;
4424 bool separated = false;
4425 unsigned int hash;
4426 bool hash_found;
4427
4428 rcu_read_lock();
4429 for (i = 0; i < nsegs; i++) {
4430 addr = &segs[i];
4431 hash = inet6_addr_hash(net, addr);
4432
4433 hash_found = false;
4434 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
4435 if (!net_eq(dev_net(ifp->idev->dev), net))
4436 continue;
4437
4438 if (ipv6_addr_equal(&ifp->addr, addr)) {
4439 hash_found = true;
4440 break;
4441 }
4442 }
4443
4444 if (hash_found) {
4445 if (found > 1 && separated) {
4446 ret = 1;
4447 break;
4448 }
4449
4450 separated = false;
4451 found++;
4452 } else {
4453 separated = true;
4454 }
4455 }
4456 rcu_read_unlock();
4457
4458 return ret;
4459}
4460
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461/*
4462 * Periodic address status verification
4463 */
4464
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004465static void addrconf_verify_rtnl(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004467 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 int i;
4470
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004471 ASSERT_RTNL();
4472
stephen hemminger5c578aed2010-03-17 20:31:11 +00004473 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004475 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004477 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004479 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480restart:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004481 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
Yasushi Asanofad8da32013-12-31 12:04:19 +09004484 /* When setting preferred_lft to a value not zero or
4485 * infinity, while valid_lft is infinity
4486 * IFA_F_PERMANENT has a non-infinity life time.
4487 */
4488 if ((ifp->flags & IFA_F_PERMANENT) &&
4489 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 continue;
4491
4492 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004493 /* We try to batch several events at once. */
4494 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09004496 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
4497 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 spin_unlock(&ifp->lock);
4499 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 ipv6_del_addr(ifp);
4501 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09004502 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
4503 spin_unlock(&ifp->lock);
4504 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00004506 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 int deprecate = 0;
4508
4509 if (!(ifp->flags&IFA_F_DEPRECATED)) {
4510 deprecate = 1;
4511 ifp->flags |= IFA_F_DEPRECATED;
4512 }
4513
Yasushi Asanofad8da32013-12-31 12:04:19 +09004514 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
4515 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 next = ifp->tstamp + ifp->valid_lft * HZ;
4517
4518 spin_unlock(&ifp->lock);
4519
4520 if (deprecate) {
4521 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523 ipv6_ifa_notify(0, ifp);
4524 in6_ifa_put(ifp);
4525 goto restart;
4526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
4528 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00004529 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
4530 ifp->idev->cnf.dad_transmits *
Hangbin Liu19e16d22020-04-01 14:46:20 +08004531 max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME), HZ/100) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00004532
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 if (age >= ifp->prefered_lft - regen_advance) {
4534 struct inet6_ifaddr *ifpub = ifp->ifpub;
4535 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4536 next = ifp->tstamp + ifp->prefered_lft * HZ;
4537 if (!ifp->regen_count && ifpub) {
4538 ifp->regen_count++;
4539 in6_ifa_hold(ifp);
4540 in6_ifa_hold(ifpub);
4541 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00004542
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08004543 spin_lock(&ifpub->lock);
4544 ifpub->regen_count = 0;
4545 spin_unlock(&ifpub->lock);
Eric Dumazete64e4692018-01-26 16:10:43 -08004546 rcu_read_unlock_bh();
Eric Dumazetfffcefe2017-11-06 14:13:29 -08004547 ipv6_create_tempaddr(ifpub, ifp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 in6_ifa_put(ifpub);
4549 in6_ifa_put(ifp);
Eric Dumazete64e4692018-01-26 16:10:43 -08004550 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 goto restart;
4552 }
4553 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
4554 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
4555 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 } else {
4557 /* ifp->prefered_lft <= ifp->valid_lft */
4558 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4559 next = ifp->tstamp + ifp->prefered_lft * HZ;
4560 spin_unlock(&ifp->lock);
4561 }
4562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 }
4564
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004565 next_sec = round_jiffies_up(next);
4566 next_sched = next;
4567
4568 /* If rounded timeout is accurate enough, accept it. */
4569 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
4570 next_sched = next_sec;
4571
4572 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
4573 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
4574 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
4575
Joe Perchese32ac252018-03-26 08:35:01 -07004576 pr_debug("now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
4577 now, next, next_sec, next_sched);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004578 mod_delayed_work(addrconf_wq, &addr_chk_work, next_sched - now);
stephen hemminger5c578aed2010-03-17 20:31:11 +00004579 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580}
4581
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004582static void addrconf_verify_work(struct work_struct *w)
4583{
4584 rtnl_lock();
4585 addrconf_verify_rtnl();
4586 rtnl_unlock();
4587}
4588
4589static void addrconf_verify(void)
4590{
4591 mod_delayed_work(addrconf_wq, &addr_chk_work, 0);
4592}
4593
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004594static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
4595 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07004596{
4597 struct in6_addr *pfx = NULL;
4598
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004599 *peer_pfx = NULL;
4600
Thomas Graf461d8832006-09-18 00:09:49 -07004601 if (addr)
4602 pfx = nla_data(addr);
4603
4604 if (local) {
4605 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004606 *peer_pfx = pfx;
4607 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07004608 }
4609
4610 return pfx;
4611}
4612
Patrick McHardyef7c79e2007-06-05 12:38:30 -07004613static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07004614 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
4615 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
4616 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01004617 [IFA_FLAGS] = { .len = sizeof(u32) },
David Ahern8308f3f2018-05-27 08:09:58 -07004618 [IFA_RT_PRIORITY] = { .len = sizeof(u32) },
Christian Brauner6ecf4c32018-09-04 21:53:50 +02004619 [IFA_TARGET_NETNSID] = { .type = NLA_S32 },
Thomas Graf461d8832006-09-18 00:09:49 -07004620};
4621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622static int
David Ahernc21ef3e2017-04-16 09:48:24 -07004623inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh,
4624 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004626 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07004627 struct ifaddrmsg *ifm;
4628 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004629 struct in6_addr *pfx, *peer_pfx;
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02004630 u32 ifa_flags;
Thomas Grafb933f712006-09-18 00:10:19 -07004631 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Johannes Berg8cb08172019-04-26 14:07:28 +02004633 err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
4634 ifa_ipv6_policy, extack);
Thomas Grafb933f712006-09-18 00:10:19 -07004635 if (err < 0)
4636 return err;
4637
4638 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004639 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Ian Morris63159f22015-03-29 14:00:04 +01004640 if (!pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 return -EINVAL;
4642
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02004643 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
4644
4645 /* We ignore other flags so far. */
4646 ifa_flags &= IFA_F_MANAGETEMPADDR;
4647
4648 return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx,
4649 ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650}
4651
David Ahern8308f3f2018-05-27 08:09:58 -07004652static int modify_prefix_route(struct inet6_ifaddr *ifp,
Hangbin Liu61794012020-03-03 14:37:34 +08004653 unsigned long expires, u32 flags,
4654 bool modify_peer)
David Ahern8308f3f2018-05-27 08:09:58 -07004655{
4656 struct fib6_info *f6i;
David Aherne7c7faa2018-06-28 13:36:55 -07004657 u32 prio;
David Ahern8308f3f2018-05-27 08:09:58 -07004658
Hangbin Liu61794012020-03-03 14:37:34 +08004659 f6i = addrconf_get_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
4660 ifp->prefix_len,
David Ahern2b2450c2019-03-27 20:53:52 -07004661 ifp->idev->dev, 0, RTF_DEFAULT, true);
David Ahern8308f3f2018-05-27 08:09:58 -07004662 if (!f6i)
4663 return -ENOENT;
4664
David Aherne7c7faa2018-06-28 13:36:55 -07004665 prio = ifp->rt_priority ? : IP6_RT_PRIO_ADDRCONF;
4666 if (f6i->fib6_metric != prio) {
4667 /* delete old one */
4668 ip6_del_rt(dev_net(ifp->idev->dev), f6i);
4669
David Ahern8308f3f2018-05-27 08:09:58 -07004670 /* add new one */
Hangbin Liu61794012020-03-03 14:37:34 +08004671 addrconf_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
4672 ifp->prefix_len,
David Ahern8308f3f2018-05-27 08:09:58 -07004673 ifp->rt_priority, ifp->idev->dev,
4674 expires, flags, GFP_KERNEL);
David Ahern8308f3f2018-05-27 08:09:58 -07004675 } else {
4676 if (!expires)
4677 fib6_clean_expires(f6i);
4678 else
4679 fib6_set_expires(f6i, expires);
4680
4681 fib6_info_release(f6i);
4682 }
4683
4684 return 0;
4685}
4686
David Ahernd169a1f2018-05-27 08:09:55 -07004687static int inet6_addr_modify(struct inet6_ifaddr *ifp, struct ifa6_config *cfg)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004688{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004689 u32 flags;
4690 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004691 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01004692 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01004693 bool had_prefixroute;
Hangbin Liud0098e42020-03-03 14:37:35 +08004694 bool new_peer = false;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09004695
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004696 ASSERT_RTNL();
4697
David Ahernd169a1f2018-05-27 08:09:55 -07004698 if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004699 return -EINVAL;
4700
David Ahernd169a1f2018-05-27 08:09:55 -07004701 if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR &&
Jiri Pirko53bd6742013-12-06 09:45:22 +01004702 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
4703 return -EINVAL;
4704
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004705 if (!(ifp->flags & IFA_F_TENTATIVE) || ifp->flags & IFA_F_DADFAILED)
David Ahernd169a1f2018-05-27 08:09:55 -07004706 cfg->ifa_flags &= ~IFA_F_OPTIMISTIC;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004707
David Ahernd169a1f2018-05-27 08:09:55 -07004708 timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004709 if (addrconf_finite_timeout(timeout)) {
4710 expires = jiffies_to_clock_t(timeout * HZ);
David Ahernd169a1f2018-05-27 08:09:55 -07004711 cfg->valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004712 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004713 } else {
4714 expires = 0;
4715 flags = 0;
David Ahernd169a1f2018-05-27 08:09:55 -07004716 cfg->ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004717 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004718
David Ahernd169a1f2018-05-27 08:09:55 -07004719 timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004720 if (addrconf_finite_timeout(timeout)) {
4721 if (timeout == 0)
David Ahernd169a1f2018-05-27 08:09:55 -07004722 cfg->ifa_flags |= IFA_F_DEPRECATED;
4723 cfg->preferred_lft = timeout;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004724 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004725
Hangbin Liud0098e42020-03-03 14:37:35 +08004726 if (cfg->peer_pfx &&
4727 memcmp(&ifp->peer_addr, cfg->peer_pfx, sizeof(struct in6_addr))) {
4728 if (!ipv6_addr_any(&ifp->peer_addr))
4729 cleanup_prefix_route(ifp, expires, true, true);
4730 new_peer = true;
4731 }
4732
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004733 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004734 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01004735 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
4736 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004737 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01004738 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
4739 IFA_F_NOPREFIXROUTE);
David Ahernd169a1f2018-05-27 08:09:55 -07004740 ifp->flags |= cfg->ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004741 ifp->tstamp = jiffies;
David Ahernd169a1f2018-05-27 08:09:55 -07004742 ifp->valid_lft = cfg->valid_lft;
4743 ifp->prefered_lft = cfg->preferred_lft;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004744
David Ahern8308f3f2018-05-27 08:09:58 -07004745 if (cfg->rt_priority && cfg->rt_priority != ifp->rt_priority)
4746 ifp->rt_priority = cfg->rt_priority;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004747
Hangbin Liud0098e42020-03-03 14:37:35 +08004748 if (new_peer)
4749 ifp->peer_addr = *cfg->peer_pfx;
4750
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004751 spin_unlock_bh(&ifp->lock);
4752 if (!(ifp->flags&IFA_F_TENTATIVE))
4753 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004754
David Ahernd169a1f2018-05-27 08:09:55 -07004755 if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) {
David Ahern8308f3f2018-05-27 08:09:58 -07004756 int rc = -ENOENT;
4757
4758 if (had_prefixroute)
Hangbin Liu61794012020-03-03 14:37:34 +08004759 rc = modify_prefix_route(ifp, expires, flags, false);
David Ahern8308f3f2018-05-27 08:09:58 -07004760
4761 /* prefix route could have been deleted; if so restore it */
4762 if (rc == -ENOENT) {
4763 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
4764 ifp->rt_priority, ifp->idev->dev,
4765 expires, flags, GFP_KERNEL);
4766 }
Hangbin Liu61794012020-03-03 14:37:34 +08004767
4768 if (had_prefixroute && !ipv6_addr_any(&ifp->peer_addr))
4769 rc = modify_prefix_route(ifp, expires, flags, true);
4770
4771 if (rc == -ENOENT && !ipv6_addr_any(&ifp->peer_addr)) {
4772 addrconf_prefix_route(&ifp->peer_addr, ifp->prefix_len,
4773 ifp->rt_priority, ifp->idev->dev,
4774 expires, flags, GFP_KERNEL);
4775 }
Thomas Haller5b84efe2014-01-15 15:36:59 +01004776 } else if (had_prefixroute) {
4777 enum cleanup_prefix_rt_t action;
4778 unsigned long rt_expires;
4779
4780 write_lock_bh(&ifp->idev->lock);
4781 action = check_cleanup_prefix_route(ifp, &rt_expires);
4782 write_unlock_bh(&ifp->idev->lock);
4783
4784 if (action != CLEANUP_PREFIX_RT_NOP) {
4785 cleanup_prefix_route(ifp, rt_expires,
Hangbin Liud0098e42020-03-03 14:37:35 +08004786 action == CLEANUP_PREFIX_RT_DEL, false);
Thomas Haller5b84efe2014-01-15 15:36:59 +01004787 }
Thomas Haller761aac72014-01-15 15:36:58 +01004788 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01004789
4790 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
David Ahernd169a1f2018-05-27 08:09:55 -07004791 if (was_managetempaddr &&
4792 !(ifp->flags & IFA_F_MANAGETEMPADDR)) {
4793 cfg->valid_lft = 0;
4794 cfg->preferred_lft = 0;
4795 }
4796 manage_tempaddrs(ifp->idev, ifp, cfg->valid_lft,
4797 cfg->preferred_lft, !was_managetempaddr,
4798 jiffies);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004799 }
4800
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004801 addrconf_verify_rtnl();
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004802
4803 return 0;
4804}
4805
4806static int
David Ahernc21ef3e2017-04-16 09:48:24 -07004807inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh,
4808 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004810 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07004811 struct ifaddrmsg *ifm;
4812 struct nlattr *tb[IFA_MAX+1];
David Ahern19b15182018-05-27 08:09:54 -07004813 struct in6_addr *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07004814 struct inet6_ifaddr *ifa;
4815 struct net_device *dev;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004816 struct inet6_dev *idev;
David Ahern19b15182018-05-27 08:09:54 -07004817 struct ifa6_config cfg;
Thomas Graf461d8832006-09-18 00:09:49 -07004818 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
Johannes Berg8cb08172019-04-26 14:07:28 +02004820 err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
4821 ifa_ipv6_policy, extack);
Thomas Graf461d8832006-09-18 00:09:49 -07004822 if (err < 0)
4823 return err;
4824
David Ahern19b15182018-05-27 08:09:54 -07004825 memset(&cfg, 0, sizeof(cfg));
4826
Thomas Graf461d8832006-09-18 00:09:49 -07004827 ifm = nlmsg_data(nlh);
David Ahern19b15182018-05-27 08:09:54 -07004828 cfg.pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
4829 if (!cfg.pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 return -EINVAL;
4831
David Ahern19b15182018-05-27 08:09:54 -07004832 cfg.peer_pfx = peer_pfx;
4833 cfg.plen = ifm->ifa_prefixlen;
David Ahern8308f3f2018-05-27 08:09:58 -07004834 if (tb[IFA_RT_PRIORITY])
4835 cfg.rt_priority = nla_get_u32(tb[IFA_RT_PRIORITY]);
4836
David Ahern19b15182018-05-27 08:09:54 -07004837 cfg.valid_lft = INFINITY_LIFE_TIME;
4838 cfg.preferred_lft = INFINITY_LIFE_TIME;
4839
Thomas Graf461d8832006-09-18 00:09:49 -07004840 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09004841 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07004842
4843 ci = nla_data(tb[IFA_CACHEINFO]);
David Ahern19b15182018-05-27 08:09:54 -07004844 cfg.valid_lft = ci->ifa_valid;
4845 cfg.preferred_lft = ci->ifa_prefered;
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09004846 }
4847
Daniel Lezcanoaf284932008-03-05 10:46:57 -08004848 dev = __dev_get_by_index(net, ifm->ifa_index);
Ian Morris63159f22015-03-29 14:00:04 +01004849 if (!dev)
Thomas Graf7198f8c2006-09-18 00:13:46 -07004850 return -ENODEV;
4851
David Ahern19b15182018-05-27 08:09:54 -07004852 if (tb[IFA_FLAGS])
4853 cfg.ifa_flags = nla_get_u32(tb[IFA_FLAGS]);
4854 else
4855 cfg.ifa_flags = ifm->ifa_flags;
Jiri Pirko479840f2013-12-06 09:45:21 +01004856
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004857 /* We ignore other flags so far. */
David Ahern19b15182018-05-27 08:09:54 -07004858 cfg.ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS |
4859 IFA_F_MANAGETEMPADDR | IFA_F_NOPREFIXROUTE |
4860 IFA_F_MCAUTOJOIN | IFA_F_OPTIMISTIC;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004861
4862 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02004863 if (IS_ERR(idev))
4864 return PTR_ERR(idev);
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004865
4866 if (!ipv6_allow_optimistic_dad(net, idev))
David Ahern19b15182018-05-27 08:09:54 -07004867 cfg.ifa_flags &= ~IFA_F_OPTIMISTIC;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004868
David Ahern19b15182018-05-27 08:09:54 -07004869 if (cfg.ifa_flags & IFA_F_NODAD &&
4870 cfg.ifa_flags & IFA_F_OPTIMISTIC) {
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004871 NL_SET_ERR_MSG(extack, "IFA_F_NODAD and IFA_F_OPTIMISTIC are mutually exclusive");
4872 return -EINVAL;
4873 }
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004874
David Ahern19b15182018-05-27 08:09:54 -07004875 ifa = ipv6_get_ifaddr(net, cfg.pfx, dev, 1);
Ian Morris63159f22015-03-29 14:00:04 +01004876 if (!ifa) {
Thomas Graf7198f8c2006-09-18 00:13:46 -07004877 /*
4878 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08004879 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07004880 */
David Ahern19b15182018-05-27 08:09:54 -07004881 return inet6_addr_add(net, ifm->ifa_index, &cfg, extack);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004882 }
4883
Thomas Graf7198f8c2006-09-18 00:13:46 -07004884 if (nlh->nlmsg_flags & NLM_F_EXCL ||
4885 !(nlh->nlmsg_flags & NLM_F_REPLACE))
4886 err = -EEXIST;
4887 else
David Ahernd169a1f2018-05-27 08:09:55 -07004888 err = inet6_addr_modify(ifa, &cfg);
Thomas Graf7198f8c2006-09-18 00:13:46 -07004889
4890 in6_ifa_put(ifa);
4891
4892 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893}
4894
Jiri Pirko479840f2013-12-06 09:45:21 +01004895static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07004896 u8 scope, int ifindex)
4897{
4898 struct ifaddrmsg *ifm;
4899
4900 ifm = nlmsg_data(nlh);
4901 ifm->ifa_family = AF_INET6;
4902 ifm->ifa_prefixlen = prefixlen;
4903 ifm->ifa_flags = flags;
4904 ifm->ifa_scope = scope;
4905 ifm->ifa_index = ifindex;
4906}
4907
Thomas Graf85486af2006-09-18 00:11:24 -07004908static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
4909 unsigned long tstamp, u32 preferred, u32 valid)
4910{
4911 struct ifa_cacheinfo ci;
4912
Thomas Graf18a31e12010-11-17 04:12:02 +00004913 ci.cstamp = cstamp_delta(cstamp);
4914 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07004915 ci.ifa_prefered = preferred;
4916 ci.ifa_valid = valid;
4917
4918 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
4919}
4920
Thomas Graf101bb222006-09-18 00:11:52 -07004921static inline int rt_scope(int ifa_scope)
4922{
4923 if (ifa_scope & IFA_HOST)
4924 return RT_SCOPE_HOST;
4925 else if (ifa_scope & IFA_LINK)
4926 return RT_SCOPE_LINK;
4927 else if (ifa_scope & IFA_SITE)
4928 return RT_SCOPE_SITE;
4929 else
4930 return RT_SCOPE_UNIVERSE;
4931}
4932
Thomas Graf0ab68032006-09-18 00:12:35 -07004933static inline int inet6_ifaddr_msgsize(void)
4934{
Thomas Graf339bf982006-11-10 14:10:15 -08004935 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004936 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08004937 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01004938 + nla_total_size(sizeof(struct ifa_cacheinfo))
David Ahern8308f3f2018-05-27 08:09:58 -07004939 + nla_total_size(4) /* IFA_FLAGS */
4940 + nla_total_size(4) /* IFA_RT_PRIORITY */;
Thomas Graf0ab68032006-09-18 00:12:35 -07004941}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004942
David Ahern6ba1e6e2018-10-07 20:16:26 -07004943enum addr_type_t {
4944 UNICAST_ADDR,
4945 MULTICAST_ADDR,
4946 ANYCAST_ADDR,
4947};
4948
Christian Brauner203651b2018-09-04 21:53:55 +02004949struct inet6_fill_args {
4950 u32 portid;
4951 u32 seq;
4952 int event;
4953 unsigned int flags;
4954 int netnsid;
David Ahern6371a712018-10-19 12:45:30 -07004955 int ifindex;
David Ahern6ba1e6e2018-10-07 20:16:26 -07004956 enum addr_type_t type;
Christian Brauner203651b2018-09-04 21:53:55 +02004957};
4958
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Christian Brauner203651b2018-09-04 21:53:55 +02004960 struct inet6_fill_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07004963 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
Christian Brauner203651b2018-09-04 21:53:55 +02004965 nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
4966 sizeof(struct ifaddrmsg), args->flags);
Ian Morris63159f22015-03-29 14:00:04 +01004967 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004968 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004969
Thomas Graf101bb222006-09-18 00:11:52 -07004970 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
4971 ifa->idev->dev->ifindex);
4972
Christian Brauner203651b2018-09-04 21:53:55 +02004973 if (args->netnsid >= 0 &&
4974 nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid))
Christian Brauner6ecf4c32018-09-04 21:53:50 +02004975 goto error;
4976
Yasushi Asanofad8da32013-12-31 12:04:19 +09004977 if (!((ifa->flags&IFA_F_PERMANENT) &&
4978 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07004979 preferred = ifa->prefered_lft;
4980 valid = ifa->valid_lft;
4981 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00004983 if (preferred > tval)
4984 preferred -= tval;
4985 else
4986 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00004987 if (valid != INFINITY_LIFE_TIME) {
4988 if (valid > tval)
4989 valid -= tval;
4990 else
4991 valid = 0;
4992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 }
4994 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07004995 preferred = INFINITY_LIFE_TIME;
4996 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 }
Thomas Graf85486af2006-09-18 00:11:24 -07004998
Cong Wang7996c792013-05-22 05:41:06 +00004999 if (!ipv6_addr_any(&ifa->peer_addr)) {
Jiri Benc930345e2015-03-29 16:59:25 +02005000 if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 ||
5001 nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->peer_addr) < 0)
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005002 goto error;
5003 } else
Jiri Benc930345e2015-03-29 16:59:25 +02005004 if (nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->addr) < 0)
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005005 goto error;
5006
David Ahern8308f3f2018-05-27 08:09:58 -07005007 if (ifa->rt_priority &&
5008 nla_put_u32(skb, IFA_RT_PRIORITY, ifa->rt_priority))
5009 goto error;
5010
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005011 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
5012 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07005013
Jiri Pirko479840f2013-12-06 09:45:21 +01005014 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
5015 goto error;
5016
Johannes Berg053c0952015-01-16 22:09:00 +01005017 nlmsg_end(skb, nlh);
5018 return 0;
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005019
5020error:
5021 nlmsg_cancel(skb, nlh);
5022 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023}
5024
5025static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Christian Brauner203651b2018-09-04 21:53:55 +02005026 struct inet6_fill_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07005029 u8 scope = RT_SCOPE_UNIVERSE;
5030 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Thomas Graf101bb222006-09-18 00:11:52 -07005032 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
5033 scope = RT_SCOPE_SITE;
5034
Christian Brauner203651b2018-09-04 21:53:55 +02005035 nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5036 sizeof(struct ifaddrmsg), args->flags);
Ian Morris63159f22015-03-29 14:00:04 +01005037 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005038 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07005039
Christian Brauner203651b2018-09-04 21:53:55 +02005040 if (args->netnsid >= 0 &&
5041 nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid))
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005042 return -EMSGSIZE;
5043
Thomas Graf101bb222006-09-18 00:11:52 -07005044 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Jiri Benc930345e2015-03-29 16:59:25 +02005045 if (nla_put_in6_addr(skb, IFA_MULTICAST, &ifmca->mca_addr) < 0 ||
Thomas Graf0ab68032006-09-18 00:12:35 -07005046 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08005047 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
5048 nlmsg_cancel(skb, nlh);
5049 return -EMSGSIZE;
5050 }
Thomas Graf85486af2006-09-18 00:11:24 -07005051
Johannes Berg053c0952015-01-16 22:09:00 +01005052 nlmsg_end(skb, nlh);
5053 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054}
5055
5056static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Christian Brauner203651b2018-09-04 21:53:55 +02005057 struct inet6_fill_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058{
David Ahern9ee8cbb2018-04-18 15:39:01 -07005059 struct net_device *dev = fib6_info_nh_dev(ifaca->aca_rt);
5060 int ifindex = dev ? dev->ifindex : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07005062 u8 scope = RT_SCOPE_UNIVERSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Thomas Graf101bb222006-09-18 00:11:52 -07005064 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
5065 scope = RT_SCOPE_SITE;
5066
Christian Brauner203651b2018-09-04 21:53:55 +02005067 nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5068 sizeof(struct ifaddrmsg), args->flags);
Ian Morris63159f22015-03-29 14:00:04 +01005069 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005070 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07005071
Christian Brauner203651b2018-09-04 21:53:55 +02005072 if (args->netnsid >= 0 &&
5073 nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid))
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005074 return -EMSGSIZE;
5075
Thomas Graf101bb222006-09-18 00:11:52 -07005076 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Jiri Benc930345e2015-03-29 16:59:25 +02005077 if (nla_put_in6_addr(skb, IFA_ANYCAST, &ifaca->aca_addr) < 0 ||
Thomas Graf0ab68032006-09-18 00:12:35 -07005078 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08005079 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
5080 nlmsg_cancel(skb, nlh);
5081 return -EMSGSIZE;
5082 }
Thomas Graf85486af2006-09-18 00:11:24 -07005083
Johannes Berg053c0952015-01-16 22:09:00 +01005084 nlmsg_end(skb, nlh);
5085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086}
5087
Eric Dumazet234b27c2009-11-12 04:11:50 +00005088/* called with rcu_read_lock() */
5089static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
David Ahernfe884c22018-10-19 12:45:28 -07005090 struct netlink_callback *cb, int s_ip_idx,
David Ahern6ba1e6e2018-10-07 20:16:26 -07005091 struct inet6_fill_args *fillargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 struct ifmcaddr6 *ifmca;
5094 struct ifacaddr6 *ifaca;
David Ahernfe884c22018-10-19 12:45:28 -07005095 int ip_idx = 0;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005096 int err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
Eric Dumazet234b27c2009-11-12 04:11:50 +00005098 read_lock_bh(&idev->lock);
David Ahern6ba1e6e2018-10-07 20:16:26 -07005099 switch (fillargs->type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00005100 case UNICAST_ADDR: {
5101 struct inet6_ifaddr *ifa;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005102 fillargs->event = RTM_NEWADDR;
stephen hemminger502a2ff2010-03-17 20:31:13 +00005103
Eric Dumazet234b27c2009-11-12 04:11:50 +00005104 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00005105 list_for_each_entry(ifa, &idev->addr_list, if_list) {
David Ahern4ba4c562018-10-19 10:00:19 -07005106 if (ip_idx < s_ip_idx)
5107 goto next;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005108 err = inet6_fill_ifaddr(skb, ifa, fillargs);
Johannes Berg053c0952015-01-16 22:09:00 +01005109 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005110 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00005111 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
David Ahern4ba4c562018-10-19 10:00:19 -07005112next:
5113 ip_idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00005115 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00005116 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00005117 case MULTICAST_ADDR:
David Ahern6ba1e6e2018-10-07 20:16:26 -07005118 fillargs->event = RTM_GETMULTICAST;
Christian Brauner203651b2018-09-04 21:53:55 +02005119
Eric Dumazet234b27c2009-11-12 04:11:50 +00005120 /* multicast address */
5121 for (ifmca = idev->mc_list; ifmca;
5122 ifmca = ifmca->next, ip_idx++) {
5123 if (ip_idx < s_ip_idx)
5124 continue;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005125 err = inet6_fill_ifmcaddr(skb, ifmca, fillargs);
Johannes Berg053c0952015-01-16 22:09:00 +01005126 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005127 break;
5128 }
5129 break;
5130 case ANYCAST_ADDR:
David Ahern6ba1e6e2018-10-07 20:16:26 -07005131 fillargs->event = RTM_GETANYCAST;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005132 /* anycast address */
5133 for (ifaca = idev->ac_list; ifaca;
5134 ifaca = ifaca->aca_next, ip_idx++) {
5135 if (ip_idx < s_ip_idx)
5136 continue;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005137 err = inet6_fill_ifacaddr(skb, ifaca, fillargs);
Johannes Berg053c0952015-01-16 22:09:00 +01005138 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005139 break;
5140 }
5141 break;
5142 default:
5143 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00005145 read_unlock_bh(&idev->lock);
David Ahernfe884c22018-10-19 12:45:28 -07005146 cb->args[2] = ip_idx;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005147 return err;
5148}
5149
David Aherned6eff12018-10-07 20:16:29 -07005150static int inet6_valid_dump_ifaddr_req(const struct nlmsghdr *nlh,
5151 struct inet6_fill_args *fillargs,
5152 struct net **tgt_net, struct sock *sk,
David Ahern6371a712018-10-19 12:45:30 -07005153 struct netlink_callback *cb)
David Aherned6eff12018-10-07 20:16:29 -07005154{
David Ahern6371a712018-10-19 12:45:30 -07005155 struct netlink_ext_ack *extack = cb->extack;
David Aherned6eff12018-10-07 20:16:29 -07005156 struct nlattr *tb[IFA_MAX+1];
5157 struct ifaddrmsg *ifm;
5158 int err, i;
5159
5160 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5161 NL_SET_ERR_MSG_MOD(extack, "Invalid header for address dump request");
5162 return -EINVAL;
5163 }
5164
5165 ifm = nlmsg_data(nlh);
5166 if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) {
5167 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for address dump request");
5168 return -EINVAL;
5169 }
David Ahern6371a712018-10-19 12:45:30 -07005170
5171 fillargs->ifindex = ifm->ifa_index;
5172 if (fillargs->ifindex) {
5173 cb->answer_flags |= NLM_F_DUMP_FILTERED;
5174 fillargs->flags |= NLM_F_DUMP_FILTERED;
David Aherned6eff12018-10-07 20:16:29 -07005175 }
5176
Johannes Berg8cb08172019-04-26 14:07:28 +02005177 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX,
5178 ifa_ipv6_policy, extack);
David Aherned6eff12018-10-07 20:16:29 -07005179 if (err < 0)
5180 return err;
5181
5182 for (i = 0; i <= IFA_MAX; ++i) {
5183 if (!tb[i])
5184 continue;
5185
5186 if (i == IFA_TARGET_NETNSID) {
5187 struct net *net;
5188
5189 fillargs->netnsid = nla_get_s32(tb[i]);
5190 net = rtnl_get_net_ns_capable(sk, fillargs->netnsid);
5191 if (IS_ERR(net)) {
Bjørn Morkbf4cc402018-10-25 21:18:25 +02005192 fillargs->netnsid = -1;
David Aherned6eff12018-10-07 20:16:29 -07005193 NL_SET_ERR_MSG_MOD(extack, "Invalid target network namespace id");
5194 return PTR_ERR(net);
5195 }
5196 *tgt_net = net;
5197 } else {
5198 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in dump request");
5199 return -EINVAL;
5200 }
5201 }
5202
5203 return 0;
5204}
5205
Eric Dumazet234b27c2009-11-12 04:11:50 +00005206static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
5207 enum addr_type_t type)
5208{
David Aherned6eff12018-10-07 20:16:29 -07005209 const struct nlmsghdr *nlh = cb->nlh;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005210 struct inet6_fill_args fillargs = {
5211 .portid = NETLINK_CB(cb->skb).portid,
5212 .seq = cb->nlh->nlmsg_seq,
5213 .flags = NLM_F_MULTI,
5214 .netnsid = -1,
5215 .type = type,
5216 };
Eric Dumazet234b27c2009-11-12 04:11:50 +00005217 struct net *net = sock_net(skb->sk);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005218 struct net *tgt_net = net;
David Ahernfe884c22018-10-19 12:45:28 -07005219 int idx, s_idx, s_ip_idx;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005220 int h, s_h;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005221 struct net_device *dev;
5222 struct inet6_dev *idev;
5223 struct hlist_head *head;
David Ahern242afaa2018-10-24 12:59:00 -07005224 int err = 0;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005225
5226 s_h = cb->args[0];
5227 s_idx = idx = cb->args[1];
David Ahernfe884c22018-10-19 12:45:28 -07005228 s_ip_idx = cb->args[2];
Eric Dumazet234b27c2009-11-12 04:11:50 +00005229
David Aherned6eff12018-10-07 20:16:29 -07005230 if (cb->strict_check) {
David Aherned6eff12018-10-07 20:16:29 -07005231 err = inet6_valid_dump_ifaddr_req(nlh, &fillargs, &tgt_net,
David Ahern6371a712018-10-19 12:45:30 -07005232 skb->sk, cb);
David Aherned6eff12018-10-07 20:16:29 -07005233 if (err < 0)
David Ahern242afaa2018-10-24 12:59:00 -07005234 goto put_tgt_net;
David Ahern6371a712018-10-19 12:45:30 -07005235
David Ahern242afaa2018-10-24 12:59:00 -07005236 err = 0;
David Ahern6371a712018-10-19 12:45:30 -07005237 if (fillargs.ifindex) {
5238 dev = __dev_get_by_index(tgt_net, fillargs.ifindex);
David Ahern242afaa2018-10-24 12:59:00 -07005239 if (!dev) {
5240 err = -ENODEV;
5241 goto put_tgt_net;
5242 }
David Ahern6371a712018-10-19 12:45:30 -07005243 idev = __in6_dev_get(dev);
5244 if (idev) {
5245 err = in6_dump_addrs(idev, skb, cb, s_ip_idx,
5246 &fillargs);
Jakub Kicinski15180392019-01-22 14:47:19 -08005247 if (err > 0)
5248 err = 0;
David Ahern6371a712018-10-19 12:45:30 -07005249 }
5250 goto put_tgt_net;
5251 }
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005252 }
5253
Eric Dumazet234b27c2009-11-12 04:11:50 +00005254 rcu_read_lock();
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005255 cb->seq = atomic_read(&tgt_net->ipv6.dev_addr_genid) ^ tgt_net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005256 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
5257 idx = 0;
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005258 head = &tgt_net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08005259 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00005260 if (idx < s_idx)
5261 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07005262 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005263 s_ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005264 idev = __in6_dev_get(dev);
5265 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005266 goto cont;
5267
David Ahernfe884c22018-10-19 12:45:28 -07005268 if (in6_dump_addrs(idev, skb, cb, s_ip_idx,
David Ahern6ba1e6e2018-10-07 20:16:26 -07005269 &fillargs) < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005270 goto done;
5271cont:
5272 idx++;
5273 }
5274 }
5275done:
5276 rcu_read_unlock();
5277 cb->args[0] = h;
5278 cb->args[1] = idx;
David Ahern6371a712018-10-19 12:45:30 -07005279put_tgt_net:
David Ahern6ba1e6e2018-10-07 20:16:26 -07005280 if (fillargs.netnsid >= 0)
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005281 put_net(tgt_net);
Eric Dumazet234b27c2009-11-12 04:11:50 +00005282
Arthur Gautier7c1e8a32018-12-31 02:10:58 +00005283 return skb->len ? : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284}
5285
5286static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
5287{
5288 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11005289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 return inet6_dump_addr(skb, cb, type);
5291}
5292
5293static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
5294{
5295 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11005296
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 return inet6_dump_addr(skb, cb, type);
5298}
5299
5300
5301static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
5302{
5303 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11005304
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 return inet6_dump_addr(skb, cb, type);
5306}
5307
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005308static int inet6_rtm_valid_getaddr_req(struct sk_buff *skb,
5309 const struct nlmsghdr *nlh,
5310 struct nlattr **tb,
5311 struct netlink_ext_ack *extack)
5312{
5313 struct ifaddrmsg *ifm;
5314 int i, err;
5315
5316 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5317 NL_SET_ERR_MSG_MOD(extack, "Invalid header for get address request");
5318 return -EINVAL;
5319 }
5320
Hangbin Liu2beb6d22019-12-11 22:20:16 +08005321 if (!netlink_strict_get_check(skb))
5322 return nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
5323 ifa_ipv6_policy, extack);
5324
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005325 ifm = nlmsg_data(nlh);
5326 if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) {
5327 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get address request");
5328 return -EINVAL;
5329 }
5330
Johannes Berg8cb08172019-04-26 14:07:28 +02005331 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX,
5332 ifa_ipv6_policy, extack);
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005333 if (err)
5334 return err;
5335
5336 for (i = 0; i <= IFA_MAX; i++) {
5337 if (!tb[i])
5338 continue;
5339
5340 switch (i) {
5341 case IFA_TARGET_NETNSID:
5342 case IFA_ADDRESS:
5343 case IFA_LOCAL:
5344 break;
5345 default:
5346 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get address request");
5347 return -EINVAL;
5348 }
5349 }
5350
5351 return 0;
5352}
5353
David Ahernc21ef3e2017-04-16 09:48:24 -07005354static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
5355 struct netlink_ext_ack *extack)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005356{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09005357 struct net *net = sock_net(in_skb->sk);
Christian Brauner203651b2018-09-04 21:53:55 +02005358 struct inet6_fill_args fillargs = {
5359 .portid = NETLINK_CB(in_skb).portid,
5360 .seq = nlh->nlmsg_seq,
5361 .event = RTM_NEWADDR,
5362 .flags = 0,
5363 .netnsid = -1,
5364 };
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005365 struct net *tgt_net = net;
Thomas Graf1b29fc22006-09-18 00:10:50 -07005366 struct ifaddrmsg *ifm;
5367 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005368 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005369 struct net_device *dev = NULL;
5370 struct inet6_ifaddr *ifa;
5371 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005372 int err;
5373
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005374 err = inet6_rtm_valid_getaddr_req(in_skb, nlh, tb, extack);
Thomas Graf1b29fc22006-09-18 00:10:50 -07005375 if (err < 0)
Florian Westphalc24675f2017-10-11 10:28:01 +02005376 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005377
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005378 if (tb[IFA_TARGET_NETNSID]) {
Christian Brauner203651b2018-09-04 21:53:55 +02005379 fillargs.netnsid = nla_get_s32(tb[IFA_TARGET_NETNSID]);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005380
5381 tgt_net = rtnl_get_net_ns_capable(NETLINK_CB(in_skb).sk,
Christian Brauner203651b2018-09-04 21:53:55 +02005382 fillargs.netnsid);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005383 if (IS_ERR(tgt_net))
5384 return PTR_ERR(tgt_net);
5385 }
5386
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005387 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Florian Westphalc24675f2017-10-11 10:28:01 +02005388 if (!addr)
5389 return -EINVAL;
Thomas Graf1b29fc22006-09-18 00:10:50 -07005390
5391 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005392 if (ifm->ifa_index)
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005393 dev = dev_get_by_index(tgt_net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005394
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005395 ifa = ipv6_get_ifaddr(tgt_net, addr, dev, 1);
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005396 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07005397 err = -EADDRNOTAVAIL;
5398 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005399 }
5400
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005401 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
5402 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07005403 err = -ENOBUFS;
5404 goto errout_ifa;
5405 }
5406
Christian Brauner203651b2018-09-04 21:53:55 +02005407 err = inet6_fill_ifaddr(skb, ifa, &fillargs);
Patrick McHardy26932562007-01-31 23:16:40 -08005408 if (err < 0) {
5409 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5410 WARN_ON(err == -EMSGSIZE);
5411 kfree_skb(skb);
5412 goto errout_ifa;
5413 }
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005414 err = rtnl_unicast(skb, tgt_net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07005415errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005416 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07005417errout:
Florian Westphalc24675f2017-10-11 10:28:01 +02005418 if (dev)
5419 dev_put(dev);
Christian Brauner203651b2018-09-04 21:53:55 +02005420 if (fillargs.netnsid >= 0)
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005421 put_net(tgt_net);
5422
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005423 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005424}
5425
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
5427{
5428 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005429 struct net *net = dev_net(ifa->idev->dev);
Christian Brauner203651b2018-09-04 21:53:55 +02005430 struct inet6_fill_args fillargs = {
5431 .portid = 0,
5432 .seq = 0,
5433 .event = event,
5434 .flags = 0,
5435 .netnsid = -1,
5436 };
Thomas Graf5d620262006-08-15 00:35:02 -07005437 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Thomas Graf0ab68032006-09-18 00:12:35 -07005439 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01005440 if (!skb)
Thomas Graf5d620262006-08-15 00:35:02 -07005441 goto errout;
5442
Christian Brauner203651b2018-09-04 21:53:55 +02005443 err = inet6_fill_ifaddr(skb, ifa, &fillargs);
Patrick McHardy26932562007-01-31 23:16:40 -08005444 if (err < 0) {
5445 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5446 WARN_ON(err == -EMSGSIZE);
5447 kfree_skb(skb);
5448 goto errout;
5449 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005450 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
5451 return;
Thomas Graf5d620262006-08-15 00:35:02 -07005452errout:
5453 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08005454 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455}
5456
Dave Jonesb6f99a22007-03-22 12:27:49 -07005457static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 __s32 *array, int bytes)
5459{
Thomas Graf04561c12006-11-14 19:53:58 -08005460 BUG_ON(bytes < (DEVCONF_MAX * 4));
5461
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 memset(array, 0, bytes);
5463 array[DEVCONF_FORWARDING] = cnf->forwarding;
5464 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
5465 array[DEVCONF_MTU6] = cnf->mtu6;
5466 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
5467 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
5468 array[DEVCONF_AUTOCONF] = cnf->autoconf;
5469 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
5470 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00005471 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
5472 jiffies_to_msecs(cnf->rtr_solicit_interval);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005473 array[DEVCONF_RTR_SOLICIT_MAX_INTERVAL] =
5474 jiffies_to_msecs(cnf->rtr_solicit_max_interval);
Thomas Graf93908d12010-11-17 01:44:24 +00005475 array[DEVCONF_RTR_SOLICIT_DELAY] =
5476 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02005478 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
5479 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
5480 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
5481 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
5483 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
5484 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
5485 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
5486 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08005488 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
Hangbin Liu8013d1d72015-07-30 14:28:42 +08005489 array[DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT] = cnf->accept_ra_min_hop_limit;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005490 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005491#ifdef CONFIG_IPV6_ROUTER_PREF
5492 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00005493 array[DEVCONF_RTR_PROBE_INTERVAL] =
5494 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08005495#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +09005496 array[DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN] = cnf->accept_ra_rt_info_min_plen;
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005497 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
5498#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005499#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005500 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005501 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07005502#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5503 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
Erik Kline7fd25612014-10-28 18:11:14 +09005504 array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic;
Neil Horman95c385b2007-04-25 17:08:10 -07005505#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005506#ifdef CONFIG_IPV6_MROUTE
5507 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
5508#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005509 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005510 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00005511 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005512 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005513 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Ben Greeard9333192014-06-25 14:44:53 -07005514 array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local;
Harout Hedeshianc2943f12015-01-20 10:06:05 -07005515 array[DEVCONF_ACCEPT_RA_MTU] = cnf->accept_ra_mtu;
Andy Gospodarek35103d12015-08-13 10:39:01 -04005516 array[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN] = cnf->ignore_routes_with_linkdown;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005517 /* we omit DEVCONF_STABLE_SECRET for now */
Erik Kline3985e8a2015-07-22 16:38:25 +09005518 array[DEVCONF_USE_OIF_ADDRS_ONLY] = cnf->use_oif_addrs_only;
Johannes Bergabbc3042016-02-04 13:31:19 +01005519 array[DEVCONF_DROP_UNICAST_IN_L2_MULTICAST] = cnf->drop_unicast_in_l2_multicast;
Johannes Berg7a02bf82016-02-04 13:31:20 +01005520 array[DEVCONF_DROP_UNSOLICITED_NA] = cnf->drop_unsolicited_na;
David Ahernf1705ec2016-02-24 09:25:37 -08005521 array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down;
David Lebrun1ababeb2016-11-08 14:57:39 +01005522 array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled;
David Lebrunbf355b82016-11-08 14:57:42 +01005523#ifdef CONFIG_IPV6_SEG6_HMAC
5524 array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac;
5525#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -08005526 array[DEVCONF_ENHANCED_DAD] = cnf->enhanced_dad;
Felix Jiad35a00b2017-01-26 16:59:17 +13005527 array[DEVCONF_ADDR_GEN_MODE] = cnf->addr_gen_mode;
David Forsterdf789fe2017-02-23 16:27:18 +00005528 array[DEVCONF_DISABLE_POLICY] = cnf->disable_policy;
Maciej Żenczykowski2210d6b2017-11-07 21:52:09 -08005529 array[DEVCONF_NDISC_TCLASS] = cnf->ndisc_tclass;
Alexander Aring8610c7c2020-03-27 18:00:20 -04005530 array[DEVCONF_RPL_SEG_ENABLED] = cnf->rpl_seg_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531}
5532
Thomas Grafb382b192010-11-16 04:33:57 +00005533static inline size_t inet6_ifla6_size(void)
5534{
5535 return nla_total_size(4) /* IFLA_INET6_FLAGS */
5536 + nla_total_size(sizeof(struct ifla_cacheinfo))
5537 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
5538 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005539 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
Sabrina Dubrocabdd72f42018-07-09 12:25:16 +02005540 + nla_total_size(sizeof(struct in6_addr)) /* IFLA_INET6_TOKEN */
5541 + nla_total_size(1) /* IFLA_INET6_ADDR_GEN_MODE */
5542 + 0;
Thomas Grafb382b192010-11-16 04:33:57 +00005543}
5544
Thomas Graf339bf982006-11-10 14:10:15 -08005545static inline size_t inet6_if_nlmsg_size(void)
5546{
5547 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
5548 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
5549 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
5550 + nla_total_size(4) /* IFLA_MTU */
5551 + nla_total_size(4) /* IFLA_LINK */
Andy Gospodarek03443382015-08-13 15:26:35 -04005552 + nla_total_size(1) /* IFLA_OPERSTATE */
Thomas Grafb382b192010-11-16 04:33:57 +00005553 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08005554}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07005555
Eric Dumazetbe281e52011-05-19 01:14:23 +00005556static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Jia Heaca05672016-09-30 11:29:03 +08005557 int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005558{
5559 int i;
Jia Heaca05672016-09-30 11:29:03 +08005560 int pad = bytes - sizeof(u64) * ICMP6_MIB_MAX;
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005561 BUG_ON(pad < 0);
5562
5563 /* Use put_unaligned() because stats may not be aligned for u64. */
Jia Heaca05672016-09-30 11:29:03 +08005564 put_unaligned(ICMP6_MIB_MAX, &stats[0]);
5565 for (i = 1; i < ICMP6_MIB_MAX; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00005566 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005567
Jia Heaca05672016-09-30 11:29:03 +08005568 memset(&stats[ICMP6_MIB_MAX], 0, pad);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005569}
5570
WANG Cong698365f2014-05-05 15:55:55 -07005571static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib,
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305572 int bytes, size_t syncpoff)
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005573{
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305574 int i, c;
5575 u64 buff[IPSTATS_MIB_MAX];
5576 int pad = bytes - sizeof(u64) * IPSTATS_MIB_MAX;
5577
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005578 BUG_ON(pad < 0);
5579
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305580 memset(buff, 0, sizeof(buff));
5581 buff[0] = IPSTATS_MIB_MAX;
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005582
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305583 for_each_possible_cpu(c) {
5584 for (i = 1; i < IPSTATS_MIB_MAX; i++)
5585 buff[i] += snmp_get_cpu_field64(mib, c, i, syncpoff);
5586 }
5587
5588 memcpy(stats, buff, IPSTATS_MIB_MAX * sizeof(u64));
5589 memset(&stats[IPSTATS_MIB_MAX], 0, pad);
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005590}
5591
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005592static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
5593 int bytes)
5594{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005595 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005596 case IFLA_INET6_STATS:
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305597 __snmp6_fill_stats64(stats, idev->stats.ipv6, bytes,
5598 offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005599 break;
5600 case IFLA_INET6_ICMP6STATS:
Jia Heaca05672016-09-30 11:29:03 +08005601 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005602 break;
5603 }
5604}
5605
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005606static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev,
5607 u32 ext_filter_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005609 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08005610 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
David S. Millerc78679e2012-04-01 20:27:33 -04005612 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
5613 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08005615 ci.tstamp = cstamp_delta(idev->tstamp);
5616 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e2013-12-07 19:26:53 +01005617 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04005618 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
5619 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005620 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
Ian Morris63159f22015-03-29 14:00:04 +01005621 if (!nla)
Thomas Graf04561c12006-11-14 19:53:58 -08005622 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005623 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005625 /* XXX - MC not implemented */
5626
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005627 if (ext_filter_mask & RTEXT_FILTER_SKIP_STATS)
5628 return 0;
5629
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005630 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
Ian Morris63159f22015-03-29 14:00:04 +01005631 if (!nla)
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005632 goto nla_put_failure;
5633 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
5634
5635 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
Ian Morris63159f22015-03-29 14:00:04 +01005636 if (!nla)
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005637 goto nla_put_failure;
5638 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005640 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
Ian Morris63159f22015-03-29 14:00:04 +01005641 if (!nla)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005642 goto nla_put_failure;
5643 read_lock_bh(&idev->lock);
5644 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
5645 read_unlock_bh(&idev->lock);
5646
Nicolas Dichtel0d7982c2019-09-30 14:02:16 +02005647 if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->cnf.addr_gen_mode))
5648 goto nla_put_failure;
5649
Thomas Grafb382b192010-11-16 04:33:57 +00005650 return 0;
5651
5652nla_put_failure:
5653 return -EMSGSIZE;
5654}
5655
Arad, Ronenb1974ed2015-10-19 09:23:28 -07005656static size_t inet6_get_link_af_size(const struct net_device *dev,
5657 u32 ext_filter_mask)
Thomas Grafb382b192010-11-16 04:33:57 +00005658{
5659 if (!__in6_dev_get(dev))
5660 return 0;
5661
5662 return inet6_ifla6_size();
5663}
5664
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005665static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev,
5666 u32 ext_filter_mask)
Thomas Grafb382b192010-11-16 04:33:57 +00005667{
5668 struct inet6_dev *idev = __in6_dev_get(dev);
5669
5670 if (!idev)
5671 return -ENODATA;
5672
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005673 if (inet6_fill_ifla6_attrs(skb, idev, ext_filter_mask) < 0)
Thomas Grafb382b192010-11-16 04:33:57 +00005674 return -EMSGSIZE;
5675
5676 return 0;
5677}
5678
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005679static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
5680{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005681 struct inet6_ifaddr *ifp;
5682 struct net_device *dev = idev->dev;
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005683 bool clear_token, update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02005684 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005685
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005686 ASSERT_RTNL();
5687
Ian Morris63159f22015-03-29 14:00:04 +01005688 if (!token)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005689 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005690 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
5691 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005692 if (!ipv6_accept_ra(idev))
5693 return -EINVAL;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005694 if (idev->cnf.rtr_solicits == 0)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005695 return -EINVAL;
5696
5697 write_lock_bh(&idev->lock);
5698
5699 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
5700 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
5701
5702 write_unlock_bh(&idev->lock);
5703
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005704 clear_token = ipv6_addr_any(token);
5705 if (clear_token)
5706 goto update_lft;
5707
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02005708 if (!idev->dead && (idev->if_flags & IF_READY) &&
5709 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
5710 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00005711 /* If we're not ready, then normal ifup will take care
5712 * of this. Otherwise, we need to request our rs here.
5713 */
5714 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
5715 update_rs = true;
5716 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005717
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005718update_lft:
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005719 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00005720
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005721 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00005722 idev->if_flags |= IF_RS_SENT;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005723 idev->rs_interval = rfc3315_s14_backoff_init(
5724 idev->cnf.rtr_solicit_interval);
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005725 idev->rs_probes = 1;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005726 addrconf_mod_rs_timer(idev, idev->rs_interval);
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005727 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005728
5729 /* Well, that's kinda nasty ... */
5730 list_for_each_entry(ifp, &idev->addr_list, if_list) {
5731 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00005732 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005733 ifp->valid_lft = 0;
5734 ifp->prefered_lft = 0;
5735 }
5736 spin_unlock(&ifp->lock);
5737 }
5738
5739 write_unlock_bh(&idev->lock);
Lubomir Rintelb2ed64a2014-10-27 17:39:16 +01005740 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005741 addrconf_verify_rtnl();
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005742 return 0;
5743}
5744
Daniel Borkmann11b1f822015-02-05 14:39:11 +01005745static const struct nla_policy inet6_af_policy[IFLA_INET6_MAX + 1] = {
5746 [IFLA_INET6_ADDR_GEN_MODE] = { .type = NLA_U8 },
5747 [IFLA_INET6_TOKEN] = { .len = sizeof(struct in6_addr) },
5748};
5749
Felix Jiad35a00b2017-01-26 16:59:17 +13005750static int check_addr_gen_mode(int mode)
5751{
5752 if (mode != IN6_ADDR_GEN_MODE_EUI64 &&
5753 mode != IN6_ADDR_GEN_MODE_NONE &&
5754 mode != IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5755 mode != IN6_ADDR_GEN_MODE_RANDOM)
5756 return -EINVAL;
5757 return 1;
5758}
5759
5760static int check_stable_privacy(struct inet6_dev *idev, struct net *net,
5761 int mode)
5762{
5763 if (mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5764 !idev->cnf.stable_secret.initialized &&
5765 !net->ipv6.devconf_dflt->stable_secret.initialized)
5766 return -EINVAL;
5767 return 1;
5768}
5769
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005770static int inet6_validate_link_af(const struct net_device *dev,
5771 const struct nlattr *nla)
5772{
5773 struct nlattr *tb[IFLA_INET6_MAX + 1];
5774 struct inet6_dev *idev = NULL;
5775 int err;
5776
5777 if (dev) {
5778 idev = __in6_dev_get(dev);
5779 if (!idev)
5780 return -EAFNOSUPPORT;
5781 }
5782
5783 err = nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla,
5784 inet6_af_policy, NULL);
5785 if (err)
5786 return err;
5787
5788 if (!tb[IFLA_INET6_TOKEN] && !tb[IFLA_INET6_ADDR_GEN_MODE])
5789 return -EINVAL;
5790
5791 if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
5792 u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
5793
5794 if (check_addr_gen_mode(mode) < 0)
5795 return -EINVAL;
5796 if (dev && check_stable_privacy(idev, dev_net(dev), mode) < 0)
5797 return -EINVAL;
5798 }
5799
5800 return 0;
5801}
5802
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005803static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
5804{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005805 struct inet6_dev *idev = __in6_dev_get(dev);
5806 struct nlattr *tb[IFLA_INET6_MAX + 1];
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005807 int err;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005808
Eric Dumazetdb3fa272020-02-07 07:16:37 -08005809 if (!idev)
5810 return -EAFNOSUPPORT;
5811
Johannes Berg8cb08172019-04-26 14:07:28 +02005812 if (nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005813 BUG();
5814
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005815 if (tb[IFLA_INET6_TOKEN]) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005816 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005817 if (err)
5818 return err;
5819 }
5820
5821 if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
5822 u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
5823
Felix Jiad35a00b2017-01-26 16:59:17 +13005824 idev->cnf.addr_gen_mode = mode;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005825 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005826
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005827 return 0;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005828}
5829
Thomas Grafb382b192010-11-16 04:33:57 +00005830static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005831 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00005832{
5833 struct net_device *dev = idev->dev;
5834 struct ifinfomsg *hdr;
5835 struct nlmsghdr *nlh;
5836 void *protoinfo;
5837
Eric W. Biederman15e47302012-09-07 20:12:54 +00005838 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Ian Morris63159f22015-03-29 14:00:04 +01005839 if (!nlh)
Thomas Grafb382b192010-11-16 04:33:57 +00005840 return -EMSGSIZE;
5841
5842 hdr = nlmsg_data(nlh);
5843 hdr->ifi_family = AF_INET6;
5844 hdr->__ifi_pad = 0;
5845 hdr->ifi_type = dev->type;
5846 hdr->ifi_index = dev->ifindex;
5847 hdr->ifi_flags = dev_get_flags(dev);
5848 hdr->ifi_change = 0;
5849
David S. Millerc78679e2012-04-01 20:27:33 -04005850 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
5851 (dev->addr_len &&
5852 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
5853 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
Nicolas Dichtela54acb32015-04-02 17:07:00 +02005854 (dev->ifindex != dev_get_iflink(dev) &&
Andy Gospodarek03443382015-08-13 15:26:35 -04005855 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) ||
5856 nla_put_u8(skb, IFLA_OPERSTATE,
5857 netif_running(dev) ? dev->operstate : IF_OPER_DOWN))
David S. Millerc78679e2012-04-01 20:27:33 -04005858 goto nla_put_failure;
Michal Kubecekae0be8d2019-04-26 11:13:06 +02005859 protoinfo = nla_nest_start_noflag(skb, IFLA_PROTINFO);
Ian Morris63159f22015-03-29 14:00:04 +01005860 if (!protoinfo)
Thomas Grafb382b192010-11-16 04:33:57 +00005861 goto nla_put_failure;
5862
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005863 if (inet6_fill_ifla6_attrs(skb, idev, 0) < 0)
Thomas Grafb382b192010-11-16 04:33:57 +00005864 goto nla_put_failure;
5865
Thomas Graf04561c12006-11-14 19:53:58 -08005866 nla_nest_end(skb, protoinfo);
Johannes Berg053c0952015-01-16 22:09:00 +01005867 nlmsg_end(skb, nlh);
5868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
Thomas Graf04561c12006-11-14 19:53:58 -08005870nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08005871 nlmsg_cancel(skb, nlh);
5872 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873}
5874
David Ahern786e0002018-10-07 20:16:33 -07005875static int inet6_valid_dump_ifinfo(const struct nlmsghdr *nlh,
5876 struct netlink_ext_ack *extack)
5877{
5878 struct ifinfomsg *ifm;
5879
5880 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5881 NL_SET_ERR_MSG_MOD(extack, "Invalid header for link dump request");
5882 return -EINVAL;
5883 }
5884
5885 if (nlmsg_attrlen(nlh, sizeof(*ifm))) {
5886 NL_SET_ERR_MSG_MOD(extack, "Invalid data after header");
5887 return -EINVAL;
5888 }
5889
5890 ifm = nlmsg_data(nlh);
5891 if (ifm->__ifi_pad || ifm->ifi_type || ifm->ifi_flags ||
5892 ifm->ifi_change || ifm->ifi_index) {
5893 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for dump request");
5894 return -EINVAL;
5895 }
5896
5897 return 0;
5898}
5899
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
5901{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09005902 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00005903 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08005904 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 struct net_device *dev;
5906 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00005907 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908
David Ahern786e0002018-10-07 20:16:33 -07005909 /* only requests using strict checking can pass data to
5910 * influence the dump
5911 */
5912 if (cb->strict_check) {
5913 int err = inet6_valid_dump_ifinfo(cb->nlh, cb->extack);
5914
5915 if (err < 0)
5916 return err;
5917 }
5918
Eric Dumazet84d26972009-11-09 12:11:28 +00005919 s_h = cb->args[0];
5920 s_idx = cb->args[1];
5921
5922 rcu_read_lock();
5923 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
5924 idx = 0;
5925 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08005926 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00005927 if (idx < s_idx)
5928 goto cont;
5929 idev = __in6_dev_get(dev);
5930 if (!idev)
5931 goto cont;
5932 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005933 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00005934 cb->nlh->nlmsg_seq,
Johannes Berg053c0952015-01-16 22:09:00 +01005935 RTM_NEWLINK, NLM_F_MULTI) < 0)
Eric Dumazet84d26972009-11-09 12:11:28 +00005936 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07005937cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00005938 idx++;
5939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 }
Eric Dumazet84d26972009-11-09 12:11:28 +00005941out:
5942 rcu_read_unlock();
5943 cb->args[1] = idx;
5944 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
5946 return skb->len;
5947}
5948
5949void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
5950{
5951 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005952 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07005953 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005954
Thomas Graf339bf982006-11-10 14:10:15 -08005955 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01005956 if (!skb)
Thomas Graf8d7a76c2006-08-15 00:35:47 -07005957 goto errout;
5958
5959 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08005960 if (err < 0) {
5961 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
5962 WARN_ON(err == -EMSGSIZE);
5963 kfree_skb(skb);
5964 goto errout;
5965 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00005966 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005967 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07005968errout:
5969 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00005970 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971}
5972
Thomas Graf339bf982006-11-10 14:10:15 -08005973static inline size_t inet6_prefix_nlmsg_size(void)
5974{
5975 return NLMSG_ALIGN(sizeof(struct prefixmsg))
5976 + nla_total_size(sizeof(struct in6_addr))
5977 + nla_total_size(sizeof(struct prefix_cacheinfo));
5978}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07005979
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005981 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08005982 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983{
Thomas Graf6051e2f2006-11-14 19:54:19 -08005984 struct prefixmsg *pmsg;
5985 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986 struct prefix_cacheinfo ci;
5987
Eric W. Biederman15e47302012-09-07 20:12:54 +00005988 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Ian Morris63159f22015-03-29 14:00:04 +01005989 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005990 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08005991
5992 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07005994 pmsg->prefix_pad1 = 0;
5995 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 pmsg->prefix_ifindex = idev->dev->ifindex;
5997 pmsg->prefix_len = pinfo->prefix_len;
5998 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07005999 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 pmsg->prefix_flags = 0;
6001 if (pinfo->onlink)
6002 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
6003 if (pinfo->autoconf)
6004 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
6005
David S. Millerc78679e2012-04-01 20:27:33 -04006006 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
6007 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 ci.preferred_time = ntohl(pinfo->prefered);
6009 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04006010 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
6011 goto nla_put_failure;
Johannes Berg053c0952015-01-16 22:09:00 +01006012 nlmsg_end(skb, nlh);
6013 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
Thomas Graf6051e2f2006-11-14 19:54:19 -08006015nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08006016 nlmsg_cancel(skb, nlh);
6017 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018}
6019
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006020static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 struct prefix_info *pinfo)
6022{
6023 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006024 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07006025 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Thomas Graf339bf982006-11-10 14:10:15 -08006027 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01006028 if (!skb)
Thomas Graf8c384bfa2006-08-15 00:36:07 -07006029 goto errout;
6030
6031 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08006032 if (err < 0) {
6033 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
6034 WARN_ON(err == -EMSGSIZE);
6035 kfree_skb(skb);
6036 goto errout;
6037 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08006038 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
6039 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07006040errout:
6041 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08006042 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043}
6044
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
6046{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00006047 struct net *net = dev_net(ifp->idev->dev);
6048
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006049 if (event)
6050 ASSERT_RTNL();
6051
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
6053
6054 switch (event) {
6055 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07006056 /*
David Ahern2d819d252019-10-04 08:03:09 -07006057 * If the address was optimistic we inserted the route at the
6058 * start of our DAD process, so we don't need to do it again.
6059 * If the device was taken down in the middle of the DAD
6060 * cycle there is a race where we could get here without a
6061 * host route, so nothing to insert. That will be fixed when
6062 * the device is brought up.
Neil Horman95c385b2007-04-25 17:08:10 -07006063 */
David Ahern2d819d252019-10-04 08:03:09 -07006064 if (ifp->rt && !rcu_access_pointer(ifp->rt->fib6_node)) {
David Ahernafb1d4b52018-04-17 17:33:11 -07006065 ip6_ins_rt(net, ifp->rt);
David Ahern2d819d252019-10-04 08:03:09 -07006066 } else if (!ifp->rt && (ifp->idev->dev->flags & IFF_UP)) {
6067 pr_warn("BUG: Address %pI6c on device %s is missing its host route.\n",
6068 &ifp->addr, ifp->idev->dev->name);
6069 }
6070
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 if (ifp->idev->cnf.forwarding)
6072 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00006073 if (!ipv6_addr_any(&ifp->peer_addr))
Hangbin Liu07758eb2020-02-29 17:27:13 +08006074 addrconf_prefix_route(&ifp->peer_addr, 128,
6075 ifp->rt_priority, ifp->idev->dev,
6076 0, 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 break;
6078 case RTM_DELADDR:
6079 if (ifp->idev->cnf.forwarding)
6080 addrconf_leave_anycast(ifp);
6081 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00006082 if (!ipv6_addr_any(&ifp->peer_addr)) {
David Ahern8d1c8022018-04-17 17:33:26 -07006083 struct fib6_info *rt;
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00006084
Nicolas Dichtele7478df2014-09-03 23:59:22 +02006085 rt = addrconf_get_prefix_route(&ifp->peer_addr, 128,
David Ahern2b2450c2019-03-27 20:53:52 -07006086 ifp->idev->dev, 0, 0,
6087 false);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07006088 if (rt)
David Ahernafb1d4b52018-04-17 17:33:11 -07006089 ip6_del_rt(net, rt);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00006090 }
David Ahern38bd10c2016-04-21 20:56:12 -07006091 if (ifp->rt) {
David Ahern93531c62018-04-17 17:33:25 -07006092 ip6_del_rt(net, ifp->rt);
6093 ifp->rt = NULL;
David Ahern38bd10c2016-04-21 20:56:12 -07006094 }
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02006095 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096 break;
6097 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00006098 atomic_inc(&net->ipv6.dev_addr_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099}
6100
6101static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
6102{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07006103 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 if (likely(ifp->idev->dead == 0))
6105 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07006106 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107}
6108
6109#ifdef CONFIG_SYSCTL
6110
6111static
Joe Perchesfe2c6332013-06-11 23:04:25 -07006112int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113 void __user *buffer, size_t *lenp, loff_t *ppos)
6114{
6115 int *valp = ctl->data;
6116 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00006117 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07006118 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 int ret;
6120
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006121 /*
6122 * ctl->data points to idev->cnf.forwarding, we should
6123 * not modify it until we get the rtnl lock.
6124 */
6125 lctl = *ctl;
6126 lctl.data = &val;
6127
6128 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08006130 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00006131 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00006132 if (ret)
6133 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006134 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135}
6136
Marcelo Leitner77751422015-02-23 11:17:13 -03006137static
6138int addrconf_sysctl_mtu(struct ctl_table *ctl, int write,
6139 void __user *buffer, size_t *lenp, loff_t *ppos)
6140{
6141 struct inet6_dev *idev = ctl->extra1;
6142 int min_mtu = IPV6_MIN_MTU;
6143 struct ctl_table lctl;
6144
6145 lctl = *ctl;
6146 lctl.extra1 = &min_mtu;
6147 lctl.extra2 = idev ? &idev->dev->mtu : NULL;
6148
6149 return proc_dointvec_minmax(&lctl, write, buffer, lenp, ppos);
6150}
6151
Brian Haley56d417b2009-06-01 03:07:33 -07006152static void dev_disable_change(struct inet6_dev *idev)
6153{
Cong Wang75538c22013-05-29 11:30:50 +08006154 struct netdev_notifier_info info;
6155
Brian Haley56d417b2009-06-01 03:07:33 -07006156 if (!idev || !idev->dev)
6157 return;
6158
Cong Wang75538c22013-05-29 11:30:50 +08006159 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07006160 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08006161 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07006162 else
Cong Wang75538c22013-05-29 11:30:50 +08006163 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07006164}
6165
6166static void addrconf_disable_change(struct net *net, __s32 newf)
6167{
6168 struct net_device *dev;
6169 struct inet6_dev *idev;
6170
Kefeng Wang03e4def2017-01-19 16:26:21 +08006171 for_each_netdev(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07006172 idev = __in6_dev_get(dev);
6173 if (idev) {
6174 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
6175 idev->cnf.disable_ipv6 = newf;
6176 if (changed)
6177 dev_disable_change(idev);
6178 }
Brian Haley56d417b2009-06-01 03:07:33 -07006179 }
Brian Haley56d417b2009-06-01 03:07:33 -07006180}
6181
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006182static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07006183{
6184 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006185 int old;
6186
6187 if (!rtnl_trylock())
6188 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07006189
6190 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006191 old = *p;
6192 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07006193
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006194 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
6195 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07006196 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00006197 }
Brian Haley56d417b2009-06-01 03:07:33 -07006198
6199 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07006200 net->ipv6.devconf_dflt->disable_ipv6 = newf;
6201 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006202 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07006203 dev_disable_change((struct inet6_dev *)table->extra1);
6204
6205 rtnl_unlock();
6206 return 0;
6207}
6208
6209static
Joe Perchesfe2c6332013-06-11 23:04:25 -07006210int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07006211 void __user *buffer, size_t *lenp, loff_t *ppos)
6212{
6213 int *valp = ctl->data;
6214 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00006215 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07006216 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07006217 int ret;
6218
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006219 /*
6220 * ctl->data points to idev->cnf.disable_ipv6, we should
6221 * not modify it until we get the rtnl lock.
6222 */
6223 lctl = *ctl;
6224 lctl.data = &val;
6225
6226 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07006227
6228 if (write)
6229 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00006230 if (ret)
6231 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07006232 return ret;
6233}
6234
stephen hemmingerc92d5492013-12-17 22:37:14 -08006235static
6236int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
6237 void __user *buffer, size_t *lenp, loff_t *ppos)
6238{
6239 int *valp = ctl->data;
6240 int ret;
6241 int old, new;
6242
6243 old = *valp;
6244 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
6245 new = *valp;
6246
6247 if (write && old != new) {
6248 struct net *net = ctl->extra2;
6249
6250 if (!rtnl_trylock())
6251 return restart_syscall();
6252
6253 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
David Ahern85b3daa2017-03-28 14:28:04 -07006254 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6255 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08006256 NETCONFA_IFINDEX_DEFAULT,
6257 net->ipv6.devconf_dflt);
6258 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
David Ahern85b3daa2017-03-28 14:28:04 -07006259 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6260 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08006261 NETCONFA_IFINDEX_ALL,
6262 net->ipv6.devconf_all);
6263 else {
6264 struct inet6_dev *idev = ctl->extra1;
6265
David Ahern85b3daa2017-03-28 14:28:04 -07006266 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6267 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08006268 idev->dev->ifindex,
6269 &idev->cnf);
6270 }
6271 rtnl_unlock();
6272 }
6273
6274 return ret;
6275}
6276
Felix Jiad35a00b2017-01-26 16:59:17 +13006277static int addrconf_sysctl_addr_gen_mode(struct ctl_table *ctl, int write,
6278 void __user *buffer, size_t *lenp,
6279 loff_t *ppos)
6280{
6281 int ret = 0;
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006282 u32 new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13006283 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
6284 struct net *net = (struct net *)ctl->extra2;
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006285 struct ctl_table tmp = {
6286 .data = &new_val,
6287 .maxlen = sizeof(new_val),
6288 .mode = ctl->mode,
6289 };
Felix Jiad35a00b2017-01-26 16:59:17 +13006290
Felix Jia8c171d62017-02-27 12:41:23 +13006291 if (!rtnl_trylock())
6292 return restart_syscall();
6293
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006294 new_val = *((u32 *)ctl->data);
6295
6296 ret = proc_douintvec(&tmp, write, buffer, lenp, ppos);
6297 if (ret != 0)
6298 goto out;
Felix Jiad35a00b2017-01-26 16:59:17 +13006299
6300 if (write) {
Felix Jia8c171d62017-02-27 12:41:23 +13006301 if (check_addr_gen_mode(new_val) < 0) {
6302 ret = -EINVAL;
6303 goto out;
6304 }
Felix Jiad35a00b2017-01-26 16:59:17 +13006305
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006306 if (idev) {
Felix Jia8c171d62017-02-27 12:41:23 +13006307 if (check_stable_privacy(idev, net, new_val) < 0) {
6308 ret = -EINVAL;
6309 goto out;
6310 }
Felix Jiad35a00b2017-01-26 16:59:17 +13006311
6312 if (idev->cnf.addr_gen_mode != new_val) {
6313 idev->cnf.addr_gen_mode = new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13006314 addrconf_dev_config(idev->dev);
Felix Jiad35a00b2017-01-26 16:59:17 +13006315 }
Sabrina Dubrocaf24c5982018-07-09 12:25:17 +02006316 } else if (&net->ipv6.devconf_all->addr_gen_mode == ctl->data) {
6317 struct net_device *dev;
6318
6319 net->ipv6.devconf_dflt->addr_gen_mode = new_val;
6320 for_each_netdev(net, dev) {
6321 idev = __in6_dev_get(dev);
6322 if (idev &&
6323 idev->cnf.addr_gen_mode != new_val) {
6324 idev->cnf.addr_gen_mode = new_val;
6325 addrconf_dev_config(idev->dev);
6326 }
6327 }
Felix Jiad35a00b2017-01-26 16:59:17 +13006328 }
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006329
6330 *((u32 *)ctl->data) = new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13006331 }
6332
Felix Jia8c171d62017-02-27 12:41:23 +13006333out:
6334 rtnl_unlock();
6335
Felix Jiad35a00b2017-01-26 16:59:17 +13006336 return ret;
6337}
6338
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006339static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write,
6340 void __user *buffer, size_t *lenp,
6341 loff_t *ppos)
6342{
6343 int err;
6344 struct in6_addr addr;
6345 char str[IPV6_MAX_STRLEN];
6346 struct ctl_table lctl = *ctl;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006347 struct net *net = ctl->extra2;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006348 struct ipv6_stable_secret *secret = ctl->data;
6349
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006350 if (&net->ipv6.devconf_all->stable_secret == ctl->data)
6351 return -EIO;
6352
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006353 lctl.maxlen = IPV6_MAX_STRLEN;
6354 lctl.data = str;
6355
6356 if (!rtnl_trylock())
6357 return restart_syscall();
6358
6359 if (!write && !secret->initialized) {
6360 err = -EIO;
6361 goto out;
6362 }
6363
WANG Cong5449a5c2015-12-21 10:55:45 -08006364 err = snprintf(str, sizeof(str), "%pI6", &secret->secret);
6365 if (err >= sizeof(str)) {
6366 err = -EIO;
6367 goto out;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006368 }
6369
6370 err = proc_dostring(&lctl, write, buffer, lenp, ppos);
6371 if (err || !write)
6372 goto out;
6373
6374 if (in6_pton(str, -1, addr.in6_u.u6_addr8, -1, NULL) != 1) {
6375 err = -EIO;
6376 goto out;
6377 }
6378
6379 secret->initialized = true;
6380 secret->secret = addr;
6381
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006382 if (&net->ipv6.devconf_dflt->stable_secret == ctl->data) {
6383 struct net_device *dev;
6384
6385 for_each_netdev(net, dev) {
6386 struct inet6_dev *idev = __in6_dev_get(dev);
6387
6388 if (idev) {
Felix Jiad35a00b2017-01-26 16:59:17 +13006389 idev->cnf.addr_gen_mode =
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006390 IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
6391 }
6392 }
6393 } else {
6394 struct inet6_dev *idev = ctl->extra1;
6395
Felix Jiad35a00b2017-01-26 16:59:17 +13006396 idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006397 }
6398
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006399out:
6400 rtnl_unlock();
6401
6402 return err;
6403}
stephen hemmingerc92d5492013-12-17 22:37:14 -08006404
Andy Gospodarek35103d12015-08-13 10:39:01 -04006405static
6406int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl,
6407 int write,
6408 void __user *buffer,
6409 size_t *lenp,
6410 loff_t *ppos)
6411{
6412 int *valp = ctl->data;
6413 int val = *valp;
6414 loff_t pos = *ppos;
6415 struct ctl_table lctl;
6416 int ret;
6417
6418 /* ctl->data points to idev->cnf.ignore_routes_when_linkdown
6419 * we should not modify it until we get the rtnl lock.
6420 */
6421 lctl = *ctl;
6422 lctl.data = &val;
6423
6424 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6425
6426 if (write)
6427 ret = addrconf_fixup_linkdown(ctl, valp, val);
6428 if (ret)
6429 *ppos = pos;
6430 return ret;
6431}
6432
David Forsterdf789fe2017-02-23 16:27:18 +00006433static
6434void addrconf_set_nopolicy(struct rt6_info *rt, int action)
6435{
6436 if (rt) {
6437 if (action)
6438 rt->dst.flags |= DST_NOPOLICY;
6439 else
6440 rt->dst.flags &= ~DST_NOPOLICY;
6441 }
6442}
6443
6444static
6445void addrconf_disable_policy_idev(struct inet6_dev *idev, int val)
6446{
6447 struct inet6_ifaddr *ifa;
6448
6449 read_lock_bh(&idev->lock);
6450 list_for_each_entry(ifa, &idev->addr_list, if_list) {
6451 spin_lock(&ifa->lock);
6452 if (ifa->rt) {
David Ahernf88d8ea2019-06-03 20:19:52 -07006453 /* host routes only use builtin fib6_nh */
David Ahern1cf844c2019-05-22 20:27:59 -07006454 struct fib6_nh *nh = ifa->rt->fib6_nh;
David Forsterdf789fe2017-02-23 16:27:18 +00006455 int cpu;
6456
Wei Wang66f5d6c2017-10-06 12:06:10 -07006457 rcu_read_lock();
David Ahern3b6761d2018-04-17 17:33:20 -07006458 ifa->rt->dst_nopolicy = val ? true : false;
David Ahernf40b6ae2019-05-22 20:27:55 -07006459 if (nh->rt6i_pcpu) {
David Forsterdf789fe2017-02-23 16:27:18 +00006460 for_each_possible_cpu(cpu) {
6461 struct rt6_info **rtp;
6462
David Ahernf40b6ae2019-05-22 20:27:55 -07006463 rtp = per_cpu_ptr(nh->rt6i_pcpu, cpu);
David Forsterdf789fe2017-02-23 16:27:18 +00006464 addrconf_set_nopolicy(*rtp, val);
6465 }
6466 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07006467 rcu_read_unlock();
David Forsterdf789fe2017-02-23 16:27:18 +00006468 }
6469 spin_unlock(&ifa->lock);
6470 }
6471 read_unlock_bh(&idev->lock);
6472}
6473
6474static
6475int addrconf_disable_policy(struct ctl_table *ctl, int *valp, int val)
6476{
6477 struct inet6_dev *idev;
6478 struct net *net;
6479
6480 if (!rtnl_trylock())
6481 return restart_syscall();
6482
6483 *valp = val;
6484
6485 net = (struct net *)ctl->extra2;
6486 if (valp == &net->ipv6.devconf_dflt->disable_policy) {
6487 rtnl_unlock();
6488 return 0;
6489 }
6490
6491 if (valp == &net->ipv6.devconf_all->disable_policy) {
6492 struct net_device *dev;
6493
6494 for_each_netdev(net, dev) {
6495 idev = __in6_dev_get(dev);
6496 if (idev)
6497 addrconf_disable_policy_idev(idev, val);
6498 }
6499 } else {
6500 idev = (struct inet6_dev *)ctl->extra1;
6501 addrconf_disable_policy_idev(idev, val);
6502 }
6503
6504 rtnl_unlock();
6505 return 0;
6506}
6507
6508static
6509int addrconf_sysctl_disable_policy(struct ctl_table *ctl, int write,
6510 void __user *buffer, size_t *lenp,
6511 loff_t *ppos)
6512{
6513 int *valp = ctl->data;
6514 int val = *valp;
6515 loff_t pos = *ppos;
6516 struct ctl_table lctl;
6517 int ret;
6518
6519 lctl = *ctl;
6520 lctl.data = &val;
6521 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6522
6523 if (write && (*valp != val))
6524 ret = addrconf_disable_policy(ctl, valp, val);
6525
6526 if (ret)
6527 *ppos = pos;
6528
6529 return ret;
6530}
6531
Maciej Żenczykowskicb4a4c62016-10-07 01:00:49 -07006532static int minus_one = -1;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006533static const int two_five_five = 255;
6534
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006535static const struct ctl_table addrconf_sysctl[] = {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006536 {
6537 .procname = "forwarding",
6538 .data = &ipv6_devconf.forwarding,
6539 .maxlen = sizeof(int),
6540 .mode = 0644,
6541 .proc_handler = addrconf_sysctl_forward,
6542 },
6543 {
6544 .procname = "hop_limit",
6545 .data = &ipv6_devconf.hop_limit,
6546 .maxlen = sizeof(int),
6547 .mode = 0644,
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006548 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07006549 .extra1 = (void *)SYSCTL_ONE,
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006550 .extra2 = (void *)&two_five_five,
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006551 },
6552 {
6553 .procname = "mtu",
6554 .data = &ipv6_devconf.mtu6,
6555 .maxlen = sizeof(int),
6556 .mode = 0644,
6557 .proc_handler = addrconf_sysctl_mtu,
6558 },
6559 {
6560 .procname = "accept_ra",
6561 .data = &ipv6_devconf.accept_ra,
6562 .maxlen = sizeof(int),
6563 .mode = 0644,
6564 .proc_handler = proc_dointvec,
6565 },
6566 {
6567 .procname = "accept_redirects",
6568 .data = &ipv6_devconf.accept_redirects,
6569 .maxlen = sizeof(int),
6570 .mode = 0644,
6571 .proc_handler = proc_dointvec,
6572 },
6573 {
6574 .procname = "autoconf",
6575 .data = &ipv6_devconf.autoconf,
6576 .maxlen = sizeof(int),
6577 .mode = 0644,
6578 .proc_handler = proc_dointvec,
6579 },
6580 {
6581 .procname = "dad_transmits",
6582 .data = &ipv6_devconf.dad_transmits,
6583 .maxlen = sizeof(int),
6584 .mode = 0644,
6585 .proc_handler = proc_dointvec,
6586 },
6587 {
6588 .procname = "router_solicitations",
6589 .data = &ipv6_devconf.rtr_solicits,
6590 .maxlen = sizeof(int),
6591 .mode = 0644,
Maciej Żenczykowskicb4a4c62016-10-07 01:00:49 -07006592 .proc_handler = proc_dointvec_minmax,
6593 .extra1 = &minus_one,
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006594 },
6595 {
6596 .procname = "router_solicitation_interval",
6597 .data = &ipv6_devconf.rtr_solicit_interval,
6598 .maxlen = sizeof(int),
6599 .mode = 0644,
6600 .proc_handler = proc_dointvec_jiffies,
6601 },
6602 {
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07006603 .procname = "router_solicitation_max_interval",
6604 .data = &ipv6_devconf.rtr_solicit_max_interval,
6605 .maxlen = sizeof(int),
6606 .mode = 0644,
6607 .proc_handler = proc_dointvec_jiffies,
6608 },
6609 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006610 .procname = "router_solicitation_delay",
6611 .data = &ipv6_devconf.rtr_solicit_delay,
6612 .maxlen = sizeof(int),
6613 .mode = 0644,
6614 .proc_handler = proc_dointvec_jiffies,
6615 },
6616 {
6617 .procname = "force_mld_version",
6618 .data = &ipv6_devconf.force_mld_version,
6619 .maxlen = sizeof(int),
6620 .mode = 0644,
6621 .proc_handler = proc_dointvec,
6622 },
6623 {
6624 .procname = "mldv1_unsolicited_report_interval",
6625 .data =
6626 &ipv6_devconf.mldv1_unsolicited_report_interval,
6627 .maxlen = sizeof(int),
6628 .mode = 0644,
6629 .proc_handler = proc_dointvec_ms_jiffies,
6630 },
6631 {
6632 .procname = "mldv2_unsolicited_report_interval",
6633 .data =
6634 &ipv6_devconf.mldv2_unsolicited_report_interval,
6635 .maxlen = sizeof(int),
6636 .mode = 0644,
6637 .proc_handler = proc_dointvec_ms_jiffies,
6638 },
6639 {
6640 .procname = "use_tempaddr",
6641 .data = &ipv6_devconf.use_tempaddr,
6642 .maxlen = sizeof(int),
6643 .mode = 0644,
6644 .proc_handler = proc_dointvec,
6645 },
6646 {
6647 .procname = "temp_valid_lft",
6648 .data = &ipv6_devconf.temp_valid_lft,
6649 .maxlen = sizeof(int),
6650 .mode = 0644,
6651 .proc_handler = proc_dointvec,
6652 },
6653 {
6654 .procname = "temp_prefered_lft",
6655 .data = &ipv6_devconf.temp_prefered_lft,
6656 .maxlen = sizeof(int),
6657 .mode = 0644,
6658 .proc_handler = proc_dointvec,
6659 },
6660 {
6661 .procname = "regen_max_retry",
6662 .data = &ipv6_devconf.regen_max_retry,
6663 .maxlen = sizeof(int),
6664 .mode = 0644,
6665 .proc_handler = proc_dointvec,
6666 },
6667 {
6668 .procname = "max_desync_factor",
6669 .data = &ipv6_devconf.max_desync_factor,
6670 .maxlen = sizeof(int),
6671 .mode = 0644,
6672 .proc_handler = proc_dointvec,
6673 },
6674 {
6675 .procname = "max_addresses",
6676 .data = &ipv6_devconf.max_addresses,
6677 .maxlen = sizeof(int),
6678 .mode = 0644,
6679 .proc_handler = proc_dointvec,
6680 },
6681 {
6682 .procname = "accept_ra_defrtr",
6683 .data = &ipv6_devconf.accept_ra_defrtr,
6684 .maxlen = sizeof(int),
6685 .mode = 0644,
6686 .proc_handler = proc_dointvec,
6687 },
6688 {
6689 .procname = "accept_ra_min_hop_limit",
6690 .data = &ipv6_devconf.accept_ra_min_hop_limit,
6691 .maxlen = sizeof(int),
6692 .mode = 0644,
6693 .proc_handler = proc_dointvec,
6694 },
6695 {
6696 .procname = "accept_ra_pinfo",
6697 .data = &ipv6_devconf.accept_ra_pinfo,
6698 .maxlen = sizeof(int),
6699 .mode = 0644,
6700 .proc_handler = proc_dointvec,
6701 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08006702#ifdef CONFIG_IPV6_ROUTER_PREF
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006703 {
6704 .procname = "accept_ra_rtr_pref",
6705 .data = &ipv6_devconf.accept_ra_rtr_pref,
6706 .maxlen = sizeof(int),
6707 .mode = 0644,
6708 .proc_handler = proc_dointvec,
6709 },
6710 {
6711 .procname = "router_probe_interval",
6712 .data = &ipv6_devconf.rtr_probe_interval,
6713 .maxlen = sizeof(int),
6714 .mode = 0644,
6715 .proc_handler = proc_dointvec_jiffies,
6716 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08006717#ifdef CONFIG_IPV6_ROUTE_INFO
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006718 {
Joel Scherpelzbbea1242017-03-22 18:19:04 +09006719 .procname = "accept_ra_rt_info_min_plen",
6720 .data = &ipv6_devconf.accept_ra_rt_info_min_plen,
6721 .maxlen = sizeof(int),
6722 .mode = 0644,
6723 .proc_handler = proc_dointvec,
6724 },
6725 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006726 .procname = "accept_ra_rt_info_max_plen",
6727 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
6728 .maxlen = sizeof(int),
6729 .mode = 0644,
6730 .proc_handler = proc_dointvec,
6731 },
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08006732#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08006733#endif
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006734 {
6735 .procname = "proxy_ndp",
6736 .data = &ipv6_devconf.proxy_ndp,
6737 .maxlen = sizeof(int),
6738 .mode = 0644,
6739 .proc_handler = addrconf_sysctl_proxy_ndp,
6740 },
6741 {
6742 .procname = "accept_source_route",
6743 .data = &ipv6_devconf.accept_source_route,
6744 .maxlen = sizeof(int),
6745 .mode = 0644,
6746 .proc_handler = proc_dointvec,
6747 },
Neil Horman95c385b2007-04-25 17:08:10 -07006748#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006749 {
6750 .procname = "optimistic_dad",
6751 .data = &ipv6_devconf.optimistic_dad,
6752 .maxlen = sizeof(int),
6753 .mode = 0644,
6754 .proc_handler = proc_dointvec,
6755 },
6756 {
6757 .procname = "use_optimistic",
6758 .data = &ipv6_devconf.use_optimistic,
6759 .maxlen = sizeof(int),
6760 .mode = 0644,
6761 .proc_handler = proc_dointvec,
6762 },
Neil Horman95c385b2007-04-25 17:08:10 -07006763#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09006764#ifdef CONFIG_IPV6_MROUTE
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006765 {
6766 .procname = "mc_forwarding",
6767 .data = &ipv6_devconf.mc_forwarding,
6768 .maxlen = sizeof(int),
6769 .mode = 0444,
6770 .proc_handler = proc_dointvec,
6771 },
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09006772#endif
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006773 {
6774 .procname = "disable_ipv6",
6775 .data = &ipv6_devconf.disable_ipv6,
6776 .maxlen = sizeof(int),
6777 .mode = 0644,
6778 .proc_handler = addrconf_sysctl_disable,
6779 },
6780 {
6781 .procname = "accept_dad",
6782 .data = &ipv6_devconf.accept_dad,
6783 .maxlen = sizeof(int),
6784 .mode = 0644,
6785 .proc_handler = proc_dointvec,
6786 },
6787 {
6788 .procname = "force_tllao",
6789 .data = &ipv6_devconf.force_tllao,
6790 .maxlen = sizeof(int),
6791 .mode = 0644,
6792 .proc_handler = proc_dointvec
6793 },
6794 {
6795 .procname = "ndisc_notify",
6796 .data = &ipv6_devconf.ndisc_notify,
6797 .maxlen = sizeof(int),
6798 .mode = 0644,
6799 .proc_handler = proc_dointvec
6800 },
6801 {
6802 .procname = "suppress_frag_ndisc",
6803 .data = &ipv6_devconf.suppress_frag_ndisc,
6804 .maxlen = sizeof(int),
6805 .mode = 0644,
6806 .proc_handler = proc_dointvec
6807 },
6808 {
6809 .procname = "accept_ra_from_local",
6810 .data = &ipv6_devconf.accept_ra_from_local,
6811 .maxlen = sizeof(int),
6812 .mode = 0644,
6813 .proc_handler = proc_dointvec,
6814 },
6815 {
6816 .procname = "accept_ra_mtu",
6817 .data = &ipv6_devconf.accept_ra_mtu,
6818 .maxlen = sizeof(int),
6819 .mode = 0644,
6820 .proc_handler = proc_dointvec,
6821 },
6822 {
6823 .procname = "stable_secret",
6824 .data = &ipv6_devconf.stable_secret,
6825 .maxlen = IPV6_MAX_STRLEN,
6826 .mode = 0600,
6827 .proc_handler = addrconf_sysctl_stable_secret,
6828 },
6829 {
6830 .procname = "use_oif_addrs_only",
6831 .data = &ipv6_devconf.use_oif_addrs_only,
6832 .maxlen = sizeof(int),
6833 .mode = 0644,
6834 .proc_handler = proc_dointvec,
6835 },
6836 {
6837 .procname = "ignore_routes_with_linkdown",
6838 .data = &ipv6_devconf.ignore_routes_with_linkdown,
6839 .maxlen = sizeof(int),
6840 .mode = 0644,
6841 .proc_handler = addrconf_sysctl_ignore_routes_with_linkdown,
6842 },
6843 {
6844 .procname = "drop_unicast_in_l2_multicast",
6845 .data = &ipv6_devconf.drop_unicast_in_l2_multicast,
6846 .maxlen = sizeof(int),
6847 .mode = 0644,
6848 .proc_handler = proc_dointvec,
6849 },
6850 {
6851 .procname = "drop_unsolicited_na",
6852 .data = &ipv6_devconf.drop_unsolicited_na,
6853 .maxlen = sizeof(int),
6854 .mode = 0644,
6855 .proc_handler = proc_dointvec,
6856 },
6857 {
6858 .procname = "keep_addr_on_down",
6859 .data = &ipv6_devconf.keep_addr_on_down,
6860 .maxlen = sizeof(int),
6861 .mode = 0644,
6862 .proc_handler = proc_dointvec,
David Ahernf1705ec2016-02-24 09:25:37 -08006863
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006864 },
6865 {
David Lebrun1ababeb2016-11-08 14:57:39 +01006866 .procname = "seg6_enabled",
6867 .data = &ipv6_devconf.seg6_enabled,
6868 .maxlen = sizeof(int),
6869 .mode = 0644,
6870 .proc_handler = proc_dointvec,
6871 },
David Lebrunbf355b82016-11-08 14:57:42 +01006872#ifdef CONFIG_IPV6_SEG6_HMAC
6873 {
6874 .procname = "seg6_require_hmac",
6875 .data = &ipv6_devconf.seg6_require_hmac,
6876 .maxlen = sizeof(int),
6877 .mode = 0644,
6878 .proc_handler = proc_dointvec,
6879 },
6880#endif
David Lebrun1ababeb2016-11-08 14:57:39 +01006881 {
Erik Nordmarkadc176c2016-12-02 14:00:08 -08006882 .procname = "enhanced_dad",
6883 .data = &ipv6_devconf.enhanced_dad,
6884 .maxlen = sizeof(int),
6885 .mode = 0644,
6886 .proc_handler = proc_dointvec,
6887 },
6888 {
Felix Jiad35a00b2017-01-26 16:59:17 +13006889 .procname = "addr_gen_mode",
6890 .data = &ipv6_devconf.addr_gen_mode,
6891 .maxlen = sizeof(int),
6892 .mode = 0644,
6893 .proc_handler = addrconf_sysctl_addr_gen_mode,
6894 },
6895 {
David Forsterdf789fe2017-02-23 16:27:18 +00006896 .procname = "disable_policy",
6897 .data = &ipv6_devconf.disable_policy,
6898 .maxlen = sizeof(int),
6899 .mode = 0644,
6900 .proc_handler = addrconf_sysctl_disable_policy,
6901 },
6902 {
Maciej Żenczykowski2210d6b2017-11-07 21:52:09 -08006903 .procname = "ndisc_tclass",
6904 .data = &ipv6_devconf.ndisc_tclass,
6905 .maxlen = sizeof(int),
6906 .mode = 0644,
6907 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07006908 .extra1 = (void *)SYSCTL_ZERO,
Maciej Żenczykowski2210d6b2017-11-07 21:52:09 -08006909 .extra2 = (void *)&two_five_five,
6910 },
6911 {
Alexander Aring8610c7c2020-03-27 18:00:20 -04006912 .procname = "rpl_seg_enabled",
6913 .data = &ipv6_devconf.rpl_seg_enabled,
6914 .maxlen = sizeof(int),
6915 .mode = 0644,
6916 .proc_handler = proc_dointvec,
6917 },
6918 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006919 /* sentinel */
6920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921};
6922
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08006923static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08006924 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925{
Nicolas Dichtel29c994e2016-08-30 10:09:22 +02006926 int i, ifindex;
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006927 struct ctl_table *table;
Eric W. Biederman6105e292012-04-19 13:41:24 +00006928 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11006929
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006930 table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL);
6931 if (!table)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006932 goto out;
6933
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006934 for (i = 0; table[i].data; i++) {
6935 table[i].data += (char *)p - (char *)&ipv6_devconf;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006936 /* If one of these is already set, then it is not safe to
6937 * overwrite either of them: this makes proc_dointvec_minmax
6938 * usable.
6939 */
6940 if (!table[i].extra1 && !table[i].extra2) {
6941 table[i].extra1 = idev; /* embedded; no ref */
6942 table[i].extra2 = net;
6943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945
Eric W. Biederman6105e292012-04-19 13:41:24 +00006946 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006948 p->sysctl_header = register_net_sysctl(net, path, table);
6949 if (!p->sysctl_header)
Eric W. Biederman6105e292012-04-19 13:41:24 +00006950 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006951
Nicolas Dichtel29c994e2016-08-30 10:09:22 +02006952 if (!strcmp(dev_name, "all"))
6953 ifindex = NETCONFA_IFINDEX_ALL;
6954 else if (!strcmp(dev_name, "default"))
6955 ifindex = NETCONFA_IFINDEX_DEFAULT;
6956 else
6957 ifindex = idev->dev->ifindex;
David Ahern85b3daa2017-03-28 14:28:04 -07006958 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL,
6959 ifindex, p);
Pavel Emelyanov95897312008-01-10 17:41:45 -08006960 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006962free:
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006963 kfree(table);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006964out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08006965 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966}
6967
David Ahern23452172017-03-28 14:28:05 -07006968static void __addrconf_sysctl_unregister(struct net *net,
6969 struct ipv6_devconf *p, int ifindex)
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006970{
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006971 struct ctl_table *table;
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006972
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006973 if (!p->sysctl_header)
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006974 return;
6975
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006976 table = p->sysctl_header->ctl_table_arg;
6977 unregister_net_sysctl_table(p->sysctl_header);
6978 p->sysctl_header = NULL;
6979 kfree(table);
David Ahern23452172017-03-28 14:28:05 -07006980
6981 inet6_netconf_notify_devconf(net, RTM_DELNETCONF, 0, ifindex, NULL);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006982}
6983
WANG Conga317a2f2014-07-25 15:25:09 -07006984static int addrconf_sysctl_register(struct inet6_dev *idev)
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11006985{
WANG Conga317a2f2014-07-25 15:25:09 -07006986 int err;
6987
6988 if (!sysctl_dev_name_is_allowed(idev->dev->name))
6989 return -EINVAL;
6990
6991 err = neigh_sysctl_register(idev->dev, idev->nd_parms,
6992 &ndisc_ifinfo_sysctl_change);
6993 if (err)
6994 return err;
6995 err = __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
6996 idev, &idev->cnf);
6997 if (err)
6998 neigh_sysctl_unregister(idev->nd_parms);
6999
7000 return err;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11007001}
7002
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007003static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004{
David Ahern23452172017-03-28 14:28:05 -07007005 __addrconf_sysctl_unregister(dev_net(idev->dev), &idev->cnf,
7006 idev->dev->ifindex);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007007 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008}
7009
7010
7011#endif
7012
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00007013static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007014{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007015 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007016 struct ipv6_devconf *all, *dflt;
7017
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007018 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +01007019 if (!all)
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007020 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007021
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007022 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +01007023 if (!dflt)
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007024 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007025
Arnd Bergmanna154d5d2019-03-04 21:38:03 +01007026 if (IS_ENABLED(CONFIG_SYSCTL) &&
7027 sysctl_devconf_inherit_init_net == 1 && !net_eq(net, &init_net)) {
Cong Wang856c3952019-01-17 23:27:11 -08007028 memcpy(all, init_net.ipv6.devconf_all, sizeof(ipv6_devconf));
7029 memcpy(dflt, init_net.ipv6.devconf_dflt, sizeof(ipv6_devconf_dflt));
7030 }
7031
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007032 /* these will be inherited by all namespaces */
7033 dflt->autoconf = ipv6_defaults.autoconf;
7034 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007035
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01007036 dflt->stable_secret.initialized = false;
7037 all->stable_secret.initialized = false;
7038
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007039 net->ipv6.devconf_all = all;
7040 net->ipv6.devconf_dflt = dflt;
7041
7042#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08007043 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007044 if (err < 0)
7045 goto err_reg_all;
7046
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08007047 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007048 if (err < 0)
7049 goto err_reg_dflt;
7050#endif
7051 return 0;
7052
7053#ifdef CONFIG_SYSCTL
7054err_reg_dflt:
David Ahern23452172017-03-28 14:28:05 -07007055 __addrconf_sysctl_unregister(net, all, NETCONFA_IFINDEX_ALL);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007056err_reg_all:
7057 kfree(dflt);
7058#endif
7059err_alloc_dflt:
7060 kfree(all);
7061err_alloc_all:
7062 return err;
7063}
7064
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00007065static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007066{
7067#ifdef CONFIG_SYSCTL
David Ahern23452172017-03-28 14:28:05 -07007068 __addrconf_sysctl_unregister(net, net->ipv6.devconf_dflt,
7069 NETCONFA_IFINDEX_DEFAULT);
7070 __addrconf_sysctl_unregister(net, net->ipv6.devconf_all,
7071 NETCONFA_IFINDEX_ALL);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007072#endif
zhuyj73cf0e922014-11-26 10:25:58 +08007073 kfree(net->ipv6.devconf_dflt);
7074 kfree(net->ipv6.devconf_all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007075}
7076
7077static struct pernet_operations addrconf_ops = {
7078 .init = addrconf_init_net,
7079 .exit = addrconf_exit_net,
7080};
7081
Daniel Borkmann207895fd32015-01-29 12:15:03 +01007082static struct rtnl_af_ops inet6_ops __read_mostly = {
Thomas Grafb382b192010-11-16 04:33:57 +00007083 .family = AF_INET6,
7084 .fill_link_af = inet6_fill_link_af,
7085 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmann11b1f822015-02-05 14:39:11 +01007086 .validate_link_af = inet6_validate_link_af,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00007087 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00007088};
7089
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090/*
7091 * Init / cleanup code
7092 */
7093
7094int __init addrconf_init(void)
7095{
WANG Conga317a2f2014-07-25 15:25:09 -07007096 struct inet6_dev *idev;
stephen hemmingerc2e21292010-03-17 20:31:10 +00007097 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09007098
Stephen Hemmingere21e8462010-03-20 16:09:01 -07007099 err = ipv6_addr_label_init();
7100 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00007101 pr_crit("%s: cannot initialize default policy table: %d\n",
7102 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007103 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09007104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007106 err = register_pernet_subsys(&addrconf_ops);
7107 if (err < 0)
7108 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007109
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007110 addrconf_wq = create_workqueue("ipv6_addrconf");
7111 if (!addrconf_wq) {
7112 err = -ENOMEM;
7113 goto out_nowq;
7114 }
7115
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116 /* The addrconf netdev notifier requires that loopback_dev
7117 * has it's ipv6 private information allocated and setup
7118 * before it can bring up and give link-local addresses
7119 * to other devices which are up.
7120 *
7121 * Unfortunately, loopback_dev is not necessarily the first
7122 * entry in the global dev_base list of net devices. In fact,
7123 * it is likely to be the very last entry on that list.
7124 * So this causes the notifier registry below to try and
7125 * give link-local addresses to all devices besides loopback_dev
7126 * first, then loopback_dev, which cases all the non-loopback_dev
7127 * devices to fail to get a link-local address.
7128 *
7129 * So, as a temporary fix, allocate the ipv6 structure for
7130 * loopback_dev first by hand.
7131 * Longer term, all of the dependencies ipv6 has upon the loopback
7132 * device and it being up should be removed.
7133 */
7134 rtnl_lock();
WANG Conga317a2f2014-07-25 15:25:09 -07007135 idev = ipv6_add_dev(init_net.loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136 rtnl_unlock();
WANG Conga317a2f2014-07-25 15:25:09 -07007137 if (IS_ERR(idev)) {
7138 err = PTR_ERR(idev);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007139 goto errlo;
WANG Conga317a2f2014-07-25 15:25:09 -07007140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
WANG Cong2f460932017-05-03 22:07:31 -07007142 ip6_route_init_special_entries();
7143
stephen hemmingerc2e21292010-03-17 20:31:10 +00007144 for (i = 0; i < IN6_ADDR_HSIZE; i++)
7145 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
7146
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147 register_netdevice_notifier(&ipv6_dev_notf);
7148
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007149 addrconf_verify();
Thomas Grafc127ea22007-03-22 11:58:32 -07007150
stephen hemminger3678a9d2013-12-30 10:41:32 -08007151 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00007152
Florian Westphal16feebc2017-12-02 21:44:08 +01007153 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETLINK,
7154 NULL, inet6_dump_ifinfo, 0);
Thomas Grafc127ea22007-03-22 11:58:32 -07007155 if (err < 0)
7156 goto errout;
7157
Florian Westphal16feebc2017-12-02 21:44:08 +01007158 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWADDR,
7159 inet6_rtm_newaddr, NULL, 0);
7160 if (err < 0)
7161 goto errout;
7162 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELADDR,
7163 inet6_rtm_deladdr, NULL, 0);
7164 if (err < 0)
7165 goto errout;
7166 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETADDR,
7167 inet6_rtm_getaddr, inet6_dump_ifaddr,
7168 RTNL_FLAG_DOIT_UNLOCKED);
7169 if (err < 0)
7170 goto errout;
7171 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETMULTICAST,
7172 NULL, inet6_dump_ifmcaddr, 0);
7173 if (err < 0)
7174 goto errout;
7175 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETANYCAST,
7176 NULL, inet6_dump_ifacaddr, 0);
7177 if (err < 0)
7178 goto errout;
7179 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETNETCONF,
7180 inet6_netconf_get_devconf,
7181 inet6_netconf_dump_devconf,
7182 RTNL_FLAG_DOIT_UNLOCKED);
7183 if (err < 0)
7184 goto errout;
Florian Westphala3fde2a2017-12-04 19:19:18 +01007185 err = ipv6_addr_label_rtnl_register();
7186 if (err < 0)
7187 goto errout;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09007188
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07007190errout:
Florian Westphal16feebc2017-12-02 21:44:08 +01007191 rtnl_unregister_all(PF_INET6);
Thomas Grafb382b192010-11-16 04:33:57 +00007192 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07007193 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007194errlo:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007195 destroy_workqueue(addrconf_wq);
7196out_nowq:
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007197 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007198out_addrlabel:
7199 ipv6_addr_label_cleanup();
7200out:
Thomas Grafc127ea22007-03-22 11:58:32 -07007201 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202}
7203
Daniel Lezcano09f77092007-12-13 05:34:58 -08007204void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08007206 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 int i;
7208
7209 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007210 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007211 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
Florian Westphal5c451212017-10-04 15:58:49 +02007213 rtnl_af_unregister(&inet6_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214
Florian Westphal5c451212017-10-04 15:58:49 +02007215 rtnl_lock();
Thomas Grafb382b192010-11-16 04:33:57 +00007216
Daniel Lezcano176c39a2009-03-03 01:06:45 -08007217 /* clean dev list */
7218 for_each_netdev(&init_net, dev) {
7219 if (__in6_dev_get(dev) == NULL)
7220 continue;
7221 addrconf_ifdown(dev, 1);
7222 }
7223 addrconf_ifdown(init_net.loopback_dev, 2);
7224
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007226 * Check hash table.
7227 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00007228 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00007229 for (i = 0; i < IN6_ADDR_HSIZE; i++)
7230 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00007231 spin_unlock_bh(&addrconf_hash_lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007232 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007233 rtnl_unlock();
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007234
7235 destroy_workqueue(addrconf_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236}