blob: f927c199a93c3ed1124be02eb32a20900980f337 [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>
Justin Iurman9ee11f02021-07-20 21:42:57 +020092#include <linux/ioam6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +000095
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +010096#define IPV6_MAX_STRLEN \
97 sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
98
Thomas Graf18a31e12010-11-17 04:12:02 +000099static inline u32 cstamp_delta(unsigned long cstamp)
100{
101 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700104static inline s32 rfc3315_s14_backoff_init(s32 irt)
105{
106 /* multiply 'initial retransmission time' by 0.9 .. 1.1 */
107 u64 tmp = (900000 + prandom_u32() % 200001) * (u64)irt;
108 do_div(tmp, 1000000);
109 return (s32)tmp;
110}
111
112static inline s32 rfc3315_s14_backoff_update(s32 rt, s32 mrt)
113{
114 /* multiply 'retransmission timeout' by 1.9 .. 2.1 */
115 u64 tmp = (1900000 + prandom_u32() % 200001) * (u64)rt;
116 do_div(tmp, 1000000);
117 if ((s32)tmp > mrt) {
118 /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */
119 tmp = (900000 + prandom_u32() % 200001) * (u64)mrt;
120 do_div(tmp, 1000000);
121 }
122 return (s32)tmp;
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#ifdef CONFIG_SYSCTL
WANG Conga317a2f2014-07-25 15:25:09 -0700126static int addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800127static void addrconf_sysctl_unregister(struct inet6_dev *idev);
128#else
WANG Conga317a2f2014-07-25 15:25:09 -0700129static inline int addrconf_sysctl_register(struct inet6_dev *idev)
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800130{
WANG Conga317a2f2014-07-25 15:25:09 -0700131 return 0;
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800132}
133
134static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
135{
136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif
138
Fernando Gont969c5462020-05-01 00:51:47 -0300139static void ipv6_gen_rnd_iid(struct in6_addr *addr);
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);
Florent Fourcotae79dbf2020-07-31 15:32:07 +0200167static int addrconf_ifdown(struct net_device *dev, bool unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
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,
Praveen Chaudhary6b2e04b2021-01-25 13:44:30 -0800209 .ra_defrtr_metric = IP6_RT_PRIO_USER,
Ben Greeard9333192014-06-25 14:44:53 -0700210 .accept_ra_from_local = 0,
Hangbin Liu8013d1d2015-07-30 14:28:42 +0800211 .accept_ra_min_hop_limit= 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800212 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800213#ifdef CONFIG_IPV6_ROUTER_PREF
214 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800215 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800216#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +0900217 .accept_ra_rt_info_min_plen = 0,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800218 .accept_ra_rt_info_max_plen = 0,
219#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800220#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700221 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700222 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900223 .disable_ipv6 = 0,
Nicolas Dichtel09400952017-11-14 14:21:32 +0100224 .accept_dad = 0,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200225 .suppress_frag_ndisc = 1,
Harout Hedeshianc2943f12015-01-20 10:06:05 -0700226 .accept_ra_mtu = 1,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100227 .stable_secret = {
228 .initialized = false,
Erik Kline3985e8a2015-07-22 16:38:25 +0900229 },
230 .use_oif_addrs_only = 0,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400231 .ignore_routes_with_linkdown = 0,
David Ahernf1705ec2016-02-24 09:25:37 -0800232 .keep_addr_on_down = 0,
David Lebrun1ababeb2016-11-08 14:57:39 +0100233 .seg6_enabled = 0,
David Lebrunbf355b82016-11-08 14:57:42 +0100234#ifdef CONFIG_IPV6_SEG6_HMAC
235 .seg6_require_hmac = 0,
236#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800237 .enhanced_dad = 1,
Felix Jiad35a00b2017-01-26 16:59:17 +1300238 .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64,
David Forsterdf789fe2017-02-23 16:27:18 +0000239 .disable_policy = 0,
Alexander Aring8610c7c2020-03-27 18:00:20 -0400240 .rpl_seg_enabled = 0,
Justin Iurman9ee11f02021-07-20 21:42:57 +0200241 .ioam6_enabled = 0,
242 .ioam6_id = IOAM6_DEFAULT_IF_ID,
243 .ioam6_id_wide = IOAM6_DEFAULT_IF_ID_WIDE,
James Prestwood18ac5972021-11-01 10:36:29 -0700244 .ndisc_evict_nocarrier = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245};
246
Brian Haleyab32ea52006-09-22 14:15:41 -0700247static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .forwarding = 0,
249 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
250 .mtu6 = IPV6_MIN_MTU,
251 .accept_ra = 1,
252 .accept_redirects = 1,
253 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200254 .force_mld_version = 0,
255 .mldv1_unsolicited_report_interval = 10 * HZ,
256 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 .dad_transmits = 1,
258 .rtr_solicits = MAX_RTR_SOLICITATIONS,
259 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700260 .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .use_tempaddr = 0,
263 .temp_valid_lft = TEMP_VALID_LIFETIME,
264 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
265 .regen_max_retry = REGEN_MAX_RETRY,
266 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800268 .accept_ra_defrtr = 1,
Praveen Chaudhary6b2e04b2021-01-25 13:44:30 -0800269 .ra_defrtr_metric = IP6_RT_PRIO_USER,
Ben Greeard9333192014-06-25 14:44:53 -0700270 .accept_ra_from_local = 0,
Hangbin Liu8013d1d2015-07-30 14:28:42 +0800271 .accept_ra_min_hop_limit= 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800272 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800273#ifdef CONFIG_IPV6_ROUTER_PREF
274 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800275 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800276#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +0900277 .accept_ra_rt_info_min_plen = 0,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800278 .accept_ra_rt_info_max_plen = 0,
279#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800280#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700281 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700282 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900283 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900284 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200285 .suppress_frag_ndisc = 1,
Harout Hedeshianc2943f12015-01-20 10:06:05 -0700286 .accept_ra_mtu = 1,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100287 .stable_secret = {
288 .initialized = false,
289 },
Erik Kline3985e8a2015-07-22 16:38:25 +0900290 .use_oif_addrs_only = 0,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400291 .ignore_routes_with_linkdown = 0,
David Ahernf1705ec2016-02-24 09:25:37 -0800292 .keep_addr_on_down = 0,
David Lebrun1ababeb2016-11-08 14:57:39 +0100293 .seg6_enabled = 0,
David Lebrunbf355b82016-11-08 14:57:42 +0100294#ifdef CONFIG_IPV6_SEG6_HMAC
295 .seg6_require_hmac = 0,
296#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800297 .enhanced_dad = 1,
Felix Jiad35a00b2017-01-26 16:59:17 +1300298 .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64,
David Forsterdf789fe2017-02-23 16:27:18 +0000299 .disable_policy = 0,
Alexander Aring8610c7c2020-03-27 18:00:20 -0400300 .rpl_seg_enabled = 0,
Justin Iurman9ee11f02021-07-20 21:42:57 +0200301 .ioam6_enabled = 0,
302 .ioam6_id = IOAM6_DEFAULT_IF_ID,
303 .ioam6_id_wide = IOAM6_DEFAULT_IF_ID_WIDE,
James Prestwood18ac5972021-11-01 10:36:29 -0700304 .ndisc_evict_nocarrier = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
Mike Manning1f372c72017-09-25 22:01:36 +0100307/* Check if link is ready: is it up and is a valid qdisc available */
308static inline bool addrconf_link_ready(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700309{
Mike Manning1f372c72017-09-25 22:01:36 +0100310 return netif_oper_up(dev) && !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700311}
312
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200313static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200315 if (del_timer(&idev->rs_timer))
316 __in6_dev_put(idev);
317}
318
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100319static void addrconf_del_dad_work(struct inet6_ifaddr *ifp)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200320{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100321 if (cancel_delayed_work(&ifp->dad_work))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 __in6_ifa_put(ifp);
323}
324
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200325static void addrconf_mod_rs_timer(struct inet6_dev *idev,
326 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200328 if (!timer_pending(&idev->rs_timer))
329 in6_dev_hold(idev);
330 mod_timer(&idev->rs_timer, jiffies + when);
331}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100333static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp,
334 unsigned long delay)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200335{
Xin Longf8a894b2017-06-15 16:33:58 +0800336 in6_ifa_hold(ifp);
337 if (mod_delayed_work(addrconf_wq, &ifp->dad_work, delay))
338 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700341static int snmp6_alloc_dev(struct inet6_dev *idev)
342{
John Stultz827da442013-10-07 15:51:58 -0700343 int i;
344
WANG Cong698365f2014-05-05 15:55:55 -0700345 idev->stats.ipv6 = alloc_percpu(struct ipstats_mib);
346 if (!idev->stats.ipv6)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700347 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700348
349 for_each_possible_cpu(i) {
350 struct ipstats_mib *addrconf_stats;
WANG Cong698365f2014-05-05 15:55:55 -0700351 addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i);
John Stultz827da442013-10-07 15:51:58 -0700352 u64_stats_init(&addrconf_stats->syncp);
John Stultz827da442013-10-07 15:51:58 -0700353 }
354
355
Eric Dumazetbe281e52011-05-19 01:14:23 +0000356 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
357 GFP_KERNEL);
358 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700359 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000360 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
361 GFP_KERNEL);
362 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700363 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700364
365 return 0;
366
David L Stevens14878f72007-09-16 16:52:35 -0700367err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000368 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700369err_icmp:
WANG Cong698365f2014-05-05 15:55:55 -0700370 free_percpu(idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700371err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700372 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700373}
374
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000375static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 struct inet6_dev *ndev;
WANG Conga317a2f2014-07-25 15:25:09 -0700378 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 ASSERT_RTNL();
381
382 if (dev->mtu < IPV6_MIN_MTU)
WANG Conga317a2f2014-07-25 15:25:09 -0700383 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900385 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100386 if (!ndev)
WANG Conga317a2f2014-07-25 15:25:09 -0700387 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Ingo Oeser322f74a2006-03-20 23:01:47 -0800389 rwlock_init(&ndev->lock);
390 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000391 INIT_LIST_HEAD(&ndev->addr_list);
Kees Cooke99e88a2017-10-16 14:43:17 -0700392 timer_setup(&ndev->rs_timer, addrconf_rs_timer, 0);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900393 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Hannes Frederic Sowa9b29c692015-12-15 22:59:12 +0100394
395 if (ndev->cnf.stable_secret.initialized)
Felix Jiad35a00b2017-01-26 16:59:17 +1300396 ndev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
Hannes Frederic Sowa9b29c692015-12-15 22:59:12 +0100397
Ingo Oeser322f74a2006-03-20 23:01:47 -0800398 ndev->cnf.mtu6 = dev->mtu;
Rocco Yue49b99da2021-08-27 23:04:12 +0800399 ndev->ra_mtu = 0;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800400 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
Ian Morris63159f22015-03-29 14:00:04 +0100401 if (!ndev->nd_parms) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800402 kfree(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700403 return ERR_PTR(err);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800404 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700405 if (ndev->cnf.forwarding)
406 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800407 /* We refer to the device */
Eric Dumazet8c727002021-12-04 20:22:11 -0800408 dev_hold_track(dev, &ndev->dev_tracker, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Ingo Oeser322f74a2006-03-20 23:01:47 -0800410 if (snmp6_alloc_dev(ndev) < 0) {
Joe Perchese32ac252018-03-26 08:35:01 -0700411 netdev_dbg(dev, "%s: cannot allocate memory for statistics\n",
412 __func__);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800413 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Eric Dumazet8c727002021-12-04 20:22:11 -0800414 dev_put_track(dev, &ndev->dev_tracker);
Roy Li8603e332011-09-20 15:10:16 -0400415 kfree(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700416 return ERR_PTR(err);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Ingo Oeser322f74a2006-03-20 23:01:47 -0800419 if (snmp6_register_dev(ndev) < 0) {
Joe Perchese32ac252018-03-26 08:35:01 -0700420 netdev_dbg(dev, "%s: cannot create /proc/net/dev_snmp6/%s\n",
421 __func__, dev->name);
WANG Conga317a2f2014-07-25 15:25:09 -0700422 goto err_release;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200425 /* One reference from device. */
Reshetova, Elena1be92462017-07-04 09:34:55 +0300426 refcount_set(&ndev->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900428 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
429 ndev->cnf.accept_dad = -1;
430
Amerigo Wang07a93622012-10-29 16:23:10 +0000431#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700432 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000433 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700434 ndev->cnf.rtr_solicits = 0;
435 }
436#endif
437
stephen hemminger372e6c82010-03-17 20:31:09 +0000438 INIT_LIST_HEAD(&ndev->tempaddr_list);
Jiri Bohac76506a92016-10-13 18:52:15 +0200439 ndev->desync_factor = U32_MAX;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800440 if ((dev->flags&IFF_LOOPBACK) ||
441 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700442 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700443 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700444 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800445 ndev->cnf.use_tempaddr = -1;
Fernando Gont969c5462020-05-01 00:51:47 -0300446 }
David S. Miller5d9efa72013-10-28 20:07:50 -0400447
Daniel Borkmann914faa12013-04-09 03:47:14 +0000448 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800449
Mike Manning1f372c72017-09-25 22:01:36 +0100450 if (netif_running(dev) && addrconf_link_ready(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700451 ndev->if_flags |= IF_READY;
452
Ingo Oeser322f74a2006-03-20 23:01:47 -0800453 ipv6_mc_init_dev(ndev);
454 ndev->tstamp = jiffies;
WANG Conga317a2f2014-07-25 15:25:09 -0700455 err = addrconf_sysctl_register(ndev);
456 if (err) {
457 ipv6_mc_destroy_dev(ndev);
Sabrina Dubroca2a189f9e2015-11-04 14:47:53 +0100458 snmp6_unregister_dev(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700459 goto err_release;
460 }
David L Stevens30c4cf52007-01-04 12:31:14 -0800461 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000462 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800463
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000464 /* Join interface-local all-node multicast group */
465 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
466
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800467 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900468 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800469
Li Weid6ddef92012-03-05 14:45:17 +0000470 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000471 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000472 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return ndev;
WANG Conga317a2f2014-07-25 15:25:09 -0700475
476err_release:
477 neigh_parms_release(&nd_tbl, ndev->nd_parms);
478 ndev->dead = 1;
479 in6_dev_finish_destroy(ndev);
480 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000483static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct inet6_dev *idev;
486
487 ASSERT_RTNL();
488
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700489 idev = __in6_dev_get(dev);
490 if (!idev) {
491 idev = ipv6_add_dev(dev);
WANG Conga317a2f2014-07-25 15:25:09 -0700492 if (IS_ERR(idev))
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +0200493 return idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (dev->flags&IFF_UP)
497 ipv6_mc_up(idev);
498 return idev;
499}
500
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000501static int inet6_netconf_msgsize_devconf(int type)
502{
503 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
504 + nla_total_size(4); /* NETCONFA_IFINDEX */
Zhang Shengju136ba622016-03-10 08:55:50 +0000505 bool all = false;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000506
Zhang Shengju136ba622016-03-10 08:55:50 +0000507 if (type == NETCONFA_ALL)
508 all = true;
509
510 if (all || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000511 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500512#ifdef CONFIG_IPV6_MROUTE
Zhang Shengju136ba622016-03-10 08:55:50 +0000513 if (all || type == NETCONFA_MC_FORWARDING)
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000514 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500515#endif
Zhang Shengju136ba622016-03-10 08:55:50 +0000516 if (all || type == NETCONFA_PROXY_NEIGH)
stephen hemmingerc92d5492013-12-17 22:37:14 -0800517 size += nla_total_size(4);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000518
Zhang Shengju136ba622016-03-10 08:55:50 +0000519 if (all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN)
Andy Gospodarek35103d12015-08-13 10:39:01 -0400520 size += nla_total_size(4);
521
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000522 return size;
523}
524
525static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
526 struct ipv6_devconf *devconf, u32 portid,
527 u32 seq, int event, unsigned int flags,
528 int type)
529{
530 struct nlmsghdr *nlh;
531 struct netconfmsg *ncm;
Zhang Shengju136ba622016-03-10 08:55:50 +0000532 bool all = false;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000533
534 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
535 flags);
Ian Morris63159f22015-03-29 14:00:04 +0100536 if (!nlh)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000537 return -EMSGSIZE;
538
Zhang Shengju136ba622016-03-10 08:55:50 +0000539 if (type == NETCONFA_ALL)
540 all = true;
541
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000542 ncm = nlmsg_data(nlh);
543 ncm->ncm_family = AF_INET6;
544
545 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
546 goto nla_put_failure;
547
David Ahern23452172017-03-28 14:28:05 -0700548 if (!devconf)
549 goto out;
550
Zhang Shengju136ba622016-03-10 08:55:50 +0000551 if ((all || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000552 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
553 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500554#ifdef CONFIG_IPV6_MROUTE
Zhang Shengju136ba622016-03-10 08:55:50 +0000555 if ((all || type == NETCONFA_MC_FORWARDING) &&
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000556 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
557 devconf->mc_forwarding) < 0)
558 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500559#endif
Zhang Shengju136ba622016-03-10 08:55:50 +0000560 if ((all || type == NETCONFA_PROXY_NEIGH) &&
stephen hemmingerc92d5492013-12-17 22:37:14 -0800561 nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
562 goto nla_put_failure;
563
Zhang Shengju136ba622016-03-10 08:55:50 +0000564 if ((all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) &&
Andy Gospodarek35103d12015-08-13 10:39:01 -0400565 nla_put_s32(skb, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
566 devconf->ignore_routes_with_linkdown) < 0)
567 goto nla_put_failure;
568
David Ahern23452172017-03-28 14:28:05 -0700569out:
Johannes Berg053c0952015-01-16 22:09:00 +0100570 nlmsg_end(skb, nlh);
571 return 0;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000572
573nla_put_failure:
574 nlmsg_cancel(skb, nlh);
575 return -EMSGSIZE;
576}
577
David Ahern85b3daa2017-03-28 14:28:04 -0700578void inet6_netconf_notify_devconf(struct net *net, int event, int type,
579 int ifindex, struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000580{
581 struct sk_buff *skb;
582 int err = -ENOBUFS;
583
Eric Dumazet927265b2016-07-08 05:46:04 +0200584 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100585 if (!skb)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000586 goto errout;
587
588 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
David Ahern85b3daa2017-03-28 14:28:04 -0700589 event, 0, type);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000590 if (err < 0) {
591 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
592 WARN_ON(err == -EMSGSIZE);
593 kfree_skb(skb);
594 goto errout;
595 }
Eric Dumazet927265b2016-07-08 05:46:04 +0200596 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_KERNEL);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000597 return;
598errout:
Cong Dingbd779022012-12-18 12:08:56 +0000599 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000600}
601
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000602static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
603 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
604 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
stephen hemmingerc92d5492013-12-17 22:37:14 -0800605 [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) },
Andy Gospodarek35103d12015-08-13 10:39:01 -0400606 [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN] = { .len = sizeof(int) },
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000607};
608
Jakub Kicinski38d51812019-01-18 10:46:22 -0800609static int inet6_netconf_valid_get_req(struct sk_buff *skb,
610 const struct nlmsghdr *nlh,
611 struct nlattr **tb,
612 struct netlink_ext_ack *extack)
613{
614 int i, err;
615
616 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(struct netconfmsg))) {
617 NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf get request");
618 return -EINVAL;
619 }
620
621 if (!netlink_strict_get_check(skb))
Johannes Berg8cb08172019-04-26 14:07:28 +0200622 return nlmsg_parse_deprecated(nlh, sizeof(struct netconfmsg),
623 tb, NETCONFA_MAX,
624 devconf_ipv6_policy, extack);
Jakub Kicinski38d51812019-01-18 10:46:22 -0800625
Johannes Berg8cb08172019-04-26 14:07:28 +0200626 err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct netconfmsg),
627 tb, NETCONFA_MAX,
628 devconf_ipv6_policy, extack);
Jakub Kicinski38d51812019-01-18 10:46:22 -0800629 if (err)
630 return err;
631
632 for (i = 0; i <= NETCONFA_MAX; i++) {
633 if (!tb[i])
634 continue;
635
636 switch (i) {
637 case NETCONFA_IFINDEX:
638 break;
639 default:
640 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in netconf get request");
641 return -EINVAL;
642 }
643 }
644
645 return 0;
646}
647
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000648static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
David Ahernc21ef3e2017-04-16 09:48:24 -0700649 struct nlmsghdr *nlh,
650 struct netlink_ext_ack *extack)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000651{
652 struct net *net = sock_net(in_skb->sk);
653 struct nlattr *tb[NETCONFA_MAX+1];
Florian Westphal4ea26072017-10-11 10:28:00 +0200654 struct inet6_dev *in6_dev = NULL;
655 struct net_device *dev = NULL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000656 struct sk_buff *skb;
657 struct ipv6_devconf *devconf;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000658 int ifindex;
659 int err;
660
Jakub Kicinski38d51812019-01-18 10:46:22 -0800661 err = inet6_netconf_valid_get_req(in_skb, nlh, tb, extack);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000662 if (err < 0)
Florian Westphal4ea26072017-10-11 10:28:00 +0200663 return err;
664
665 if (!tb[NETCONFA_IFINDEX])
666 return -EINVAL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000667
Anton Protopopova97eb332016-02-16 21:43:16 -0500668 err = -EINVAL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000669 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
670 switch (ifindex) {
671 case NETCONFA_IFINDEX_ALL:
672 devconf = net->ipv6.devconf_all;
673 break;
674 case NETCONFA_IFINDEX_DEFAULT:
675 devconf = net->ipv6.devconf_dflt;
676 break;
677 default:
Florian Westphal4ea26072017-10-11 10:28:00 +0200678 dev = dev_get_by_index(net, ifindex);
Ian Morris63159f22015-03-29 14:00:04 +0100679 if (!dev)
Florian Westphal4ea26072017-10-11 10:28:00 +0200680 return -EINVAL;
681 in6_dev = in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +0100682 if (!in6_dev)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000683 goto errout;
684 devconf = &in6_dev->cnf;
685 break;
686 }
687
688 err = -ENOBUFS;
Florian Westphal4ea26072017-10-11 10:28:00 +0200689 skb = nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100690 if (!skb)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000691 goto errout;
692
693 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
694 NETLINK_CB(in_skb).portid,
695 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
Zhang Shengju136ba622016-03-10 08:55:50 +0000696 NETCONFA_ALL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000697 if (err < 0) {
698 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
699 WARN_ON(err == -EMSGSIZE);
700 kfree_skb(skb);
701 goto errout;
702 }
703 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
704errout:
Florian Westphal4ea26072017-10-11 10:28:00 +0200705 if (in6_dev)
706 in6_dev_put(in6_dev);
Yajun Deng1160dfa2021-08-05 19:55:27 +0800707 dev_put(dev);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000708 return err;
709}
710
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000711static int inet6_netconf_dump_devconf(struct sk_buff *skb,
712 struct netlink_callback *cb)
713{
David Ahernaddd3832018-10-07 20:16:41 -0700714 const struct nlmsghdr *nlh = cb->nlh;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000715 struct net *net = sock_net(skb->sk);
716 int h, s_h;
717 int idx, s_idx;
718 struct net_device *dev;
719 struct inet6_dev *idev;
720 struct hlist_head *head;
721
David Ahernaddd3832018-10-07 20:16:41 -0700722 if (cb->strict_check) {
723 struct netlink_ext_ack *extack = cb->extack;
724 struct netconfmsg *ncm;
725
726 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ncm))) {
727 NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf dump request");
728 return -EINVAL;
729 }
730
731 if (nlmsg_attrlen(nlh, sizeof(*ncm))) {
732 NL_SET_ERR_MSG_MOD(extack, "Invalid data after header in netconf dump request");
733 return -EINVAL;
734 }
735 }
736
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000737 s_h = cb->args[0];
738 s_idx = idx = cb->args[1];
739
740 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
741 idx = 0;
742 head = &net->dev_index_head[h];
743 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000744 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
745 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000746 hlist_for_each_entry_rcu(dev, head, index_hlist) {
747 if (idx < s_idx)
748 goto cont;
749 idev = __in6_dev_get(dev);
750 if (!idev)
751 goto cont;
752
753 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
754 &idev->cnf,
755 NETLINK_CB(cb->skb).portid,
David Ahernaddd3832018-10-07 20:16:41 -0700756 nlh->nlmsg_seq,
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000757 RTM_NEWNETCONF,
758 NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000759 NETCONFA_ALL) < 0) {
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000760 rcu_read_unlock();
761 goto done;
762 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000763 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000764cont:
765 idx++;
766 }
767 rcu_read_unlock();
768 }
769 if (h == NETDEV_HASHENTRIES) {
770 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
771 net->ipv6.devconf_all,
772 NETLINK_CB(cb->skb).portid,
David Ahernaddd3832018-10-07 20:16:41 -0700773 nlh->nlmsg_seq,
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000774 RTM_NEWNETCONF, NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000775 NETCONFA_ALL) < 0)
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000776 goto done;
777 else
778 h++;
779 }
780 if (h == NETDEV_HASHENTRIES + 1) {
781 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
782 net->ipv6.devconf_dflt,
783 NETLINK_CB(cb->skb).portid,
David Ahernaddd3832018-10-07 20:16:41 -0700784 nlh->nlmsg_seq,
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000785 RTM_NEWNETCONF, NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000786 NETCONFA_ALL) < 0)
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000787 goto done;
788 else
789 h++;
790 }
791done:
792 cb->args[0] = h;
793 cb->args[1] = idx;
794
795 return skb->len;
796}
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798#ifdef CONFIG_SYSCTL
799static void dev_forward_change(struct inet6_dev *idev)
800{
801 struct net_device *dev;
802 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (!idev)
805 return;
806 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700807 if (idev->cnf.forwarding)
808 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000809 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000810 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900811 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000812 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
813 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
814 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900815 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000816 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
817 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000820
821 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800822 if (ifa->flags&IFA_F_TENTATIVE)
823 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (idev->cnf.forwarding)
825 addrconf_join_anycast(ifa);
826 else
827 addrconf_leave_anycast(ifa);
828 }
David Ahern85b3daa2017-03-28 14:28:04 -0700829 inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF,
830 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000831 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834
Pavel Emelyanove1869322008-01-10 17:43:50 -0800835static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
837 struct net_device *dev;
838 struct inet6_dev *idev;
839
Ben Hutchings4acd4942012-08-14 08:54:51 +0000840 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 idev = __in6_dev_get(dev);
842 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800843 int changed = (!idev->cnf.forwarding) ^ (!newf);
844 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (changed)
846 dev_forward_change(idev);
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800850
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000851static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800852{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800853 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000854 int old;
855
856 if (!rtnl_trylock())
857 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800858
859 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000860 old = *p;
861 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800862
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000863 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000864 if ((!newf) ^ (!old))
David Ahern85b3daa2017-03-28 14:28:04 -0700865 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
866 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000867 NETCONFA_IFINDEX_DEFAULT,
868 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000869 rtnl_unlock();
870 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000871 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000872
Pavel Emelyanove1869322008-01-10 17:43:50 -0800873 if (p == &net->ipv6.devconf_all->forwarding) {
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200874 int old_dflt = net->ipv6.devconf_dflt->forwarding;
875
Pavel Emelyanove1869322008-01-10 17:43:50 -0800876 net->ipv6.devconf_dflt->forwarding = newf;
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200877 if ((!newf) ^ (!old_dflt))
David Ahern85b3daa2017-03-28 14:28:04 -0700878 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
879 NETCONFA_FORWARDING,
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200880 NETCONFA_IFINDEX_DEFAULT,
881 net->ipv6.devconf_dflt);
882
Pavel Emelyanove1869322008-01-10 17:43:50 -0800883 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000884 if ((!newf) ^ (!old))
David Ahern85b3daa2017-03-28 14:28:04 -0700885 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
886 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000887 NETCONFA_IFINDEX_ALL,
888 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000889 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800890 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700891 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800892
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000893 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800894 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000895 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800896}
Andy Gospodarek35103d12015-08-13 10:39:01 -0400897
898static void addrconf_linkdown_change(struct net *net, __s32 newf)
899{
900 struct net_device *dev;
901 struct inet6_dev *idev;
902
903 for_each_netdev(net, dev) {
904 idev = __in6_dev_get(dev);
905 if (idev) {
906 int changed = (!idev->cnf.ignore_routes_with_linkdown) ^ (!newf);
907
908 idev->cnf.ignore_routes_with_linkdown = newf;
909 if (changed)
910 inet6_netconf_notify_devconf(dev_net(dev),
David Ahern85b3daa2017-03-28 14:28:04 -0700911 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400912 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
913 dev->ifindex,
914 &idev->cnf);
915 }
916 }
917}
918
919static int addrconf_fixup_linkdown(struct ctl_table *table, int *p, int newf)
920{
921 struct net *net;
922 int old;
923
924 if (!rtnl_trylock())
925 return restart_syscall();
926
927 net = (struct net *)table->extra2;
928 old = *p;
929 *p = newf;
930
931 if (p == &net->ipv6.devconf_dflt->ignore_routes_with_linkdown) {
932 if ((!newf) ^ (!old))
933 inet6_netconf_notify_devconf(net,
David Ahern85b3daa2017-03-28 14:28:04 -0700934 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400935 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
936 NETCONFA_IFINDEX_DEFAULT,
937 net->ipv6.devconf_dflt);
938 rtnl_unlock();
939 return 0;
940 }
941
942 if (p == &net->ipv6.devconf_all->ignore_routes_with_linkdown) {
943 net->ipv6.devconf_dflt->ignore_routes_with_linkdown = newf;
944 addrconf_linkdown_change(net, newf);
945 if ((!newf) ^ (!old))
946 inet6_netconf_notify_devconf(net,
David Ahern85b3daa2017-03-28 14:28:04 -0700947 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400948 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
949 NETCONFA_IFINDEX_ALL,
950 net->ipv6.devconf_all);
951 }
952 rtnl_unlock();
953
954 return 1;
955}
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957#endif
958
stephen hemminger5c578aed2010-03-17 20:31:11 +0000959/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
961{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000962 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000965 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966#endif
967
968 in6_dev_put(ifp->idev);
969
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100970 if (cancel_delayed_work(&ifp->dad_work))
971 pr_notice("delayed DAD work was pending while freeing ifa=%p\n",
972 ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Herbert Xue9d3e082010-05-18 15:36:06 -0700974 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000975 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return;
977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Lai Jiangshane5785982011-03-15 18:00:14 +0800979 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
Brian Haleye55ffac2006-07-10 15:25:51 -0700982static void
983ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
984{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000985 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700986 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700987
988 /*
989 * Each device address list is sorted in order of scope -
990 * global before linklocal.
991 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000992 list_for_each(p, &idev->addr_list) {
993 struct inet6_ifaddr *ifa
994 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700995 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700996 break;
997 }
998
Eric Dumazet8ef802a2017-10-07 19:30:23 -0700999 list_add_tail_rcu(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -07001000}
1001
Eric Dumazet3f27fb22017-10-23 16:17:47 -07001002static u32 inet6_addr_hash(const struct net *net, const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +09001003{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07001004 u32 val = ipv6_addr_hash(addr) ^ net_hash_mix(net);
1005
1006 return hash_32(val, IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +09001007}
1008
Eric Dumazet56fc7092017-10-23 16:17:45 -07001009static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
Eric Dumazet752a9292017-10-23 16:17:46 -07001010 struct net_device *dev, unsigned int hash)
Eric Dumazet56fc7092017-10-23 16:17:45 -07001011{
Eric Dumazet56fc7092017-10-23 16:17:45 -07001012 struct inet6_ifaddr *ifp;
1013
1014 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
1015 if (!net_eq(dev_net(ifp->idev->dev), net))
1016 continue;
1017 if (ipv6_addr_equal(&ifp->addr, addr)) {
1018 if (!dev || ifp->idev->dev == dev)
1019 return true;
1020 }
1021 }
1022 return false;
1023}
1024
David Ahernf3d98322017-10-18 09:56:52 -07001025static int ipv6_add_addr_hash(struct net_device *dev, struct inet6_ifaddr *ifa)
1026{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07001027 unsigned int hash = inet6_addr_hash(dev_net(dev), &ifa->addr);
David Ahernf3d98322017-10-18 09:56:52 -07001028 int err = 0;
1029
1030 spin_lock(&addrconf_hash_lock);
1031
1032 /* Ignore adding duplicate addresses on an interface */
Eric Dumazet752a9292017-10-23 16:17:46 -07001033 if (ipv6_chk_same_addr(dev_net(dev), &ifa->addr, dev, hash)) {
Joe Perchese32ac252018-03-26 08:35:01 -07001034 netdev_dbg(dev, "ipv6_add_addr: already assigned\n");
David Ahernf3d98322017-10-18 09:56:52 -07001035 err = -EEXIST;
Eric Dumazet752a9292017-10-23 16:17:46 -07001036 } else {
1037 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
David Ahernf3d98322017-10-18 09:56:52 -07001038 }
1039
David Ahernf3d98322017-10-18 09:56:52 -07001040 spin_unlock(&addrconf_hash_lock);
1041
1042 return err;
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/* On success it returns ifp with increased reference count */
1046
1047static struct inet6_ifaddr *
David Aherne6464b82018-05-27 08:09:53 -07001048ipv6_add_addr(struct inet6_dev *idev, struct ifa6_config *cfg,
David Ahernde95e042017-10-18 09:56:54 -07001049 bool can_block, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
David Ahernf3d98322017-10-18 09:56:52 -07001051 gfp_t gfp_flags = can_block ? GFP_KERNEL : GFP_ATOMIC;
David Aherne6464b82018-05-27 08:09:53 -07001052 int addr_type = ipv6_addr_type(cfg->pfx);
David Forsterdf789fe2017-02-23 16:27:18 +00001053 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct inet6_ifaddr *ifa = NULL;
David Ahern360a9882018-04-18 15:39:00 -07001055 struct fib6_info *f6i = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +09001057
1058 if (addr_type == IPV6_ADDR_ANY ||
Hangbin Liuf17f7642019-08-20 10:19:47 +08001059 (addr_type & IPV6_ADDR_MULTICAST &&
1060 !(cfg->ifa_flags & IFA_F_MCAUTOJOIN)) ||
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +09001061 (!(idev->dev->flags & IFF_LOOPBACK) &&
Robert Shearman3ede0bb2018-09-19 13:56:53 +01001062 !netif_is_l3_master(idev->dev) &&
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +09001063 addr_type & IPV6_ADDR_LOOPBACK))
1064 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (idev->dead) {
1067 err = -ENODEV; /*XXX*/
David Ahernf3d98322017-10-18 09:56:52 -07001068 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
Brian Haley56d417b2009-06-01 03:07:33 -07001071 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -07001072 err = -EACCES;
David Ahernf3d98322017-10-18 09:56:52 -07001073 goto out;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001074 }
1075
David Ahernff7883e2017-10-18 09:56:53 -07001076 /* validator notifier needs to be blocking;
1077 * do not call in atomic context
1078 */
1079 if (can_block) {
1080 struct in6_validator_info i6vi = {
David Aherne6464b82018-05-27 08:09:53 -07001081 .i6vi_addr = *cfg->pfx,
David Ahernff7883e2017-10-18 09:56:53 -07001082 .i6vi_dev = idev,
David Ahernde95e042017-10-18 09:56:54 -07001083 .extack = extack,
David Ahernff7883e2017-10-18 09:56:53 -07001084 };
1085
1086 err = inet6addr_validator_notifier_call_chain(NETDEV_UP, &i6vi);
1087 err = notifier_to_errno(err);
1088 if (err < 0)
1089 goto out;
1090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Vasily Averin61268912021-07-19 13:44:31 +03001092 ifa = kzalloc(sizeof(*ifa), gfp_flags | __GFP_ACCOUNT);
Ian Morris63159f22015-03-29 14:00:04 +01001093 if (!ifa) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 err = -ENOBUFS;
1095 goto out;
1096 }
1097
David Aherne6464b82018-05-27 08:09:53 -07001098 f6i = addrconf_f6i_alloc(net, idev, cfg->pfx, false, gfp_flags);
David Ahern360a9882018-04-18 15:39:00 -07001099 if (IS_ERR(f6i)) {
1100 err = PTR_ERR(f6i);
1101 f6i = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 goto out;
1103 }
1104
David Forsterdf789fe2017-02-23 16:27:18 +00001105 if (net->ipv6.devconf_all->disable_policy ||
1106 idev->cnf.disable_policy)
David Ahern360a9882018-04-18 15:39:00 -07001107 f6i->dst_nopolicy = true;
David Forsterdf789fe2017-02-23 16:27:18 +00001108
Jiri Pirkobba24892013-12-07 19:26:57 +01001109 neigh_parms_data_state_setall(idev->nd_parms);
1110
David Aherne6464b82018-05-27 08:09:53 -07001111 ifa->addr = *cfg->pfx;
1112 if (cfg->peer_pfx)
1113 ifa->peer_addr = *cfg->peer_pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 spin_lock_init(&ifa->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001116 INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001117 INIT_HLIST_NODE(&ifa->addr_lst);
David Aherne6464b82018-05-27 08:09:53 -07001118 ifa->scope = cfg->scope;
1119 ifa->prefix_len = cfg->plen;
David Ahern8308f3f2018-05-27 08:09:58 -07001120 ifa->rt_priority = cfg->rt_priority;
David Aherne6464b82018-05-27 08:09:53 -07001121 ifa->flags = cfg->ifa_flags;
Mahesh Bandewar66eb9f82017-05-12 17:03:39 -07001122 /* No need to add the TENTATIVE flag for addresses with NODAD */
David Aherne6464b82018-05-27 08:09:53 -07001123 if (!(cfg->ifa_flags & IFA_F_NODAD))
Mahesh Bandewar66eb9f82017-05-12 17:03:39 -07001124 ifa->flags |= IFA_F_TENTATIVE;
David Aherne6464b82018-05-27 08:09:53 -07001125 ifa->valid_lft = cfg->valid_lft;
1126 ifa->prefered_lft = cfg->preferred_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00001128 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
David Ahern360a9882018-04-18 15:39:00 -07001130 ifa->rt = f6i;
Keir Fraser57f5f542006-08-29 02:43:49 -07001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 ifa->idev = idev;
David Ahernf3d98322017-10-18 09:56:52 -07001133 in6_dev_hold(idev);
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /* For caller */
Reshetova, Elena271201c2017-07-04 09:34:56 +03001136 refcount_set(&ifa->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
David Ahernf3d98322017-10-18 09:56:52 -07001138 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
David Ahernf3d98322017-10-18 09:56:52 -07001140 err = ipv6_add_addr_hash(idev->dev, ifa);
1141 if (err < 0) {
1142 rcu_read_unlock_bh();
1143 goto out;
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 write_lock(&idev->lock);
David Ahernf3d98322017-10-18 09:56:52 -07001147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -07001149 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001152 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 in6_ifa_hold(ifa);
1154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 in6_ifa_hold(ifa);
1157 write_unlock(&idev->lock);
David Ahernf3d98322017-10-18 09:56:52 -07001158
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001159 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
David Ahernf3d98322017-10-18 09:56:52 -07001161 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
1162out:
1163 if (unlikely(err < 0)) {
David Ahern360a9882018-04-18 15:39:00 -07001164 fib6_info_release(f6i);
David Ahern93531c62018-04-17 17:33:25 -07001165
David Ahernf3d98322017-10-18 09:56:52 -07001166 if (ifa) {
1167 if (ifa->idev)
1168 in6_dev_put(ifa->idev);
1169 kfree(ifa);
1170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 ifa = ERR_PTR(err);
1172 }
1173
1174 return ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
Thomas Haller5b84efe2014-01-15 15:36:59 +01001177enum cleanup_prefix_rt_t {
1178 CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */
1179 CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */
1180 CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */
1181};
1182
1183/*
1184 * Check, whether the prefix for ifp would still need a prefix route
1185 * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
1186 * constants.
1187 *
1188 * 1) we don't purge prefix if address was not permanent.
1189 * prefix is managed by its own lifetime.
1190 * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
1191 * 3) if there are no addresses, delete prefix.
1192 * 4) if there are still other permanent address(es),
1193 * corresponding prefix is still permanent.
1194 * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
1195 * don't purge the prefix, assume user space is managing it.
1196 * 6) otherwise, update prefix lifetime to the
1197 * longest valid lifetime among the corresponding
1198 * addresses on the device.
1199 * Note: subsequent RA will update lifetime.
1200 **/
1201static enum cleanup_prefix_rt_t
1202check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires)
1203{
1204 struct inet6_ifaddr *ifa;
1205 struct inet6_dev *idev = ifp->idev;
1206 unsigned long lifetime;
1207 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL;
1208
1209 *expires = jiffies;
1210
1211 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1212 if (ifa == ifp)
1213 continue;
Zhiqiang Liue75913c2019-02-11 10:57:46 +08001214 if (ifa->prefix_len != ifp->prefix_len ||
1215 !ipv6_prefix_equal(&ifa->addr, &ifp->addr,
Thomas Haller5b84efe2014-01-15 15:36:59 +01001216 ifp->prefix_len))
1217 continue;
1218 if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE))
1219 return CLEANUP_PREFIX_RT_NOP;
1220
1221 action = CLEANUP_PREFIX_RT_EXPIRE;
1222
1223 spin_lock(&ifa->lock);
1224
1225 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
1226 /*
1227 * Note: Because this address is
1228 * not permanent, lifetime <
1229 * LONG_MAX / HZ here.
1230 */
1231 if (time_before(*expires, ifa->tstamp + lifetime * HZ))
1232 *expires = ifa->tstamp + lifetime * HZ;
1233 spin_unlock(&ifa->lock);
1234 }
1235
1236 return action;
1237}
1238
1239static void
Hangbin Liud0098e42020-03-03 14:37:35 +08001240cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires,
1241 bool del_rt, bool del_peer)
Thomas Haller5b84efe2014-01-15 15:36:59 +01001242{
David Ahern93c2fb22018-04-18 15:38:59 -07001243 struct fib6_info *f6i;
Thomas Haller5b84efe2014-01-15 15:36:59 +01001244
Hangbin Liud0098e42020-03-03 14:37:35 +08001245 f6i = addrconf_get_prefix_route(del_peer ? &ifp->peer_addr : &ifp->addr,
1246 ifp->prefix_len,
David Ahern2b2450c2019-03-27 20:53:52 -07001247 ifp->idev->dev, 0, RTF_DEFAULT, true);
David Ahern93c2fb22018-04-18 15:38:59 -07001248 if (f6i) {
Thomas Haller5b84efe2014-01-15 15:36:59 +01001249 if (del_rt)
Roopa Prabhu11dd74b2020-04-27 13:56:45 -07001250 ip6_del_rt(dev_net(ifp->idev->dev), f6i, false);
Thomas Haller5b84efe2014-01-15 15:36:59 +01001251 else {
David Ahern93c2fb22018-04-18 15:38:59 -07001252 if (!(f6i->fib6_flags & RTF_EXPIRES))
1253 fib6_set_expires(f6i, expires);
1254 fib6_info_release(f6i);
Thomas Haller5b84efe2014-01-15 15:36:59 +01001255 }
1256 }
1257}
1258
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260/* This function wants to get referenced ifp and releases it before return */
1261
1262static void ipv6_del_addr(struct inet6_ifaddr *ifp)
1263{
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001264 int state;
Thomas Haller5b84efe2014-01-15 15:36:59 +01001265 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP;
1266 unsigned long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001268 ASSERT_RTNL();
1269
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001270 spin_lock_bh(&ifp->lock);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001271 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -07001272 ifp->state = INET6_IFADDR_STATE_DEAD;
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001273 spin_unlock_bh(&ifp->lock);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001274
1275 if (state == INET6_IFADDR_STATE_DEAD)
1276 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
stephen hemminger5c578aed2010-03-17 20:31:11 +00001278 spin_lock_bh(&addrconf_hash_lock);
1279 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +00001280 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Thomas Haller5b84efe2014-01-15 15:36:59 +01001282 write_lock_bh(&ifp->idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -04001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001285 list_del(&ifp->tmp_list);
1286 if (ifp->ifpub) {
1287 in6_ifa_put(ifp->ifpub);
1288 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
stephen hemminger372e6c82010-03-17 20:31:09 +00001290 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Thomas Haller5b84efe2014-01-15 15:36:59 +01001293 if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE))
1294 action = check_cleanup_prefix_route(ifp, &expires);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001295
Eric Dumazet8ef802a2017-10-07 19:30:23 -07001296 list_del_rcu(&ifp->if_list);
Thomas Haller5b84efe2014-01-15 15:36:59 +01001297 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Thomas Haller5b84efe2014-01-15 15:36:59 +01001299 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001301 addrconf_del_dad_work(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 ipv6_ifa_notify(RTM_DELADDR, ifp);
1304
Cong Wangf88c91d2013-04-14 23:18:43 +08001305 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Thomas Haller5b84efe2014-01-15 15:36:59 +01001307 if (action != CLEANUP_PREFIX_RT_NOP) {
1308 cleanup_prefix_route(ifp, expires,
Hangbin Liud0098e42020-03-03 14:37:35 +08001309 action == CLEANUP_PREFIX_RT_DEL, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311
Daniel Walterc3968a82011-04-13 21:10:57 +00001312 /* clean up prefsrc entries */
1313 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001314out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 in6_ifa_put(ifp);
1316}
1317
Fernando Gont969c5462020-05-01 00:51:47 -03001318static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, bool block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 struct inet6_dev *idev = ifp->idev;
David Aherne6464b82018-05-27 08:09:53 -07001321 unsigned long tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001322 unsigned long regen_advance;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001323 unsigned long now = jiffies;
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001324 s32 cnf_temp_preferred_lft;
Fernando Gont969c5462020-05-01 00:51:47 -03001325 struct inet6_ifaddr *ift;
1326 struct ifa6_config cfg;
1327 long max_desync_factor;
1328 struct in6_addr addr;
1329 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Jiri Pirko53bd6742013-12-06 09:45:22 +01001331 write_lock_bh(&idev->lock);
Fernando Gont969c5462020-05-01 00:51:47 -03001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333retry:
1334 in6_dev_hold(idev);
1335 if (idev->cnf.use_tempaddr <= 0) {
Jiri Pirko53bd6742013-12-06 09:45:22 +01001336 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001337 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 in6_dev_put(idev);
1339 ret = -1;
1340 goto out;
1341 }
1342 spin_lock_bh(&ifp->lock);
1343 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1344 idev->cnf.use_tempaddr = -1; /*XXX*/
1345 spin_unlock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01001346 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001347 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1348 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 in6_dev_put(idev);
1350 ret = -1;
1351 goto out;
1352 }
1353 in6_ifa_hold(ifp);
1354 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Fernando Gont969c5462020-05-01 00:51:47 -03001355 ipv6_gen_rnd_iid(&addr);
1356
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001357 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001359 regen_advance = idev->cnf.regen_max_retry *
Ian Morris67ba4152014-08-24 21:53:10 +01001360 idev->cnf.dad_transmits *
Hangbin Liu19e16d22020-04-01 14:46:20 +08001361 max(NEIGH_VAR(idev->nd_parms, RETRANS_TIME), HZ/100) / HZ;
Jiri Bohac76506a92016-10-13 18:52:15 +02001362
1363 /* recalculate max_desync_factor each time and update
1364 * idev->desync_factor if it's larger
1365 */
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001366 cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft);
Jiri Bohac76506a92016-10-13 18:52:15 +02001367 max_desync_factor = min_t(__u32,
1368 idev->cnf.max_desync_factor,
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001369 cnf_temp_preferred_lft - regen_advance);
Jiri Bohac76506a92016-10-13 18:52:15 +02001370
1371 if (unlikely(idev->desync_factor > max_desync_factor)) {
1372 if (max_desync_factor > 0) {
1373 get_random_bytes(&idev->desync_factor,
1374 sizeof(idev->desync_factor));
1375 idev->desync_factor %= max_desync_factor;
1376 } else {
1377 idev->desync_factor = 0;
1378 }
1379 }
1380
David Ahern3f2d67b2018-06-11 07:12:12 -07001381 memset(&cfg, 0, sizeof(cfg));
David Aherne6464b82018-05-27 08:09:53 -07001382 cfg.valid_lft = min_t(__u32, ifp->valid_lft,
Jiri Bohac76506a92016-10-13 18:52:15 +02001383 idev->cnf.temp_valid_lft + age);
David Aherne6464b82018-05-27 08:09:53 -07001384 cfg.preferred_lft = cnf_temp_preferred_lft + age - idev->desync_factor;
1385 cfg.preferred_lft = min_t(__u32, ifp->prefered_lft, cfg.preferred_lft);
1386
1387 cfg.plen = ifp->prefix_len;
Jiri Bohac76506a92016-10-13 18:52:15 +02001388 tmp_tstamp = ifp->tstamp;
1389 spin_unlock_bh(&ifp->lock);
1390
Jiri Pirko53bd6742013-12-06 09:45:22 +01001391 write_unlock_bh(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001392
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001393 /* A temporary address is created only if this calculated Preferred
1394 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1395 * an implementation must not create a temporary address with a zero
1396 * Preferred Lifetime.
Heiner Kallweitecab6702014-03-12 22:13:19 +01001397 * Use age calculation as in addrconf_verify to avoid unnecessary
1398 * temporary addresses being generated.
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001399 */
Heiner Kallweitecab6702014-03-12 22:13:19 +01001400 age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
David Aherne6464b82018-05-27 08:09:53 -07001401 if (cfg.preferred_lft <= regen_advance + age) {
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001402 in6_ifa_put(ifp);
1403 in6_dev_put(idev);
1404 ret = -1;
1405 goto out;
1406 }
1407
David Aherne6464b82018-05-27 08:09:53 -07001408 cfg.ifa_flags = IFA_F_TEMPORARY;
Neil Horman95c385b2007-04-25 17:08:10 -07001409 /* set in addrconf_prefix_rcv() */
1410 if (ifp->flags & IFA_F_OPTIMISTIC)
David Aherne6464b82018-05-27 08:09:53 -07001411 cfg.ifa_flags |= IFA_F_OPTIMISTIC;
Neil Horman95c385b2007-04-25 17:08:10 -07001412
David Aherne6464b82018-05-27 08:09:53 -07001413 cfg.pfx = &addr;
1414 cfg.scope = ipv6_addr_scope(cfg.pfx);
1415
1416 ift = ipv6_add_addr(idev, &cfg, block, NULL);
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001417 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 in6_ifa_put(ifp);
1419 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001420 pr_info("%s: retry temporary address regeneration\n", __func__);
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 */
Xin Long4ef1a7c2020-08-17 14:30:49 +08001907static struct net_device *
1908__ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr,
1909 const struct net_device *dev, bool skip_dev_check,
1910 int strict, u32 banned_flags)
Erik Klinec58da4c2015-02-04 20:01:23 +09001911{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07001912 unsigned int hash = inet6_addr_hash(net, addr);
Xin Long4ef1a7c2020-08-17 14:30:49 +08001913 struct net_device *l3mdev, *ndev;
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001914 struct inet6_ifaddr *ifp;
Erik Klinec58da4c2015-02-04 20:01:23 +09001915 u32 ifp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Eric Dumazet480318a2017-10-23 16:17:48 -07001917 rcu_read_lock();
David Ahern232378e2018-03-13 08:29:37 -07001918
David Ahern1893ff22018-03-13 08:29:38 -07001919 l3mdev = l3mdev_master_dev_rcu(dev);
David Ahern232378e2018-03-13 08:29:37 -07001920 if (skip_dev_check)
1921 dev = NULL;
1922
Sasha Levinb67bfe02013-02-27 17:06:00 -08001923 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
Xin Long4ef1a7c2020-08-17 14:30:49 +08001924 ndev = ifp->idev->dev;
1925 if (!net_eq(dev_net(ndev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001926 continue;
David Ahern1893ff22018-03-13 08:29:38 -07001927
Xin Long4ef1a7c2020-08-17 14:30:49 +08001928 if (l3mdev_master_dev_rcu(ndev) != l3mdev)
David Ahern1893ff22018-03-13 08:29:38 -07001929 continue;
1930
Erik Klinec58da4c2015-02-04 20:01:23 +09001931 /* Decouple optimistic from tentative for evaluation here.
1932 * Ban optimistic addresses explicitly, when required.
1933 */
1934 ifp_flags = (ifp->flags&IFA_F_OPTIMISTIC)
1935 ? (ifp->flags&~IFA_F_TENTATIVE)
1936 : ifp->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (ipv6_addr_equal(&ifp->addr, addr) &&
Erik Klinec58da4c2015-02-04 20:01:23 +09001938 !(ifp_flags&banned_flags) &&
Xin Long4ef1a7c2020-08-17 14:30:49 +08001939 (!dev || ndev == dev ||
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001940 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
Eric Dumazet480318a2017-10-23 16:17:48 -07001941 rcu_read_unlock();
Xin Long4ef1a7c2020-08-17 14:30:49 +08001942 return ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001945
Eric Dumazet480318a2017-10-23 16:17:48 -07001946 rcu_read_unlock();
Xin Long4ef1a7c2020-08-17 14:30:49 +08001947 return NULL;
1948}
1949
1950int ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr,
1951 const struct net_device *dev, bool skip_dev_check,
1952 int strict, u32 banned_flags)
1953{
1954 return __ipv6_chk_addr_and_flags(net, addr, dev, skip_dev_check,
1955 strict, banned_flags) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
Erik Klinec58da4c2015-02-04 20:01:23 +09001957EXPORT_SYMBOL(ipv6_chk_addr_and_flags);
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001960/* Compares an address/prefix_len with addresses on device @dev.
1961 * If one is found it returns true.
1962 */
1963bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1964 const unsigned int prefix_len, struct net_device *dev)
1965{
Eric Dumazet47e26942017-10-07 19:30:25 -07001966 const struct inet6_ifaddr *ifa;
1967 const struct inet6_dev *idev;
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001968 bool ret = false;
1969
1970 rcu_read_lock();
1971 idev = __in6_dev_get(dev);
1972 if (idev) {
Eric Dumazet47e26942017-10-07 19:30:25 -07001973 list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) {
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001974 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1975 if (ret)
1976 break;
1977 }
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001978 }
1979 rcu_read_unlock();
1980
1981 return ret;
1982}
1983EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1984
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001985int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001986{
Eric Dumazet24ba3332017-10-07 19:30:26 -07001987 const struct inet6_ifaddr *ifa;
1988 const struct inet6_dev *idev;
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001989 int onlink;
1990
1991 onlink = 0;
1992 rcu_read_lock();
1993 idev = __in6_dev_get(dev);
1994 if (idev) {
Eric Dumazet24ba3332017-10-07 19:30:26 -07001995 list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001996 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1997 ifa->prefix_len);
1998 if (onlink)
1999 break;
2000 }
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04002001 }
2002 rcu_read_unlock();
2003 return onlink;
2004}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04002005EXPORT_SYMBOL(ipv6_chk_prefix);
2006
Xin Long81f6cb32020-08-03 23:34:46 +08002007/**
2008 * ipv6_dev_find - find the first device with a given source address.
2009 * @net: the net namespace
2010 * @addr: the source address
Xin Long2c4de212020-10-31 19:30:44 +01002011 * @dev: used to find the L3 domain of interest
Xin Long81f6cb32020-08-03 23:34:46 +08002012 *
2013 * The caller should be protected by RCU, or RTNL.
2014 */
Xin Long4ef1a7c2020-08-17 14:30:49 +08002015struct net_device *ipv6_dev_find(struct net *net, const struct in6_addr *addr,
2016 struct net_device *dev)
Xin Long81f6cb32020-08-03 23:34:46 +08002017{
Xin Long4ef1a7c2020-08-17 14:30:49 +08002018 return __ipv6_chk_addr_and_flags(net, addr, dev, !dev, 1,
2019 IFA_F_TENTATIVE);
Xin Long81f6cb32020-08-03 23:34:46 +08002020}
2021EXPORT_SYMBOL(ipv6_dev_find);
2022
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09002023struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08002024 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07002026 unsigned int hash = inet6_addr_hash(net, addr);
David S. Millerb79d1d52010-03-25 21:39:21 -07002027 struct inet6_ifaddr *ifp, *result = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Eric Dumazet24f226d2017-10-23 16:17:49 -07002029 rcu_read_lock();
2030 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002031 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08002032 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (ipv6_addr_equal(&ifp->addr, addr)) {
Ian Morris63159f22015-03-29 14:00:04 +01002034 if (!dev || ifp->idev->dev == dev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07002036 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 in6_ifa_hold(ifp);
2038 break;
2039 }
2040 }
2041 }
Eric Dumazet24f226d2017-10-23 16:17:49 -07002042 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
David S. Millerb79d1d52010-03-25 21:39:21 -07002044 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047/* Gets referenced address, destroys ifaddr */
2048
Brian Haleycc411d02009-09-09 14:41:32 +00002049static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Lubomir Rintel3d171f32016-01-08 13:47:23 +01002051 if (dad_failed)
2052 ifp->flags |= IFA_F_DADFAILED;
2053
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02002054 if (ifp->flags&IFA_F_TEMPORARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 struct inet6_ifaddr *ifpub;
2056 spin_lock_bh(&ifp->lock);
2057 ifpub = ifp->ifpub;
2058 if (ifpub) {
2059 in6_ifa_hold(ifpub);
2060 spin_unlock_bh(&ifp->lock);
Fernando Gont969c5462020-05-01 00:51:47 -03002061 ipv6_create_tempaddr(ifpub, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 in6_ifa_put(ifpub);
2063 } else {
2064 spin_unlock_bh(&ifp->lock);
2065 }
2066 ipv6_del_addr(ifp);
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02002067 } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) {
2068 spin_lock_bh(&ifp->lock);
2069 addrconf_del_dad_work(ifp);
2070 ifp->flags |= IFA_F_TENTATIVE;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01002071 if (dad_failed)
2072 ifp->flags &= ~IFA_F_OPTIMISTIC;
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02002073 spin_unlock_bh(&ifp->lock);
2074 if (dad_failed)
2075 ipv6_ifa_notify(0, ifp);
2076 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002077 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 ipv6_del_addr(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
Herbert Xuf2344a12010-05-18 15:55:27 -07002082static int addrconf_dad_end(struct inet6_ifaddr *ifp)
2083{
2084 int err = -ENOENT;
2085
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002086 spin_lock_bh(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07002087 if (ifp->state == INET6_IFADDR_STATE_DAD) {
2088 ifp->state = INET6_IFADDR_STATE_POSTDAD;
2089 err = 0;
2090 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002091 spin_unlock_bh(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07002092
2093 return err;
2094}
2095
Vishwanath Paida13c592017-10-30 19:38:52 -04002096void addrconf_dad_failure(struct sk_buff *skb, struct inet6_ifaddr *ifp)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002097{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002098 struct inet6_dev *idev = ifp->idev;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002099 struct net *net = dev_net(ifp->idev->dev);
Brian Haley9bdd8d42009-03-18 18:22:48 -07002100
Ursula Braun853dc2e2010-10-24 23:06:43 +00002101 if (addrconf_dad_end(ifp)) {
2102 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07002103 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00002104 }
Herbert Xuf2344a12010-05-18 15:55:27 -07002105
Vishwanath Paida13c592017-10-30 19:38:52 -04002106 net_info_ratelimited("%s: IPv6 duplicate address %pI6c used by %pM detected!\n",
2107 ifp->idev->dev->name, &ifp->addr, eth_hdr(skb)->h_source);
Brian Haley9bdd8d42009-03-18 18:22:48 -07002108
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002109 spin_lock_bh(&ifp->lock);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002110
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002111 if (ifp->flags & IFA_F_STABLE_PRIVACY) {
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002112 struct in6_addr new_addr;
2113 struct inet6_ifaddr *ifp2;
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002114 int retries = ifp->stable_privacy_retry + 1;
David Aherne6464b82018-05-27 08:09:53 -07002115 struct ifa6_config cfg = {
2116 .pfx = &new_addr,
2117 .plen = ifp->prefix_len,
2118 .ifa_flags = ifp->flags,
2119 .valid_lft = ifp->valid_lft,
2120 .preferred_lft = ifp->prefered_lft,
2121 .scope = ifp->scope,
2122 };
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002123
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002124 if (retries > net->ipv6.sysctl.idgen_retries) {
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002125 net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n",
2126 ifp->idev->dev->name);
2127 goto errdad;
2128 }
2129
2130 new_addr = ifp->addr;
2131 if (ipv6_generate_stable_address(&new_addr, retries,
2132 idev))
2133 goto errdad;
2134
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002135 spin_unlock_bh(&ifp->lock);
2136
2137 if (idev->cnf.max_addresses &&
2138 ipv6_count_addresses(idev) >=
2139 idev->cnf.max_addresses)
2140 goto lock_errdad;
2141
2142 net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n",
2143 ifp->idev->dev->name);
2144
David Aherne6464b82018-05-27 08:09:53 -07002145 ifp2 = ipv6_add_addr(idev, &cfg, false, NULL);
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002146 if (IS_ERR(ifp2))
2147 goto lock_errdad;
2148
2149 spin_lock_bh(&ifp2->lock);
2150 ifp2->stable_privacy_retry = retries;
2151 ifp2->state = INET6_IFADDR_STATE_PREDAD;
2152 spin_unlock_bh(&ifp2->lock);
2153
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002154 addrconf_mod_dad_work(ifp2, net->ipv6.sysctl.idgen_delay);
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002155 in6_ifa_put(ifp2);
2156lock_errdad:
2157 spin_lock_bh(&ifp->lock);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002158 }
2159
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002160errdad:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002161 /* transition from _POSTDAD to _ERRDAD */
2162 ifp->state = INET6_IFADDR_STATE_ERRDAD;
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002163 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002164
2165 addrconf_mod_dad_work(ifp, 0);
Wei Yongjun751eb6b2016-09-05 16:06:31 +08002166 in6_ifa_put(ifp);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002169/* Join to solicited addr multicast group.
2170 * caller must hold RTNL */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002171void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 struct in6_addr maddr;
2174
2175 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2176 return;
2177
2178 addrconf_addr_solict_mult(addr, &maddr);
2179 ipv6_dev_mc_inc(dev, &maddr);
2180}
2181
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002182/* caller must hold RTNL */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002183void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
2185 struct in6_addr maddr;
2186
2187 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2188 return;
2189
2190 addrconf_addr_solict_mult(addr, &maddr);
2191 __ipv6_dev_mc_dec(idev, &maddr);
2192}
2193
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002194/* caller must hold RTNL */
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002195static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
2197 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002198
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01002199 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00002200 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2202 if (ipv6_addr_any(&addr))
2203 return;
WANG Cong013b4d92014-09-11 15:35:11 -07002204 __ipv6_dev_ac_inc(ifp->idev, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205}
2206
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002207/* caller must hold RTNL */
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002208static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002211
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01002212 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00002213 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2215 if (ipv6_addr_any(&addr))
2216 return;
2217 __ipv6_dev_ac_dec(ifp->idev, &addr);
2218}
2219
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002220static int addrconf_ifid_6lowpan(u8 *eui, struct net_device *dev)
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002221{
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002222 switch (dev->addr_len) {
2223 case ETH_ALEN:
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +02002224 memcpy(eui, dev->dev_addr, 3);
2225 eui[3] = 0xFF;
2226 eui[4] = 0xFE;
2227 memcpy(eui + 5, dev->dev_addr + 3, 3);
2228 break;
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002229 case EUI64_ADDR_LEN:
2230 memcpy(eui, dev->dev_addr, EUI64_ADDR_LEN);
2231 eui[0] ^= 2;
2232 break;
2233 default:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002234 return -1;
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002235 }
2236
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002237 return 0;
2238}
2239
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002240static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
2241{
Jakub Kicinski1a8a23d2021-10-12 08:58:38 -07002242 const union fwnet_hwaddr *ha;
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002243
2244 if (dev->addr_len != FWNET_ALEN)
2245 return -1;
2246
Jakub Kicinski1a8a23d2021-10-12 08:58:38 -07002247 ha = (const union fwnet_hwaddr *)dev->dev_addr;
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002248
2249 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
2250 eui[0] ^= 2;
2251 return 0;
2252}
2253
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002254static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
2255{
2256 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
2257 if (dev->addr_len != ARCNET_ALEN)
2258 return -1;
2259 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002260 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002261 return 0;
2262}
2263
2264static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
2265{
2266 if (dev->addr_len != INFINIBAND_ALEN)
2267 return -1;
2268 memcpy(eui, dev->dev_addr + 12, 8);
2269 eui[0] |= 2;
2270 return 0;
2271}
2272
stephen hemmingerc61393e2010-10-04 20:17:53 +00002273static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002274{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00002275 if (addr == 0)
2276 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002277 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
2278 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
2279 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
2280 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
2281 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
2282 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
2283 eui[1] = 0;
2284 eui[2] = 0x5E;
2285 eui[3] = 0xFE;
2286 memcpy(eui + 4, &addr, 4);
2287 return 0;
2288}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002289
2290static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
2291{
2292 if (dev->priv_flags & IFF_ISATAP)
2293 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2294 return -1;
2295}
2296
stephen hemmingeraee80b52011-06-08 10:44:30 +00002297static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
2298{
2299 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2300}
2301
Nicolas Dichtele8377352013-08-20 12:16:06 +02002302static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
2303{
2304 memcpy(eui, dev->perm_addr, 3);
2305 memcpy(eui + 5, dev->perm_addr + 3, 3);
2306 eui[3] = 0xFF;
2307 eui[4] = 0xFE;
2308 eui[0] ^= 2;
2309 return 0;
2310}
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
2313{
2314 switch (dev->type) {
2315 case ARPHRD_ETHER:
2316 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002317 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002319 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002321 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002322 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002323 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002324 case ARPHRD_IPGRE:
Felix Jia45ce0fd2017-01-26 16:59:18 +13002325 case ARPHRD_TUNNEL:
stephen hemmingeraee80b52011-06-08 10:44:30 +00002326 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb82013-12-11 17:05:36 +02002327 case ARPHRD_6LOWPAN:
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002328 return addrconf_ifid_6lowpan(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002329 case ARPHRD_IEEE1394:
2330 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02002331 case ARPHRD_TUNNEL6:
Felix Jia45ce0fd2017-01-26 16:59:18 +13002332 case ARPHRD_IP6GRE:
Subash Abhinov Kasiviswanathan9deb4412018-06-04 19:26:07 -06002333 case ARPHRD_RAWIP:
Nicolas Dichtele8377352013-08-20 12:16:06 +02002334 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
2336 return -1;
2337}
2338
2339static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
2340{
2341 int err = -1;
2342 struct inet6_ifaddr *ifp;
2343
2344 read_lock_bh(&idev->lock);
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01002345 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
2346 if (ifp->scope > IFA_LINK)
2347 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
2349 memcpy(eui, ifp->addr.s6_addr+8, 8);
2350 err = 0;
2351 break;
2352 }
2353 }
2354 read_unlock_bh(&idev->lock);
2355 return err;
2356}
2357
Fernando Gont969c5462020-05-01 00:51:47 -03002358/* Generation of a randomized Interface Identifier
2359 * draft-ietf-6man-rfc4941bis, Section 3.3.1
2360 */
2361
2362static void ipv6_gen_rnd_iid(struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364regen:
Fernando Gont969c5462020-05-01 00:51:47 -03002365 get_random_bytes(&addr->s6_addr[8], 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Fernando Gont969c5462020-05-01 00:51:47 -03002367 /* <draft-ietf-6man-rfc4941bis-08.txt>, Section 3.3.1:
2368 * check if generated address is not inappropriate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 *
Bhaskar Chowdhury912b519a2021-03-27 04:42:40 +05302370 * - Reserved IPv6 Interface Identifiers
Fernando Gont969c5462020-05-01 00:51:47 -03002371 * - XXX: already assigned to an address on the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Fernando Gont969c5462020-05-01 00:51:47 -03002374 /* Subnet-router anycast: 0000:0000:0000:0000 */
2375 if (!(addr->s6_addr32[2] | addr->s6_addr32[3]))
2376 goto regen;
2377
2378 /* IANA Ethernet block: 0200:5EFF:FE00:0000-0200:5EFF:FE00:5212
2379 * Proxy Mobile IPv6: 0200:5EFF:FE00:5213
2380 * IANA Ethernet block: 0200:5EFF:FE00:5214-0200:5EFF:FEFF:FFFF
2381 */
2382 if (ntohl(addr->s6_addr32[2]) == 0x02005eff &&
2383 (ntohl(addr->s6_addr32[3]) & 0Xff000000) == 0xfe000000)
2384 goto regen;
2385
2386 /* Reserved subnet anycast addresses */
2387 if (ntohl(addr->s6_addr32[2]) == 0xfdffffff &&
2388 ntohl(addr->s6_addr32[3]) >= 0Xffffff80)
2389 goto regen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392/*
2393 * Add prefix route.
2394 */
2395
2396static void
David Ahern8308f3f2018-05-27 08:09:58 -07002397addrconf_prefix_route(struct in6_addr *pfx, int plen, u32 metric,
2398 struct net_device *dev, unsigned long expires,
2399 u32 flags, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
Thomas Graf86872cb2006-08-22 00:01:08 -07002401 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002402 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX,
David Ahern8308f3f2018-05-27 08:09:58 -07002403 .fc_metric = metric ? : IP6_RT_PRIO_ADDRCONF,
Thomas Graf86872cb2006-08-22 00:01:08 -07002404 .fc_ifindex = dev->ifindex,
2405 .fc_expires = expires,
2406 .fc_dst_len = plen,
2407 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002408 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07002409 .fc_protocol = RTPROT_KERNEL,
David Aherne8478e82018-04-17 17:33:13 -07002410 .fc_type = RTN_UNICAST,
Thomas Graf86872cb2006-08-22 00:01:08 -07002411 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002413 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415 /* Prevent useless cloning on PtP SIT.
2416 This thing is done here expecting that the whole
2417 class of non-broadcast devices need not cloning.
2418 */
Amerigo Wang07a93622012-10-29 16:23:10 +00002419#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07002420 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
2421 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
David Ahernacb54e32018-04-17 17:33:22 -07002424 ip6_route_add(&cfg, gfp_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425}
2426
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002427
David Ahern8d1c8022018-04-17 17:33:26 -07002428static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002429 int plen,
2430 const struct net_device *dev,
David Ahern2b2450c2019-03-27 20:53:52 -07002431 u32 flags, u32 noflags,
2432 bool no_gw)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002433{
2434 struct fib6_node *fn;
David Ahern8d1c8022018-04-17 17:33:26 -07002435 struct fib6_info *rt = NULL;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002436 struct fib6_table *table;
David Ahernca254492015-10-12 11:47:10 -07002437 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002438
David Ahernca254492015-10-12 11:47:10 -07002439 table = fib6_get_table(dev_net(dev), tb_id);
Ian Morris63159f22015-03-29 14:00:04 +01002440 if (!table)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002441 return NULL;
2442
Wei Wang66f5d6c2017-10-06 12:06:10 -07002443 rcu_read_lock();
Wei Wang38fbeee2017-10-06 12:06:02 -07002444 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0, true);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002445 if (!fn)
2446 goto out;
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002447
Wei Wang66f5d6c2017-10-06 12:06:10 -07002448 for_each_fib6_node_rt_rcu(fn) {
David Ahernf88d8ea2019-06-03 20:19:52 -07002449 /* prefix routes only use builtin fib6_nh */
2450 if (rt->nh)
2451 continue;
2452
David Ahern1cf844c2019-05-22 20:27:59 -07002453 if (rt->fib6_nh->fib_nh_dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002454 continue;
David Ahern1cf844c2019-05-22 20:27:59 -07002455 if (no_gw && rt->fib6_nh->fib_nh_gw_family)
David Ahern2b2450c2019-03-27 20:53:52 -07002456 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07002457 if ((rt->fib6_flags & flags) != flags)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002458 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07002459 if ((rt->fib6_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002460 continue;
Wei Wange873e4b2018-07-21 20:56:32 -07002461 if (!fib6_info_hold_safe(rt))
2462 continue;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002463 break;
2464 }
2465out:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002466 rcu_read_unlock();
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002467 return rt;
2468}
2469
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471/* Create "default" multicast route to the interface */
2472
2473static void addrconf_add_mroute(struct net_device *dev)
2474{
Thomas Graf86872cb2006-08-22 00:01:08 -07002475 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002476 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_LOCAL,
Thomas Graf86872cb2006-08-22 00:01:08 -07002477 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2478 .fc_ifindex = dev->ifindex,
2479 .fc_dst_len = 8,
2480 .fc_flags = RTF_UP,
Matteo Croceceed9032021-01-15 19:42:09 +01002481 .fc_type = RTN_MULTICAST,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002482 .fc_nlinfo.nl_net = dev_net(dev),
Matteo Crocea826b042021-01-15 19:42:08 +01002483 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07002484 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Thomas Graf86872cb2006-08-22 00:01:08 -07002486 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2487
Cong Wange500c6d2018-08-22 12:58:34 -07002488 ip6_route_add(&cfg, GFP_KERNEL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489}
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2492{
2493 struct inet6_dev *idev;
2494
2495 ASSERT_RTNL();
2496
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002497 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02002498 if (IS_ERR(idev))
2499 return idev;
Brian Haley64e724f2010-07-20 10:34:30 +00002500
2501 if (idev->cnf.disable_ipv6)
2502 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
2504 /* Add default multicast route */
David Ahernba46ee42016-06-13 13:44:18 -07002505 if (!(dev->flags & IFF_LOOPBACK) && !netif_is_l3_master(dev))
Li Wei4af04ab2011-12-06 21:23:45 +00002506 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return idev;
2509}
2510
Jiri Pirko53bd6742013-12-06 09:45:22 +01002511static void manage_tempaddrs(struct inet6_dev *idev,
2512 struct inet6_ifaddr *ifp,
2513 __u32 valid_lft, __u32 prefered_lft,
2514 bool create, unsigned long now)
2515{
2516 u32 flags;
2517 struct inet6_ifaddr *ift;
2518
2519 read_lock_bh(&idev->lock);
2520 /* update all temporary addresses in the list */
2521 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2522 int age, max_valid, max_prefered;
2523
2524 if (ifp != ift->ifpub)
2525 continue;
2526
2527 /* RFC 4941 section 3.3:
2528 * If a received option will extend the lifetime of a public
2529 * address, the lifetimes of temporary addresses should
2530 * be extended, subject to the overall constraint that no
2531 * temporary addresses should ever remain "valid" or "preferred"
2532 * for a time longer than (TEMP_VALID_LIFETIME) or
2533 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2534 */
2535 age = (now - ift->cstamp) / HZ;
2536 max_valid = idev->cnf.temp_valid_lft - age;
2537 if (max_valid < 0)
2538 max_valid = 0;
2539
2540 max_prefered = idev->cnf.temp_prefered_lft -
Jiri Bohac76506a92016-10-13 18:52:15 +02002541 idev->desync_factor - age;
Jiri Pirko53bd6742013-12-06 09:45:22 +01002542 if (max_prefered < 0)
2543 max_prefered = 0;
2544
2545 if (valid_lft > max_valid)
2546 valid_lft = max_valid;
2547
2548 if (prefered_lft > max_prefered)
2549 prefered_lft = max_prefered;
2550
2551 spin_lock(&ift->lock);
2552 flags = ift->flags;
2553 ift->valid_lft = valid_lft;
2554 ift->prefered_lft = prefered_lft;
2555 ift->tstamp = now;
2556 if (prefered_lft > 0)
2557 ift->flags &= ~IFA_F_DEPRECATED;
2558
2559 spin_unlock(&ift->lock);
2560 if (!(flags&IFA_F_TENTATIVE))
2561 ipv6_ifa_notify(0, ift);
2562 }
2563
2564 if ((create || list_empty(&idev->tempaddr_list)) &&
2565 idev->cnf.use_tempaddr > 0) {
2566 /* When a new public address is created as described
2567 * in [ADDRCONF], also create a new temporary address.
2568 * Also create a temporary address if it's enabled but
2569 * no temporary address currently exists.
2570 */
2571 read_unlock_bh(&idev->lock);
Fernando Gont969c5462020-05-01 00:51:47 -03002572 ipv6_create_tempaddr(ifp, false);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002573 } else {
2574 read_unlock_bh(&idev->lock);
2575 }
2576}
2577
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002578static bool is_addr_mode_generate_stable(struct inet6_dev *idev)
2579{
Felix Jiad35a00b2017-01-26 16:59:17 +13002580 return idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY ||
2581 idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_RANDOM;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002582}
2583
Alexander Aringcc84b3c2016-06-15 21:20:24 +02002584int addrconf_prefix_rcv_add_addr(struct net *net, struct net_device *dev,
2585 const struct prefix_info *pinfo,
2586 struct inet6_dev *in6_dev,
2587 const struct in6_addr *addr, int addr_type,
2588 u32 addr_flags, bool sllao, bool tokenized,
2589 __u32 valid_lft, u32 prefered_lft)
Alexander Aring4f672232016-06-15 21:20:22 +02002590{
2591 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(net, addr, dev, 1);
Guillaume Nault36268982022-01-26 16:38:52 +01002592 int create = 0, update_lft = 0;
Alexander Aring4f672232016-06-15 21:20:22 +02002593
2594 if (!ifp && valid_lft) {
2595 int max_addresses = in6_dev->cnf.max_addresses;
David Aherne6464b82018-05-27 08:09:53 -07002596 struct ifa6_config cfg = {
2597 .pfx = addr,
2598 .plen = pinfo->prefix_len,
2599 .ifa_flags = addr_flags,
2600 .valid_lft = valid_lft,
2601 .preferred_lft = prefered_lft,
2602 .scope = addr_type & IPV6_ADDR_SCOPE_MASK,
2603 };
Alexander Aring4f672232016-06-15 21:20:22 +02002604
2605#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Matteo Croce35e015e2017-09-12 17:46:37 +02002606 if ((net->ipv6.devconf_all->optimistic_dad ||
2607 in6_dev->cnf.optimistic_dad) &&
Alexander Aring4f672232016-06-15 21:20:22 +02002608 !net->ipv6.devconf_all->forwarding && sllao)
David Aherne6464b82018-05-27 08:09:53 -07002609 cfg.ifa_flags |= IFA_F_OPTIMISTIC;
Alexander Aring4f672232016-06-15 21:20:22 +02002610#endif
2611
2612 /* Do not allow to create too much of autoconfigured
2613 * addresses; this would be too easy way to crash kernel.
2614 */
2615 if (!max_addresses ||
2616 ipv6_count_addresses(in6_dev) < max_addresses)
David Aherne6464b82018-05-27 08:09:53 -07002617 ifp = ipv6_add_addr(in6_dev, &cfg, false, NULL);
Alexander Aring4f672232016-06-15 21:20:22 +02002618
2619 if (IS_ERR_OR_NULL(ifp))
2620 return -1;
2621
Alexander Aring4f672232016-06-15 21:20:22 +02002622 create = 1;
2623 spin_lock_bh(&ifp->lock);
2624 ifp->flags |= IFA_F_MANAGETEMPADDR;
2625 ifp->cstamp = jiffies;
2626 ifp->tokenized = tokenized;
2627 spin_unlock_bh(&ifp->lock);
2628 addrconf_dad_start(ifp);
2629 }
2630
2631 if (ifp) {
2632 u32 flags;
2633 unsigned long now;
2634 u32 stored_lft;
2635
Guillaume Nault36268982022-01-26 16:38:52 +01002636 /* update lifetime (RFC2462 5.5.3 e) */
Alexander Aring4f672232016-06-15 21:20:22 +02002637 spin_lock_bh(&ifp->lock);
2638 now = jiffies;
2639 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2640 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2641 else
2642 stored_lft = 0;
Lorenzo Bianconif85f94b2018-04-16 17:52:59 +02002643 if (!create && stored_lft) {
Guillaume Nault36268982022-01-26 16:38:52 +01002644 const u32 minimum_lft = min_t(u32,
2645 stored_lft, MIN_VALID_LIFETIME);
2646 valid_lft = max(valid_lft, minimum_lft);
2647
2648 /* RFC4862 Section 5.5.3e:
2649 * "Note that the preferred lifetime of the
2650 * corresponding address is always reset to
2651 * the Preferred Lifetime in the received
2652 * Prefix Information option, regardless of
2653 * whether the valid lifetime is also reset or
2654 * ignored."
2655 *
2656 * So we should always update prefered_lft here.
2657 */
2658 update_lft = 1;
2659 }
2660
2661 if (update_lft) {
Alexander Aring4f672232016-06-15 21:20:22 +02002662 ifp->valid_lft = valid_lft;
2663 ifp->prefered_lft = prefered_lft;
2664 ifp->tstamp = now;
2665 flags = ifp->flags;
2666 ifp->flags &= ~IFA_F_DEPRECATED;
2667 spin_unlock_bh(&ifp->lock);
2668
2669 if (!(flags&IFA_F_TENTATIVE))
2670 ipv6_ifa_notify(0, ifp);
2671 } else
2672 spin_unlock_bh(&ifp->lock);
2673
2674 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2675 create, now);
2676
2677 in6_ifa_put(ifp);
2678 addrconf_verify();
2679 }
2680
2681 return 0;
2682}
Alexander Aringcc84b3c2016-06-15 21:20:24 +02002683EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr);
Alexander Aring4f672232016-06-15 21:20:22 +02002684
Neil Hormane6bff992012-01-04 10:49:15 +00002685void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
2687 struct prefix_info *pinfo;
2688 __u32 valid_lft;
2689 __u32 prefered_lft;
Alexander Aring4f672232016-06-15 21:20:22 +02002690 int addr_type, err;
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01002691 u32 addr_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002693 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 if (len < sizeof(struct prefix_info)) {
Joe Perchese32ac252018-03-26 08:35:01 -07002698 netdev_dbg(dev, "addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 return;
2700 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 /*
2703 * Validation checks ([ADDRCONF], page 19)
2704 */
2705
2706 addr_type = ipv6_addr_type(&pinfo->prefix);
2707
2708 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2709 return;
2710
2711 valid_lft = ntohl(pinfo->valid);
2712 prefered_lft = ntohl(pinfo->prefered);
2713
2714 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002715 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 return;
2717 }
2718
2719 in6_dev = in6_dev_get(dev);
2720
Ian Morris63159f22015-03-29 14:00:04 +01002721 if (!in6_dev) {
Joe Perchese87cc472012-05-13 21:56:26 +00002722 net_dbg_ratelimited("addrconf: device %s not configured\n",
2723 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 return;
2725 }
2726
2727 /*
2728 * Two things going on here:
2729 * 1) Add routes for on-link prefixes
2730 * 2) Configure prefixes with the auto flag set
2731 */
2732
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002733 if (pinfo->onlink) {
David Ahern8d1c8022018-04-17 17:33:26 -07002734 struct fib6_info *rt;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002735 unsigned long rt_expires;
2736
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002737 /* Avoid arithmetic overflow. Really, we could
2738 * save rt_expires in seconds, likely valid_lft,
2739 * but it would require division in fib gc, that it
2740 * not good.
2741 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002742 if (HZ > USER_HZ)
2743 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2744 else
2745 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002746
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002747 if (addrconf_finite_timeout(rt_expires))
2748 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002750 rt = addrconf_get_prefix_route(&pinfo->prefix,
2751 pinfo->prefix_len,
2752 dev,
2753 RTF_ADDRCONF | RTF_PREFIX_RT,
David Ahern2b2450c2019-03-27 20:53:52 -07002754 RTF_DEFAULT, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002756 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002757 /* Autoconf prefix route */
2758 if (valid_lft == 0) {
Roopa Prabhu11dd74b2020-04-27 13:56:45 -07002759 ip6_del_rt(net, rt, false);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002760 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002761 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002762 /* not infinity */
David Ahern14895682018-04-17 17:33:17 -07002763 fib6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002764 } else {
David Ahern14895682018-04-17 17:33:17 -07002765 fib6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 }
2767 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002768 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002769 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2770 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002771 /* not infinity */
2772 flags |= RTF_EXPIRES;
2773 expires = jiffies_to_clock_t(rt_expires);
2774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
David Ahern8308f3f2018-05-27 08:09:58 -07002776 0, dev, expires, flags,
2777 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 }
David Ahern93531c62018-04-17 17:33:25 -07002779 fib6_info_release(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 }
2781
2782 /* Try to figure out our local address for this prefix */
2783
2784 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 struct in6_addr addr;
Alexander Aringf997c552016-06-15 21:20:23 +02002786 bool tokenized = false, dev_addr_generated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
2788 if (pinfo->prefix_len == 64) {
2789 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002790
2791 if (!ipv6_addr_any(&in6_dev->token)) {
2792 read_lock_bh(&in6_dev->lock);
2793 memcpy(addr.s6_addr + 8,
2794 in6_dev->token.s6_addr + 8, 8);
2795 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002796 tokenized = true;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002797 } else if (is_addr_mode_generate_stable(in6_dev) &&
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01002798 !ipv6_generate_stable_address(&addr, 0,
2799 in6_dev)) {
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01002800 addr_flags |= IFA_F_STABLE_PRIVACY;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01002801 goto ok;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002802 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2803 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Alexander Aring4f672232016-06-15 21:20:22 +02002804 goto put;
Alexander Aringf997c552016-06-15 21:20:23 +02002805 } else {
2806 dev_addr_generated = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 }
2808 goto ok;
2809 }
Joe Perchese87cc472012-05-13 21:56:26 +00002810 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2811 pinfo->prefix_len);
Alexander Aring4f672232016-06-15 21:20:22 +02002812 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814ok:
Alexander Aring4f672232016-06-15 21:20:22 +02002815 err = addrconf_prefix_rcv_add_addr(net, dev, pinfo, in6_dev,
2816 &addr, addr_type,
2817 addr_flags, sllao,
2818 tokenized, valid_lft,
2819 prefered_lft);
2820 if (err)
2821 goto put;
Alexander Aringf997c552016-06-15 21:20:23 +02002822
2823 /* Ignore error case here because previous prefix add addr was
2824 * successful which will be notified.
2825 */
2826 ndisc_ops_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, &addr,
2827 addr_type, addr_flags, sllao,
2828 tokenized, valid_lft,
2829 prefered_lft,
2830 dev_addr_generated);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
Alexander Aring4f672232016-06-15 21:20:22 +02002833put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 in6_dev_put(in6_dev);
2835}
2836
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002837static int addrconf_set_sit_dstaddr(struct net *net, struct net_device *dev,
2838 struct in6_ifreq *ireq)
2839{
2840 struct ip_tunnel_parm p = { };
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002841 int err;
2842
2843 if (!(ipv6_addr_type(&ireq->ifr6_addr) & IPV6_ADDR_COMPATv4))
2844 return -EADDRNOTAVAIL;
2845
2846 p.iph.daddr = ireq->ifr6_addr.s6_addr32[3];
2847 p.iph.version = 4;
2848 p.iph.ihl = 5;
2849 p.iph.protocol = IPPROTO_IPV6;
2850 p.iph.ttl = 64;
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002851
Christoph Hellwig8e3db0b2020-05-19 15:03:19 +02002852 if (!dev->netdev_ops->ndo_tunnel_ctl)
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002853 return -EOPNOTSUPP;
Christoph Hellwig8e3db0b2020-05-19 15:03:19 +02002854 err = dev->netdev_ops->ndo_tunnel_ctl(dev, &p, SIOCADDTUNNEL);
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002855 if (err)
2856 return err;
2857
2858 dev = __dev_get_by_name(net, p.name);
2859 if (!dev)
2860 return -ENOBUFS;
2861 return dev_open(dev, NULL);
2862}
2863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864/*
2865 * Set destination address.
2866 * Special case for SIT interfaces where we create a new "virtual"
2867 * device.
2868 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002869int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 struct net_device *dev;
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002872 struct in6_ifreq ireq;
2873 int err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Christoph Hellwigf0988462020-05-19 15:03:17 +02002875 if (!IS_ENABLED(CONFIG_IPV6_SIT))
2876 return -ENODEV;
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002877 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2878 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
2880 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002881 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Christoph Hellwig68ad6882020-05-19 15:03:18 +02002882 if (dev && dev->type == ARPHRD_SIT)
2883 err = addrconf_set_sit_dstaddr(net, dev, &ireq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 rtnl_unlock();
2885 return err;
2886}
2887
Madhu Challa93a714d2015-02-25 09:58:35 -08002888static int ipv6_mc_config(struct sock *sk, bool join,
2889 const struct in6_addr *addr, int ifindex)
2890{
2891 int ret;
2892
2893 ASSERT_RTNL();
2894
2895 lock_sock(sk);
2896 if (join)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002897 ret = ipv6_sock_mc_join(sk, ifindex, addr);
Madhu Challa93a714d2015-02-25 09:58:35 -08002898 else
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002899 ret = ipv6_sock_mc_drop(sk, ifindex, addr);
Madhu Challa93a714d2015-02-25 09:58:35 -08002900 release_sock(sk);
2901
2902 return ret;
2903}
2904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905/*
2906 * Manual configuration of address on an interface
2907 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002908static int inet6_addr_add(struct net *net, int ifindex,
David Ahern19b15182018-05-27 08:09:54 -07002909 struct ifa6_config *cfg,
David Ahernde95e042017-10-18 09:56:54 -07002910 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
2912 struct inet6_ifaddr *ifp;
2913 struct inet6_dev *idev;
2914 struct net_device *dev;
Madhu Challa93a714d2015-02-25 09:58:35 -08002915 unsigned long timeout;
2916 clock_t expires;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002917 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002920
David Ahern19b15182018-05-27 08:09:54 -07002921 if (cfg->plen > 128)
Thomas Graf24ef0da2008-05-28 16:54:22 +02002922 return -EINVAL;
2923
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002924 /* check the lifetime */
David Ahern19b15182018-05-27 08:09:54 -07002925 if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft)
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002926 return -EINVAL;
2927
David Ahern19b15182018-05-27 08:09:54 -07002928 if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && cfg->plen != 64)
Jiri Pirko53bd6742013-12-06 09:45:22 +01002929 return -EINVAL;
2930
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002931 dev = __dev_get_by_index(net, ifindex);
2932 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002934
Brian Haley64e724f2010-07-20 10:34:30 +00002935 idev = addrconf_add_dev(dev);
2936 if (IS_ERR(idev))
2937 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
David Ahern19b15182018-05-27 08:09:54 -07002939 if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
Madhu Challa93a714d2015-02-25 09:58:35 -08002940 int ret = ipv6_mc_config(net->ipv6.mc_autojoin_sk,
David Ahern19b15182018-05-27 08:09:54 -07002941 true, cfg->pfx, ifindex);
Madhu Challa93a714d2015-02-25 09:58:35 -08002942
2943 if (ret < 0)
2944 return ret;
2945 }
2946
David Ahern19b15182018-05-27 08:09:54 -07002947 cfg->scope = ipv6_addr_scope(cfg->pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
David Ahern19b15182018-05-27 08:09:54 -07002949 timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002950 if (addrconf_finite_timeout(timeout)) {
2951 expires = jiffies_to_clock_t(timeout * HZ);
David Ahern19b15182018-05-27 08:09:54 -07002952 cfg->valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002953 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002954 } else {
2955 expires = 0;
2956 flags = 0;
David Ahern19b15182018-05-27 08:09:54 -07002957 cfg->ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002958 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002959
David Ahern19b15182018-05-27 08:09:54 -07002960 timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002961 if (addrconf_finite_timeout(timeout)) {
2962 if (timeout == 0)
David Ahern19b15182018-05-27 08:09:54 -07002963 cfg->ifa_flags |= IFA_F_DEPRECATED;
2964 cfg->preferred_lft = timeout;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002965 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002966
David Ahern19b15182018-05-27 08:09:54 -07002967 ifp = ipv6_add_addr(idev, cfg, true, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 if (!IS_ERR(ifp)) {
David Ahern19b15182018-05-27 08:09:54 -07002969 if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) {
David Ahern8308f3f2018-05-27 08:09:58 -07002970 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
2971 ifp->rt_priority, dev, expires,
2972 flags, GFP_KERNEL);
Thomas Haller761aac72014-01-15 15:36:58 +01002973 }
2974
Lorenzo Bianconia2d481b2018-04-17 11:54:39 +02002975 /* Send a netlink notification if DAD is enabled and
2976 * optimistic flag is not set
2977 */
2978 if (!(ifp->flags & (IFA_F_OPTIMISTIC | IFA_F_NODAD)))
2979 ipv6_ifa_notify(0, ifp);
Neil Horman95c385b2007-04-25 17:08:10 -07002980 /*
2981 * Note that section 3.1 of RFC 4429 indicates
2982 * that the Optimistic flag should not be set for
2983 * manually configured addresses
2984 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002985 addrconf_dad_start(ifp);
David Ahern19b15182018-05-27 08:09:54 -07002986 if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR)
2987 manage_tempaddrs(idev, ifp, cfg->valid_lft,
2988 cfg->preferred_lft, true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002990 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 return 0;
David Ahern19b15182018-05-27 08:09:54 -07002992 } else if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
2993 ipv6_mc_config(net->ipv6.mc_autojoin_sk, false,
2994 cfg->pfx, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 }
2996
2997 return PTR_ERR(ifp);
2998}
2999
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003000static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags,
3001 const struct in6_addr *pfx, unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002{
3003 struct inet6_ifaddr *ifp;
3004 struct inet6_dev *idev;
3005 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003006
Thomas Graf24ef0da2008-05-28 16:54:22 +02003007 if (plen > 128)
3008 return -EINVAL;
3009
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003010 dev = __dev_get_by_index(net, ifindex);
3011 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 return -ENODEV;
3013
Ian Morrise5d08d72014-11-23 21:28:43 +00003014 idev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003015 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 return -ENXIO;
3017
3018 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003019 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 if (ifp->prefix_len == plen &&
3021 ipv6_addr_equal(pfx, &ifp->addr)) {
3022 in6_ifa_hold(ifp);
3023 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003024
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003025 if (!(ifp->flags & IFA_F_TEMPORARY) &&
3026 (ifa_flags & IFA_F_MANAGETEMPADDR))
3027 manage_tempaddrs(idev, ifp, 0, 0, false,
3028 jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 ipv6_del_addr(ifp);
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003030 addrconf_verify_rtnl();
Madhu Challa93a714d2015-02-25 09:58:35 -08003031 if (ipv6_addr_is_multicast(pfx)) {
3032 ipv6_mc_config(net->ipv6.mc_autojoin_sk,
3033 false, pfx, dev->ifindex);
3034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 return 0;
3036 }
3037 }
3038 read_unlock_bh(&idev->lock);
3039 return -EADDRNOTAVAIL;
3040}
3041
3042
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003043int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044{
David Ahern19b15182018-05-27 08:09:54 -07003045 struct ifa6_config cfg = {
3046 .ifa_flags = IFA_F_PERMANENT,
3047 .preferred_lft = INFINITY_LIFE_TIME,
3048 .valid_lft = INFINITY_LIFE_TIME,
3049 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 struct in6_ifreq ireq;
3051 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003052
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003053 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
3057 return -EFAULT;
3058
David Ahern19b15182018-05-27 08:09:54 -07003059 cfg.pfx = &ireq.ifr6_addr;
3060 cfg.plen = ireq.ifr6_prefixlen;
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 rtnl_lock();
David Ahern19b15182018-05-27 08:09:54 -07003063 err = inet6_addr_add(net, ireq.ifr6_ifindex, &cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 rtnl_unlock();
3065 return err;
3066}
3067
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003068int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
3070 struct in6_ifreq ireq;
3071 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003072
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003073 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 return -EPERM;
3075
3076 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
3077 return -EFAULT;
3078
3079 rtnl_lock();
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02003080 err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003081 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 rtnl_unlock();
3083 return err;
3084}
3085
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003086static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
3087 int plen, int scope)
3088{
3089 struct inet6_ifaddr *ifp;
David Aherne6464b82018-05-27 08:09:53 -07003090 struct ifa6_config cfg = {
3091 .pfx = addr,
3092 .plen = plen,
3093 .ifa_flags = IFA_F_PERMANENT,
3094 .valid_lft = INFINITY_LIFE_TIME,
3095 .preferred_lft = INFINITY_LIFE_TIME,
3096 .scope = scope
3097 };
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003098
David Aherne6464b82018-05-27 08:09:53 -07003099 ifp = ipv6_add_addr(idev, &cfg, true, NULL);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003100 if (!IS_ERR(ifp)) {
3101 spin_lock_bh(&ifp->lock);
3102 ifp->flags &= ~IFA_F_TENTATIVE;
3103 spin_unlock_bh(&ifp->lock);
Paolo Abeni764d3be2016-11-22 16:57:40 +01003104 rt_genid_bump_ipv6(dev_net(idev->dev));
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003105 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3106 in6_ifa_put(ifp);
3107 }
3108}
3109
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003110#if IS_ENABLED(CONFIG_IPV6_SIT) || IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE)
3111static void add_v4_addrs(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 struct in6_addr addr;
3114 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003115 struct net *net = dev_net(idev->dev);
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003116 int scope, plen, offset = 0;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01003117 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119 ASSERT_RTNL();
3120
3121 memset(&addr, 0, sizeof(struct in6_addr));
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003122 /* in case of IP6GRE the dev_addr is an IPv6 and therefore we use only the last 4 bytes */
3123 if (idev->dev->addr_len == sizeof(struct in6_addr))
3124 offset = sizeof(struct in6_addr) - 4;
3125 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr + offset, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
3127 if (idev->dev->flags&IFF_POINTOPOINT) {
Stephen Suryaputra61e18ce2021-10-20 16:06:18 -04003128 if (idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_NONE)
3129 return;
3130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 addr.s6_addr32[0] = htonl(0xfe800000);
3132 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003133 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 } else {
3135 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003136 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01003137 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
3139
3140 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01003141 add_addr(idev, &addr, plen, scope);
David Ahern8308f3f2018-05-27 08:09:58 -07003142 addrconf_prefix_route(&addr, plen, 0, idev->dev, 0, pflags,
Cong Wange500c6d2018-08-22 12:58:34 -07003143 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 return;
3145 }
3146
Benjamin Thery6fda7352008-03-05 10:47:47 -08003147 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003148 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003150 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 int flag = scope;
3152
Florian Westphalcd5a4112019-05-31 18:27:07 +02003153 in_dev_for_each_ifa_rtnl(ifa, in_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 addr.s6_addr32[3] = ifa->ifa_local;
3155
3156 if (ifa->ifa_scope == RT_SCOPE_LINK)
3157 continue;
3158 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
3159 if (idev->dev->flags&IFF_POINTOPOINT)
3160 continue;
3161 flag |= IFA_HOST;
3162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003164 add_addr(idev, &addr, plen, flag);
David Ahern8308f3f2018-05-27 08:09:58 -07003165 addrconf_prefix_route(&addr, plen, 0, idev->dev,
Cong Wange500c6d2018-08-22 12:58:34 -07003166 0, pflags, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 }
3168 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170}
Joerg Roedel0be669b2006-10-10 14:49:53 -07003171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
3173static void init_loopback(struct net_device *dev)
3174{
3175 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
3177 /* ::1 */
3178
3179 ASSERT_RTNL();
3180
Ian Morrise5d08d72014-11-23 21:28:43 +00003181 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02003182 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00003183 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 return;
3185 }
3186
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003187 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
3189
Alexander Aring2ad3ed52016-06-15 21:20:17 +02003190void addrconf_add_linklocal(struct inet6_dev *idev,
3191 const struct in6_addr *addr, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
David Aherne6464b82018-05-27 08:09:53 -07003193 struct ifa6_config cfg = {
3194 .pfx = addr,
3195 .plen = 64,
3196 .ifa_flags = flags | IFA_F_PERMANENT,
3197 .valid_lft = INFINITY_LIFE_TIME,
3198 .preferred_lft = INFINITY_LIFE_TIME,
3199 .scope = IFA_LINK
3200 };
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003201 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Neil Horman95c385b2007-04-25 17:08:10 -07003203#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Matteo Croce35e015e2017-09-12 17:46:37 +02003204 if ((dev_net(idev->dev)->ipv6.devconf_all->optimistic_dad ||
3205 idev->cnf.optimistic_dad) &&
David Miller702beb82008-07-20 18:17:02 -07003206 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
David Aherne6464b82018-05-27 08:09:53 -07003207 cfg.ifa_flags |= IFA_F_OPTIMISTIC;
Neil Horman95c385b2007-04-25 17:08:10 -07003208#endif
3209
David Aherne6464b82018-05-27 08:09:53 -07003210 ifp = ipv6_add_addr(idev, &cfg, true, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 if (!IS_ERR(ifp)) {
David Ahern8308f3f2018-05-27 08:09:58 -07003212 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, 0, idev->dev,
David Ahernacb54e32018-04-17 17:33:22 -07003213 0, 0, GFP_ATOMIC);
David S. Millercf22f9a2012-04-14 21:37:40 -04003214 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 in6_ifa_put(ifp);
3216 }
3217}
Alexander Aring2ad3ed52016-06-15 21:20:17 +02003218EXPORT_SYMBOL_GPL(addrconf_add_linklocal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003220static bool ipv6_reserved_interfaceid(struct in6_addr address)
3221{
3222 if ((address.s6_addr32[2] | address.s6_addr32[3]) == 0)
3223 return true;
3224
3225 if (address.s6_addr32[2] == htonl(0x02005eff) &&
3226 ((address.s6_addr32[3] & htonl(0xfe000000)) == htonl(0xfe000000)))
3227 return true;
3228
3229 if (address.s6_addr32[2] == htonl(0xfdffffff) &&
3230 ((address.s6_addr32[3] & htonl(0xffffff80)) == htonl(0xffffff80)))
3231 return true;
3232
3233 return false;
3234}
3235
3236static int ipv6_generate_stable_address(struct in6_addr *address,
3237 u8 dad_count,
3238 const struct inet6_dev *idev)
3239{
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003240 static DEFINE_SPINLOCK(lock);
Eric Biggers6b0b0fa2020-05-02 11:24:25 -07003241 static __u32 digest[SHA1_DIGEST_WORDS];
3242 static __u32 workspace[SHA1_WORKSPACE_WORDS];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003243
3244 static union {
Eric Biggers6b0b0fa2020-05-02 11:24:25 -07003245 char __data[SHA1_BLOCK_SIZE];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003246 struct {
3247 struct in6_addr secret;
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003248 __be32 prefix[2];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003249 unsigned char hwaddr[MAX_ADDR_LEN];
3250 u8 dad_count;
3251 } __packed;
3252 } data;
3253
3254 struct in6_addr secret;
3255 struct in6_addr temp;
3256 struct net *net = dev_net(idev->dev);
3257
3258 BUILD_BUG_ON(sizeof(data.__data) != sizeof(data));
3259
3260 if (idev->cnf.stable_secret.initialized)
3261 secret = idev->cnf.stable_secret.secret;
3262 else if (net->ipv6.devconf_dflt->stable_secret.initialized)
3263 secret = net->ipv6.devconf_dflt->stable_secret.secret;
3264 else
3265 return -1;
3266
3267retry:
3268 spin_lock_bh(&lock);
3269
Eric Biggers6b0b0fa2020-05-02 11:24:25 -07003270 sha1_init(digest);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003271 memset(&data, 0, sizeof(data));
3272 memset(workspace, 0, sizeof(workspace));
3273 memcpy(data.hwaddr, idev->dev->perm_addr, idev->dev->addr_len);
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003274 data.prefix[0] = address->s6_addr32[0];
3275 data.prefix[1] = address->s6_addr32[1];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003276 data.secret = secret;
3277 data.dad_count = dad_count;
3278
Eric Biggers6b0b0fa2020-05-02 11:24:25 -07003279 sha1_transform(digest, data.__data, workspace);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003280
3281 temp = *address;
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003282 temp.s6_addr32[2] = (__force __be32)digest[0];
3283 temp.s6_addr32[3] = (__force __be32)digest[1];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003284
3285 spin_unlock_bh(&lock);
3286
3287 if (ipv6_reserved_interfaceid(temp)) {
3288 dad_count++;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01003289 if (dad_count > dev_net(idev->dev)->ipv6.sysctl.idgen_retries)
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003290 return -1;
3291 goto retry;
3292 }
3293
3294 *address = temp;
3295 return 0;
3296}
3297
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003298static void ipv6_gen_mode_random_init(struct inet6_dev *idev)
3299{
3300 struct ipv6_stable_secret *s = &idev->cnf.stable_secret;
3301
3302 if (s->initialized)
3303 return;
3304 s = &idev->cnf.stable_secret;
3305 get_random_bytes(&s->secret, sizeof(s->secret));
3306 s->initialized = true;
3307}
3308
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003309static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route)
3310{
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003311 struct in6_addr addr;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003312
David Ahernca254492015-10-12 11:47:10 -07003313 /* no link local addresses on L3 master devices */
3314 if (netif_is_l3_master(idev->dev))
3315 return;
3316
Jarod Wilson744fdc822020-03-30 11:22:19 -04003317 /* no link local addresses on devices flagged as slaves */
3318 if (idev->dev->flags & IFF_SLAVE)
3319 return;
3320
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003321 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
3322
Felix Jiad35a00b2017-01-26 16:59:17 +13003323 switch (idev->cnf.addr_gen_mode) {
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003324 case IN6_ADDR_GEN_MODE_RANDOM:
3325 ipv6_gen_mode_random_init(idev);
Joe Perchesa8eceea2020-03-12 15:50:22 -07003326 fallthrough;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003327 case IN6_ADDR_GEN_MODE_STABLE_PRIVACY:
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003328 if (!ipv6_generate_stable_address(&addr, 0, idev))
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003329 addrconf_add_linklocal(idev, &addr,
3330 IFA_F_STABLE_PRIVACY);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003331 else if (prefix_route)
David Ahern8308f3f2018-05-27 08:09:58 -07003332 addrconf_prefix_route(&addr, 64, 0, idev->dev,
David Ahernacb54e32018-04-17 17:33:22 -07003333 0, 0, GFP_KERNEL);
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003334 break;
3335 case IN6_ADDR_GEN_MODE_EUI64:
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003336 /* addrconf_add_linklocal also adds a prefix_route and we
3337 * only need to care about prefix routes if ipv6_generate_eui64
3338 * couldn't generate one.
3339 */
3340 if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0)
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003341 addrconf_add_linklocal(idev, &addr, 0);
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003342 else if (prefix_route)
David Ahern8308f3f2018-05-27 08:09:58 -07003343 addrconf_prefix_route(&addr, 64, 0, idev->dev,
David Ahern27b10602018-04-18 15:39:06 -07003344 0, 0, GFP_KERNEL);
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003345 break;
3346 case IN6_ADDR_GEN_MODE_NONE:
3347 default:
3348 /* will not add any link local address */
3349 break;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003350 }
3351}
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353static void addrconf_dev_config(struct net_device *dev)
3354{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003355 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
3357 ASSERT_RTNL();
3358
Herbert Xu74235a22007-06-14 13:02:55 -07003359 if ((dev->type != ARPHRD_ETHER) &&
3360 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07003361 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00003362 (dev->type != ARPHRD_INFINIBAND) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02003363 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb82013-12-11 17:05:36 +02003364 (dev->type != ARPHRD_TUNNEL6) &&
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003365 (dev->type != ARPHRD_6LOWPAN) &&
Felix Jia45ce0fd2017-01-26 16:59:18 +13003366 (dev->type != ARPHRD_TUNNEL) &&
Subash Abhinov Kasiviswanathan9deb4412018-06-04 19:26:07 -06003367 (dev->type != ARPHRD_NONE) &&
3368 (dev->type != ARPHRD_RAWIP)) {
Herbert Xu74235a22007-06-14 13:02:55 -07003369 /* Alas, we support only Ethernet autoconfiguration. */
Hangbin Liu60380482020-03-10 15:27:37 +08003370 idev = __in6_dev_get(dev);
3371 if (!IS_ERR_OR_NULL(idev) && dev->flags & IFF_UP &&
3372 dev->flags & IFF_MULTICAST)
3373 ipv6_mc_up(idev);
Herbert Xu74235a22007-06-14 13:02:55 -07003374 return;
3375 }
3376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00003378 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 return;
3380
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003381 /* this device type has no EUI support */
3382 if (dev->type == ARPHRD_NONE &&
Felix Jiad35a00b2017-01-26 16:59:17 +13003383 idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64)
3384 idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_RANDOM;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003385
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003386 addrconf_addr_gen(idev, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387}
3388
Amerigo Wang07a93622012-10-29 16:23:10 +00003389#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390static void addrconf_sit_config(struct net_device *dev)
3391{
3392 struct inet6_dev *idev;
3393
3394 ASSERT_RTNL();
3395
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003396 /*
3397 * Configure the tunnel with one of our IPv4
3398 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 * our v4 addrs in the tunnel
3400 */
3401
Ian Morrise5d08d72014-11-23 21:28:43 +00003402 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02003403 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00003404 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 return;
3406 }
3407
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11003408 if (dev->priv_flags & IFF_ISATAP) {
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003409 addrconf_addr_gen(idev, false);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11003410 return;
3411 }
3412
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003413 add_v4_addrs(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00003415 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417}
Joerg Roedel0be669b2006-10-10 14:49:53 -07003418#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003420#if IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00003421static void addrconf_gre_config(struct net_device *dev)
3422{
3423 struct inet6_dev *idev;
stephen hemmingeraee80b52011-06-08 10:44:30 +00003424
stephen hemmingeraee80b52011-06-08 10:44:30 +00003425 ASSERT_RTNL();
3426
Ian Morrise5d08d72014-11-23 21:28:43 +00003427 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02003428 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00003429 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00003430 return;
3431 }
3432
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003433 if (dev->type == ARPHRD_ETHER) {
3434 addrconf_addr_gen(idev, true);
3435 return;
3436 }
3437
3438 add_v4_addrs(idev);
3439
Hannes Frederic Sowad9e4ce62015-10-08 18:19:39 +02003440 if (dev->flags & IFF_POINTOPOINT)
3441 addrconf_add_mroute(dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00003442}
3443#endif
3444
David Ahernafb1d4b52018-04-17 17:33:11 -07003445static int fixup_permanent_addr(struct net *net,
3446 struct inet6_dev *idev,
David Ahernf1705ec2016-02-24 09:25:37 -08003447 struct inet6_ifaddr *ifp)
3448{
David Ahern93c2fb22018-04-18 15:38:59 -07003449 /* !fib6_node means the host route was removed from the
David Ahern8048ced2017-04-25 09:17:29 -07003450 * FIB, for example, if 'lo' device is taken down. In that
3451 * case regenerate the host route.
3452 */
David Ahern93c2fb22018-04-18 15:38:59 -07003453 if (!ifp->rt || !ifp->rt->fib6_node) {
David Ahern360a9882018-04-18 15:39:00 -07003454 struct fib6_info *f6i, *prev;
David Ahernf1705ec2016-02-24 09:25:37 -08003455
David Ahern360a9882018-04-18 15:39:00 -07003456 f6i = addrconf_f6i_alloc(net, idev, &ifp->addr, false,
3457 GFP_ATOMIC);
3458 if (IS_ERR(f6i))
3459 return PTR_ERR(f6i);
David Ahernf1705ec2016-02-24 09:25:37 -08003460
David Ahern8048ced2017-04-25 09:17:29 -07003461 /* ifp->rt can be accessed outside of rtnl */
3462 spin_lock(&ifp->lock);
3463 prev = ifp->rt;
David Ahern360a9882018-04-18 15:39:00 -07003464 ifp->rt = f6i;
David Ahern8048ced2017-04-25 09:17:29 -07003465 spin_unlock(&ifp->lock);
3466
David Ahern93531c62018-04-17 17:33:25 -07003467 fib6_info_release(prev);
David Ahernf1705ec2016-02-24 09:25:37 -08003468 }
3469
3470 if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) {
3471 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
David Ahern8308f3f2018-05-27 08:09:58 -07003472 ifp->rt_priority, idev->dev, 0, 0,
3473 GFP_ATOMIC);
David Ahernf1705ec2016-02-24 09:25:37 -08003474 }
3475
David Ahern6d717132017-05-02 14:43:44 -07003476 if (ifp->state == INET6_IFADDR_STATE_PREDAD)
3477 addrconf_dad_start(ifp);
David Ahernf1705ec2016-02-24 09:25:37 -08003478
3479 return 0;
3480}
3481
David Ahernafb1d4b52018-04-17 17:33:11 -07003482static void addrconf_permanent_addr(struct net *net, struct net_device *dev)
David Ahernf1705ec2016-02-24 09:25:37 -08003483{
3484 struct inet6_ifaddr *ifp, *tmp;
3485 struct inet6_dev *idev;
3486
3487 idev = __in6_dev_get(dev);
3488 if (!idev)
3489 return;
3490
3491 write_lock_bh(&idev->lock);
3492
3493 list_for_each_entry_safe(ifp, tmp, &idev->addr_list, if_list) {
3494 if ((ifp->flags & IFA_F_PERMANENT) &&
David Ahernafb1d4b52018-04-17 17:33:11 -07003495 fixup_permanent_addr(net, idev, ifp) < 0) {
David Ahernf1705ec2016-02-24 09:25:37 -08003496 write_unlock_bh(&idev->lock);
Eric Dumazete669b862017-10-30 22:47:09 -07003497 in6_ifa_hold(ifp);
David Ahernf1705ec2016-02-24 09:25:37 -08003498 ipv6_del_addr(ifp);
3499 write_lock_bh(&idev->lock);
3500
3501 net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n",
3502 idev->dev->name, &ifp->addr);
3503 }
3504 }
3505
3506 write_unlock_bh(&idev->lock);
3507}
3508
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003509static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00003510 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
Jiri Pirko351638e2013-05-28 01:30:21 +00003512 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Hangbin Liu896585d2018-11-21 21:52:33 +08003513 struct netdev_notifier_change_info *change_info;
David Ahern4f7f34e2016-04-07 11:10:41 -07003514 struct netdev_notifier_changeupper_info *info;
Eric Dumazet748e2d92012-08-22 21:50:59 +00003515 struct inet6_dev *idev = __in6_dev_get(dev);
WANG Cong60abc0b2017-06-21 14:34:58 -07003516 struct net *net = dev_net(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003517 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07003518 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003520 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003521 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07003522 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003523 idev = ipv6_add_dev(dev);
WANG Conga317a2f2014-07-25 15:25:09 -07003524 if (IS_ERR(idev))
3525 return notifier_from_errno(PTR_ERR(idev));
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003526 }
3527 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003528
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003529 case NETDEV_CHANGEMTU:
3530 /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */
3531 if (dev->mtu < IPV6_MIN_MTU) {
WANG Cong60abc0b2017-06-21 14:34:58 -07003532 addrconf_ifdown(dev, dev != net->loopback_dev);
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003533 break;
3534 }
3535
3536 if (idev) {
3537 rt6_mtu_change(dev, dev->mtu);
3538 idev->cnf.mtu6 = dev->mtu;
3539 break;
3540 }
3541
3542 /* allocate new idev */
3543 idev = ipv6_add_dev(dev);
3544 if (IS_ERR(idev))
3545 break;
3546
3547 /* device is still not ready */
3548 if (!(idev->if_flags & IF_READY))
3549 break;
3550
3551 run_pending = 1;
Joe Perchesa8eceea2020-03-12 15:50:22 -07003552 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003554 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07003555 if (dev->flags & IFF_SLAVE)
3556 break;
3557
WANG Cong3ce62a82014-09-11 15:07:16 -07003558 if (idev && idev->cnf.disable_ipv6)
3559 break;
3560
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003561 if (event == NETDEV_UP) {
David Ahern38bd10c2016-04-21 20:56:12 -07003562 /* restore routes for permanent addresses */
David Ahernafb1d4b52018-04-17 17:33:11 -07003563 addrconf_permanent_addr(net, dev);
David Ahern38bd10c2016-04-21 20:56:12 -07003564
Mike Manning1f372c72017-09-25 22:01:36 +01003565 if (!addrconf_link_ready(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003566 /* device is not ready yet. */
Lubomir Rintel7c62b8d2019-01-21 14:54:20 +01003567 pr_debug("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
3568 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003569 break;
3570 }
Kristian Slavov99081042006-02-08 16:10:53 -08003571
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11003572 if (!idev && dev->mtu >= IPV6_MIN_MTU)
3573 idev = ipv6_add_dev(dev);
3574
WANG Conga317a2f2014-07-25 15:25:09 -07003575 if (!IS_ERR_OR_NULL(idev)) {
Kristian Slavov99081042006-02-08 16:10:53 -08003576 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08003577 run_pending = 1;
3578 }
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003579 } else if (event == NETDEV_CHANGE) {
Mike Manning1f372c72017-09-25 22:01:36 +01003580 if (!addrconf_link_ready(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003581 /* device is still not ready. */
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003582 rt6_sync_down_dev(dev, event);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003583 break;
3584 }
3585
Hangbin Liu896585d2018-11-21 21:52:33 +08003586 if (!IS_ERR_OR_NULL(idev)) {
Linus Lüssinga088d1d2017-02-03 08:11:03 +01003587 if (idev->if_flags & IF_READY) {
3588 /* device is already configured -
3589 * but resend MLD reports, we might
3590 * have roamed and need to update
3591 * multicast snooping switches
3592 */
3593 ipv6_mc_up(idev);
Hangbin Liu896585d2018-11-21 21:52:33 +08003594 change_info = ptr;
3595 if (change_info->flags_changed & IFF_NOARP)
3596 addrconf_dad_run(idev, true);
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003597 rt6_sync_up(dev, RTNH_F_LINKDOWN);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003598 break;
Linus Lüssinga088d1d2017-02-03 08:11:03 +01003599 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003600 idev->if_flags |= IF_READY;
3601 }
3602
Joe Perchesf3213832012-05-15 14:11:53 +00003603 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
3604 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003605
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003606 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003607 }
3608
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003609 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00003610#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 case ARPHRD_SIT:
3612 addrconf_sit_config(dev);
3613 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07003614#endif
Antonio Quartullie5dd7292021-09-03 18:58:42 +02003615#if IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE)
3616 case ARPHRD_IP6GRE:
stephen hemmingeraee80b52011-06-08 10:44:30 +00003617 case ARPHRD_IPGRE:
3618 addrconf_gre_config(dev);
3619 break;
3620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 case ARPHRD_LOOPBACK:
3622 init_loopback(dev);
3623 break;
3624
3625 default:
3626 addrconf_dev_config(dev);
3627 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003628 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003629
WANG Conga317a2f2014-07-25 15:25:09 -07003630 if (!IS_ERR_OR_NULL(idev)) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003631 if (run_pending)
Hangbin Liu896585d2018-11-21 21:52:33 +08003632 addrconf_dad_run(idev, false);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003633
Ido Schimmel2127d952018-01-07 12:45:03 +02003634 /* Device has an address by now */
3635 rt6_sync_up(dev, RTNH_F_DEAD);
3636
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003637 /*
3638 * If the MTU changed during the interface down,
3639 * when the interface up, the changed MTU must be
3640 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003642 if (idev->cnf.mtu6 != dev->mtu &&
3643 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 rt6_mtu_change(dev, dev->mtu);
3645 idev->cnf.mtu6 = dev->mtu;
3646 }
3647 idev->tstamp = jiffies;
3648 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003649
3650 /*
3651 * If the changed mtu during down is lower than
3652 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 */
3654 if (dev->mtu < IPV6_MIN_MTU)
WANG Cong60abc0b2017-06-21 14:34:58 -07003655 addrconf_ifdown(dev, dev != net->loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 }
3657 break;
3658
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 case NETDEV_DOWN:
3660 case NETDEV_UNREGISTER:
3661 /*
3662 * Remove all addresses from this interface.
3663 */
3664 addrconf_ifdown(dev, event != NETDEV_DOWN);
3665 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07003669 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003670 addrconf_sysctl_unregister(idev);
WANG Conga317a2f2014-07-25 15:25:09 -07003671 err = addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07003672 if (err)
3673 return notifier_from_errno(err);
WANG Conga317a2f2014-07-25 15:25:09 -07003674 err = snmp6_register_dev(idev);
3675 if (err) {
3676 addrconf_sysctl_unregister(idev);
3677 return notifier_from_errno(err);
3678 }
Stephen Hemminger5632c512007-04-28 21:16:39 -07003679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003681
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003682 case NETDEV_PRE_TYPE_CHANGE:
3683 case NETDEV_POST_TYPE_CHANGE:
Andrew Lunn3ef09522015-12-03 21:12:32 +01003684 if (idev)
3685 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07003686 break;
David Ahern4f7f34e2016-04-07 11:10:41 -07003687
3688 case NETDEV_CHANGEUPPER:
3689 info = ptr;
3690
3691 /* flush all routes if dev is linked to or unlinked from
3692 * an L3 master device (e.g., VRF)
3693 */
3694 if (info->upper_dev && netif_is_l3_master(info->upper_dev))
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003695 addrconf_ifdown(dev, false);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
3698 return NOTIFY_OK;
3699}
3700
3701/*
3702 * addrconf module should be notified of a device going up
3703 */
3704static struct notifier_block ipv6_dev_notf = {
3705 .notifier_call = addrconf_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07003706 .priority = ADDRCONF_NOTIFY_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707};
3708
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003709static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07003710{
3711 struct inet6_dev *idev;
3712 ASSERT_RTNL();
3713
3714 idev = __in6_dev_get(dev);
3715
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003716 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003717 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003718 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003719 ipv6_mc_unmap(idev);
3720}
3721
David Ahern70af9212016-04-08 12:01:21 -07003722static bool addr_is_local(const struct in6_addr *addr)
3723{
3724 return ipv6_addr_type(addr) &
3725 (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
3726}
3727
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003728static int addrconf_ifdown(struct net_device *dev, bool unregister)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729{
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003730 unsigned long event = unregister ? NETDEV_UNREGISTER : NETDEV_DOWN;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003731 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003732 struct inet6_dev *idev;
David Ahernf1705ec2016-02-24 09:25:37 -08003733 struct inet6_ifaddr *ifa, *tmp;
Ivan Vecera0aef78a2018-04-24 19:51:29 +02003734 bool keep_addr = false;
David S. Miller73a8bd72011-01-23 23:27:15 -08003735 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
3737 ASSERT_RTNL();
3738
Ido Schimmel4c981e22018-01-07 12:45:04 +02003739 rt6_disable_ip(dev, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
3741 idev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003742 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 return -ENODEV;
3744
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003745 /*
3746 * Step 1: remove reference to ipv6 device from parent device.
3747 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 */
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003749 if (unregister) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003751
3752 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003753 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
3755 /* Step 1.5: remove snmp6 entry */
3756 snmp6_unregister_dev(idev);
3757
3758 }
3759
David Ahernf1705ec2016-02-24 09:25:37 -08003760 /* combine the user config with event to determine if permanent
3761 * addresses are to be removed from address hash table
3762 */
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003763 if (!unregister && !idev->cnf.disable_ipv6) {
Ivan Vecera0aef78a2018-04-24 19:51:29 +02003764 /* aggregate the system setting and interface setting */
3765 int _keep_addr = net->ipv6.devconf_all->keep_addr_on_down;
3766
3767 if (!_keep_addr)
3768 _keep_addr = idev->cnf.keep_addr_on_down;
3769
3770 keep_addr = (_keep_addr > 0);
3771 }
David Ahernf1705ec2016-02-24 09:25:37 -08003772
David S. Miller73a8bd72011-01-23 23:27:15 -08003773 /* Step 2: clear hash table */
3774 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3775 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003776
3777 spin_lock_bh(&addrconf_hash_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01003778restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003779 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003780 if (ifa->idev == idev) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003781 addrconf_del_dad_work(ifa);
David Ahernf1705ec2016-02-24 09:25:37 -08003782 /* combined flag + permanent flag decide if
3783 * address is retained on a down event
3784 */
3785 if (!keep_addr ||
David Ahern70af9212016-04-08 12:01:21 -07003786 !(ifa->flags & IFA_F_PERMANENT) ||
3787 addr_is_local(&ifa->addr)) {
David Ahernf1705ec2016-02-24 09:25:37 -08003788 hlist_del_init_rcu(&ifa->addr_lst);
3789 goto restart;
3790 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003791 }
3792 }
3793 spin_unlock_bh(&addrconf_hash_lock);
3794 }
3795
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 write_lock_bh(&idev->lock);
3797
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003798 addrconf_del_rs_timer(idev);
3799
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003800 /* Step 2: clear flags for stateless addrconf */
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003801 if (!unregister)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003802 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003804 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003805 while (!list_empty(&idev->tempaddr_list)) {
3806 ifa = list_first_entry(&idev->tempaddr_list,
3807 struct inet6_ifaddr, tmp_list);
3808 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 write_unlock_bh(&idev->lock);
3810 spin_lock_bh(&ifa->lock);
3811
3812 if (ifa->ifpub) {
3813 in6_ifa_put(ifa->ifpub);
3814 ifa->ifpub = NULL;
3815 }
3816 spin_unlock_bh(&ifa->lock);
3817 in6_ifa_put(ifa);
3818 write_lock_bh(&idev->lock);
3819 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003820
David Ahernf1705ec2016-02-24 09:25:37 -08003821 list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) {
David Ahern8d1c8022018-04-17 17:33:26 -07003822 struct fib6_info *rt = NULL;
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003823 bool keep;
David Ahern38bd10c2016-04-21 20:56:12 -07003824
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003825 addrconf_del_dad_work(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003826
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003827 keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) &&
3828 !addr_is_local(&ifa->addr);
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003829
David S. Miller73a8bd72011-01-23 23:27:15 -08003830 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003831 spin_lock_bh(&ifa->lock);
David Ahernf1705ec2016-02-24 09:25:37 -08003832
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003833 if (keep) {
David Ahernf1705ec2016-02-24 09:25:37 -08003834 /* set state to skip the notifier below */
3835 state = INET6_IFADDR_STATE_DEAD;
David Ahern6d717132017-05-02 14:43:44 -07003836 ifa->state = INET6_IFADDR_STATE_PREDAD;
David Ahernf1705ec2016-02-24 09:25:37 -08003837 if (!(ifa->flags & IFA_F_NODAD))
3838 ifa->flags |= IFA_F_TENTATIVE;
David Ahern38bd10c2016-04-21 20:56:12 -07003839
3840 rt = ifa->rt;
3841 ifa->rt = NULL;
David Ahernf1705ec2016-02-24 09:25:37 -08003842 } else {
3843 state = ifa->state;
3844 ifa->state = INET6_IFADDR_STATE_DEAD;
David Ahernf1705ec2016-02-24 09:25:37 -08003845 }
3846
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003847 spin_unlock_bh(&ifa->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003848
David Ahern38bd10c2016-04-21 20:56:12 -07003849 if (rt)
Roopa Prabhu11dd74b2020-04-27 13:56:45 -07003850 ip6_del_rt(net, rt, false);
David Ahern38bd10c2016-04-21 20:56:12 -07003851
David S. Miller73a8bd72011-01-23 23:27:15 -08003852 if (state != INET6_IFADDR_STATE_DEAD) {
3853 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003854 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
Mike Manningea06f712016-07-22 18:32:11 +01003855 } else {
3856 if (idev->cnf.forwarding)
3857 addrconf_leave_anycast(ifa);
3858 addrconf_leave_solict(ifa->idev, &ifa->addr);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003859 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003860
David S. Miller73a8bd72011-01-23 23:27:15 -08003861 write_lock_bh(&idev->lock);
Eric Dumazet8ef802a2017-10-07 19:30:23 -07003862 if (!keep) {
3863 list_del_rcu(&ifa->if_list);
3864 in6_ifa_put(ifa);
3865 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003866 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003867
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 write_unlock_bh(&idev->lock);
3869
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003870 /* Step 5: Discard anycast and multicast list */
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003871 if (unregister) {
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003872 ipv6_ac_destroy_dev(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 ipv6_mc_destroy_dev(idev);
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003874 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 ipv6_mc_down(idev);
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 idev->tstamp = jiffies;
Rocco Yue49b99da2021-08-27 23:04:12 +08003879 idev->ra_mtu = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003880
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003881 /* Last: Shot the device (if unregistered) */
Florent Fourcotae79dbf2020-07-31 15:32:07 +02003882 if (unregister) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003883 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 neigh_parms_release(&nd_tbl, idev->nd_parms);
3885 neigh_ifdown(&nd_tbl, dev);
3886 in6_dev_put(idev);
3887 }
3888 return 0;
3889}
3890
Kees Cooke99e88a2017-10-16 14:43:17 -07003891static void addrconf_rs_timer(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892{
Kees Cooke99e88a2017-10-16 14:43:17 -07003893 struct inet6_dev *idev = from_timer(idev, t, rs_timer);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003894 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003895 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003897 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003898 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 goto out;
3900
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003901 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003903
3904 /* Announcement received after solicitation was sent */
3905 if (idev->if_flags & IF_RA_RCVD)
3906 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003908 if (idev->rs_probes++ < idev->cnf.rtr_solicits || idev->cnf.rtr_solicits < 0) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003909 write_unlock(&idev->lock);
3910 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3911 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003912 &in6addr_linklocal_allrouters);
3913 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003914 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Cong Wangcaf92bc2013-08-31 13:44:32 +08003916 write_lock(&idev->lock);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003917 idev->rs_interval = rfc3315_s14_backoff_update(
3918 idev->rs_interval, idev->cnf.rtr_solicit_max_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003919 /* The wait after the last probe can be shorter */
3920 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3921 idev->cnf.rtr_solicits) ?
3922 idev->cnf.rtr_solicit_delay :
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003923 idev->rs_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 /*
3926 * Note: we do not support deprecated "all on-link"
3927 * assumption any longer.
3928 */
Joe Perches91df42b2012-05-15 14:11:54 +00003929 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 }
3931
3932out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003933 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003934put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003935 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936}
3937
3938/*
3939 * Duplicate Address Detection
3940 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003941static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3942{
3943 unsigned long rand_num;
3944 struct inet6_dev *idev = ifp->idev;
Erik Nordmarkadc176c2016-12-02 14:00:08 -08003945 u64 nonce;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003946
Neil Horman95c385b2007-04-25 17:08:10 -07003947 if (ifp->flags & IFA_F_OPTIMISTIC)
3948 rand_num = 0;
3949 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003950 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003951
Erik Nordmarkadc176c2016-12-02 14:00:08 -08003952 nonce = 0;
3953 if (idev->cnf.enhanced_dad ||
3954 dev_net(idev->dev)->ipv6.devconf_all->enhanced_dad) {
3955 do
3956 get_random_bytes(&nonce, 6);
3957 while (nonce == 0);
3958 }
3959 ifp->dad_nonce = nonce;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003960 ifp->dad_probes = idev->cnf.dad_transmits;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003961 addrconf_mod_dad_work(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003962}
3963
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003964static void addrconf_dad_begin(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965{
3966 struct inet6_dev *idev = ifp->idev;
3967 struct net_device *dev = idev->dev;
Paolo Abeni764d3be2016-11-22 16:57:40 +01003968 bool bump_id, notify = false;
David Ahernafb1d4b52018-04-17 17:33:11 -07003969 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
3971 addrconf_join_solict(dev, &ifp->addr);
3972
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003973 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
3975 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003976 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003977 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
David Ahernafb1d4b52018-04-17 17:33:11 -07003980 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
David Ahernafb1d4b52018-04-17 17:33:11 -07003982 (net->ipv6.devconf_all->accept_dad < 1 &&
Matteo Crocea2d3f3e2017-10-05 19:03:05 +02003983 idev->cnf.accept_dad < 1) ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003984 !(ifp->flags&IFA_F_TENTATIVE) ||
3985 ifp->flags & IFA_F_NODAD) {
David Ahernc76fe2d2018-01-25 20:16:29 -08003986 bool send_na = false;
3987
3988 if (ifp->flags & IFA_F_TENTATIVE &&
3989 !(ifp->flags & IFA_F_OPTIMISTIC))
3990 send_na = true;
Paolo Abeni764d3be2016-11-22 16:57:40 +01003991 bump_id = ifp->flags & IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00003992 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003993 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 read_unlock_bh(&idev->lock);
3995
David Ahernc76fe2d2018-01-25 20:16:29 -08003996 addrconf_dad_completed(ifp, bump_id, send_na);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 return;
3998 }
3999
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08004000 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00004001 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08004002 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09004003 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09004004 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09004005 * - keep it tentative if it is a permanent address.
4006 * - otherwise, kill it.
4007 */
4008 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00004009 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08004010 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09004011 }
Neil Horman95c385b2007-04-25 17:08:10 -07004012
4013 /*
4014 * Optimistic nodes can start receiving
4015 * Frames right away
4016 */
Erik Kline7fd25612014-10-28 18:11:14 +09004017 if (ifp->flags & IFA_F_OPTIMISTIC) {
David Ahernafb1d4b52018-04-17 17:33:11 -07004018 ip6_ins_rt(net, ifp->rt);
4019 if (ipv6_use_optimistic_addr(net, idev)) {
Erik Kline7fd25612014-10-28 18:11:14 +09004020 /* Because optimistic nodes can use this address,
4021 * notify listeners. If DAD fails, RTM_DELADDR is sent.
4022 */
subashab@codeaurora.org16186a82016-02-02 02:11:10 +00004023 notify = true;
Erik Kline7fd25612014-10-28 18:11:14 +09004024 }
4025 }
Neil Horman95c385b2007-04-25 17:08:10 -07004026
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08004027 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07004029 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 read_unlock_bh(&idev->lock);
subashab@codeaurora.org16186a82016-02-02 02:11:10 +00004031 if (notify)
4032 ipv6_ifa_notify(RTM_NEWADDR, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033}
4034
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004035static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004037 bool begin_dad = false;
4038
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004039 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004040 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
4041 ifp->state = INET6_IFADDR_STATE_PREDAD;
4042 begin_dad = true;
4043 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004044 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004045
4046 if (begin_dad)
4047 addrconf_mod_dad_work(ifp, 0);
4048}
4049
4050static void addrconf_dad_work(struct work_struct *w)
4051{
4052 struct inet6_ifaddr *ifp = container_of(to_delayed_work(w),
4053 struct inet6_ifaddr,
4054 dad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 struct inet6_dev *idev = ifp->idev;
Paolo Abeni764d3be2016-11-22 16:57:40 +01004056 bool bump_id, disable_ipv6 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 struct in6_addr mcaddr;
4058
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004059 enum {
4060 DAD_PROCESS,
4061 DAD_BEGIN,
4062 DAD_ABORT,
4063 } action = DAD_PROCESS;
4064
4065 rtnl_lock();
4066
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004067 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004068 if (ifp->state == INET6_IFADDR_STATE_PREDAD) {
4069 action = DAD_BEGIN;
4070 ifp->state = INET6_IFADDR_STATE_DAD;
4071 } else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) {
4072 action = DAD_ABORT;
4073 ifp->state = INET6_IFADDR_STATE_POSTDAD;
Mike Manning85b51b12016-08-18 14:39:40 +01004074
Matteo Croce35e015e2017-09-12 17:46:37 +02004075 if ((dev_net(idev->dev)->ipv6.devconf_all->accept_dad > 1 ||
4076 idev->cnf.accept_dad > 1) &&
4077 !idev->cnf.disable_ipv6 &&
Mike Manning85b51b12016-08-18 14:39:40 +01004078 !(ifp->flags & IFA_F_STABLE_PRIVACY)) {
4079 struct in6_addr addr;
4080
4081 addr.s6_addr32[0] = htonl(0xfe800000);
4082 addr.s6_addr32[1] = 0;
4083
4084 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
4085 ipv6_addr_equal(&ifp->addr, &addr)) {
4086 /* DAD failed for link-local based on MAC */
4087 idev->cnf.disable_ipv6 = 1;
4088
4089 pr_info("%s: IPv6 being disabled!\n",
4090 ifp->idev->dev->name);
4091 disable_ipv6 = true;
4092 }
4093 }
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004094 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01004095 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004096
4097 if (action == DAD_BEGIN) {
4098 addrconf_dad_begin(ifp);
4099 goto out;
4100 } else if (action == DAD_ABORT) {
Wei Yongjun751eb6b2016-09-05 16:06:31 +08004101 in6_ifa_hold(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004102 addrconf_dad_stop(ifp, 1);
Mike Manning85b51b12016-08-18 14:39:40 +01004103 if (disable_ipv6)
Florent Fourcotae79dbf2020-07-31 15:32:07 +02004104 addrconf_ifdown(idev->dev, false);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004105 goto out;
4106 }
4107
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004108 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07004109 goto out;
4110
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004111 write_lock_bh(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00004112 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004113 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 goto out;
4115 }
stephen hemminger21809fa2010-02-08 19:48:52 +00004116
4117 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07004118 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
4119 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004120 write_unlock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07004121 goto out;
4122 }
4123
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004124 if (ifp->dad_probes == 0) {
David Ahernc76fe2d2018-01-25 20:16:29 -08004125 bool send_na = false;
4126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 /*
4128 * DAD was successful
4129 */
4130
David Ahernc76fe2d2018-01-25 20:16:29 -08004131 if (ifp->flags & IFA_F_TENTATIVE &&
4132 !(ifp->flags & IFA_F_OPTIMISTIC))
4133 send_na = true;
Paolo Abeni764d3be2016-11-22 16:57:40 +01004134 bump_id = ifp->flags & IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00004135 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00004136 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004137 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
David Ahernc76fe2d2018-01-25 20:16:29 -08004139 addrconf_dad_completed(ifp, bump_id, send_na);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
4141 goto out;
4142 }
4143
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004144 ifp->dad_probes--;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004145 addrconf_mod_dad_work(ifp,
Hangbin Liu19e16d22020-04-01 14:46:20 +08004146 max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME),
4147 HZ/100));
stephen hemminger21809fa2010-02-08 19:48:52 +00004148 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004149 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
4151 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -08004153 ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any,
4154 ifp->dad_nonce);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155out:
4156 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004157 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158}
4159
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004160/* ifp->idev must be at least read locked */
4161static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
4162{
4163 struct inet6_ifaddr *ifpiter;
4164 struct inet6_dev *idev = ifp->idev;
4165
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01004166 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
4167 if (ifpiter->scope > IFA_LINK)
4168 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004169 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
4170 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
4171 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
4172 IFA_F_PERMANENT)
4173 return false;
4174 }
4175 return true;
4176}
4177
David Ahernc76fe2d2018-01-25 20:16:29 -08004178static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id,
4179 bool send_na)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004181 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004182 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004183 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004184
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004185 addrconf_del_dad_work(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
4187 /*
4188 * Configure the address for reception. Now it is valid.
4189 */
4190
4191 ipv6_ifa_notify(RTM_NEWADDR, ifp);
4192
Tore Anderson026359b2011-08-28 23:47:33 +00004193 /* If added prefix is link local and we are prepared to process
4194 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 */
4196
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004197 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004198 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004199 send_rs = send_mld &&
4200 ipv6_accept_ra(ifp->idev) &&
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004201 ifp->idev->cnf.rtr_solicits != 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004202 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004203 read_unlock_bh(&ifp->idev->lock);
4204
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004205 /* While dad is in progress mld report's source address is in6_addrany.
4206 * Resend with proper ll now.
4207 */
4208 if (send_mld)
4209 ipv6_mc_dad_complete(ifp->idev);
4210
David Ahernc76fe2d2018-01-25 20:16:29 -08004211 /* send unsolicited NA if enabled */
4212 if (send_na &&
4213 (ifp->idev->cnf.ndisc_notify ||
4214 dev_net(dev)->ipv6.devconf_all->ndisc_notify)) {
4215 ndisc_send_na(dev, &in6addr_linklocal_allnodes, &ifp->addr,
4216 /*router=*/ !!ifp->idev->cnf.forwarding,
4217 /*solicited=*/ false, /*override=*/ true,
4218 /*inc_opt=*/ true);
4219 }
4220
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004221 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 /*
4223 * If a host as already performed a random delay
4224 * [...] as part of DAD [...] there is no need
4225 * to delay again before sending the first RS
4226 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004227 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004228 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004229 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004231 write_lock_bh(&ifp->idev->lock);
4232 spin_lock(&ifp->lock);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004233 ifp->idev->rs_interval = rfc3315_s14_backoff_init(
4234 ifp->idev->cnf.rtr_solicit_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004235 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 ifp->idev->if_flags |= IF_RS_SENT;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004237 addrconf_mod_rs_timer(ifp->idev, ifp->idev->rs_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004238 spin_unlock(&ifp->lock);
4239 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 }
Paolo Abeni764d3be2016-11-22 16:57:40 +01004241
4242 if (bump_id)
4243 rt_genid_bump_ipv6(dev_net(dev));
Marcus Huewea11a7f72017-02-06 18:34:56 +01004244
4245 /* Make sure that a new temporary address will be created
4246 * before this temporary address becomes deprecated.
4247 */
4248 if (ifp->flags & IFA_F_TEMPORARY)
4249 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250}
4251
Hangbin Liu896585d2018-11-21 21:52:33 +08004252static void addrconf_dad_run(struct inet6_dev *idev, bool restart)
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004253{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09004254 struct inet6_ifaddr *ifp;
4255
4256 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00004257 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00004258 spin_lock(&ifp->lock);
Hangbin Liu896585d2018-11-21 21:52:33 +08004259 if ((ifp->flags & IFA_F_TENTATIVE &&
4260 ifp->state == INET6_IFADDR_STATE_DAD) || restart) {
4261 if (restart)
4262 ifp->state = INET6_IFADDR_STATE_PREDAD;
Herbert Xuf2344a12010-05-18 15:55:27 -07004263 addrconf_dad_kick(ifp);
Hangbin Liu896585d2018-11-21 21:52:33 +08004264 }
stephen hemminger21809fa2010-02-08 19:48:52 +00004265 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09004266 }
4267 read_unlock_bh(&idev->lock);
4268}
4269
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270#ifdef CONFIG_PROC_FS
4271struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08004272 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004274 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275};
4276
Mihai Maruseac1d578302012-01-03 23:31:35 +00004277static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09004280 struct net *net = seq_file_net(seq);
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004281 struct inet6_ifaddr *ifa = NULL;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004282 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
Mihai Maruseac1d578302012-01-03 23:31:35 +00004284 /* initial bucket if pos is 0 */
4285 if (pos == 0) {
4286 state->bucket = 0;
4287 state->offset = 0;
4288 }
4289
4290 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004291 hlist_for_each_entry_rcu(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00004292 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004293 if (!net_eq(dev_net(ifa->idev->dev), net))
4294 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004295 /* sync with offset */
4296 if (p < state->offset) {
4297 p++;
4298 continue;
4299 }
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004300 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004301 }
4302
4303 /* prepare for next bucket */
4304 state->offset = 0;
4305 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00004307 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308}
4309
stephen hemmingerc2e21292010-03-17 20:31:10 +00004310static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
4311 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312{
4313 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09004314 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004316 hlist_for_each_entry_continue_rcu(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004317 if (!net_eq(dev_net(ifa->idev->dev), net))
4318 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004319 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004320 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004321 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00004322
Jeff Barnhill86f9bd12018-09-21 00:45:27 +00004323 state->offset = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00004324 while (++state->bucket < IN6_ADDR_HSIZE) {
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004325 hlist_for_each_entry_rcu(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00004326 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004327 if (!net_eq(dev_net(ifa->idev->dev), net))
4328 continue;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004329 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08004330 }
4331 }
4332
stephen hemmingerc2e21292010-03-17 20:31:10 +00004333 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334}
4335
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004337 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338{
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004339 rcu_read_lock();
Mihai Maruseac1d578302012-01-03 23:31:35 +00004340 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341}
4342
4343static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4344{
4345 struct inet6_ifaddr *ifa;
4346
4347 ifa = if6_get_next(seq, v);
4348 ++*pos;
4349 return ifa;
4350}
4351
4352static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004353 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354{
Eric Dumazeta5c1d982017-10-23 16:17:50 -07004355 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356}
4357
4358static int if6_seq_show(struct seq_file *seq, void *v)
4359{
4360 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01004361 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07004362 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 ifp->idev->dev->ifindex,
4364 ifp->prefix_len,
4365 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01004366 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 ifp->idev->dev->name);
4368 return 0;
4369}
4370
Philippe De Muyter56b3d972007-07-10 23:07:31 -07004371static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 .start = if6_seq_start,
4373 .next = if6_seq_next,
4374 .show = if6_seq_show,
4375 .stop = if6_seq_stop,
4376};
4377
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004378static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379{
Christoph Hellwigc3506372018-04-10 19:42:55 +02004380 if (!proc_create_net("if_inet6", 0444, net->proc_net, &if6_seq_ops,
4381 sizeof(struct if6_iter_state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 return -ENOMEM;
4383 return 0;
4384}
4385
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004386static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08004387{
Gao fengece31ff2013-02-18 01:34:56 +00004388 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08004389}
4390
4391static struct pernet_operations if6_proc_net_ops = {
Ian Morris67ba4152014-08-24 21:53:10 +01004392 .init = if6_proc_net_init,
4393 .exit = if6_proc_net_exit,
Daniel Lezcano3c400902008-01-10 22:42:49 -08004394};
4395
4396int __init if6_proc_init(void)
4397{
4398 return register_pernet_subsys(&if6_proc_net_ops);
4399}
4400
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401void if6_proc_exit(void)
4402{
Daniel Lezcano3c400902008-01-10 22:42:49 -08004403 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404}
4405#endif /* CONFIG_PROC_FS */
4406
Amerigo Wang07a93622012-10-29 16:23:10 +00004407#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004408/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00004409int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004410{
Eric Dumazet3f27fb22017-10-23 16:17:47 -07004411 unsigned int hash = inet6_addr_hash(net, addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00004412 struct inet6_ifaddr *ifp = NULL;
Eric Dumazet3f27fb22017-10-23 16:17:47 -07004413 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00004414
Eric Dumazet4e5f47a2017-10-23 16:17:51 -07004415 rcu_read_lock();
4416 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09004417 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08004418 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09004419 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004420 (ifp->flags & IFA_F_HOMEADDRESS)) {
4421 ret = 1;
4422 break;
4423 }
4424 }
Eric Dumazet4e5f47a2017-10-23 16:17:51 -07004425 rcu_read_unlock();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004426 return ret;
4427}
4428#endif
4429
Alexander Aringf37c6052020-03-27 18:00:19 -04004430/* RFC6554 has some algorithm to avoid loops in segment routing by
4431 * checking if the segments contains any of a local interface address.
4432 *
4433 * Quote:
4434 *
4435 * To detect loops in the SRH, a router MUST determine if the SRH
4436 * includes multiple addresses assigned to any interface on that router.
4437 * If such addresses appear more than once and are separated by at least
4438 * one address not assigned to that router.
4439 */
4440int ipv6_chk_rpl_srh_loop(struct net *net, const struct in6_addr *segs,
4441 unsigned char nsegs)
4442{
4443 const struct in6_addr *addr;
4444 int i, ret = 0, found = 0;
4445 struct inet6_ifaddr *ifp;
4446 bool separated = false;
4447 unsigned int hash;
4448 bool hash_found;
4449
4450 rcu_read_lock();
4451 for (i = 0; i < nsegs; i++) {
4452 addr = &segs[i];
4453 hash = inet6_addr_hash(net, addr);
4454
4455 hash_found = false;
4456 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
4457 if (!net_eq(dev_net(ifp->idev->dev), net))
4458 continue;
4459
4460 if (ipv6_addr_equal(&ifp->addr, addr)) {
4461 hash_found = true;
4462 break;
4463 }
4464 }
4465
4466 if (hash_found) {
4467 if (found > 1 && separated) {
4468 ret = 1;
4469 break;
4470 }
4471
4472 separated = false;
4473 found++;
4474 } else {
4475 separated = true;
4476 }
4477 }
4478 rcu_read_unlock();
4479
4480 return ret;
4481}
4482
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483/*
4484 * Periodic address status verification
4485 */
4486
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004487static void addrconf_verify_rtnl(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004489 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 int i;
4492
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004493 ASSERT_RTNL();
4494
stephen hemminger5c578aed2010-03-17 20:31:11 +00004495 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004497 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004499 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004501 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502restart:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004503 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
Yasushi Asanofad8da32013-12-31 12:04:19 +09004506 /* When setting preferred_lft to a value not zero or
4507 * infinity, while valid_lft is infinity
4508 * IFA_F_PERMANENT has a non-infinity life time.
4509 */
4510 if ((ifp->flags & IFA_F_PERMANENT) &&
4511 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 continue;
4513
4514 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004515 /* We try to batch several events at once. */
4516 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09004518 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
4519 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 spin_unlock(&ifp->lock);
4521 in6_ifa_hold(ifp);
Taehee Yooaa8caa72021-04-16 14:16:06 +00004522 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 ipv6_del_addr(ifp);
Taehee Yooaa8caa72021-04-16 14:16:06 +00004524 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09004526 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
4527 spin_unlock(&ifp->lock);
4528 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00004530 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 int deprecate = 0;
4532
4533 if (!(ifp->flags&IFA_F_DEPRECATED)) {
4534 deprecate = 1;
4535 ifp->flags |= IFA_F_DEPRECATED;
4536 }
4537
Yasushi Asanofad8da32013-12-31 12:04:19 +09004538 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
4539 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 next = ifp->tstamp + ifp->valid_lft * HZ;
4541
4542 spin_unlock(&ifp->lock);
4543
4544 if (deprecate) {
4545 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
4547 ipv6_ifa_notify(0, ifp);
4548 in6_ifa_put(ifp);
4549 goto restart;
4550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
4552 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00004553 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
4554 ifp->idev->cnf.dad_transmits *
Hangbin Liu19e16d22020-04-01 14:46:20 +08004555 max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME), HZ/100) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00004556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 if (age >= ifp->prefered_lft - regen_advance) {
4558 struct inet6_ifaddr *ifpub = ifp->ifpub;
4559 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4560 next = ifp->tstamp + ifp->prefered_lft * HZ;
4561 if (!ifp->regen_count && ifpub) {
4562 ifp->regen_count++;
4563 in6_ifa_hold(ifp);
4564 in6_ifa_hold(ifpub);
4565 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00004566
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08004567 spin_lock(&ifpub->lock);
4568 ifpub->regen_count = 0;
4569 spin_unlock(&ifpub->lock);
Eric Dumazete64e4692018-01-26 16:10:43 -08004570 rcu_read_unlock_bh();
Fernando Gont969c5462020-05-01 00:51:47 -03004571 ipv6_create_tempaddr(ifpub, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 in6_ifa_put(ifpub);
4573 in6_ifa_put(ifp);
Eric Dumazete64e4692018-01-26 16:10:43 -08004574 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 goto restart;
4576 }
4577 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
4578 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
4579 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 } else {
4581 /* ifp->prefered_lft <= ifp->valid_lft */
4582 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4583 next = ifp->tstamp + ifp->prefered_lft * HZ;
4584 spin_unlock(&ifp->lock);
4585 }
4586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 }
4588
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004589 next_sec = round_jiffies_up(next);
4590 next_sched = next;
4591
4592 /* If rounded timeout is accurate enough, accept it. */
4593 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
4594 next_sched = next_sec;
4595
4596 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
4597 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
4598 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
4599
Joe Perchese32ac252018-03-26 08:35:01 -07004600 pr_debug("now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
4601 now, next, next_sec, next_sched);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004602 mod_delayed_work(addrconf_wq, &addr_chk_work, next_sched - now);
stephen hemminger5c578aed2010-03-17 20:31:11 +00004603 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604}
4605
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004606static void addrconf_verify_work(struct work_struct *w)
4607{
4608 rtnl_lock();
4609 addrconf_verify_rtnl();
4610 rtnl_unlock();
4611}
4612
4613static void addrconf_verify(void)
4614{
4615 mod_delayed_work(addrconf_wq, &addr_chk_work, 0);
4616}
4617
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004618static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
4619 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07004620{
4621 struct in6_addr *pfx = NULL;
4622
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004623 *peer_pfx = NULL;
4624
Thomas Graf461d8832006-09-18 00:09:49 -07004625 if (addr)
4626 pfx = nla_data(addr);
4627
4628 if (local) {
4629 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004630 *peer_pfx = pfx;
4631 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07004632 }
4633
4634 return pfx;
4635}
4636
Patrick McHardyef7c79e2007-06-05 12:38:30 -07004637static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07004638 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
4639 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
4640 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01004641 [IFA_FLAGS] = { .len = sizeof(u32) },
David Ahern8308f3f2018-05-27 08:09:58 -07004642 [IFA_RT_PRIORITY] = { .len = sizeof(u32) },
Christian Brauner6ecf4c32018-09-04 21:53:50 +02004643 [IFA_TARGET_NETNSID] = { .type = NLA_S32 },
Thomas Graf461d8832006-09-18 00:09:49 -07004644};
4645
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646static int
David Ahernc21ef3e2017-04-16 09:48:24 -07004647inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh,
4648 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004650 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07004651 struct ifaddrmsg *ifm;
4652 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004653 struct in6_addr *pfx, *peer_pfx;
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02004654 u32 ifa_flags;
Thomas Grafb933f712006-09-18 00:10:19 -07004655 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
Johannes Berg8cb08172019-04-26 14:07:28 +02004657 err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
4658 ifa_ipv6_policy, extack);
Thomas Grafb933f712006-09-18 00:10:19 -07004659 if (err < 0)
4660 return err;
4661
4662 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004663 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Ian Morris63159f22015-03-29 14:00:04 +01004664 if (!pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 return -EINVAL;
4666
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02004667 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
4668
4669 /* We ignore other flags so far. */
4670 ifa_flags &= IFA_F_MANAGETEMPADDR;
4671
4672 return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx,
4673 ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674}
4675
David Ahern8308f3f2018-05-27 08:09:58 -07004676static int modify_prefix_route(struct inet6_ifaddr *ifp,
Hangbin Liu61794012020-03-03 14:37:34 +08004677 unsigned long expires, u32 flags,
4678 bool modify_peer)
David Ahern8308f3f2018-05-27 08:09:58 -07004679{
4680 struct fib6_info *f6i;
David Aherne7c7faa2018-06-28 13:36:55 -07004681 u32 prio;
David Ahern8308f3f2018-05-27 08:09:58 -07004682
Hangbin Liu61794012020-03-03 14:37:34 +08004683 f6i = addrconf_get_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
4684 ifp->prefix_len,
David Ahern2b2450c2019-03-27 20:53:52 -07004685 ifp->idev->dev, 0, RTF_DEFAULT, true);
David Ahern8308f3f2018-05-27 08:09:58 -07004686 if (!f6i)
4687 return -ENOENT;
4688
David Aherne7c7faa2018-06-28 13:36:55 -07004689 prio = ifp->rt_priority ? : IP6_RT_PRIO_ADDRCONF;
4690 if (f6i->fib6_metric != prio) {
4691 /* delete old one */
Roopa Prabhu11dd74b2020-04-27 13:56:45 -07004692 ip6_del_rt(dev_net(ifp->idev->dev), f6i, false);
David Aherne7c7faa2018-06-28 13:36:55 -07004693
David Ahern8308f3f2018-05-27 08:09:58 -07004694 /* add new one */
Hangbin Liu61794012020-03-03 14:37:34 +08004695 addrconf_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
4696 ifp->prefix_len,
David Ahern8308f3f2018-05-27 08:09:58 -07004697 ifp->rt_priority, ifp->idev->dev,
4698 expires, flags, GFP_KERNEL);
David Ahern8308f3f2018-05-27 08:09:58 -07004699 } else {
4700 if (!expires)
4701 fib6_clean_expires(f6i);
4702 else
4703 fib6_set_expires(f6i, expires);
4704
4705 fib6_info_release(f6i);
4706 }
4707
4708 return 0;
4709}
4710
David Ahernd169a1f2018-05-27 08:09:55 -07004711static int inet6_addr_modify(struct inet6_ifaddr *ifp, struct ifa6_config *cfg)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004712{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004713 u32 flags;
4714 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004715 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01004716 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01004717 bool had_prefixroute;
Hangbin Liud0098e42020-03-03 14:37:35 +08004718 bool new_peer = false;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09004719
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004720 ASSERT_RTNL();
4721
David Ahernd169a1f2018-05-27 08:09:55 -07004722 if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004723 return -EINVAL;
4724
David Ahernd169a1f2018-05-27 08:09:55 -07004725 if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR &&
Jiri Pirko53bd6742013-12-06 09:45:22 +01004726 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
4727 return -EINVAL;
4728
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004729 if (!(ifp->flags & IFA_F_TENTATIVE) || ifp->flags & IFA_F_DADFAILED)
David Ahernd169a1f2018-05-27 08:09:55 -07004730 cfg->ifa_flags &= ~IFA_F_OPTIMISTIC;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004731
David Ahernd169a1f2018-05-27 08:09:55 -07004732 timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004733 if (addrconf_finite_timeout(timeout)) {
4734 expires = jiffies_to_clock_t(timeout * HZ);
David Ahernd169a1f2018-05-27 08:09:55 -07004735 cfg->valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004736 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004737 } else {
4738 expires = 0;
4739 flags = 0;
David Ahernd169a1f2018-05-27 08:09:55 -07004740 cfg->ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004741 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004742
David Ahernd169a1f2018-05-27 08:09:55 -07004743 timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004744 if (addrconf_finite_timeout(timeout)) {
4745 if (timeout == 0)
David Ahernd169a1f2018-05-27 08:09:55 -07004746 cfg->ifa_flags |= IFA_F_DEPRECATED;
4747 cfg->preferred_lft = timeout;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004748 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004749
Hangbin Liud0098e42020-03-03 14:37:35 +08004750 if (cfg->peer_pfx &&
4751 memcmp(&ifp->peer_addr, cfg->peer_pfx, sizeof(struct in6_addr))) {
4752 if (!ipv6_addr_any(&ifp->peer_addr))
4753 cleanup_prefix_route(ifp, expires, true, true);
4754 new_peer = true;
4755 }
4756
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004757 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004758 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01004759 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
4760 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004761 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01004762 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
4763 IFA_F_NOPREFIXROUTE);
David Ahernd169a1f2018-05-27 08:09:55 -07004764 ifp->flags |= cfg->ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004765 ifp->tstamp = jiffies;
David Ahernd169a1f2018-05-27 08:09:55 -07004766 ifp->valid_lft = cfg->valid_lft;
4767 ifp->prefered_lft = cfg->preferred_lft;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004768
David Ahern8308f3f2018-05-27 08:09:58 -07004769 if (cfg->rt_priority && cfg->rt_priority != ifp->rt_priority)
4770 ifp->rt_priority = cfg->rt_priority;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004771
Hangbin Liud0098e42020-03-03 14:37:35 +08004772 if (new_peer)
4773 ifp->peer_addr = *cfg->peer_pfx;
4774
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004775 spin_unlock_bh(&ifp->lock);
4776 if (!(ifp->flags&IFA_F_TENTATIVE))
4777 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004778
David Ahernd169a1f2018-05-27 08:09:55 -07004779 if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) {
David Ahern8308f3f2018-05-27 08:09:58 -07004780 int rc = -ENOENT;
4781
4782 if (had_prefixroute)
Hangbin Liu61794012020-03-03 14:37:34 +08004783 rc = modify_prefix_route(ifp, expires, flags, false);
David Ahern8308f3f2018-05-27 08:09:58 -07004784
4785 /* prefix route could have been deleted; if so restore it */
4786 if (rc == -ENOENT) {
4787 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
4788 ifp->rt_priority, ifp->idev->dev,
4789 expires, flags, GFP_KERNEL);
4790 }
Hangbin Liu61794012020-03-03 14:37:34 +08004791
4792 if (had_prefixroute && !ipv6_addr_any(&ifp->peer_addr))
4793 rc = modify_prefix_route(ifp, expires, flags, true);
4794
4795 if (rc == -ENOENT && !ipv6_addr_any(&ifp->peer_addr)) {
4796 addrconf_prefix_route(&ifp->peer_addr, ifp->prefix_len,
4797 ifp->rt_priority, ifp->idev->dev,
4798 expires, flags, GFP_KERNEL);
4799 }
Thomas Haller5b84efe2014-01-15 15:36:59 +01004800 } else if (had_prefixroute) {
4801 enum cleanup_prefix_rt_t action;
4802 unsigned long rt_expires;
4803
4804 write_lock_bh(&ifp->idev->lock);
4805 action = check_cleanup_prefix_route(ifp, &rt_expires);
4806 write_unlock_bh(&ifp->idev->lock);
4807
4808 if (action != CLEANUP_PREFIX_RT_NOP) {
4809 cleanup_prefix_route(ifp, rt_expires,
Hangbin Liud0098e42020-03-03 14:37:35 +08004810 action == CLEANUP_PREFIX_RT_DEL, false);
Thomas Haller5b84efe2014-01-15 15:36:59 +01004811 }
Thomas Haller761aac72014-01-15 15:36:58 +01004812 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01004813
4814 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
David Ahernd169a1f2018-05-27 08:09:55 -07004815 if (was_managetempaddr &&
4816 !(ifp->flags & IFA_F_MANAGETEMPADDR)) {
4817 cfg->valid_lft = 0;
4818 cfg->preferred_lft = 0;
4819 }
4820 manage_tempaddrs(ifp->idev, ifp, cfg->valid_lft,
4821 cfg->preferred_lft, !was_managetempaddr,
4822 jiffies);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004823 }
4824
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004825 addrconf_verify_rtnl();
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004826
4827 return 0;
4828}
4829
4830static int
David Ahernc21ef3e2017-04-16 09:48:24 -07004831inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh,
4832 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004834 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07004835 struct ifaddrmsg *ifm;
4836 struct nlattr *tb[IFA_MAX+1];
David Ahern19b15182018-05-27 08:09:54 -07004837 struct in6_addr *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07004838 struct inet6_ifaddr *ifa;
4839 struct net_device *dev;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004840 struct inet6_dev *idev;
David Ahern19b15182018-05-27 08:09:54 -07004841 struct ifa6_config cfg;
Thomas Graf461d8832006-09-18 00:09:49 -07004842 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Johannes Berg8cb08172019-04-26 14:07:28 +02004844 err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
4845 ifa_ipv6_policy, extack);
Thomas Graf461d8832006-09-18 00:09:49 -07004846 if (err < 0)
4847 return err;
4848
David Ahern19b15182018-05-27 08:09:54 -07004849 memset(&cfg, 0, sizeof(cfg));
4850
Thomas Graf461d8832006-09-18 00:09:49 -07004851 ifm = nlmsg_data(nlh);
David Ahern19b15182018-05-27 08:09:54 -07004852 cfg.pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
4853 if (!cfg.pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 return -EINVAL;
4855
David Ahern19b15182018-05-27 08:09:54 -07004856 cfg.peer_pfx = peer_pfx;
4857 cfg.plen = ifm->ifa_prefixlen;
David Ahern8308f3f2018-05-27 08:09:58 -07004858 if (tb[IFA_RT_PRIORITY])
4859 cfg.rt_priority = nla_get_u32(tb[IFA_RT_PRIORITY]);
4860
David Ahern19b15182018-05-27 08:09:54 -07004861 cfg.valid_lft = INFINITY_LIFE_TIME;
4862 cfg.preferred_lft = INFINITY_LIFE_TIME;
4863
Thomas Graf461d8832006-09-18 00:09:49 -07004864 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09004865 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07004866
4867 ci = nla_data(tb[IFA_CACHEINFO]);
David Ahern19b15182018-05-27 08:09:54 -07004868 cfg.valid_lft = ci->ifa_valid;
4869 cfg.preferred_lft = ci->ifa_prefered;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09004870 }
4871
Daniel Lezcanoaf284932008-03-05 10:46:57 -08004872 dev = __dev_get_by_index(net, ifm->ifa_index);
Ian Morris63159f22015-03-29 14:00:04 +01004873 if (!dev)
Thomas Graf7198f8c2006-09-18 00:13:46 -07004874 return -ENODEV;
4875
David Ahern19b15182018-05-27 08:09:54 -07004876 if (tb[IFA_FLAGS])
4877 cfg.ifa_flags = nla_get_u32(tb[IFA_FLAGS]);
4878 else
4879 cfg.ifa_flags = ifm->ifa_flags;
Jiri Pirko479840f2013-12-06 09:45:21 +01004880
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004881 /* We ignore other flags so far. */
David Ahern19b15182018-05-27 08:09:54 -07004882 cfg.ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS |
4883 IFA_F_MANAGETEMPADDR | IFA_F_NOPREFIXROUTE |
4884 IFA_F_MCAUTOJOIN | IFA_F_OPTIMISTIC;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004885
4886 idev = ipv6_find_idev(dev);
Sabrina Dubrocadb0b99f2019-08-23 15:44:36 +02004887 if (IS_ERR(idev))
4888 return PTR_ERR(idev);
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004889
4890 if (!ipv6_allow_optimistic_dad(net, idev))
David Ahern19b15182018-05-27 08:09:54 -07004891 cfg.ifa_flags &= ~IFA_F_OPTIMISTIC;
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004892
David Ahern19b15182018-05-27 08:09:54 -07004893 if (cfg.ifa_flags & IFA_F_NODAD &&
4894 cfg.ifa_flags & IFA_F_OPTIMISTIC) {
Sabrina Dubrocaf1c02cf2018-02-28 16:40:08 +01004895 NL_SET_ERR_MSG(extack, "IFA_F_NODAD and IFA_F_OPTIMISTIC are mutually exclusive");
4896 return -EINVAL;
4897 }
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004898
David Ahern19b15182018-05-27 08:09:54 -07004899 ifa = ipv6_get_ifaddr(net, cfg.pfx, dev, 1);
Ian Morris63159f22015-03-29 14:00:04 +01004900 if (!ifa) {
Thomas Graf7198f8c2006-09-18 00:13:46 -07004901 /*
4902 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08004903 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07004904 */
David Ahern19b15182018-05-27 08:09:54 -07004905 return inet6_addr_add(net, ifm->ifa_index, &cfg, extack);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004906 }
4907
Thomas Graf7198f8c2006-09-18 00:13:46 -07004908 if (nlh->nlmsg_flags & NLM_F_EXCL ||
4909 !(nlh->nlmsg_flags & NLM_F_REPLACE))
4910 err = -EEXIST;
4911 else
David Ahernd169a1f2018-05-27 08:09:55 -07004912 err = inet6_addr_modify(ifa, &cfg);
Thomas Graf7198f8c2006-09-18 00:13:46 -07004913
4914 in6_ifa_put(ifa);
4915
4916 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917}
4918
Jiri Pirko479840f2013-12-06 09:45:21 +01004919static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07004920 u8 scope, int ifindex)
4921{
4922 struct ifaddrmsg *ifm;
4923
4924 ifm = nlmsg_data(nlh);
4925 ifm->ifa_family = AF_INET6;
4926 ifm->ifa_prefixlen = prefixlen;
4927 ifm->ifa_flags = flags;
4928 ifm->ifa_scope = scope;
4929 ifm->ifa_index = ifindex;
4930}
4931
Thomas Graf85486af2006-09-18 00:11:24 -07004932static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
4933 unsigned long tstamp, u32 preferred, u32 valid)
4934{
4935 struct ifa_cacheinfo ci;
4936
Thomas Graf18a31e12010-11-17 04:12:02 +00004937 ci.cstamp = cstamp_delta(cstamp);
4938 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07004939 ci.ifa_prefered = preferred;
4940 ci.ifa_valid = valid;
4941
4942 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
4943}
4944
Thomas Graf101bb222006-09-18 00:11:52 -07004945static inline int rt_scope(int ifa_scope)
4946{
4947 if (ifa_scope & IFA_HOST)
4948 return RT_SCOPE_HOST;
4949 else if (ifa_scope & IFA_LINK)
4950 return RT_SCOPE_LINK;
4951 else if (ifa_scope & IFA_SITE)
4952 return RT_SCOPE_SITE;
4953 else
4954 return RT_SCOPE_UNIVERSE;
4955}
4956
Thomas Graf0ab68032006-09-18 00:12:35 -07004957static inline int inet6_ifaddr_msgsize(void)
4958{
Thomas Graf339bf982006-11-10 14:10:15 -08004959 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004960 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08004961 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01004962 + nla_total_size(sizeof(struct ifa_cacheinfo))
David Ahern8308f3f2018-05-27 08:09:58 -07004963 + nla_total_size(4) /* IFA_FLAGS */
4964 + nla_total_size(4) /* IFA_RT_PRIORITY */;
Thomas Graf0ab68032006-09-18 00:12:35 -07004965}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004966
David Ahern6ba1e6e2018-10-07 20:16:26 -07004967enum addr_type_t {
4968 UNICAST_ADDR,
4969 MULTICAST_ADDR,
4970 ANYCAST_ADDR,
4971};
4972
Christian Brauner203651b2018-09-04 21:53:55 +02004973struct inet6_fill_args {
4974 u32 portid;
4975 u32 seq;
4976 int event;
4977 unsigned int flags;
4978 int netnsid;
David Ahern6371a712018-10-19 12:45:30 -07004979 int ifindex;
David Ahern6ba1e6e2018-10-07 20:16:26 -07004980 enum addr_type_t type;
Christian Brauner203651b2018-09-04 21:53:55 +02004981};
4982
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Christian Brauner203651b2018-09-04 21:53:55 +02004984 struct inet6_fill_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07004987 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
Christian Brauner203651b2018-09-04 21:53:55 +02004989 nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
4990 sizeof(struct ifaddrmsg), args->flags);
Ian Morris63159f22015-03-29 14:00:04 +01004991 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004992 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004993
Thomas Graf101bb222006-09-18 00:11:52 -07004994 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
4995 ifa->idev->dev->ifindex);
4996
Christian Brauner203651b2018-09-04 21:53:55 +02004997 if (args->netnsid >= 0 &&
4998 nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid))
Christian Brauner6ecf4c32018-09-04 21:53:50 +02004999 goto error;
5000
Yasushi Asanofad8da32013-12-31 12:04:19 +09005001 if (!((ifa->flags&IFA_F_PERMANENT) &&
5002 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07005003 preferred = ifa->prefered_lft;
5004 valid = ifa->valid_lft;
5005 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00005007 if (preferred > tval)
5008 preferred -= tval;
5009 else
5010 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00005011 if (valid != INFINITY_LIFE_TIME) {
5012 if (valid > tval)
5013 valid -= tval;
5014 else
5015 valid = 0;
5016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 }
5018 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07005019 preferred = INFINITY_LIFE_TIME;
5020 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 }
Thomas Graf85486af2006-09-18 00:11:24 -07005022
Cong Wang7996c792013-05-22 05:41:06 +00005023 if (!ipv6_addr_any(&ifa->peer_addr)) {
Jiri Benc930345e2015-03-29 16:59:25 +02005024 if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 ||
5025 nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->peer_addr) < 0)
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005026 goto error;
5027 } else
Jiri Benc930345e2015-03-29 16:59:25 +02005028 if (nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->addr) < 0)
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005029 goto error;
5030
David Ahern8308f3f2018-05-27 08:09:58 -07005031 if (ifa->rt_priority &&
5032 nla_put_u32(skb, IFA_RT_PRIORITY, ifa->rt_priority))
5033 goto error;
5034
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005035 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
5036 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07005037
Jiri Pirko479840f2013-12-06 09:45:21 +01005038 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
5039 goto error;
5040
Johannes Berg053c0952015-01-16 22:09:00 +01005041 nlmsg_end(skb, nlh);
5042 return 0;
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005043
5044error:
5045 nlmsg_cancel(skb, nlh);
5046 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047}
5048
5049static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Christian Brauner203651b2018-09-04 21:53:55 +02005050 struct inet6_fill_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07005053 u8 scope = RT_SCOPE_UNIVERSE;
5054 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
Thomas Graf101bb222006-09-18 00:11:52 -07005056 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
5057 scope = RT_SCOPE_SITE;
5058
Christian Brauner203651b2018-09-04 21:53:55 +02005059 nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5060 sizeof(struct ifaddrmsg), args->flags);
Ian Morris63159f22015-03-29 14:00:04 +01005061 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005062 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07005063
Christian Brauner203651b2018-09-04 21:53:55 +02005064 if (args->netnsid >= 0 &&
Zhang Qilongceb736e2020-11-12 16:09:50 +08005065 nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) {
5066 nlmsg_cancel(skb, nlh);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005067 return -EMSGSIZE;
Zhang Qilongceb736e2020-11-12 16:09:50 +08005068 }
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005069
Thomas Graf101bb222006-09-18 00:11:52 -07005070 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Jiri Benc930345e2015-03-29 16:59:25 +02005071 if (nla_put_in6_addr(skb, IFA_MULTICAST, &ifmca->mca_addr) < 0 ||
Thomas Graf0ab68032006-09-18 00:12:35 -07005072 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08005073 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
5074 nlmsg_cancel(skb, nlh);
5075 return -EMSGSIZE;
5076 }
Thomas Graf85486af2006-09-18 00:11:24 -07005077
Johannes Berg053c0952015-01-16 22:09:00 +01005078 nlmsg_end(skb, nlh);
5079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080}
5081
5082static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Christian Brauner203651b2018-09-04 21:53:55 +02005083 struct inet6_fill_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084{
David Ahern9ee8cbb2018-04-18 15:39:01 -07005085 struct net_device *dev = fib6_info_nh_dev(ifaca->aca_rt);
5086 int ifindex = dev ? dev->ifindex : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07005088 u8 scope = RT_SCOPE_UNIVERSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
Thomas Graf101bb222006-09-18 00:11:52 -07005090 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
5091 scope = RT_SCOPE_SITE;
5092
Christian Brauner203651b2018-09-04 21:53:55 +02005093 nlh = nlmsg_put(skb, args->portid, args->seq, args->event,
5094 sizeof(struct ifaddrmsg), args->flags);
Ian Morris63159f22015-03-29 14:00:04 +01005095 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005096 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07005097
Christian Brauner203651b2018-09-04 21:53:55 +02005098 if (args->netnsid >= 0 &&
Zhang Qilongceb736e2020-11-12 16:09:50 +08005099 nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) {
5100 nlmsg_cancel(skb, nlh);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005101 return -EMSGSIZE;
Zhang Qilongceb736e2020-11-12 16:09:50 +08005102 }
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005103
Thomas Graf101bb222006-09-18 00:11:52 -07005104 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Jiri Benc930345e2015-03-29 16:59:25 +02005105 if (nla_put_in6_addr(skb, IFA_ANYCAST, &ifaca->aca_addr) < 0 ||
Thomas Graf0ab68032006-09-18 00:12:35 -07005106 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08005107 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
5108 nlmsg_cancel(skb, nlh);
5109 return -EMSGSIZE;
5110 }
Thomas Graf85486af2006-09-18 00:11:24 -07005111
Johannes Berg053c0952015-01-16 22:09:00 +01005112 nlmsg_end(skb, nlh);
5113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114}
5115
Eric Dumazet234b27c2009-11-12 04:11:50 +00005116/* called with rcu_read_lock() */
5117static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
David Ahernfe884c22018-10-19 12:45:28 -07005118 struct netlink_callback *cb, int s_ip_idx,
David Ahern6ba1e6e2018-10-07 20:16:26 -07005119 struct inet6_fill_args *fillargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 struct ifmcaddr6 *ifmca;
5122 struct ifacaddr6 *ifaca;
David Ahernfe884c22018-10-19 12:45:28 -07005123 int ip_idx = 0;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005124 int err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
Eric Dumazet234b27c2009-11-12 04:11:50 +00005126 read_lock_bh(&idev->lock);
David Ahern6ba1e6e2018-10-07 20:16:26 -07005127 switch (fillargs->type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00005128 case UNICAST_ADDR: {
5129 struct inet6_ifaddr *ifa;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005130 fillargs->event = RTM_NEWADDR;
stephen hemminger502a2ff2010-03-17 20:31:13 +00005131
Eric Dumazet234b27c2009-11-12 04:11:50 +00005132 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00005133 list_for_each_entry(ifa, &idev->addr_list, if_list) {
David Ahern4ba4c562018-10-19 10:00:19 -07005134 if (ip_idx < s_ip_idx)
5135 goto next;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005136 err = inet6_fill_ifaddr(skb, ifa, fillargs);
Johannes Berg053c0952015-01-16 22:09:00 +01005137 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005138 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00005139 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
David Ahern4ba4c562018-10-19 10:00:19 -07005140next:
5141 ip_idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00005143 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00005144 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00005145 case MULTICAST_ADDR:
Taehee Yoo88e2ca32021-03-25 16:16:55 +00005146 read_unlock_bh(&idev->lock);
David Ahern6ba1e6e2018-10-07 20:16:26 -07005147 fillargs->event = RTM_GETMULTICAST;
Christian Brauner203651b2018-09-04 21:53:55 +02005148
Eric Dumazet234b27c2009-11-12 04:11:50 +00005149 /* multicast address */
Taehee Yoo88e2ca32021-03-25 16:16:55 +00005150 for (ifmca = rcu_dereference(idev->mc_list);
5151 ifmca;
5152 ifmca = rcu_dereference(ifmca->next), ip_idx++) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00005153 if (ip_idx < s_ip_idx)
5154 continue;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005155 err = inet6_fill_ifmcaddr(skb, ifmca, fillargs);
Johannes Berg053c0952015-01-16 22:09:00 +01005156 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005157 break;
5158 }
Taehee Yoo88e2ca32021-03-25 16:16:55 +00005159 read_lock_bh(&idev->lock);
Eric Dumazet234b27c2009-11-12 04:11:50 +00005160 break;
5161 case ANYCAST_ADDR:
David Ahern6ba1e6e2018-10-07 20:16:26 -07005162 fillargs->event = RTM_GETANYCAST;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005163 /* anycast address */
5164 for (ifaca = idev->ac_list; ifaca;
5165 ifaca = ifaca->aca_next, ip_idx++) {
5166 if (ip_idx < s_ip_idx)
5167 continue;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005168 err = inet6_fill_ifacaddr(skb, ifaca, fillargs);
Johannes Berg053c0952015-01-16 22:09:00 +01005169 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005170 break;
5171 }
5172 break;
5173 default:
5174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00005176 read_unlock_bh(&idev->lock);
David Ahernfe884c22018-10-19 12:45:28 -07005177 cb->args[2] = ip_idx;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005178 return err;
5179}
5180
David Aherned6eff12018-10-07 20:16:29 -07005181static int inet6_valid_dump_ifaddr_req(const struct nlmsghdr *nlh,
5182 struct inet6_fill_args *fillargs,
5183 struct net **tgt_net, struct sock *sk,
David Ahern6371a712018-10-19 12:45:30 -07005184 struct netlink_callback *cb)
David Aherned6eff12018-10-07 20:16:29 -07005185{
David Ahern6371a712018-10-19 12:45:30 -07005186 struct netlink_ext_ack *extack = cb->extack;
David Aherned6eff12018-10-07 20:16:29 -07005187 struct nlattr *tb[IFA_MAX+1];
5188 struct ifaddrmsg *ifm;
5189 int err, i;
5190
5191 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5192 NL_SET_ERR_MSG_MOD(extack, "Invalid header for address dump request");
5193 return -EINVAL;
5194 }
5195
5196 ifm = nlmsg_data(nlh);
5197 if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) {
5198 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for address dump request");
5199 return -EINVAL;
5200 }
David Ahern6371a712018-10-19 12:45:30 -07005201
5202 fillargs->ifindex = ifm->ifa_index;
5203 if (fillargs->ifindex) {
5204 cb->answer_flags |= NLM_F_DUMP_FILTERED;
5205 fillargs->flags |= NLM_F_DUMP_FILTERED;
David Aherned6eff12018-10-07 20:16:29 -07005206 }
5207
Johannes Berg8cb08172019-04-26 14:07:28 +02005208 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX,
5209 ifa_ipv6_policy, extack);
David Aherned6eff12018-10-07 20:16:29 -07005210 if (err < 0)
5211 return err;
5212
5213 for (i = 0; i <= IFA_MAX; ++i) {
5214 if (!tb[i])
5215 continue;
5216
5217 if (i == IFA_TARGET_NETNSID) {
5218 struct net *net;
5219
5220 fillargs->netnsid = nla_get_s32(tb[i]);
5221 net = rtnl_get_net_ns_capable(sk, fillargs->netnsid);
5222 if (IS_ERR(net)) {
Bjørn Morkbf4cc402018-10-25 21:18:25 +02005223 fillargs->netnsid = -1;
David Aherned6eff12018-10-07 20:16:29 -07005224 NL_SET_ERR_MSG_MOD(extack, "Invalid target network namespace id");
5225 return PTR_ERR(net);
5226 }
5227 *tgt_net = net;
5228 } else {
5229 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in dump request");
5230 return -EINVAL;
5231 }
5232 }
5233
5234 return 0;
5235}
5236
Eric Dumazet234b27c2009-11-12 04:11:50 +00005237static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
5238 enum addr_type_t type)
5239{
David Aherned6eff12018-10-07 20:16:29 -07005240 const struct nlmsghdr *nlh = cb->nlh;
David Ahern6ba1e6e2018-10-07 20:16:26 -07005241 struct inet6_fill_args fillargs = {
5242 .portid = NETLINK_CB(cb->skb).portid,
5243 .seq = cb->nlh->nlmsg_seq,
5244 .flags = NLM_F_MULTI,
5245 .netnsid = -1,
5246 .type = type,
5247 };
Rocco Yue87117ba2021-07-15 22:26:43 +08005248 struct net *tgt_net = sock_net(skb->sk);
David Ahernfe884c22018-10-19 12:45:28 -07005249 int idx, s_idx, s_ip_idx;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005250 int h, s_h;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005251 struct net_device *dev;
5252 struct inet6_dev *idev;
5253 struct hlist_head *head;
David Ahern242afaa2018-10-24 12:59:00 -07005254 int err = 0;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005255
5256 s_h = cb->args[0];
5257 s_idx = idx = cb->args[1];
David Ahernfe884c22018-10-19 12:45:28 -07005258 s_ip_idx = cb->args[2];
Eric Dumazet234b27c2009-11-12 04:11:50 +00005259
David Aherned6eff12018-10-07 20:16:29 -07005260 if (cb->strict_check) {
David Aherned6eff12018-10-07 20:16:29 -07005261 err = inet6_valid_dump_ifaddr_req(nlh, &fillargs, &tgt_net,
David Ahern6371a712018-10-19 12:45:30 -07005262 skb->sk, cb);
David Aherned6eff12018-10-07 20:16:29 -07005263 if (err < 0)
David Ahern242afaa2018-10-24 12:59:00 -07005264 goto put_tgt_net;
David Ahern6371a712018-10-19 12:45:30 -07005265
David Ahern242afaa2018-10-24 12:59:00 -07005266 err = 0;
David Ahern6371a712018-10-19 12:45:30 -07005267 if (fillargs.ifindex) {
5268 dev = __dev_get_by_index(tgt_net, fillargs.ifindex);
David Ahern242afaa2018-10-24 12:59:00 -07005269 if (!dev) {
5270 err = -ENODEV;
5271 goto put_tgt_net;
5272 }
David Ahern6371a712018-10-19 12:45:30 -07005273 idev = __in6_dev_get(dev);
5274 if (idev) {
5275 err = in6_dump_addrs(idev, skb, cb, s_ip_idx,
5276 &fillargs);
Jakub Kicinski15180392019-01-22 14:47:19 -08005277 if (err > 0)
5278 err = 0;
David Ahern6371a712018-10-19 12:45:30 -07005279 }
5280 goto put_tgt_net;
5281 }
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005282 }
5283
Eric Dumazet234b27c2009-11-12 04:11:50 +00005284 rcu_read_lock();
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005285 cb->seq = atomic_read(&tgt_net->ipv6.dev_addr_genid) ^ tgt_net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00005286 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
5287 idx = 0;
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005288 head = &tgt_net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08005289 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00005290 if (idx < s_idx)
5291 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07005292 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005293 s_ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005294 idev = __in6_dev_get(dev);
5295 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005296 goto cont;
5297
David Ahernfe884c22018-10-19 12:45:28 -07005298 if (in6_dump_addrs(idev, skb, cb, s_ip_idx,
David Ahern6ba1e6e2018-10-07 20:16:26 -07005299 &fillargs) < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00005300 goto done;
5301cont:
5302 idx++;
5303 }
5304 }
5305done:
5306 rcu_read_unlock();
5307 cb->args[0] = h;
5308 cb->args[1] = idx;
David Ahern6371a712018-10-19 12:45:30 -07005309put_tgt_net:
David Ahern6ba1e6e2018-10-07 20:16:26 -07005310 if (fillargs.netnsid >= 0)
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005311 put_net(tgt_net);
Eric Dumazet234b27c2009-11-12 04:11:50 +00005312
Arthur Gautier7c1e8a32018-12-31 02:10:58 +00005313 return skb->len ? : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314}
5315
5316static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
5317{
5318 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11005319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 return inet6_dump_addr(skb, cb, type);
5321}
5322
5323static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
5324{
5325 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11005326
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 return inet6_dump_addr(skb, cb, type);
5328}
5329
5330
5331static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
5332{
5333 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11005334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 return inet6_dump_addr(skb, cb, type);
5336}
5337
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005338static int inet6_rtm_valid_getaddr_req(struct sk_buff *skb,
5339 const struct nlmsghdr *nlh,
5340 struct nlattr **tb,
5341 struct netlink_ext_ack *extack)
5342{
5343 struct ifaddrmsg *ifm;
5344 int i, err;
5345
5346 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5347 NL_SET_ERR_MSG_MOD(extack, "Invalid header for get address request");
5348 return -EINVAL;
5349 }
5350
Hangbin Liu2beb6d22019-12-11 22:20:16 +08005351 if (!netlink_strict_get_check(skb))
5352 return nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
5353 ifa_ipv6_policy, extack);
5354
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005355 ifm = nlmsg_data(nlh);
5356 if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) {
5357 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get address request");
5358 return -EINVAL;
5359 }
5360
Johannes Berg8cb08172019-04-26 14:07:28 +02005361 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX,
5362 ifa_ipv6_policy, extack);
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005363 if (err)
5364 return err;
5365
5366 for (i = 0; i <= IFA_MAX; i++) {
5367 if (!tb[i])
5368 continue;
5369
5370 switch (i) {
5371 case IFA_TARGET_NETNSID:
5372 case IFA_ADDRESS:
5373 case IFA_LOCAL:
5374 break;
5375 default:
5376 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get address request");
5377 return -EINVAL;
5378 }
5379 }
5380
5381 return 0;
5382}
5383
David Ahernc21ef3e2017-04-16 09:48:24 -07005384static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
5385 struct netlink_ext_ack *extack)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005386{
Rocco Yue87117ba2021-07-15 22:26:43 +08005387 struct net *tgt_net = sock_net(in_skb->sk);
Christian Brauner203651b2018-09-04 21:53:55 +02005388 struct inet6_fill_args fillargs = {
5389 .portid = NETLINK_CB(in_skb).portid,
5390 .seq = nlh->nlmsg_seq,
5391 .event = RTM_NEWADDR,
5392 .flags = 0,
5393 .netnsid = -1,
5394 };
Thomas Graf1b29fc22006-09-18 00:10:50 -07005395 struct ifaddrmsg *ifm;
5396 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005397 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005398 struct net_device *dev = NULL;
5399 struct inet6_ifaddr *ifa;
5400 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005401 int err;
5402
Jakub Kicinski4b1373d2019-01-18 10:46:21 -08005403 err = inet6_rtm_valid_getaddr_req(in_skb, nlh, tb, extack);
Thomas Graf1b29fc22006-09-18 00:10:50 -07005404 if (err < 0)
Florian Westphalc24675f2017-10-11 10:28:01 +02005405 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005406
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005407 if (tb[IFA_TARGET_NETNSID]) {
Christian Brauner203651b2018-09-04 21:53:55 +02005408 fillargs.netnsid = nla_get_s32(tb[IFA_TARGET_NETNSID]);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005409
5410 tgt_net = rtnl_get_net_ns_capable(NETLINK_CB(in_skb).sk,
Christian Brauner203651b2018-09-04 21:53:55 +02005411 fillargs.netnsid);
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005412 if (IS_ERR(tgt_net))
5413 return PTR_ERR(tgt_net);
5414 }
5415
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005416 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Florian Westphalc24675f2017-10-11 10:28:01 +02005417 if (!addr)
5418 return -EINVAL;
Thomas Graf1b29fc22006-09-18 00:10:50 -07005419
5420 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005421 if (ifm->ifa_index)
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005422 dev = dev_get_by_index(tgt_net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005423
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005424 ifa = ipv6_get_ifaddr(tgt_net, addr, dev, 1);
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005425 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07005426 err = -EADDRNOTAVAIL;
5427 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005428 }
5429
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005430 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
5431 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07005432 err = -ENOBUFS;
5433 goto errout_ifa;
5434 }
5435
Christian Brauner203651b2018-09-04 21:53:55 +02005436 err = inet6_fill_ifaddr(skb, ifa, &fillargs);
Patrick McHardy26932562007-01-31 23:16:40 -08005437 if (err < 0) {
5438 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5439 WARN_ON(err == -EMSGSIZE);
5440 kfree_skb(skb);
5441 goto errout_ifa;
5442 }
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005443 err = rtnl_unicast(skb, tgt_net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07005444errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005445 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07005446errout:
Yajun Deng1160dfa2021-08-05 19:55:27 +08005447 dev_put(dev);
Christian Brauner203651b2018-09-04 21:53:55 +02005448 if (fillargs.netnsid >= 0)
Christian Brauner6ecf4c32018-09-04 21:53:50 +02005449 put_net(tgt_net);
5450
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005451 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09005452}
5453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
5455{
5456 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005457 struct net *net = dev_net(ifa->idev->dev);
Christian Brauner203651b2018-09-04 21:53:55 +02005458 struct inet6_fill_args fillargs = {
5459 .portid = 0,
5460 .seq = 0,
5461 .event = event,
5462 .flags = 0,
5463 .netnsid = -1,
5464 };
Thomas Graf5d620262006-08-15 00:35:02 -07005465 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
Thomas Graf0ab68032006-09-18 00:12:35 -07005467 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01005468 if (!skb)
Thomas Graf5d620262006-08-15 00:35:02 -07005469 goto errout;
5470
Christian Brauner203651b2018-09-04 21:53:55 +02005471 err = inet6_fill_ifaddr(skb, ifa, &fillargs);
Patrick McHardy26932562007-01-31 23:16:40 -08005472 if (err < 0) {
5473 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
5474 WARN_ON(err == -EMSGSIZE);
5475 kfree_skb(skb);
5476 goto errout;
5477 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005478 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
5479 return;
Thomas Graf5d620262006-08-15 00:35:02 -07005480errout:
5481 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08005482 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483}
5484
Dave Jonesb6f99a22007-03-22 12:27:49 -07005485static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 __s32 *array, int bytes)
5487{
Thomas Graf04561c12006-11-14 19:53:58 -08005488 BUG_ON(bytes < (DEVCONF_MAX * 4));
5489
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 memset(array, 0, bytes);
5491 array[DEVCONF_FORWARDING] = cnf->forwarding;
5492 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
5493 array[DEVCONF_MTU6] = cnf->mtu6;
5494 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
5495 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
5496 array[DEVCONF_AUTOCONF] = cnf->autoconf;
5497 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
5498 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00005499 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
5500 jiffies_to_msecs(cnf->rtr_solicit_interval);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005501 array[DEVCONF_RTR_SOLICIT_MAX_INTERVAL] =
5502 jiffies_to_msecs(cnf->rtr_solicit_max_interval);
Thomas Graf93908d12010-11-17 01:44:24 +00005503 array[DEVCONF_RTR_SOLICIT_DELAY] =
5504 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02005506 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
5507 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
5508 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
5509 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
5511 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
5512 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
5513 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
5514 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08005516 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
Praveen Chaudhary6b2e04b2021-01-25 13:44:30 -08005517 array[DEVCONF_RA_DEFRTR_METRIC] = cnf->ra_defrtr_metric;
Hangbin Liu8013d1d2015-07-30 14:28:42 +08005518 array[DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT] = cnf->accept_ra_min_hop_limit;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005519 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005520#ifdef CONFIG_IPV6_ROUTER_PREF
5521 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00005522 array[DEVCONF_RTR_PROBE_INTERVAL] =
5523 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08005524#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +09005525 array[DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN] = cnf->accept_ra_rt_info_min_plen;
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005526 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
5527#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005528#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005529 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005530 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07005531#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5532 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
Erik Kline7fd25612014-10-28 18:11:14 +09005533 array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic;
Neil Horman95c385b2007-04-25 17:08:10 -07005534#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005535#ifdef CONFIG_IPV6_MROUTE
5536 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
5537#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005538 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005539 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00005540 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005541 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005542 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Ben Greeard9333192014-06-25 14:44:53 -07005543 array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local;
Harout Hedeshianc2943f12015-01-20 10:06:05 -07005544 array[DEVCONF_ACCEPT_RA_MTU] = cnf->accept_ra_mtu;
Andy Gospodarek35103d12015-08-13 10:39:01 -04005545 array[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN] = cnf->ignore_routes_with_linkdown;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005546 /* we omit DEVCONF_STABLE_SECRET for now */
Erik Kline3985e8a2015-07-22 16:38:25 +09005547 array[DEVCONF_USE_OIF_ADDRS_ONLY] = cnf->use_oif_addrs_only;
Johannes Bergabbc3042016-02-04 13:31:19 +01005548 array[DEVCONF_DROP_UNICAST_IN_L2_MULTICAST] = cnf->drop_unicast_in_l2_multicast;
Johannes Berg7a02bf82016-02-04 13:31:20 +01005549 array[DEVCONF_DROP_UNSOLICITED_NA] = cnf->drop_unsolicited_na;
David Ahernf1705ec2016-02-24 09:25:37 -08005550 array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down;
David Lebrun1ababeb2016-11-08 14:57:39 +01005551 array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled;
David Lebrunbf355b82016-11-08 14:57:42 +01005552#ifdef CONFIG_IPV6_SEG6_HMAC
5553 array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac;
5554#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -08005555 array[DEVCONF_ENHANCED_DAD] = cnf->enhanced_dad;
Felix Jiad35a00b2017-01-26 16:59:17 +13005556 array[DEVCONF_ADDR_GEN_MODE] = cnf->addr_gen_mode;
David Forsterdf789fe2017-02-23 16:27:18 +00005557 array[DEVCONF_DISABLE_POLICY] = cnf->disable_policy;
Maciej Żenczykowski2210d6b2017-11-07 21:52:09 -08005558 array[DEVCONF_NDISC_TCLASS] = cnf->ndisc_tclass;
Alexander Aring8610c7c2020-03-27 18:00:20 -04005559 array[DEVCONF_RPL_SEG_ENABLED] = cnf->rpl_seg_enabled;
Justin Iurman9ee11f02021-07-20 21:42:57 +02005560 array[DEVCONF_IOAM6_ENABLED] = cnf->ioam6_enabled;
5561 array[DEVCONF_IOAM6_ID] = cnf->ioam6_id;
5562 array[DEVCONF_IOAM6_ID_WIDE] = cnf->ioam6_id_wide;
James Prestwood18ac5972021-11-01 10:36:29 -07005563 array[DEVCONF_NDISC_EVICT_NOCARRIER] = cnf->ndisc_evict_nocarrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564}
5565
Thomas Grafb382b192010-11-16 04:33:57 +00005566static inline size_t inet6_ifla6_size(void)
5567{
5568 return nla_total_size(4) /* IFLA_INET6_FLAGS */
5569 + nla_total_size(sizeof(struct ifla_cacheinfo))
5570 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
5571 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005572 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
Sabrina Dubrocabdd72f42018-07-09 12:25:16 +02005573 + nla_total_size(sizeof(struct in6_addr)) /* IFLA_INET6_TOKEN */
5574 + nla_total_size(1) /* IFLA_INET6_ADDR_GEN_MODE */
Rocco Yue49b99da2021-08-27 23:04:12 +08005575 + nla_total_size(4) /* IFLA_INET6_RA_MTU */
Sabrina Dubrocabdd72f42018-07-09 12:25:16 +02005576 + 0;
Thomas Grafb382b192010-11-16 04:33:57 +00005577}
5578
Thomas Graf339bf982006-11-10 14:10:15 -08005579static inline size_t inet6_if_nlmsg_size(void)
5580{
5581 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
5582 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
5583 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
5584 + nla_total_size(4) /* IFLA_MTU */
5585 + nla_total_size(4) /* IFLA_LINK */
Andy Gospodarek03443382015-08-13 15:26:35 -04005586 + nla_total_size(1) /* IFLA_OPERSTATE */
Thomas Grafb382b192010-11-16 04:33:57 +00005587 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08005588}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07005589
Eric Dumazetbe281e52011-05-19 01:14:23 +00005590static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Jia Heaca05672016-09-30 11:29:03 +08005591 int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005592{
5593 int i;
Jia Heaca05672016-09-30 11:29:03 +08005594 int pad = bytes - sizeof(u64) * ICMP6_MIB_MAX;
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005595 BUG_ON(pad < 0);
5596
5597 /* Use put_unaligned() because stats may not be aligned for u64. */
Jia Heaca05672016-09-30 11:29:03 +08005598 put_unaligned(ICMP6_MIB_MAX, &stats[0]);
5599 for (i = 1; i < ICMP6_MIB_MAX; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00005600 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005601
Jia Heaca05672016-09-30 11:29:03 +08005602 memset(&stats[ICMP6_MIB_MAX], 0, pad);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005603}
5604
WANG Cong698365f2014-05-05 15:55:55 -07005605static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib,
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305606 int bytes, size_t syncpoff)
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005607{
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305608 int i, c;
5609 u64 buff[IPSTATS_MIB_MAX];
5610 int pad = bytes - sizeof(u64) * IPSTATS_MIB_MAX;
5611
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005612 BUG_ON(pad < 0);
5613
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305614 memset(buff, 0, sizeof(buff));
5615 buff[0] = IPSTATS_MIB_MAX;
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005616
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305617 for_each_possible_cpu(c) {
5618 for (i = 1; i < IPSTATS_MIB_MAX; i++)
5619 buff[i] += snmp_get_cpu_field64(mib, c, i, syncpoff);
5620 }
5621
5622 memcpy(stats, buff, IPSTATS_MIB_MAX * sizeof(u64));
5623 memset(&stats[IPSTATS_MIB_MAX], 0, pad);
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005624}
5625
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005626static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
5627 int bytes)
5628{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005629 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005630 case IFLA_INET6_STATS:
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305631 __snmp6_fill_stats64(stats, idev->stats.ipv6, bytes,
5632 offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005633 break;
5634 case IFLA_INET6_ICMP6STATS:
Jia Heaca05672016-09-30 11:29:03 +08005635 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005636 break;
5637 }
5638}
5639
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005640static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev,
5641 u32 ext_filter_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005643 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08005644 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
David S. Millerc78679e2012-04-01 20:27:33 -04005646 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
5647 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08005649 ci.tstamp = cstamp_delta(idev->tstamp);
5650 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e2013-12-07 19:26:53 +01005651 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04005652 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
5653 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005654 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
Ian Morris63159f22015-03-29 14:00:04 +01005655 if (!nla)
Thomas Graf04561c12006-11-14 19:53:58 -08005656 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005657 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005659 /* XXX - MC not implemented */
5660
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005661 if (ext_filter_mask & RTEXT_FILTER_SKIP_STATS)
5662 return 0;
5663
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005664 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
Ian Morris63159f22015-03-29 14:00:04 +01005665 if (!nla)
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005666 goto nla_put_failure;
5667 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
5668
5669 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
Ian Morris63159f22015-03-29 14:00:04 +01005670 if (!nla)
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005671 goto nla_put_failure;
5672 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005674 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
Ian Morris63159f22015-03-29 14:00:04 +01005675 if (!nla)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005676 goto nla_put_failure;
5677 read_lock_bh(&idev->lock);
5678 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
5679 read_unlock_bh(&idev->lock);
5680
Nicolas Dichtel0d7982c2019-09-30 14:02:16 +02005681 if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->cnf.addr_gen_mode))
5682 goto nla_put_failure;
5683
Rocco Yue49b99da2021-08-27 23:04:12 +08005684 if (idev->ra_mtu &&
5685 nla_put_u32(skb, IFLA_INET6_RA_MTU, idev->ra_mtu))
5686 goto nla_put_failure;
5687
Thomas Grafb382b192010-11-16 04:33:57 +00005688 return 0;
5689
5690nla_put_failure:
5691 return -EMSGSIZE;
5692}
5693
Arad, Ronenb1974ed2015-10-19 09:23:28 -07005694static size_t inet6_get_link_af_size(const struct net_device *dev,
5695 u32 ext_filter_mask)
Thomas Grafb382b192010-11-16 04:33:57 +00005696{
5697 if (!__in6_dev_get(dev))
5698 return 0;
5699
5700 return inet6_ifla6_size();
5701}
5702
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005703static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev,
5704 u32 ext_filter_mask)
Thomas Grafb382b192010-11-16 04:33:57 +00005705{
5706 struct inet6_dev *idev = __in6_dev_get(dev);
5707
5708 if (!idev)
5709 return -ENODATA;
5710
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005711 if (inet6_fill_ifla6_attrs(skb, idev, ext_filter_mask) < 0)
Thomas Grafb382b192010-11-16 04:33:57 +00005712 return -EMSGSIZE;
5713
5714 return 0;
5715}
5716
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005717static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token,
5718 struct netlink_ext_ack *extack)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005719{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005720 struct inet6_ifaddr *ifp;
5721 struct net_device *dev = idev->dev;
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005722 bool clear_token, update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02005723 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005724
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005725 ASSERT_RTNL();
5726
Ian Morris63159f22015-03-29 14:00:04 +01005727 if (!token)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005728 return -EINVAL;
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005729
5730 if (dev->flags & IFF_LOOPBACK) {
5731 NL_SET_ERR_MSG_MOD(extack, "Device is loopback");
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005732 return -EINVAL;
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005733 }
5734
5735 if (dev->flags & IFF_NOARP) {
5736 NL_SET_ERR_MSG_MOD(extack,
5737 "Device does not do neighbour discovery");
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005738 return -EINVAL;
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005739 }
5740
5741 if (!ipv6_accept_ra(idev)) {
5742 NL_SET_ERR_MSG_MOD(extack,
5743 "Router advertisement is disabled on device");
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005744 return -EINVAL;
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005745 }
5746
5747 if (idev->cnf.rtr_solicits == 0) {
5748 NL_SET_ERR_MSG(extack,
5749 "Router solicitation is disabled on device");
5750 return -EINVAL;
5751 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005752
5753 write_lock_bh(&idev->lock);
5754
5755 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
5756 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
5757
5758 write_unlock_bh(&idev->lock);
5759
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005760 clear_token = ipv6_addr_any(token);
5761 if (clear_token)
5762 goto update_lft;
5763
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02005764 if (!idev->dead && (idev->if_flags & IF_READY) &&
5765 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
5766 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00005767 /* If we're not ready, then normal ifup will take care
5768 * of this. Otherwise, we need to request our rs here.
5769 */
5770 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
5771 update_rs = true;
5772 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005773
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005774update_lft:
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005775 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00005776
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005777 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00005778 idev->if_flags |= IF_RS_SENT;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005779 idev->rs_interval = rfc3315_s14_backoff_init(
5780 idev->cnf.rtr_solicit_interval);
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005781 idev->rs_probes = 1;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005782 addrconf_mod_rs_timer(idev, idev->rs_interval);
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005783 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005784
5785 /* Well, that's kinda nasty ... */
5786 list_for_each_entry(ifp, &idev->addr_list, if_list) {
5787 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00005788 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005789 ifp->valid_lft = 0;
5790 ifp->prefered_lft = 0;
5791 }
5792 spin_unlock(&ifp->lock);
5793 }
5794
5795 write_unlock_bh(&idev->lock);
Lubomir Rintelb2ed64a2014-10-27 17:39:16 +01005796 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005797 addrconf_verify_rtnl();
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005798 return 0;
5799}
5800
Daniel Borkmann11b1f822015-02-05 14:39:11 +01005801static const struct nla_policy inet6_af_policy[IFLA_INET6_MAX + 1] = {
5802 [IFLA_INET6_ADDR_GEN_MODE] = { .type = NLA_U8 },
5803 [IFLA_INET6_TOKEN] = { .len = sizeof(struct in6_addr) },
Rocco Yue49b99da2021-08-27 23:04:12 +08005804 [IFLA_INET6_RA_MTU] = { .type = NLA_REJECT,
5805 .reject_message =
5806 "IFLA_INET6_RA_MTU can not be set" },
Daniel Borkmann11b1f822015-02-05 14:39:11 +01005807};
5808
Felix Jiad35a00b2017-01-26 16:59:17 +13005809static int check_addr_gen_mode(int mode)
5810{
5811 if (mode != IN6_ADDR_GEN_MODE_EUI64 &&
5812 mode != IN6_ADDR_GEN_MODE_NONE &&
5813 mode != IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5814 mode != IN6_ADDR_GEN_MODE_RANDOM)
5815 return -EINVAL;
5816 return 1;
5817}
5818
5819static int check_stable_privacy(struct inet6_dev *idev, struct net *net,
5820 int mode)
5821{
5822 if (mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5823 !idev->cnf.stable_secret.initialized &&
5824 !net->ipv6.devconf_dflt->stable_secret.initialized)
5825 return -EINVAL;
5826 return 1;
5827}
5828
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005829static int inet6_validate_link_af(const struct net_device *dev,
Rocco Yue8679c312021-08-03 20:02:50 +08005830 const struct nlattr *nla,
5831 struct netlink_ext_ack *extack)
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005832{
5833 struct nlattr *tb[IFLA_INET6_MAX + 1];
5834 struct inet6_dev *idev = NULL;
5835 int err;
5836
5837 if (dev) {
5838 idev = __in6_dev_get(dev);
5839 if (!idev)
5840 return -EAFNOSUPPORT;
5841 }
5842
5843 err = nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla,
Rocco Yue8679c312021-08-03 20:02:50 +08005844 inet6_af_policy, extack);
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005845 if (err)
5846 return err;
5847
5848 if (!tb[IFLA_INET6_TOKEN] && !tb[IFLA_INET6_ADDR_GEN_MODE])
5849 return -EINVAL;
5850
5851 if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
5852 u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
5853
5854 if (check_addr_gen_mode(mode) < 0)
5855 return -EINVAL;
5856 if (dev && check_stable_privacy(idev, dev_net(dev), mode) < 0)
5857 return -EINVAL;
5858 }
5859
5860 return 0;
5861}
5862
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005863static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla,
5864 struct netlink_ext_ack *extack)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005865{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005866 struct inet6_dev *idev = __in6_dev_get(dev);
5867 struct nlattr *tb[IFLA_INET6_MAX + 1];
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005868 int err;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005869
Eric Dumazetdb3fa272020-02-07 07:16:37 -08005870 if (!idev)
5871 return -EAFNOSUPPORT;
5872
Johannes Berg8cb08172019-04-26 14:07:28 +02005873 if (nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0)
Zheng Yongjun5ac6b192021-06-08 09:53:15 +08005874 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005875
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005876 if (tb[IFLA_INET6_TOKEN]) {
Stephen Hemminger3583a4e2021-04-07 08:59:12 -07005877 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]),
5878 extack);
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005879 if (err)
5880 return err;
5881 }
5882
5883 if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
5884 u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
5885
Felix Jiad35a00b2017-01-26 16:59:17 +13005886 idev->cnf.addr_gen_mode = mode;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005887 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005888
Maxim Mikityanskiy7dc2bcc2019-05-21 06:40:04 +00005889 return 0;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005890}
5891
Thomas Grafb382b192010-11-16 04:33:57 +00005892static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005893 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00005894{
5895 struct net_device *dev = idev->dev;
5896 struct ifinfomsg *hdr;
5897 struct nlmsghdr *nlh;
5898 void *protoinfo;
5899
Eric W. Biederman15e47302012-09-07 20:12:54 +00005900 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Ian Morris63159f22015-03-29 14:00:04 +01005901 if (!nlh)
Thomas Grafb382b192010-11-16 04:33:57 +00005902 return -EMSGSIZE;
5903
5904 hdr = nlmsg_data(nlh);
5905 hdr->ifi_family = AF_INET6;
5906 hdr->__ifi_pad = 0;
5907 hdr->ifi_type = dev->type;
5908 hdr->ifi_index = dev->ifindex;
5909 hdr->ifi_flags = dev_get_flags(dev);
5910 hdr->ifi_change = 0;
5911
David S. Millerc78679e2012-04-01 20:27:33 -04005912 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
5913 (dev->addr_len &&
5914 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
5915 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
Nicolas Dichtela54acb32015-04-02 17:07:00 +02005916 (dev->ifindex != dev_get_iflink(dev) &&
Andy Gospodarek03443382015-08-13 15:26:35 -04005917 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) ||
5918 nla_put_u8(skb, IFLA_OPERSTATE,
5919 netif_running(dev) ? dev->operstate : IF_OPER_DOWN))
David S. Millerc78679e2012-04-01 20:27:33 -04005920 goto nla_put_failure;
Michal Kubecekae0be8d2019-04-26 11:13:06 +02005921 protoinfo = nla_nest_start_noflag(skb, IFLA_PROTINFO);
Ian Morris63159f22015-03-29 14:00:04 +01005922 if (!protoinfo)
Thomas Grafb382b192010-11-16 04:33:57 +00005923 goto nla_put_failure;
5924
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005925 if (inet6_fill_ifla6_attrs(skb, idev, 0) < 0)
Thomas Grafb382b192010-11-16 04:33:57 +00005926 goto nla_put_failure;
5927
Thomas Graf04561c12006-11-14 19:53:58 -08005928 nla_nest_end(skb, protoinfo);
Johannes Berg053c0952015-01-16 22:09:00 +01005929 nlmsg_end(skb, nlh);
5930 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931
Thomas Graf04561c12006-11-14 19:53:58 -08005932nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08005933 nlmsg_cancel(skb, nlh);
5934 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935}
5936
David Ahern786e0002018-10-07 20:16:33 -07005937static int inet6_valid_dump_ifinfo(const struct nlmsghdr *nlh,
5938 struct netlink_ext_ack *extack)
5939{
5940 struct ifinfomsg *ifm;
5941
5942 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) {
5943 NL_SET_ERR_MSG_MOD(extack, "Invalid header for link dump request");
5944 return -EINVAL;
5945 }
5946
5947 if (nlmsg_attrlen(nlh, sizeof(*ifm))) {
5948 NL_SET_ERR_MSG_MOD(extack, "Invalid data after header");
5949 return -EINVAL;
5950 }
5951
5952 ifm = nlmsg_data(nlh);
5953 if (ifm->__ifi_pad || ifm->ifi_type || ifm->ifi_flags ||
5954 ifm->ifi_change || ifm->ifi_index) {
5955 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for dump request");
5956 return -EINVAL;
5957 }
5958
5959 return 0;
5960}
5961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
5963{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09005964 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00005965 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08005966 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967 struct net_device *dev;
5968 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00005969 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
David Ahern786e0002018-10-07 20:16:33 -07005971 /* only requests using strict checking can pass data to
5972 * influence the dump
5973 */
5974 if (cb->strict_check) {
5975 int err = inet6_valid_dump_ifinfo(cb->nlh, cb->extack);
5976
5977 if (err < 0)
5978 return err;
5979 }
5980
Eric Dumazet84d26972009-11-09 12:11:28 +00005981 s_h = cb->args[0];
5982 s_idx = cb->args[1];
5983
5984 rcu_read_lock();
5985 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
5986 idx = 0;
5987 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08005988 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00005989 if (idx < s_idx)
5990 goto cont;
5991 idev = __in6_dev_get(dev);
5992 if (!idev)
5993 goto cont;
5994 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005995 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00005996 cb->nlh->nlmsg_seq,
Johannes Berg053c0952015-01-16 22:09:00 +01005997 RTM_NEWLINK, NLM_F_MULTI) < 0)
Eric Dumazet84d26972009-11-09 12:11:28 +00005998 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07005999cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00006000 idx++;
6001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 }
Eric Dumazet84d26972009-11-09 12:11:28 +00006003out:
6004 rcu_read_unlock();
6005 cb->args[1] = idx;
6006 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007
6008 return skb->len;
6009}
6010
6011void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
6012{
6013 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006014 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07006015 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006016
Thomas Graf339bf982006-11-10 14:10:15 -08006017 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01006018 if (!skb)
Thomas Graf8d7a76c2006-08-15 00:35:47 -07006019 goto errout;
6020
6021 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08006022 if (err < 0) {
6023 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
6024 WARN_ON(err == -EMSGSIZE);
6025 kfree_skb(skb);
6026 goto errout;
6027 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00006028 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08006029 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07006030errout:
6031 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00006032 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033}
6034
Thomas Graf339bf982006-11-10 14:10:15 -08006035static inline size_t inet6_prefix_nlmsg_size(void)
6036{
6037 return NLMSG_ALIGN(sizeof(struct prefixmsg))
6038 + nla_total_size(sizeof(struct in6_addr))
6039 + nla_total_size(sizeof(struct prefix_cacheinfo));
6040}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07006041
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006043 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08006044 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045{
Thomas Graf6051e2f2006-11-14 19:54:19 -08006046 struct prefixmsg *pmsg;
6047 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 struct prefix_cacheinfo ci;
6049
Eric W. Biederman15e47302012-09-07 20:12:54 +00006050 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Ian Morris63159f22015-03-29 14:00:04 +01006051 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08006052 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08006053
6054 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07006056 pmsg->prefix_pad1 = 0;
6057 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 pmsg->prefix_ifindex = idev->dev->ifindex;
6059 pmsg->prefix_len = pinfo->prefix_len;
6060 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07006061 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 pmsg->prefix_flags = 0;
6063 if (pinfo->onlink)
6064 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
6065 if (pinfo->autoconf)
6066 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
6067
David S. Millerc78679e2012-04-01 20:27:33 -04006068 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
6069 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 ci.preferred_time = ntohl(pinfo->prefered);
6071 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04006072 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
6073 goto nla_put_failure;
Johannes Berg053c0952015-01-16 22:09:00 +01006074 nlmsg_end(skb, nlh);
6075 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076
Thomas Graf6051e2f2006-11-14 19:54:19 -08006077nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08006078 nlmsg_cancel(skb, nlh);
6079 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080}
6081
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006082static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 struct prefix_info *pinfo)
6084{
6085 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006086 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07006087 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088
Thomas Graf339bf982006-11-10 14:10:15 -08006089 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01006090 if (!skb)
Thomas Graf8c384bfa2006-08-15 00:36:07 -07006091 goto errout;
6092
6093 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08006094 if (err < 0) {
6095 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
6096 WARN_ON(err == -EMSGSIZE);
6097 kfree_skb(skb);
6098 goto errout;
6099 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08006100 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
6101 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07006102errout:
6103 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08006104 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105}
6106
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
6108{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00006109 struct net *net = dev_net(ifp->idev->dev);
6110
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006111 if (event)
6112 ASSERT_RTNL();
6113
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
6115
6116 switch (event) {
6117 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07006118 /*
David Ahern2d819d252019-10-04 08:03:09 -07006119 * If the address was optimistic we inserted the route at the
6120 * start of our DAD process, so we don't need to do it again.
6121 * If the device was taken down in the middle of the DAD
6122 * cycle there is a race where we could get here without a
6123 * host route, so nothing to insert. That will be fixed when
6124 * the device is brought up.
Neil Horman95c385b2007-04-25 17:08:10 -07006125 */
David Ahern2d819d252019-10-04 08:03:09 -07006126 if (ifp->rt && !rcu_access_pointer(ifp->rt->fib6_node)) {
David Ahernafb1d4b52018-04-17 17:33:11 -07006127 ip6_ins_rt(net, ifp->rt);
David Ahern2d819d252019-10-04 08:03:09 -07006128 } else if (!ifp->rt && (ifp->idev->dev->flags & IFF_UP)) {
6129 pr_warn("BUG: Address %pI6c on device %s is missing its host route.\n",
6130 &ifp->addr, ifp->idev->dev->name);
6131 }
6132
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133 if (ifp->idev->cnf.forwarding)
6134 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00006135 if (!ipv6_addr_any(&ifp->peer_addr))
Hangbin Liu07758eb2020-02-29 17:27:13 +08006136 addrconf_prefix_route(&ifp->peer_addr, 128,
6137 ifp->rt_priority, ifp->idev->dev,
6138 0, 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 break;
6140 case RTM_DELADDR:
6141 if (ifp->idev->cnf.forwarding)
6142 addrconf_leave_anycast(ifp);
6143 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00006144 if (!ipv6_addr_any(&ifp->peer_addr)) {
David Ahern8d1c8022018-04-17 17:33:26 -07006145 struct fib6_info *rt;
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00006146
Nicolas Dichtele7478df2014-09-03 23:59:22 +02006147 rt = addrconf_get_prefix_route(&ifp->peer_addr, 128,
David Ahern2b2450c2019-03-27 20:53:52 -07006148 ifp->idev->dev, 0, 0,
6149 false);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07006150 if (rt)
Roopa Prabhu11dd74b2020-04-27 13:56:45 -07006151 ip6_del_rt(net, rt, false);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00006152 }
David Ahern38bd10c2016-04-21 20:56:12 -07006153 if (ifp->rt) {
Roopa Prabhu11dd74b2020-04-27 13:56:45 -07006154 ip6_del_rt(net, ifp->rt, false);
David Ahern93531c62018-04-17 17:33:25 -07006155 ifp->rt = NULL;
David Ahern38bd10c2016-04-21 20:56:12 -07006156 }
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02006157 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 break;
6159 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00006160 atomic_inc(&net->ipv6.dev_addr_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161}
6162
6163static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
6164{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165 if (likely(ifp->idev->dead == 0))
6166 __ipv6_ifa_notify(event, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167}
6168
6169#ifdef CONFIG_SYSCTL
6170
Christoph Hellwig32927392020-04-24 08:43:38 +02006171static int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
6172 void *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173{
6174 int *valp = ctl->data;
6175 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00006176 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07006177 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178 int ret;
6179
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006180 /*
6181 * ctl->data points to idev->cnf.forwarding, we should
6182 * not modify it until we get the rtnl lock.
6183 */
6184 lctl = *ctl;
6185 lctl.data = &val;
6186
6187 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08006189 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00006190 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00006191 if (ret)
6192 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006193 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194}
6195
Christoph Hellwig32927392020-04-24 08:43:38 +02006196static int addrconf_sysctl_mtu(struct ctl_table *ctl, int write,
6197 void *buffer, size_t *lenp, loff_t *ppos)
Marcelo Leitner77751422015-02-23 11:17:13 -03006198{
6199 struct inet6_dev *idev = ctl->extra1;
6200 int min_mtu = IPV6_MIN_MTU;
6201 struct ctl_table lctl;
6202
6203 lctl = *ctl;
6204 lctl.extra1 = &min_mtu;
6205 lctl.extra2 = idev ? &idev->dev->mtu : NULL;
6206
6207 return proc_dointvec_minmax(&lctl, write, buffer, lenp, ppos);
6208}
6209
Brian Haley56d417b2009-06-01 03:07:33 -07006210static void dev_disable_change(struct inet6_dev *idev)
6211{
Cong Wang75538c22013-05-29 11:30:50 +08006212 struct netdev_notifier_info info;
6213
Brian Haley56d417b2009-06-01 03:07:33 -07006214 if (!idev || !idev->dev)
6215 return;
6216
Cong Wang75538c22013-05-29 11:30:50 +08006217 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07006218 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08006219 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07006220 else
Cong Wang75538c22013-05-29 11:30:50 +08006221 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07006222}
6223
6224static void addrconf_disable_change(struct net *net, __s32 newf)
6225{
6226 struct net_device *dev;
6227 struct inet6_dev *idev;
6228
Kefeng Wang03e4def2017-01-19 16:26:21 +08006229 for_each_netdev(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07006230 idev = __in6_dev_get(dev);
6231 if (idev) {
6232 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
6233 idev->cnf.disable_ipv6 = newf;
6234 if (changed)
6235 dev_disable_change(idev);
6236 }
Brian Haley56d417b2009-06-01 03:07:33 -07006237 }
Brian Haley56d417b2009-06-01 03:07:33 -07006238}
6239
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006240static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07006241{
6242 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006243 int old;
6244
6245 if (!rtnl_trylock())
6246 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07006247
6248 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006249 old = *p;
6250 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07006251
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006252 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
6253 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07006254 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00006255 }
Brian Haley56d417b2009-06-01 03:07:33 -07006256
6257 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07006258 net->ipv6.devconf_dflt->disable_ipv6 = newf;
6259 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006260 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07006261 dev_disable_change((struct inet6_dev *)table->extra1);
6262
6263 rtnl_unlock();
6264 return 0;
6265}
6266
Christoph Hellwig32927392020-04-24 08:43:38 +02006267static int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
6268 void *buffer, size_t *lenp, loff_t *ppos)
Brian Haley56d417b2009-06-01 03:07:33 -07006269{
6270 int *valp = ctl->data;
6271 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00006272 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07006273 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07006274 int ret;
6275
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00006276 /*
6277 * ctl->data points to idev->cnf.disable_ipv6, we should
6278 * not modify it until we get the rtnl lock.
6279 */
6280 lctl = *ctl;
6281 lctl.data = &val;
6282
6283 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07006284
6285 if (write)
6286 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00006287 if (ret)
6288 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07006289 return ret;
6290}
6291
Christoph Hellwig32927392020-04-24 08:43:38 +02006292static int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
6293 void *buffer, size_t *lenp, loff_t *ppos)
stephen hemmingerc92d5492013-12-17 22:37:14 -08006294{
6295 int *valp = ctl->data;
6296 int ret;
6297 int old, new;
6298
6299 old = *valp;
6300 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
6301 new = *valp;
6302
6303 if (write && old != new) {
6304 struct net *net = ctl->extra2;
6305
6306 if (!rtnl_trylock())
6307 return restart_syscall();
6308
6309 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
David Ahern85b3daa2017-03-28 14:28:04 -07006310 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6311 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08006312 NETCONFA_IFINDEX_DEFAULT,
6313 net->ipv6.devconf_dflt);
6314 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
David Ahern85b3daa2017-03-28 14:28:04 -07006315 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6316 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08006317 NETCONFA_IFINDEX_ALL,
6318 net->ipv6.devconf_all);
6319 else {
6320 struct inet6_dev *idev = ctl->extra1;
6321
David Ahern85b3daa2017-03-28 14:28:04 -07006322 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
6323 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08006324 idev->dev->ifindex,
6325 &idev->cnf);
6326 }
6327 rtnl_unlock();
6328 }
6329
6330 return ret;
6331}
6332
Felix Jiad35a00b2017-01-26 16:59:17 +13006333static int addrconf_sysctl_addr_gen_mode(struct ctl_table *ctl, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02006334 void *buffer, size_t *lenp,
Felix Jiad35a00b2017-01-26 16:59:17 +13006335 loff_t *ppos)
6336{
6337 int ret = 0;
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006338 u32 new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13006339 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
6340 struct net *net = (struct net *)ctl->extra2;
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006341 struct ctl_table tmp = {
6342 .data = &new_val,
6343 .maxlen = sizeof(new_val),
6344 .mode = ctl->mode,
6345 };
Felix Jiad35a00b2017-01-26 16:59:17 +13006346
Felix Jia8c171d62017-02-27 12:41:23 +13006347 if (!rtnl_trylock())
6348 return restart_syscall();
6349
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006350 new_val = *((u32 *)ctl->data);
6351
6352 ret = proc_douintvec(&tmp, write, buffer, lenp, ppos);
6353 if (ret != 0)
6354 goto out;
Felix Jiad35a00b2017-01-26 16:59:17 +13006355
6356 if (write) {
Felix Jia8c171d62017-02-27 12:41:23 +13006357 if (check_addr_gen_mode(new_val) < 0) {
6358 ret = -EINVAL;
6359 goto out;
6360 }
Felix Jiad35a00b2017-01-26 16:59:17 +13006361
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006362 if (idev) {
Felix Jia8c171d62017-02-27 12:41:23 +13006363 if (check_stable_privacy(idev, net, new_val) < 0) {
6364 ret = -EINVAL;
6365 goto out;
6366 }
Felix Jiad35a00b2017-01-26 16:59:17 +13006367
6368 if (idev->cnf.addr_gen_mode != new_val) {
6369 idev->cnf.addr_gen_mode = new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13006370 addrconf_dev_config(idev->dev);
Felix Jiad35a00b2017-01-26 16:59:17 +13006371 }
Sabrina Dubrocaf24c5982018-07-09 12:25:17 +02006372 } else if (&net->ipv6.devconf_all->addr_gen_mode == ctl->data) {
6373 struct net_device *dev;
6374
6375 net->ipv6.devconf_dflt->addr_gen_mode = new_val;
6376 for_each_netdev(net, dev) {
6377 idev = __in6_dev_get(dev);
6378 if (idev &&
6379 idev->cnf.addr_gen_mode != new_val) {
6380 idev->cnf.addr_gen_mode = new_val;
6381 addrconf_dev_config(idev->dev);
6382 }
6383 }
Felix Jiad35a00b2017-01-26 16:59:17 +13006384 }
Sabrina Dubrocac6dbf7a2018-07-09 12:25:14 +02006385
6386 *((u32 *)ctl->data) = new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13006387 }
6388
Felix Jia8c171d62017-02-27 12:41:23 +13006389out:
6390 rtnl_unlock();
6391
Felix Jiad35a00b2017-01-26 16:59:17 +13006392 return ret;
6393}
6394
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006395static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02006396 void *buffer, size_t *lenp,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006397 loff_t *ppos)
6398{
6399 int err;
6400 struct in6_addr addr;
6401 char str[IPV6_MAX_STRLEN];
6402 struct ctl_table lctl = *ctl;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006403 struct net *net = ctl->extra2;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006404 struct ipv6_stable_secret *secret = ctl->data;
6405
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006406 if (&net->ipv6.devconf_all->stable_secret == ctl->data)
6407 return -EIO;
6408
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006409 lctl.maxlen = IPV6_MAX_STRLEN;
6410 lctl.data = str;
6411
6412 if (!rtnl_trylock())
6413 return restart_syscall();
6414
6415 if (!write && !secret->initialized) {
6416 err = -EIO;
6417 goto out;
6418 }
6419
WANG Cong5449a5c2015-12-21 10:55:45 -08006420 err = snprintf(str, sizeof(str), "%pI6", &secret->secret);
6421 if (err >= sizeof(str)) {
6422 err = -EIO;
6423 goto out;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006424 }
6425
6426 err = proc_dostring(&lctl, write, buffer, lenp, ppos);
6427 if (err || !write)
6428 goto out;
6429
6430 if (in6_pton(str, -1, addr.in6_u.u6_addr8, -1, NULL) != 1) {
6431 err = -EIO;
6432 goto out;
6433 }
6434
6435 secret->initialized = true;
6436 secret->secret = addr;
6437
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006438 if (&net->ipv6.devconf_dflt->stable_secret == ctl->data) {
6439 struct net_device *dev;
6440
6441 for_each_netdev(net, dev) {
6442 struct inet6_dev *idev = __in6_dev_get(dev);
6443
6444 if (idev) {
Felix Jiad35a00b2017-01-26 16:59:17 +13006445 idev->cnf.addr_gen_mode =
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006446 IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
6447 }
6448 }
6449 } else {
6450 struct inet6_dev *idev = ctl->extra1;
6451
Felix Jiad35a00b2017-01-26 16:59:17 +13006452 idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01006453 }
6454
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006455out:
6456 rtnl_unlock();
6457
6458 return err;
6459}
stephen hemmingerc92d5492013-12-17 22:37:14 -08006460
Andy Gospodarek35103d12015-08-13 10:39:01 -04006461static
6462int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl,
Christoph Hellwig32927392020-04-24 08:43:38 +02006463 int write, void *buffer,
Andy Gospodarek35103d12015-08-13 10:39:01 -04006464 size_t *lenp,
6465 loff_t *ppos)
6466{
6467 int *valp = ctl->data;
6468 int val = *valp;
6469 loff_t pos = *ppos;
6470 struct ctl_table lctl;
6471 int ret;
6472
6473 /* ctl->data points to idev->cnf.ignore_routes_when_linkdown
6474 * we should not modify it until we get the rtnl lock.
6475 */
6476 lctl = *ctl;
6477 lctl.data = &val;
6478
6479 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6480
6481 if (write)
6482 ret = addrconf_fixup_linkdown(ctl, valp, val);
6483 if (ret)
6484 *ppos = pos;
6485 return ret;
6486}
6487
David Forsterdf789fe2017-02-23 16:27:18 +00006488static
6489void addrconf_set_nopolicy(struct rt6_info *rt, int action)
6490{
6491 if (rt) {
6492 if (action)
6493 rt->dst.flags |= DST_NOPOLICY;
6494 else
6495 rt->dst.flags &= ~DST_NOPOLICY;
6496 }
6497}
6498
6499static
6500void addrconf_disable_policy_idev(struct inet6_dev *idev, int val)
6501{
6502 struct inet6_ifaddr *ifa;
6503
6504 read_lock_bh(&idev->lock);
6505 list_for_each_entry(ifa, &idev->addr_list, if_list) {
6506 spin_lock(&ifa->lock);
6507 if (ifa->rt) {
David Ahernf88d8ea2019-06-03 20:19:52 -07006508 /* host routes only use builtin fib6_nh */
David Ahern1cf844c2019-05-22 20:27:59 -07006509 struct fib6_nh *nh = ifa->rt->fib6_nh;
David Forsterdf789fe2017-02-23 16:27:18 +00006510 int cpu;
6511
Wei Wang66f5d6c2017-10-06 12:06:10 -07006512 rcu_read_lock();
David Ahern3b6761d2018-04-17 17:33:20 -07006513 ifa->rt->dst_nopolicy = val ? true : false;
David Ahernf40b6ae2019-05-22 20:27:55 -07006514 if (nh->rt6i_pcpu) {
David Forsterdf789fe2017-02-23 16:27:18 +00006515 for_each_possible_cpu(cpu) {
6516 struct rt6_info **rtp;
6517
David Ahernf40b6ae2019-05-22 20:27:55 -07006518 rtp = per_cpu_ptr(nh->rt6i_pcpu, cpu);
David Forsterdf789fe2017-02-23 16:27:18 +00006519 addrconf_set_nopolicy(*rtp, val);
6520 }
6521 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07006522 rcu_read_unlock();
David Forsterdf789fe2017-02-23 16:27:18 +00006523 }
6524 spin_unlock(&ifa->lock);
6525 }
6526 read_unlock_bh(&idev->lock);
6527}
6528
6529static
6530int addrconf_disable_policy(struct ctl_table *ctl, int *valp, int val)
6531{
6532 struct inet6_dev *idev;
6533 struct net *net;
6534
6535 if (!rtnl_trylock())
6536 return restart_syscall();
6537
6538 *valp = val;
6539
6540 net = (struct net *)ctl->extra2;
6541 if (valp == &net->ipv6.devconf_dflt->disable_policy) {
6542 rtnl_unlock();
6543 return 0;
6544 }
6545
6546 if (valp == &net->ipv6.devconf_all->disable_policy) {
6547 struct net_device *dev;
6548
6549 for_each_netdev(net, dev) {
6550 idev = __in6_dev_get(dev);
6551 if (idev)
6552 addrconf_disable_policy_idev(idev, val);
6553 }
6554 } else {
6555 idev = (struct inet6_dev *)ctl->extra1;
6556 addrconf_disable_policy_idev(idev, val);
6557 }
6558
6559 rtnl_unlock();
6560 return 0;
6561}
6562
Christoph Hellwig32927392020-04-24 08:43:38 +02006563static int addrconf_sysctl_disable_policy(struct ctl_table *ctl, int write,
6564 void *buffer, size_t *lenp, loff_t *ppos)
David Forsterdf789fe2017-02-23 16:27:18 +00006565{
6566 int *valp = ctl->data;
6567 int val = *valp;
6568 loff_t pos = *ppos;
6569 struct ctl_table lctl;
6570 int ret;
6571
6572 lctl = *ctl;
6573 lctl.data = &val;
6574 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
6575
6576 if (write && (*valp != val))
6577 ret = addrconf_disable_policy(ctl, valp, val);
6578
6579 if (ret)
6580 *ppos = pos;
6581
6582 return ret;
6583}
6584
Maciej Żenczykowskicb4a4c62016-10-07 01:00:49 -07006585static int minus_one = -1;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006586static const int two_five_five = 255;
Matthieu Baerts176f7162021-07-22 09:55:04 +02006587static u32 ioam6_if_id_max = U16_MAX;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006588
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006589static const struct ctl_table addrconf_sysctl[] = {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006590 {
6591 .procname = "forwarding",
6592 .data = &ipv6_devconf.forwarding,
6593 .maxlen = sizeof(int),
6594 .mode = 0644,
6595 .proc_handler = addrconf_sysctl_forward,
6596 },
6597 {
6598 .procname = "hop_limit",
6599 .data = &ipv6_devconf.hop_limit,
6600 .maxlen = sizeof(int),
6601 .mode = 0644,
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006602 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07006603 .extra1 = (void *)SYSCTL_ONE,
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006604 .extra2 = (void *)&two_five_five,
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006605 },
6606 {
6607 .procname = "mtu",
6608 .data = &ipv6_devconf.mtu6,
6609 .maxlen = sizeof(int),
6610 .mode = 0644,
6611 .proc_handler = addrconf_sysctl_mtu,
6612 },
6613 {
6614 .procname = "accept_ra",
6615 .data = &ipv6_devconf.accept_ra,
6616 .maxlen = sizeof(int),
6617 .mode = 0644,
6618 .proc_handler = proc_dointvec,
6619 },
6620 {
6621 .procname = "accept_redirects",
6622 .data = &ipv6_devconf.accept_redirects,
6623 .maxlen = sizeof(int),
6624 .mode = 0644,
6625 .proc_handler = proc_dointvec,
6626 },
6627 {
6628 .procname = "autoconf",
6629 .data = &ipv6_devconf.autoconf,
6630 .maxlen = sizeof(int),
6631 .mode = 0644,
6632 .proc_handler = proc_dointvec,
6633 },
6634 {
6635 .procname = "dad_transmits",
6636 .data = &ipv6_devconf.dad_transmits,
6637 .maxlen = sizeof(int),
6638 .mode = 0644,
6639 .proc_handler = proc_dointvec,
6640 },
6641 {
6642 .procname = "router_solicitations",
6643 .data = &ipv6_devconf.rtr_solicits,
6644 .maxlen = sizeof(int),
6645 .mode = 0644,
Maciej Żenczykowskicb4a4c62016-10-07 01:00:49 -07006646 .proc_handler = proc_dointvec_minmax,
6647 .extra1 = &minus_one,
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006648 },
6649 {
6650 .procname = "router_solicitation_interval",
6651 .data = &ipv6_devconf.rtr_solicit_interval,
6652 .maxlen = sizeof(int),
6653 .mode = 0644,
6654 .proc_handler = proc_dointvec_jiffies,
6655 },
6656 {
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07006657 .procname = "router_solicitation_max_interval",
6658 .data = &ipv6_devconf.rtr_solicit_max_interval,
6659 .maxlen = sizeof(int),
6660 .mode = 0644,
6661 .proc_handler = proc_dointvec_jiffies,
6662 },
6663 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006664 .procname = "router_solicitation_delay",
6665 .data = &ipv6_devconf.rtr_solicit_delay,
6666 .maxlen = sizeof(int),
6667 .mode = 0644,
6668 .proc_handler = proc_dointvec_jiffies,
6669 },
6670 {
6671 .procname = "force_mld_version",
6672 .data = &ipv6_devconf.force_mld_version,
6673 .maxlen = sizeof(int),
6674 .mode = 0644,
6675 .proc_handler = proc_dointvec,
6676 },
6677 {
6678 .procname = "mldv1_unsolicited_report_interval",
6679 .data =
6680 &ipv6_devconf.mldv1_unsolicited_report_interval,
6681 .maxlen = sizeof(int),
6682 .mode = 0644,
6683 .proc_handler = proc_dointvec_ms_jiffies,
6684 },
6685 {
6686 .procname = "mldv2_unsolicited_report_interval",
6687 .data =
6688 &ipv6_devconf.mldv2_unsolicited_report_interval,
6689 .maxlen = sizeof(int),
6690 .mode = 0644,
6691 .proc_handler = proc_dointvec_ms_jiffies,
6692 },
6693 {
6694 .procname = "use_tempaddr",
6695 .data = &ipv6_devconf.use_tempaddr,
6696 .maxlen = sizeof(int),
6697 .mode = 0644,
6698 .proc_handler = proc_dointvec,
6699 },
6700 {
6701 .procname = "temp_valid_lft",
6702 .data = &ipv6_devconf.temp_valid_lft,
6703 .maxlen = sizeof(int),
6704 .mode = 0644,
6705 .proc_handler = proc_dointvec,
6706 },
6707 {
6708 .procname = "temp_prefered_lft",
6709 .data = &ipv6_devconf.temp_prefered_lft,
6710 .maxlen = sizeof(int),
6711 .mode = 0644,
6712 .proc_handler = proc_dointvec,
6713 },
6714 {
6715 .procname = "regen_max_retry",
6716 .data = &ipv6_devconf.regen_max_retry,
6717 .maxlen = sizeof(int),
6718 .mode = 0644,
6719 .proc_handler = proc_dointvec,
6720 },
6721 {
6722 .procname = "max_desync_factor",
6723 .data = &ipv6_devconf.max_desync_factor,
6724 .maxlen = sizeof(int),
6725 .mode = 0644,
6726 .proc_handler = proc_dointvec,
6727 },
6728 {
6729 .procname = "max_addresses",
6730 .data = &ipv6_devconf.max_addresses,
6731 .maxlen = sizeof(int),
6732 .mode = 0644,
6733 .proc_handler = proc_dointvec,
6734 },
6735 {
6736 .procname = "accept_ra_defrtr",
6737 .data = &ipv6_devconf.accept_ra_defrtr,
6738 .maxlen = sizeof(int),
6739 .mode = 0644,
6740 .proc_handler = proc_dointvec,
6741 },
6742 {
Praveen Chaudhary6b2e04b2021-01-25 13:44:30 -08006743 .procname = "ra_defrtr_metric",
6744 .data = &ipv6_devconf.ra_defrtr_metric,
6745 .maxlen = sizeof(u32),
6746 .mode = 0644,
6747 .proc_handler = proc_douintvec_minmax,
6748 .extra1 = (void *)SYSCTL_ONE,
6749 },
6750 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006751 .procname = "accept_ra_min_hop_limit",
6752 .data = &ipv6_devconf.accept_ra_min_hop_limit,
6753 .maxlen = sizeof(int),
6754 .mode = 0644,
6755 .proc_handler = proc_dointvec,
6756 },
6757 {
6758 .procname = "accept_ra_pinfo",
6759 .data = &ipv6_devconf.accept_ra_pinfo,
6760 .maxlen = sizeof(int),
6761 .mode = 0644,
6762 .proc_handler = proc_dointvec,
6763 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08006764#ifdef CONFIG_IPV6_ROUTER_PREF
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006765 {
6766 .procname = "accept_ra_rtr_pref",
6767 .data = &ipv6_devconf.accept_ra_rtr_pref,
6768 .maxlen = sizeof(int),
6769 .mode = 0644,
6770 .proc_handler = proc_dointvec,
6771 },
6772 {
6773 .procname = "router_probe_interval",
6774 .data = &ipv6_devconf.rtr_probe_interval,
6775 .maxlen = sizeof(int),
6776 .mode = 0644,
6777 .proc_handler = proc_dointvec_jiffies,
6778 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08006779#ifdef CONFIG_IPV6_ROUTE_INFO
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006780 {
Joel Scherpelzbbea1242017-03-22 18:19:04 +09006781 .procname = "accept_ra_rt_info_min_plen",
6782 .data = &ipv6_devconf.accept_ra_rt_info_min_plen,
6783 .maxlen = sizeof(int),
6784 .mode = 0644,
6785 .proc_handler = proc_dointvec,
6786 },
6787 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006788 .procname = "accept_ra_rt_info_max_plen",
6789 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
6790 .maxlen = sizeof(int),
6791 .mode = 0644,
6792 .proc_handler = proc_dointvec,
6793 },
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08006794#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08006795#endif
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006796 {
6797 .procname = "proxy_ndp",
6798 .data = &ipv6_devconf.proxy_ndp,
6799 .maxlen = sizeof(int),
6800 .mode = 0644,
6801 .proc_handler = addrconf_sysctl_proxy_ndp,
6802 },
6803 {
6804 .procname = "accept_source_route",
6805 .data = &ipv6_devconf.accept_source_route,
6806 .maxlen = sizeof(int),
6807 .mode = 0644,
6808 .proc_handler = proc_dointvec,
6809 },
Neil Horman95c385b2007-04-25 17:08:10 -07006810#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006811 {
6812 .procname = "optimistic_dad",
6813 .data = &ipv6_devconf.optimistic_dad,
6814 .maxlen = sizeof(int),
6815 .mode = 0644,
6816 .proc_handler = proc_dointvec,
6817 },
6818 {
6819 .procname = "use_optimistic",
6820 .data = &ipv6_devconf.use_optimistic,
6821 .maxlen = sizeof(int),
6822 .mode = 0644,
6823 .proc_handler = proc_dointvec,
6824 },
Neil Horman95c385b2007-04-25 17:08:10 -07006825#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09006826#ifdef CONFIG_IPV6_MROUTE
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006827 {
6828 .procname = "mc_forwarding",
6829 .data = &ipv6_devconf.mc_forwarding,
6830 .maxlen = sizeof(int),
6831 .mode = 0444,
6832 .proc_handler = proc_dointvec,
6833 },
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09006834#endif
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006835 {
6836 .procname = "disable_ipv6",
6837 .data = &ipv6_devconf.disable_ipv6,
6838 .maxlen = sizeof(int),
6839 .mode = 0644,
6840 .proc_handler = addrconf_sysctl_disable,
6841 },
6842 {
6843 .procname = "accept_dad",
6844 .data = &ipv6_devconf.accept_dad,
6845 .maxlen = sizeof(int),
6846 .mode = 0644,
6847 .proc_handler = proc_dointvec,
6848 },
6849 {
6850 .procname = "force_tllao",
6851 .data = &ipv6_devconf.force_tllao,
6852 .maxlen = sizeof(int),
6853 .mode = 0644,
6854 .proc_handler = proc_dointvec
6855 },
6856 {
6857 .procname = "ndisc_notify",
6858 .data = &ipv6_devconf.ndisc_notify,
6859 .maxlen = sizeof(int),
6860 .mode = 0644,
6861 .proc_handler = proc_dointvec
6862 },
6863 {
6864 .procname = "suppress_frag_ndisc",
6865 .data = &ipv6_devconf.suppress_frag_ndisc,
6866 .maxlen = sizeof(int),
6867 .mode = 0644,
6868 .proc_handler = proc_dointvec
6869 },
6870 {
6871 .procname = "accept_ra_from_local",
6872 .data = &ipv6_devconf.accept_ra_from_local,
6873 .maxlen = sizeof(int),
6874 .mode = 0644,
6875 .proc_handler = proc_dointvec,
6876 },
6877 {
6878 .procname = "accept_ra_mtu",
6879 .data = &ipv6_devconf.accept_ra_mtu,
6880 .maxlen = sizeof(int),
6881 .mode = 0644,
6882 .proc_handler = proc_dointvec,
6883 },
6884 {
6885 .procname = "stable_secret",
6886 .data = &ipv6_devconf.stable_secret,
6887 .maxlen = IPV6_MAX_STRLEN,
6888 .mode = 0600,
6889 .proc_handler = addrconf_sysctl_stable_secret,
6890 },
6891 {
6892 .procname = "use_oif_addrs_only",
6893 .data = &ipv6_devconf.use_oif_addrs_only,
6894 .maxlen = sizeof(int),
6895 .mode = 0644,
6896 .proc_handler = proc_dointvec,
6897 },
6898 {
6899 .procname = "ignore_routes_with_linkdown",
6900 .data = &ipv6_devconf.ignore_routes_with_linkdown,
6901 .maxlen = sizeof(int),
6902 .mode = 0644,
6903 .proc_handler = addrconf_sysctl_ignore_routes_with_linkdown,
6904 },
6905 {
6906 .procname = "drop_unicast_in_l2_multicast",
6907 .data = &ipv6_devconf.drop_unicast_in_l2_multicast,
6908 .maxlen = sizeof(int),
6909 .mode = 0644,
6910 .proc_handler = proc_dointvec,
6911 },
6912 {
6913 .procname = "drop_unsolicited_na",
6914 .data = &ipv6_devconf.drop_unsolicited_na,
6915 .maxlen = sizeof(int),
6916 .mode = 0644,
6917 .proc_handler = proc_dointvec,
6918 },
6919 {
6920 .procname = "keep_addr_on_down",
6921 .data = &ipv6_devconf.keep_addr_on_down,
6922 .maxlen = sizeof(int),
6923 .mode = 0644,
6924 .proc_handler = proc_dointvec,
David Ahernf1705ec2016-02-24 09:25:37 -08006925
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006926 },
6927 {
David Lebrun1ababeb2016-11-08 14:57:39 +01006928 .procname = "seg6_enabled",
6929 .data = &ipv6_devconf.seg6_enabled,
6930 .maxlen = sizeof(int),
6931 .mode = 0644,
6932 .proc_handler = proc_dointvec,
6933 },
David Lebrunbf355b82016-11-08 14:57:42 +01006934#ifdef CONFIG_IPV6_SEG6_HMAC
6935 {
6936 .procname = "seg6_require_hmac",
6937 .data = &ipv6_devconf.seg6_require_hmac,
6938 .maxlen = sizeof(int),
6939 .mode = 0644,
6940 .proc_handler = proc_dointvec,
6941 },
6942#endif
David Lebrun1ababeb2016-11-08 14:57:39 +01006943 {
Erik Nordmarkadc176c2016-12-02 14:00:08 -08006944 .procname = "enhanced_dad",
6945 .data = &ipv6_devconf.enhanced_dad,
6946 .maxlen = sizeof(int),
6947 .mode = 0644,
6948 .proc_handler = proc_dointvec,
6949 },
6950 {
Rocco Yue12e64b32021-05-30 19:38:11 +08006951 .procname = "addr_gen_mode",
6952 .data = &ipv6_devconf.addr_gen_mode,
6953 .maxlen = sizeof(int),
6954 .mode = 0644,
Felix Jiad35a00b2017-01-26 16:59:17 +13006955 .proc_handler = addrconf_sysctl_addr_gen_mode,
6956 },
6957 {
David Forsterdf789fe2017-02-23 16:27:18 +00006958 .procname = "disable_policy",
6959 .data = &ipv6_devconf.disable_policy,
6960 .maxlen = sizeof(int),
6961 .mode = 0644,
6962 .proc_handler = addrconf_sysctl_disable_policy,
6963 },
6964 {
Maciej Żenczykowski2210d6b2017-11-07 21:52:09 -08006965 .procname = "ndisc_tclass",
6966 .data = &ipv6_devconf.ndisc_tclass,
6967 .maxlen = sizeof(int),
6968 .mode = 0644,
6969 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07006970 .extra1 = (void *)SYSCTL_ZERO,
Maciej Żenczykowski2210d6b2017-11-07 21:52:09 -08006971 .extra2 = (void *)&two_five_five,
6972 },
6973 {
Alexander Aring8610c7c2020-03-27 18:00:20 -04006974 .procname = "rpl_seg_enabled",
6975 .data = &ipv6_devconf.rpl_seg_enabled,
6976 .maxlen = sizeof(int),
6977 .mode = 0644,
6978 .proc_handler = proc_dointvec,
6979 },
6980 {
Justin Iurman9ee11f02021-07-20 21:42:57 +02006981 .procname = "ioam6_enabled",
6982 .data = &ipv6_devconf.ioam6_enabled,
6983 .maxlen = sizeof(u8),
6984 .mode = 0644,
6985 .proc_handler = proc_dou8vec_minmax,
6986 .extra1 = (void *)SYSCTL_ZERO,
6987 .extra2 = (void *)SYSCTL_ONE,
6988 },
6989 {
6990 .procname = "ioam6_id",
6991 .data = &ipv6_devconf.ioam6_id,
6992 .maxlen = sizeof(u32),
6993 .mode = 0644,
6994 .proc_handler = proc_douintvec_minmax,
6995 .extra1 = (void *)SYSCTL_ZERO,
6996 .extra2 = (void *)&ioam6_if_id_max,
6997 },
6998 {
6999 .procname = "ioam6_id_wide",
7000 .data = &ipv6_devconf.ioam6_id_wide,
7001 .maxlen = sizeof(u32),
7002 .mode = 0644,
7003 .proc_handler = proc_douintvec,
7004 },
7005 {
James Prestwood18ac5972021-11-01 10:36:29 -07007006 .procname = "ndisc_evict_nocarrier",
7007 .data = &ipv6_devconf.ndisc_evict_nocarrier,
7008 .maxlen = sizeof(u8),
7009 .mode = 0644,
7010 .proc_handler = proc_dou8vec_minmax,
7011 .extra1 = (void *)SYSCTL_ZERO,
7012 .extra2 = (void *)SYSCTL_ONE,
7013 },
7014 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03007015 /* sentinel */
7016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017};
7018
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08007019static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08007020 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021{
Nicolas Dichtel29c994e2016-08-30 10:09:22 +02007022 int i, ifindex;
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007023 struct ctl_table *table;
Eric W. Biederman6105e292012-04-19 13:41:24 +00007024 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11007025
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007026 table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL);
7027 if (!table)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11007028 goto out;
7029
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007030 for (i = 0; table[i].data; i++) {
7031 table[i].data += (char *)p - (char *)&ipv6_devconf;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07007032 /* If one of these is already set, then it is not safe to
7033 * overwrite either of them: this makes proc_dointvec_minmax
7034 * usable.
7035 */
7036 if (!table[i].extra1 && !table[i].extra2) {
7037 table[i].extra1 = idev; /* embedded; no ref */
7038 table[i].extra2 = net;
7039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041
Eric W. Biederman6105e292012-04-19 13:41:24 +00007042 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007044 p->sysctl_header = register_net_sysctl(net, path, table);
7045 if (!p->sysctl_header)
Eric W. Biederman6105e292012-04-19 13:41:24 +00007046 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11007047
Nicolas Dichtel29c994e2016-08-30 10:09:22 +02007048 if (!strcmp(dev_name, "all"))
7049 ifindex = NETCONFA_IFINDEX_ALL;
7050 else if (!strcmp(dev_name, "default"))
7051 ifindex = NETCONFA_IFINDEX_DEFAULT;
7052 else
7053 ifindex = idev->dev->ifindex;
David Ahern85b3daa2017-03-28 14:28:04 -07007054 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL,
7055 ifindex, p);
Pavel Emelyanov95897312008-01-10 17:41:45 -08007056 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11007058free:
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007059 kfree(table);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11007060out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08007061 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062}
7063
David Ahern23452172017-03-28 14:28:05 -07007064static void __addrconf_sysctl_unregister(struct net *net,
7065 struct ipv6_devconf *p, int ifindex)
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007066{
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007067 struct ctl_table *table;
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007068
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007069 if (!p->sysctl_header)
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007070 return;
7071
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03007072 table = p->sysctl_header->ctl_table_arg;
7073 unregister_net_sysctl_table(p->sysctl_header);
7074 p->sysctl_header = NULL;
7075 kfree(table);
David Ahern23452172017-03-28 14:28:05 -07007076
7077 inet6_netconf_notify_devconf(net, RTM_DELNETCONF, 0, ifindex, NULL);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007078}
7079
WANG Conga317a2f2014-07-25 15:25:09 -07007080static int addrconf_sysctl_register(struct inet6_dev *idev)
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11007081{
WANG Conga317a2f2014-07-25 15:25:09 -07007082 int err;
7083
7084 if (!sysctl_dev_name_is_allowed(idev->dev->name))
7085 return -EINVAL;
7086
7087 err = neigh_sysctl_register(idev->dev, idev->nd_parms,
7088 &ndisc_ifinfo_sysctl_change);
7089 if (err)
7090 return err;
7091 err = __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
7092 idev, &idev->cnf);
7093 if (err)
7094 neigh_sysctl_unregister(idev->nd_parms);
7095
7096 return err;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11007097}
7098
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007099static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100{
David Ahern23452172017-03-28 14:28:05 -07007101 __addrconf_sysctl_unregister(dev_net(idev->dev), &idev->cnf,
7102 idev->dev->ifindex);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08007103 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007104}
7105
7106
7107#endif
7108
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00007109static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007110{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007111 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007112 struct ipv6_devconf *all, *dflt;
7113
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007114 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +01007115 if (!all)
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007116 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007117
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007118 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +01007119 if (!dflt)
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007120 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007121
Arnd Bergmanna154d5d2019-03-04 21:38:03 +01007122 if (IS_ENABLED(CONFIG_SYSCTL) &&
Nicolas Dichtel9efd6a32020-05-13 15:58:43 +02007123 !net_eq(net, &init_net)) {
7124 switch (sysctl_devconf_inherit_init_net) {
7125 case 1: /* copy from init_net */
7126 memcpy(all, init_net.ipv6.devconf_all,
7127 sizeof(ipv6_devconf));
7128 memcpy(dflt, init_net.ipv6.devconf_dflt,
7129 sizeof(ipv6_devconf_dflt));
7130 break;
7131 case 3: /* copy from the current netns */
7132 memcpy(all, current->nsproxy->net_ns->ipv6.devconf_all,
7133 sizeof(ipv6_devconf));
7134 memcpy(dflt,
7135 current->nsproxy->net_ns->ipv6.devconf_dflt,
7136 sizeof(ipv6_devconf_dflt));
7137 break;
7138 case 0:
7139 case 2:
7140 /* use compiled values */
7141 break;
7142 }
Cong Wang856c3952019-01-17 23:27:11 -08007143 }
7144
Hong Zhiguoa79ca222013-03-26 01:52:45 +08007145 /* these will be inherited by all namespaces */
7146 dflt->autoconf = ipv6_defaults.autoconf;
7147 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007148
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01007149 dflt->stable_secret.initialized = false;
7150 all->stable_secret.initialized = false;
7151
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007152 net->ipv6.devconf_all = all;
7153 net->ipv6.devconf_dflt = dflt;
7154
7155#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08007156 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007157 if (err < 0)
7158 goto err_reg_all;
7159
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08007160 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007161 if (err < 0)
7162 goto err_reg_dflt;
7163#endif
7164 return 0;
7165
7166#ifdef CONFIG_SYSCTL
7167err_reg_dflt:
David Ahern23452172017-03-28 14:28:05 -07007168 __addrconf_sysctl_unregister(net, all, NETCONFA_IFINDEX_ALL);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007169err_reg_all:
7170 kfree(dflt);
7171#endif
7172err_alloc_dflt:
7173 kfree(all);
7174err_alloc_all:
7175 return err;
7176}
7177
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00007178static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007179{
7180#ifdef CONFIG_SYSCTL
David Ahern23452172017-03-28 14:28:05 -07007181 __addrconf_sysctl_unregister(net, net->ipv6.devconf_dflt,
7182 NETCONFA_IFINDEX_DEFAULT);
7183 __addrconf_sysctl_unregister(net, net->ipv6.devconf_all,
7184 NETCONFA_IFINDEX_ALL);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007185#endif
zhuyj73cf0e922014-11-26 10:25:58 +08007186 kfree(net->ipv6.devconf_dflt);
7187 kfree(net->ipv6.devconf_all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007188}
7189
7190static struct pernet_operations addrconf_ops = {
7191 .init = addrconf_init_net,
7192 .exit = addrconf_exit_net,
7193};
7194
Daniel Borkmann207895fd32015-01-29 12:15:03 +01007195static struct rtnl_af_ops inet6_ops __read_mostly = {
Thomas Grafb382b192010-11-16 04:33:57 +00007196 .family = AF_INET6,
7197 .fill_link_af = inet6_fill_link_af,
7198 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmann11b1f822015-02-05 14:39:11 +01007199 .validate_link_af = inet6_validate_link_af,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00007200 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00007201};
7202
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203/*
7204 * Init / cleanup code
7205 */
7206
7207int __init addrconf_init(void)
7208{
WANG Conga317a2f2014-07-25 15:25:09 -07007209 struct inet6_dev *idev;
stephen hemmingerc2e21292010-03-17 20:31:10 +00007210 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09007211
Stephen Hemmingere21e8462010-03-20 16:09:01 -07007212 err = ipv6_addr_label_init();
7213 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00007214 pr_crit("%s: cannot initialize default policy table: %d\n",
7215 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007216 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09007217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007219 err = register_pernet_subsys(&addrconf_ops);
7220 if (err < 0)
7221 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007222
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007223 addrconf_wq = create_workqueue("ipv6_addrconf");
7224 if (!addrconf_wq) {
7225 err = -ENOMEM;
7226 goto out_nowq;
7227 }
7228
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229 /* The addrconf netdev notifier requires that loopback_dev
7230 * has it's ipv6 private information allocated and setup
7231 * before it can bring up and give link-local addresses
7232 * to other devices which are up.
7233 *
7234 * Unfortunately, loopback_dev is not necessarily the first
7235 * entry in the global dev_base list of net devices. In fact,
7236 * it is likely to be the very last entry on that list.
7237 * So this causes the notifier registry below to try and
7238 * give link-local addresses to all devices besides loopback_dev
7239 * first, then loopback_dev, which cases all the non-loopback_dev
7240 * devices to fail to get a link-local address.
7241 *
7242 * So, as a temporary fix, allocate the ipv6 structure for
7243 * loopback_dev first by hand.
7244 * Longer term, all of the dependencies ipv6 has upon the loopback
7245 * device and it being up should be removed.
7246 */
7247 rtnl_lock();
WANG Conga317a2f2014-07-25 15:25:09 -07007248 idev = ipv6_add_dev(init_net.loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249 rtnl_unlock();
WANG Conga317a2f2014-07-25 15:25:09 -07007250 if (IS_ERR(idev)) {
7251 err = PTR_ERR(idev);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007252 goto errlo;
WANG Conga317a2f2014-07-25 15:25:09 -07007253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254
WANG Cong2f460932017-05-03 22:07:31 -07007255 ip6_route_init_special_entries();
7256
stephen hemmingerc2e21292010-03-17 20:31:10 +00007257 for (i = 0; i < IN6_ADDR_HSIZE; i++)
7258 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
7259
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260 register_netdevice_notifier(&ipv6_dev_notf);
7261
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007262 addrconf_verify();
Thomas Grafc127ea22007-03-22 11:58:32 -07007263
stephen hemminger3678a9d2013-12-30 10:41:32 -08007264 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00007265
Florian Westphal16feebc2017-12-02 21:44:08 +01007266 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETLINK,
7267 NULL, inet6_dump_ifinfo, 0);
Thomas Grafc127ea22007-03-22 11:58:32 -07007268 if (err < 0)
7269 goto errout;
7270
Florian Westphal16feebc2017-12-02 21:44:08 +01007271 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWADDR,
7272 inet6_rtm_newaddr, NULL, 0);
7273 if (err < 0)
7274 goto errout;
7275 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELADDR,
7276 inet6_rtm_deladdr, NULL, 0);
7277 if (err < 0)
7278 goto errout;
7279 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETADDR,
7280 inet6_rtm_getaddr, inet6_dump_ifaddr,
7281 RTNL_FLAG_DOIT_UNLOCKED);
7282 if (err < 0)
7283 goto errout;
7284 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETMULTICAST,
7285 NULL, inet6_dump_ifmcaddr, 0);
7286 if (err < 0)
7287 goto errout;
7288 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETANYCAST,
7289 NULL, inet6_dump_ifacaddr, 0);
7290 if (err < 0)
7291 goto errout;
7292 err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETNETCONF,
7293 inet6_netconf_get_devconf,
7294 inet6_netconf_dump_devconf,
7295 RTNL_FLAG_DOIT_UNLOCKED);
7296 if (err < 0)
7297 goto errout;
Florian Westphala3fde2a2017-12-04 19:19:18 +01007298 err = ipv6_addr_label_rtnl_register();
7299 if (err < 0)
7300 goto errout;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09007301
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07007303errout:
Florian Westphal16feebc2017-12-02 21:44:08 +01007304 rtnl_unregister_all(PF_INET6);
Thomas Grafb382b192010-11-16 04:33:57 +00007305 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07007306 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007307errlo:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007308 destroy_workqueue(addrconf_wq);
7309out_nowq:
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007310 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007311out_addrlabel:
7312 ipv6_addr_label_cleanup();
7313out:
Thomas Grafc127ea22007-03-22 11:58:32 -07007314 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315}
7316
Daniel Lezcano09f77092007-12-13 05:34:58 -08007317void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08007319 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 int i;
7321
7322 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08007323 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00007324 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325
Florian Westphal5c451212017-10-04 15:58:49 +02007326 rtnl_af_unregister(&inet6_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327
Florian Westphal5c451212017-10-04 15:58:49 +02007328 rtnl_lock();
Thomas Grafb382b192010-11-16 04:33:57 +00007329
Daniel Lezcano176c39a2009-03-03 01:06:45 -08007330 /* clean dev list */
7331 for_each_netdev(&init_net, dev) {
7332 if (__in6_dev_get(dev) == NULL)
7333 continue;
Florent Fourcotae79dbf2020-07-31 15:32:07 +02007334 addrconf_ifdown(dev, true);
Daniel Lezcano176c39a2009-03-03 01:06:45 -08007335 }
Florent Fourcotae79dbf2020-07-31 15:32:07 +02007336 addrconf_ifdown(init_net.loopback_dev, true);
Daniel Lezcano176c39a2009-03-03 01:06:45 -08007337
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 * Check hash table.
7340 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00007341 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00007342 for (i = 0; i < IN6_ADDR_HSIZE; i++)
7343 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00007344 spin_unlock_bh(&addrconf_hash_lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007345 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346 rtnl_unlock();
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01007347
7348 destroy_workqueue(addrconf_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349}