blob: 3c46e9513a31d04eeb1e76384f146b759ae38eed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/*
16 * Changes:
17 *
18 * Janos Farkas : delete timer on ifdown
19 * <chexum@bankinf.banki.hu>
20 * Andi Kleen : kill double kfree on module
21 * unload.
22 * Maciej W. Rozycki : FDDI support
23 * sekiya@USAGI : Don't send too many RS
24 * packets.
25 * yoshfuji@USAGI : Fixed interval between DAD
26 * packets.
27 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
28 * address validation timer.
29 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
30 * support.
31 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
32 * address on a same interface.
33 * YOSHIFUJI Hideaki @USAGI : ARCnet support
34 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
35 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080036 * YOSHIFUJI Hideaki @USAGI : improved source address
37 * selection; consider scope,
38 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Joe Perchesf3213832012-05-15 14:11:53 +000041#define pr_fmt(fmt) "IPv6: " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070045#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010046#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/socket.h>
48#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/net.h>
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +010050#include <linux/inet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/in6.h>
52#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070053#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/if_arp.h>
55#include <linux/if_arcnet.h>
56#include <linux/if_infiniband.h>
57#include <linux/route.h>
58#include <linux/inetdevice.h>
59#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090060#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#ifdef CONFIG_SYSCTL
62#include <linux/sysctl.h>
63#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080064#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/delay.h>
66#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070067#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000068#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020070#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <net/sock.h>
72#include <net/snmp.h>
73
Alexander Aring5241c2d2015-12-14 20:55:22 +010074#include <net/6lowpan.h>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000075#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <net/ipv6.h>
77#include <net/protocol.h>
78#include <net/ndisc.h>
79#include <net/ip6_route.h>
80#include <net/addrconf.h>
81#include <net/tcp.h>
82#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070083#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070084#include <net/pkt_sched.h>
David Ahernca254492015-10-12 11:47:10 -070085#include <net/l3mdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <linux/if_tunnel.h>
87#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000088#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/random.h>
Stephen Hemmingere21e8462010-03-20 16:09:01 -070090#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070091#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#include <linux/proc_fs.h>
94#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040095#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* Set to 3 to get tracing... */
98#define ACONF_DEBUG 2
99
100#if ACONF_DEBUG >= 3
dingtianhongba3542e2013-08-17 10:27:04 +0800101#define ADBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#else
dingtianhongba3542e2013-08-17 10:27:04 +0800103#define ADBG(fmt, ...) do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif
105
106#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000107
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100108#define IPV6_MAX_STRLEN \
109 sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
110
Thomas Graf18a31e12010-11-17 04:12:02 +0000111static inline u32 cstamp_delta(unsigned long cstamp)
112{
113 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
114}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700116static inline s32 rfc3315_s14_backoff_init(s32 irt)
117{
118 /* multiply 'initial retransmission time' by 0.9 .. 1.1 */
119 u64 tmp = (900000 + prandom_u32() % 200001) * (u64)irt;
120 do_div(tmp, 1000000);
121 return (s32)tmp;
122}
123
124static inline s32 rfc3315_s14_backoff_update(s32 rt, s32 mrt)
125{
126 /* multiply 'retransmission timeout' by 1.9 .. 2.1 */
127 u64 tmp = (1900000 + prandom_u32() % 200001) * (u64)rt;
128 do_div(tmp, 1000000);
129 if ((s32)tmp > mrt) {
130 /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */
131 tmp = (900000 + prandom_u32() % 200001) * (u64)mrt;
132 do_div(tmp, 1000000);
133 }
134 return (s32)tmp;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#ifdef CONFIG_SYSCTL
WANG Conga317a2f2014-07-25 15:25:09 -0700138static int addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800139static void addrconf_sysctl_unregister(struct inet6_dev *idev);
140#else
WANG Conga317a2f2014-07-25 15:25:09 -0700141static inline int addrconf_sysctl_register(struct inet6_dev *idev)
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800142{
WANG Conga317a2f2014-07-25 15:25:09 -0700143 return 0;
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800144}
145
146static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
147{
148}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#endif
150
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200151static void ipv6_regen_rndid(struct inet6_dev *idev);
152static void ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900154static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static int ipv6_count_addresses(struct inet6_dev *idev);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +0100156static int ipv6_generate_stable_address(struct in6_addr *addr,
157 u8 dad_count,
158 const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160/*
161 * Configured unicast address hash table
162 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000163static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578aed2010-03-17 20:31:11 +0000164static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100166static void addrconf_verify(void);
167static void addrconf_verify_rtnl(void);
168static void addrconf_verify_work(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100170static struct workqueue_struct *addrconf_wq;
171static DECLARE_DELAYED_WORK(addr_chk_work, addrconf_verify_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
174static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
175
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000176static void addrconf_type_change(struct net_device *dev,
177 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int addrconf_ifdown(struct net_device *dev, int how);
179
Romain Kuntz21caa662013-01-09 21:06:03 +0000180static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
181 int plen,
182 const struct net_device *dev,
183 u32 flags, u32 noflags);
184
David S. Millercf22f9a2012-04-14 21:37:40 -0400185static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100186static void addrconf_dad_work(struct work_struct *w);
Paolo Abeni764d3be2016-11-22 16:57:40 +0100187static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900188static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189static void addrconf_rs_timer(unsigned long data);
190static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
191static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
192
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900193static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700195static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
196 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Adrian Bunk888c8482008-07-22 14:21:58 -0700198static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 .forwarding = 0,
200 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
201 .mtu6 = IPV6_MIN_MTU,
202 .accept_ra = 1,
203 .accept_redirects = 1,
204 .autoconf = 1,
205 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200206 .mldv1_unsolicited_report_interval = 10 * HZ,
207 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .dad_transmits = 1,
209 .rtr_solicits = MAX_RTR_SOLICITATIONS,
210 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700211 .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Ian Morris67ba4152014-08-24 21:53:10 +0100213 .use_tempaddr = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 .temp_valid_lft = TEMP_VALID_LIFETIME,
215 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
216 .regen_max_retry = REGEN_MAX_RETRY,
217 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800219 .accept_ra_defrtr = 1,
Ben Greeard9333192014-06-25 14:44:53 -0700220 .accept_ra_from_local = 0,
Hangbin Liu8013d1d72015-07-30 14:28:42 +0800221 .accept_ra_min_hop_limit= 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800222 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800223#ifdef CONFIG_IPV6_ROUTER_PREF
224 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800225 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800226#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +0900227 .accept_ra_rt_info_min_plen = 0,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800228 .accept_ra_rt_info_max_plen = 0,
229#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800230#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700231 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700232 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900233 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900234 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200235 .suppress_frag_ndisc = 1,
Harout Hedeshianc2943f12015-01-20 10:06:05 -0700236 .accept_ra_mtu = 1,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100237 .stable_secret = {
238 .initialized = false,
Erik Kline3985e8a2015-07-22 16:38:25 +0900239 },
240 .use_oif_addrs_only = 0,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400241 .ignore_routes_with_linkdown = 0,
David Ahernf1705ec2016-02-24 09:25:37 -0800242 .keep_addr_on_down = 0,
David Lebrun1ababeb2016-11-08 14:57:39 +0100243 .seg6_enabled = 0,
David Lebrunbf355b82016-11-08 14:57:42 +0100244#ifdef CONFIG_IPV6_SEG6_HMAC
245 .seg6_require_hmac = 0,
246#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800247 .enhanced_dad = 1,
Felix Jiad35a00b2017-01-26 16:59:17 +1300248 .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64,
David Forsterdf789fe2017-02-23 16:27:18 +0000249 .disable_policy = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
Brian Haleyab32ea52006-09-22 14:15:41 -0700252static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .forwarding = 0,
254 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
255 .mtu6 = IPV6_MIN_MTU,
256 .accept_ra = 1,
257 .accept_redirects = 1,
258 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200259 .force_mld_version = 0,
260 .mldv1_unsolicited_report_interval = 10 * HZ,
261 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .dad_transmits = 1,
263 .rtr_solicits = MAX_RTR_SOLICITATIONS,
264 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -0700265 .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .use_tempaddr = 0,
268 .temp_valid_lft = TEMP_VALID_LIFETIME,
269 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
270 .regen_max_retry = REGEN_MAX_RETRY,
271 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800273 .accept_ra_defrtr = 1,
Ben Greeard9333192014-06-25 14:44:53 -0700274 .accept_ra_from_local = 0,
Hangbin Liu8013d1d72015-07-30 14:28:42 +0800275 .accept_ra_min_hop_limit= 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800276 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800277#ifdef CONFIG_IPV6_ROUTER_PREF
278 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800279 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800280#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +0900281 .accept_ra_rt_info_min_plen = 0,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800282 .accept_ra_rt_info_max_plen = 0,
283#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800284#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700285 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700286 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900287 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900288 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200289 .suppress_frag_ndisc = 1,
Harout Hedeshianc2943f12015-01-20 10:06:05 -0700290 .accept_ra_mtu = 1,
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +0100291 .stable_secret = {
292 .initialized = false,
293 },
Erik Kline3985e8a2015-07-22 16:38:25 +0900294 .use_oif_addrs_only = 0,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400295 .ignore_routes_with_linkdown = 0,
David Ahernf1705ec2016-02-24 09:25:37 -0800296 .keep_addr_on_down = 0,
David Lebrun1ababeb2016-11-08 14:57:39 +0100297 .seg6_enabled = 0,
David Lebrunbf355b82016-11-08 14:57:42 +0100298#ifdef CONFIG_IPV6_SEG6_HMAC
299 .seg6_require_hmac = 0,
300#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800301 .enhanced_dad = 1,
Felix Jiad35a00b2017-01-26 16:59:17 +1300302 .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64,
David Forsterdf789fe2017-02-23 16:27:18 +0000303 .disable_policy = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304};
305
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700306/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700307static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700308{
David S. Miller05297942008-07-08 23:01:27 -0700309 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700310}
311
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200312static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200314 if (del_timer(&idev->rs_timer))
315 __in6_dev_put(idev);
316}
317
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100318static void addrconf_del_dad_work(struct inet6_ifaddr *ifp)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200319{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100320 if (cancel_delayed_work(&ifp->dad_work))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 __in6_ifa_put(ifp);
322}
323
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200324static void addrconf_mod_rs_timer(struct inet6_dev *idev,
325 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200327 if (!timer_pending(&idev->rs_timer))
328 in6_dev_hold(idev);
329 mod_timer(&idev->rs_timer, jiffies + when);
330}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100332static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp,
333 unsigned long delay)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200334{
Xin Longf8a894b2017-06-15 16:33:58 +0800335 in6_ifa_hold(ifp);
336 if (mod_delayed_work(addrconf_wq, &ifp->dad_work, delay))
337 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700340static int snmp6_alloc_dev(struct inet6_dev *idev)
341{
John Stultz827da442013-10-07 15:51:58 -0700342 int i;
343
WANG Cong698365f2014-05-05 15:55:55 -0700344 idev->stats.ipv6 = alloc_percpu(struct ipstats_mib);
345 if (!idev->stats.ipv6)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700346 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700347
348 for_each_possible_cpu(i) {
349 struct ipstats_mib *addrconf_stats;
WANG Cong698365f2014-05-05 15:55:55 -0700350 addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i);
John Stultz827da442013-10-07 15:51:58 -0700351 u64_stats_init(&addrconf_stats->syncp);
John Stultz827da442013-10-07 15:51:58 -0700352 }
353
354
Eric Dumazetbe281e52011-05-19 01:14:23 +0000355 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
356 GFP_KERNEL);
357 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700358 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000359 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
360 GFP_KERNEL);
361 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700362 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700363
364 return 0;
365
David L Stevens14878f72007-09-16 16:52:35 -0700366err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000367 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700368err_icmp:
WANG Cong698365f2014-05-05 15:55:55 -0700369 free_percpu(idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700370err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700371 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700372}
373
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000374static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct inet6_dev *ndev;
WANG Conga317a2f2014-07-25 15:25:09 -0700377 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 ASSERT_RTNL();
380
381 if (dev->mtu < IPV6_MIN_MTU)
WANG Conga317a2f2014-07-25 15:25:09 -0700382 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900384 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100385 if (!ndev)
WANG Conga317a2f2014-07-25 15:25:09 -0700386 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Ingo Oeser322f74a2006-03-20 23:01:47 -0800388 rwlock_init(&ndev->lock);
389 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000390 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200391 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
392 (unsigned long)ndev);
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 else
Felix Jiad35a00b2017-01-26 16:59:17 +1300398 ndev->cnf.addr_gen_mode = ipv6_devconf_dflt.addr_gen_mode;
Hannes Frederic Sowa9b29c692015-12-15 22:59:12 +0100399
Ingo Oeser322f74a2006-03-20 23:01:47 -0800400 ndev->cnf.mtu6 = dev->mtu;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800401 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
Ian Morris63159f22015-03-29 14:00:04 +0100402 if (!ndev->nd_parms) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800403 kfree(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700404 return ERR_PTR(err);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800405 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700406 if (ndev->cnf.forwarding)
407 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800408 /* We refer to the device */
409 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Ingo Oeser322f74a2006-03-20 23:01:47 -0800411 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800412 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000413 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800414 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800415 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400416 dev_put(dev);
417 kfree(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700418 return ERR_PTR(err);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Ingo Oeser322f74a2006-03-20 23:01:47 -0800421 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800422 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000423 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800424 __func__, dev->name);
WANG Conga317a2f2014-07-25 15:25:09 -0700425 goto err_release;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200428 /* One reference from device. */
Reshetova, Elena1be92462017-07-04 09:34:55 +0300429 refcount_set(&ndev->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900431 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
432 ndev->cnf.accept_dad = -1;
433
Amerigo Wang07a93622012-10-29 16:23:10 +0000434#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700435 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000436 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700437 ndev->cnf.rtr_solicits = 0;
438 }
439#endif
440
stephen hemminger372e6c82010-03-17 20:31:09 +0000441 INIT_LIST_HEAD(&ndev->tempaddr_list);
Jiri Bohac76506a92016-10-13 18:52:15 +0200442 ndev->desync_factor = U32_MAX;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800443 if ((dev->flags&IFF_LOOPBACK) ||
444 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700445 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700446 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700447 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800448 ndev->cnf.use_tempaddr = -1;
Jiri Bohac9d6280d2016-10-13 18:50:02 +0200449 } else
450 ipv6_regen_rndid(ndev);
David S. Miller5d9efa72013-10-28 20:07:50 -0400451
Daniel Borkmann914faa12013-04-09 03:47:14 +0000452 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800453
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700454 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700455 ndev->if_flags |= IF_READY;
456
Ingo Oeser322f74a2006-03-20 23:01:47 -0800457 ipv6_mc_init_dev(ndev);
458 ndev->tstamp = jiffies;
WANG Conga317a2f2014-07-25 15:25:09 -0700459 err = addrconf_sysctl_register(ndev);
460 if (err) {
461 ipv6_mc_destroy_dev(ndev);
Sabrina Dubroca2a189f9e2015-11-04 14:47:53 +0100462 snmp6_unregister_dev(ndev);
WANG Conga317a2f2014-07-25 15:25:09 -0700463 goto err_release;
464 }
David L Stevens30c4cf52007-01-04 12:31:14 -0800465 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000466 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800467
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000468 /* Join interface-local all-node multicast group */
469 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
470
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800471 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900472 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800473
Li Weid6ddef92012-03-05 14:45:17 +0000474 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000475 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000476 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return ndev;
WANG Conga317a2f2014-07-25 15:25:09 -0700479
480err_release:
481 neigh_parms_release(&nd_tbl, ndev->nd_parms);
482 ndev->dead = 1;
483 in6_dev_finish_destroy(ndev);
484 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000487static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct inet6_dev *idev;
490
491 ASSERT_RTNL();
492
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700493 idev = __in6_dev_get(dev);
494 if (!idev) {
495 idev = ipv6_add_dev(dev);
WANG Conga317a2f2014-07-25 15:25:09 -0700496 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return NULL;
498 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (dev->flags&IFF_UP)
501 ipv6_mc_up(idev);
502 return idev;
503}
504
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000505static int inet6_netconf_msgsize_devconf(int type)
506{
507 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
508 + nla_total_size(4); /* NETCONFA_IFINDEX */
Zhang Shengju136ba622016-03-10 08:55:50 +0000509 bool all = false;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000510
Zhang Shengju136ba622016-03-10 08:55:50 +0000511 if (type == NETCONFA_ALL)
512 all = true;
513
514 if (all || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000515 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500516#ifdef CONFIG_IPV6_MROUTE
Zhang Shengju136ba622016-03-10 08:55:50 +0000517 if (all || type == NETCONFA_MC_FORWARDING)
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000518 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500519#endif
Zhang Shengju136ba622016-03-10 08:55:50 +0000520 if (all || type == NETCONFA_PROXY_NEIGH)
stephen hemmingerc92d5492013-12-17 22:37:14 -0800521 size += nla_total_size(4);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000522
Zhang Shengju136ba622016-03-10 08:55:50 +0000523 if (all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN)
Andy Gospodarek35103d12015-08-13 10:39:01 -0400524 size += nla_total_size(4);
525
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000526 return size;
527}
528
529static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
530 struct ipv6_devconf *devconf, u32 portid,
531 u32 seq, int event, unsigned int flags,
532 int type)
533{
534 struct nlmsghdr *nlh;
535 struct netconfmsg *ncm;
Zhang Shengju136ba622016-03-10 08:55:50 +0000536 bool all = false;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000537
538 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
539 flags);
Ian Morris63159f22015-03-29 14:00:04 +0100540 if (!nlh)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000541 return -EMSGSIZE;
542
Zhang Shengju136ba622016-03-10 08:55:50 +0000543 if (type == NETCONFA_ALL)
544 all = true;
545
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000546 ncm = nlmsg_data(nlh);
547 ncm->ncm_family = AF_INET6;
548
549 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
550 goto nla_put_failure;
551
David Ahern23452172017-03-28 14:28:05 -0700552 if (!devconf)
553 goto out;
554
Zhang Shengju136ba622016-03-10 08:55:50 +0000555 if ((all || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000556 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
557 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500558#ifdef CONFIG_IPV6_MROUTE
Zhang Shengju136ba622016-03-10 08:55:50 +0000559 if ((all || type == NETCONFA_MC_FORWARDING) &&
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000560 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
561 devconf->mc_forwarding) < 0)
562 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500563#endif
Zhang Shengju136ba622016-03-10 08:55:50 +0000564 if ((all || type == NETCONFA_PROXY_NEIGH) &&
stephen hemmingerc92d5492013-12-17 22:37:14 -0800565 nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
566 goto nla_put_failure;
567
Zhang Shengju136ba622016-03-10 08:55:50 +0000568 if ((all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) &&
Andy Gospodarek35103d12015-08-13 10:39:01 -0400569 nla_put_s32(skb, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
570 devconf->ignore_routes_with_linkdown) < 0)
571 goto nla_put_failure;
572
David Ahern23452172017-03-28 14:28:05 -0700573out:
Johannes Berg053c0952015-01-16 22:09:00 +0100574 nlmsg_end(skb, nlh);
575 return 0;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000576
577nla_put_failure:
578 nlmsg_cancel(skb, nlh);
579 return -EMSGSIZE;
580}
581
David Ahern85b3daa2017-03-28 14:28:04 -0700582void inet6_netconf_notify_devconf(struct net *net, int event, int type,
583 int ifindex, struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000584{
585 struct sk_buff *skb;
586 int err = -ENOBUFS;
587
Eric Dumazet927265b2016-07-08 05:46:04 +0200588 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100589 if (!skb)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000590 goto errout;
591
592 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
David Ahern85b3daa2017-03-28 14:28:04 -0700593 event, 0, type);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000594 if (err < 0) {
595 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
596 WARN_ON(err == -EMSGSIZE);
597 kfree_skb(skb);
598 goto errout;
599 }
Eric Dumazet927265b2016-07-08 05:46:04 +0200600 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_KERNEL);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000601 return;
602errout:
Cong Dingbd779022012-12-18 12:08:56 +0000603 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000604}
605
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000606static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
607 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
608 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
stephen hemmingerc92d5492013-12-17 22:37:14 -0800609 [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) },
Andy Gospodarek35103d12015-08-13 10:39:01 -0400610 [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN] = { .len = sizeof(int) },
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000611};
612
613static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
David Ahernc21ef3e2017-04-16 09:48:24 -0700614 struct nlmsghdr *nlh,
615 struct netlink_ext_ack *extack)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000616{
617 struct net *net = sock_net(in_skb->sk);
618 struct nlattr *tb[NETCONFA_MAX+1];
619 struct netconfmsg *ncm;
620 struct sk_buff *skb;
621 struct ipv6_devconf *devconf;
622 struct inet6_dev *in6_dev;
623 struct net_device *dev;
624 int ifindex;
625 int err;
626
627 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
David Ahernc21ef3e2017-04-16 09:48:24 -0700628 devconf_ipv6_policy, extack);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000629 if (err < 0)
630 goto errout;
631
Anton Protopopova97eb332016-02-16 21:43:16 -0500632 err = -EINVAL;
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000633 if (!tb[NETCONFA_IFINDEX])
634 goto errout;
635
636 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
637 switch (ifindex) {
638 case NETCONFA_IFINDEX_ALL:
639 devconf = net->ipv6.devconf_all;
640 break;
641 case NETCONFA_IFINDEX_DEFAULT:
642 devconf = net->ipv6.devconf_dflt;
643 break;
644 default:
645 dev = __dev_get_by_index(net, ifindex);
Ian Morris63159f22015-03-29 14:00:04 +0100646 if (!dev)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000647 goto errout;
648 in6_dev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +0100649 if (!in6_dev)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000650 goto errout;
651 devconf = &in6_dev->cnf;
652 break;
653 }
654
655 err = -ENOBUFS;
Zhang Shengju136ba622016-03-10 08:55:50 +0000656 skb = nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +0100657 if (!skb)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000658 goto errout;
659
660 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
661 NETLINK_CB(in_skb).portid,
662 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
Zhang Shengju136ba622016-03-10 08:55:50 +0000663 NETCONFA_ALL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000664 if (err < 0) {
665 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
666 WARN_ON(err == -EMSGSIZE);
667 kfree_skb(skb);
668 goto errout;
669 }
670 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
671errout:
672 return err;
673}
674
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000675static int inet6_netconf_dump_devconf(struct sk_buff *skb,
676 struct netlink_callback *cb)
677{
678 struct net *net = sock_net(skb->sk);
679 int h, s_h;
680 int idx, s_idx;
681 struct net_device *dev;
682 struct inet6_dev *idev;
683 struct hlist_head *head;
684
685 s_h = cb->args[0];
686 s_idx = idx = cb->args[1];
687
688 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
689 idx = 0;
690 head = &net->dev_index_head[h];
691 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000692 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
693 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000694 hlist_for_each_entry_rcu(dev, head, index_hlist) {
695 if (idx < s_idx)
696 goto cont;
697 idev = __in6_dev_get(dev);
698 if (!idev)
699 goto cont;
700
701 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
702 &idev->cnf,
703 NETLINK_CB(cb->skb).portid,
704 cb->nlh->nlmsg_seq,
705 RTM_NEWNETCONF,
706 NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000707 NETCONFA_ALL) < 0) {
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000708 rcu_read_unlock();
709 goto done;
710 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000711 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000712cont:
713 idx++;
714 }
715 rcu_read_unlock();
716 }
717 if (h == NETDEV_HASHENTRIES) {
718 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
719 net->ipv6.devconf_all,
720 NETLINK_CB(cb->skb).portid,
721 cb->nlh->nlmsg_seq,
722 RTM_NEWNETCONF, NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000723 NETCONFA_ALL) < 0)
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000724 goto done;
725 else
726 h++;
727 }
728 if (h == NETDEV_HASHENTRIES + 1) {
729 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
730 net->ipv6.devconf_dflt,
731 NETLINK_CB(cb->skb).portid,
732 cb->nlh->nlmsg_seq,
733 RTM_NEWNETCONF, NLM_F_MULTI,
Zhang Shengju136ba622016-03-10 08:55:50 +0000734 NETCONFA_ALL) < 0)
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000735 goto done;
736 else
737 h++;
738 }
739done:
740 cb->args[0] = h;
741 cb->args[1] = idx;
742
743 return skb->len;
744}
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746#ifdef CONFIG_SYSCTL
747static void dev_forward_change(struct inet6_dev *idev)
748{
749 struct net_device *dev;
750 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 if (!idev)
753 return;
754 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700755 if (idev->cnf.forwarding)
756 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000757 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000758 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900759 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000760 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
761 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
762 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900763 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000764 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
765 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000768
769 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800770 if (ifa->flags&IFA_F_TENTATIVE)
771 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (idev->cnf.forwarding)
773 addrconf_join_anycast(ifa);
774 else
775 addrconf_leave_anycast(ifa);
776 }
David Ahern85b3daa2017-03-28 14:28:04 -0700777 inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF,
778 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000779 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782
Pavel Emelyanove1869322008-01-10 17:43:50 -0800783static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 struct net_device *dev;
786 struct inet6_dev *idev;
787
Ben Hutchings4acd4942012-08-14 08:54:51 +0000788 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 idev = __in6_dev_get(dev);
790 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800791 int changed = (!idev->cnf.forwarding) ^ (!newf);
792 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (changed)
794 dev_forward_change(idev);
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800798
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000799static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800800{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800801 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000802 int old;
803
804 if (!rtnl_trylock())
805 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800806
807 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000808 old = *p;
809 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800810
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000811 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000812 if ((!newf) ^ (!old))
David Ahern85b3daa2017-03-28 14:28:04 -0700813 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
814 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000815 NETCONFA_IFINDEX_DEFAULT,
816 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000817 rtnl_unlock();
818 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000819 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000820
Pavel Emelyanove1869322008-01-10 17:43:50 -0800821 if (p == &net->ipv6.devconf_all->forwarding) {
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200822 int old_dflt = net->ipv6.devconf_dflt->forwarding;
823
Pavel Emelyanove1869322008-01-10 17:43:50 -0800824 net->ipv6.devconf_dflt->forwarding = newf;
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200825 if ((!newf) ^ (!old_dflt))
David Ahern85b3daa2017-03-28 14:28:04 -0700826 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
827 NETCONFA_FORWARDING,
Nicolas Dichteld26c6382016-08-30 10:09:21 +0200828 NETCONFA_IFINDEX_DEFAULT,
829 net->ipv6.devconf_dflt);
830
Pavel Emelyanove1869322008-01-10 17:43:50 -0800831 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000832 if ((!newf) ^ (!old))
David Ahern85b3daa2017-03-28 14:28:04 -0700833 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
834 NETCONFA_FORWARDING,
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000835 NETCONFA_IFINDEX_ALL,
836 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000837 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800838 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700839 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800840
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000841 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800842 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000843 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800844}
Andy Gospodarek35103d12015-08-13 10:39:01 -0400845
846static void addrconf_linkdown_change(struct net *net, __s32 newf)
847{
848 struct net_device *dev;
849 struct inet6_dev *idev;
850
851 for_each_netdev(net, dev) {
852 idev = __in6_dev_get(dev);
853 if (idev) {
854 int changed = (!idev->cnf.ignore_routes_with_linkdown) ^ (!newf);
855
856 idev->cnf.ignore_routes_with_linkdown = newf;
857 if (changed)
858 inet6_netconf_notify_devconf(dev_net(dev),
David Ahern85b3daa2017-03-28 14:28:04 -0700859 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400860 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
861 dev->ifindex,
862 &idev->cnf);
863 }
864 }
865}
866
867static int addrconf_fixup_linkdown(struct ctl_table *table, int *p, int newf)
868{
869 struct net *net;
870 int old;
871
872 if (!rtnl_trylock())
873 return restart_syscall();
874
875 net = (struct net *)table->extra2;
876 old = *p;
877 *p = newf;
878
879 if (p == &net->ipv6.devconf_dflt->ignore_routes_with_linkdown) {
880 if ((!newf) ^ (!old))
881 inet6_netconf_notify_devconf(net,
David Ahern85b3daa2017-03-28 14:28:04 -0700882 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400883 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
884 NETCONFA_IFINDEX_DEFAULT,
885 net->ipv6.devconf_dflt);
886 rtnl_unlock();
887 return 0;
888 }
889
890 if (p == &net->ipv6.devconf_all->ignore_routes_with_linkdown) {
891 net->ipv6.devconf_dflt->ignore_routes_with_linkdown = newf;
892 addrconf_linkdown_change(net, newf);
893 if ((!newf) ^ (!old))
894 inet6_netconf_notify_devconf(net,
David Ahern85b3daa2017-03-28 14:28:04 -0700895 RTM_NEWNETCONF,
Andy Gospodarek35103d12015-08-13 10:39:01 -0400896 NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
897 NETCONFA_IFINDEX_ALL,
898 net->ipv6.devconf_all);
899 }
900 rtnl_unlock();
901
902 return 1;
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905#endif
906
stephen hemminger5c578aed2010-03-17 20:31:11 +0000907/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
909{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000910 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000913 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914#endif
915
916 in6_dev_put(ifp->idev);
917
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +0100918 if (cancel_delayed_work(&ifp->dad_work))
919 pr_notice("delayed DAD work was pending while freeing ifa=%p\n",
920 ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Herbert Xue9d3e082010-05-18 15:36:06 -0700922 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000923 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return;
925 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000926 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Lai Jiangshane5785982011-03-15 18:00:14 +0800928 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Brian Haleye55ffac2006-07-10 15:25:51 -0700931static void
932ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
933{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000934 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700935 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700936
937 /*
938 * Each device address list is sorted in order of scope -
939 * global before linklocal.
940 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000941 list_for_each(p, &idev->addr_list) {
942 struct inet6_ifaddr *ifa
943 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700944 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700945 break;
946 }
947
David S. Millerb54c9b92010-03-25 21:25:30 -0700948 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700949}
950
Eric Dumazetddbe5032012-07-18 08:11:12 +0000951static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900952{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000953 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956/* On success it returns ifp with increased reference count */
957
958static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200959ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
960 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200961 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
David Forsterdf789fe2017-02-23 16:27:18 +0000963 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct inet6_ifaddr *ifa = NULL;
965 struct rt6_info *rt;
Krister Johansen3ad7d242017-06-08 13:12:14 -0700966 struct in6_validator_info i6vi;
stephen hemminger3a88a812010-03-17 20:31:12 +0000967 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900969 int addr_type = ipv6_addr_type(addr);
970
971 if (addr_type == IPV6_ADDR_ANY ||
972 addr_type & IPV6_ADDR_MULTICAST ||
973 (!(idev->dev->flags & IFF_LOOPBACK) &&
974 addr_type & IPV6_ADDR_LOOPBACK))
975 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700977 rcu_read_lock_bh();
Krister Johansen3ad7d242017-06-08 13:12:14 -0700978
979 in6_dev_hold(idev);
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (idev->dead) {
982 err = -ENODEV; /*XXX*/
983 goto out2;
984 }
985
Brian Haley56d417b2009-06-01 03:07:33 -0700986 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700987 err = -EACCES;
988 goto out2;
989 }
990
Krister Johansen3ad7d242017-06-08 13:12:14 -0700991 i6vi.i6vi_addr = *addr;
992 i6vi.i6vi_dev = idev;
993 rcu_read_unlock_bh();
994
995 err = inet6addr_validator_notifier_call_chain(NETDEV_UP, &i6vi);
996
997 rcu_read_lock_bh();
998 err = notifier_to_errno(err);
999 if (err)
1000 goto out2;
1001
stephen hemminger5c578aed2010-03-17 20:31:11 +00001002 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001005 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +08001006 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 err = -EEXIST;
1008 goto out;
1009 }
1010
Ingo Oeser322f74a2006-03-20 23:01:47 -08001011 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Ian Morris63159f22015-03-29 14:00:04 +01001013 if (!ifa) {
dingtianhongba3542e2013-08-17 10:27:04 +08001014 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 err = -ENOBUFS;
1016 goto out;
1017 }
1018
David S. Miller8f031512011-12-06 16:48:14 -05001019 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (IS_ERR(rt)) {
1021 err = PTR_ERR(rt);
1022 goto out;
1023 }
1024
David Forsterdf789fe2017-02-23 16:27:18 +00001025 if (net->ipv6.devconf_all->disable_policy ||
1026 idev->cnf.disable_policy)
1027 rt->dst.flags |= DST_NOPOLICY;
1028
Jiri Pirkobba24892013-12-07 19:26:57 +01001029 neigh_parms_data_state_setall(idev->nd_parms);
1030
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001031 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +02001032 if (peer_addr)
1033 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 spin_lock_init(&ifa->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001036 INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001037 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 ifa->scope = scope;
1039 ifa->prefix_len = pfxlen;
Mahesh Bandewar66eb9f82017-05-12 17:03:39 -07001040 ifa->flags = flags;
1041 /* No need to add the TENTATIVE flag for addresses with NODAD */
1042 if (!(flags & IFA_F_NODAD))
1043 ifa->flags |= IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +02001044 ifa->valid_lft = valid_lft;
1045 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00001047 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Keir Fraser57f5f542006-08-29 02:43:49 -07001049 ifa->rt = rt;
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ifa->idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 /* For caller */
Reshetova, Elena271201c2017-07-04 09:34:56 +03001053 refcount_set(&ifa->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +00001056 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
stephen hemminger5c578aed2010-03-17 20:31:11 +00001058 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578aed2010-03-17 20:31:11 +00001059 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 write_lock(&idev->lock);
1062 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -07001063 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001066 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 in6_ifa_hold(ifa);
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 in6_ifa_hold(ifa);
1071 write_unlock(&idev->lock);
1072out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001073 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -07001075 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +08001076 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 else {
1078 kfree(ifa);
Krister Johansen3ad7d242017-06-08 13:12:14 -07001079 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 ifa = ERR_PTR(err);
1081 }
1082
1083 return ifa;
1084out:
stephen hemminger5c578aed2010-03-17 20:31:11 +00001085 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 goto out2;
1087}
1088
Thomas Haller5b84efe2014-01-15 15:36:59 +01001089enum cleanup_prefix_rt_t {
1090 CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */
1091 CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */
1092 CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */
1093};
1094
1095/*
1096 * Check, whether the prefix for ifp would still need a prefix route
1097 * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_*
1098 * constants.
1099 *
1100 * 1) we don't purge prefix if address was not permanent.
1101 * prefix is managed by its own lifetime.
1102 * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE.
1103 * 3) if there are no addresses, delete prefix.
1104 * 4) if there are still other permanent address(es),
1105 * corresponding prefix is still permanent.
1106 * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE,
1107 * don't purge the prefix, assume user space is managing it.
1108 * 6) otherwise, update prefix lifetime to the
1109 * longest valid lifetime among the corresponding
1110 * addresses on the device.
1111 * Note: subsequent RA will update lifetime.
1112 **/
1113static enum cleanup_prefix_rt_t
1114check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires)
1115{
1116 struct inet6_ifaddr *ifa;
1117 struct inet6_dev *idev = ifp->idev;
1118 unsigned long lifetime;
1119 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL;
1120
1121 *expires = jiffies;
1122
1123 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1124 if (ifa == ifp)
1125 continue;
1126 if (!ipv6_prefix_equal(&ifa->addr, &ifp->addr,
1127 ifp->prefix_len))
1128 continue;
1129 if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE))
1130 return CLEANUP_PREFIX_RT_NOP;
1131
1132 action = CLEANUP_PREFIX_RT_EXPIRE;
1133
1134 spin_lock(&ifa->lock);
1135
1136 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
1137 /*
1138 * Note: Because this address is
1139 * not permanent, lifetime <
1140 * LONG_MAX / HZ here.
1141 */
1142 if (time_before(*expires, ifa->tstamp + lifetime * HZ))
1143 *expires = ifa->tstamp + lifetime * HZ;
1144 spin_unlock(&ifa->lock);
1145 }
1146
1147 return action;
1148}
1149
1150static void
1151cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires, bool del_rt)
1152{
1153 struct rt6_info *rt;
1154
1155 rt = addrconf_get_prefix_route(&ifp->addr,
1156 ifp->prefix_len,
1157 ifp->idev->dev,
1158 0, RTF_GATEWAY | RTF_DEFAULT);
1159 if (rt) {
1160 if (del_rt)
1161 ip6_del_rt(rt);
1162 else {
1163 if (!(rt->rt6i_flags & RTF_EXPIRES))
1164 rt6_set_expires(rt, expires);
1165 ip6_rt_put(rt);
1166 }
1167 }
1168}
1169
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171/* This function wants to get referenced ifp and releases it before return */
1172
1173static void ipv6_del_addr(struct inet6_ifaddr *ifp)
1174{
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001175 int state;
Thomas Haller5b84efe2014-01-15 15:36:59 +01001176 enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP;
1177 unsigned long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001179 ASSERT_RTNL();
1180
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001181 spin_lock_bh(&ifp->lock);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001182 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -07001183 ifp->state = INET6_IFADDR_STATE_DEAD;
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001184 spin_unlock_bh(&ifp->lock);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001185
1186 if (state == INET6_IFADDR_STATE_DEAD)
1187 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
stephen hemminger5c578aed2010-03-17 20:31:11 +00001189 spin_lock_bh(&addrconf_hash_lock);
1190 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +00001191 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Thomas Haller5b84efe2014-01-15 15:36:59 +01001193 write_lock_bh(&ifp->idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -04001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +00001196 list_del(&ifp->tmp_list);
1197 if (ifp->ifpub) {
1198 in6_ifa_put(ifp->ifpub);
1199 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
stephen hemminger372e6c82010-03-17 20:31:09 +00001201 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Thomas Haller5b84efe2014-01-15 15:36:59 +01001204 if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE))
1205 action = check_cleanup_prefix_route(ifp, &expires);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001206
Thomas Haller5b84efe2014-01-15 15:36:59 +01001207 list_del_init(&ifp->if_list);
1208 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Thomas Haller5b84efe2014-01-15 15:36:59 +01001210 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001212 addrconf_del_dad_work(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 ipv6_ifa_notify(RTM_DELADDR, ifp);
1215
Cong Wangf88c91d2013-04-14 23:18:43 +08001216 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Thomas Haller5b84efe2014-01-15 15:36:59 +01001218 if (action != CLEANUP_PREFIX_RT_NOP) {
1219 cleanup_prefix_route(ifp, expires,
1220 action == CLEANUP_PREFIX_RT_DEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 }
1222
Daniel Walterc3968a82011-04-13 21:10:57 +00001223 /* clean up prefsrc entries */
1224 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001225out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 in6_ifa_put(ifp);
1227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1230{
1231 struct inet6_dev *idev = ifp->idev;
1232 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001233 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001234 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 int tmp_plen;
1236 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001237 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001238 unsigned long now = jiffies;
Jiri Bohac76506a92016-10-13 18:52:15 +02001239 long max_desync_factor;
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001240 s32 cnf_temp_preferred_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Jiri Pirko53bd6742013-12-06 09:45:22 +01001242 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (ift) {
1244 spin_lock_bh(&ift->lock);
1245 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1246 spin_unlock_bh(&ift->lock);
1247 tmpaddr = &addr;
1248 } else {
1249 tmpaddr = NULL;
1250 }
1251retry:
1252 in6_dev_hold(idev);
1253 if (idev->cnf.use_tempaddr <= 0) {
Jiri Pirko53bd6742013-12-06 09:45:22 +01001254 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001255 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 in6_dev_put(idev);
1257 ret = -1;
1258 goto out;
1259 }
1260 spin_lock_bh(&ifp->lock);
1261 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1262 idev->cnf.use_tempaddr = -1; /*XXX*/
1263 spin_unlock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01001264 write_unlock_bh(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001265 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1266 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 in6_dev_put(idev);
1268 ret = -1;
1269 goto out;
1270 }
1271 in6_ifa_hold(ifp);
1272 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Jiri Bohac9d6280d2016-10-13 18:50:02 +02001273 ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001275 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001277 regen_advance = idev->cnf.regen_max_retry *
Ian Morris67ba4152014-08-24 21:53:10 +01001278 idev->cnf.dad_transmits *
1279 NEIGH_VAR(idev->nd_parms, RETRANS_TIME) / HZ;
Jiri Bohac76506a92016-10-13 18:52:15 +02001280
1281 /* recalculate max_desync_factor each time and update
1282 * idev->desync_factor if it's larger
1283 */
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001284 cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft);
Jiri Bohac76506a92016-10-13 18:52:15 +02001285 max_desync_factor = min_t(__u32,
1286 idev->cnf.max_desync_factor,
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001287 cnf_temp_preferred_lft - regen_advance);
Jiri Bohac76506a92016-10-13 18:52:15 +02001288
1289 if (unlikely(idev->desync_factor > max_desync_factor)) {
1290 if (max_desync_factor > 0) {
1291 get_random_bytes(&idev->desync_factor,
1292 sizeof(idev->desync_factor));
1293 idev->desync_factor %= max_desync_factor;
1294 } else {
1295 idev->desync_factor = 0;
1296 }
1297 }
1298
1299 tmp_valid_lft = min_t(__u32,
1300 ifp->valid_lft,
1301 idev->cnf.temp_valid_lft + age);
Jiri Bohac7aa8e632016-10-20 12:29:26 +02001302 tmp_prefered_lft = cnf_temp_preferred_lft + age -
Jiri Bohac76506a92016-10-13 18:52:15 +02001303 idev->desync_factor;
Jiri Bohac76506a92016-10-13 18:52:15 +02001304 tmp_prefered_lft = min_t(__u32, ifp->prefered_lft, tmp_prefered_lft);
1305 tmp_plen = ifp->prefix_len;
1306 tmp_tstamp = ifp->tstamp;
1307 spin_unlock_bh(&ifp->lock);
1308
Jiri Pirko53bd6742013-12-06 09:45:22 +01001309 write_unlock_bh(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001310
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001311 /* A temporary address is created only if this calculated Preferred
1312 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1313 * an implementation must not create a temporary address with a zero
1314 * Preferred Lifetime.
Heiner Kallweitecab6702014-03-12 22:13:19 +01001315 * Use age calculation as in addrconf_verify to avoid unnecessary
1316 * temporary addresses being generated.
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001317 */
Heiner Kallweitecab6702014-03-12 22:13:19 +01001318 age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
1319 if (tmp_prefered_lft <= regen_advance + age) {
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001320 in6_ifa_put(ifp);
1321 in6_dev_put(idev);
1322 ret = -1;
1323 goto out;
1324 }
1325
Neil Horman95c385b2007-04-25 17:08:10 -07001326 addr_flags = IFA_F_TEMPORARY;
1327 /* set in addrconf_prefix_rcv() */
1328 if (ifp->flags & IFA_F_OPTIMISTIC)
1329 addr_flags |= IFA_F_OPTIMISTIC;
1330
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001331 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1332 ipv6_addr_scope(&addr), addr_flags,
1333 tmp_valid_lft, tmp_prefered_lft);
1334 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 in6_ifa_put(ifp);
1336 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001337 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 tmpaddr = &addr;
Jiri Pirko53bd6742013-12-06 09:45:22 +01001339 write_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 goto retry;
1341 }
1342
1343 spin_lock_bh(&ift->lock);
1344 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001345 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 ift->tstamp = tmp_tstamp;
1347 spin_unlock_bh(&ift->lock);
1348
David S. Millercf22f9a2012-04-14 21:37:40 -04001349 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 in6_ifa_put(ift);
1351 in6_dev_put(idev);
1352out:
1353 return ret;
1354}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356/*
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001357 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001359enum {
1360 IPV6_SADDR_RULE_INIT = 0,
1361 IPV6_SADDR_RULE_LOCAL,
1362 IPV6_SADDR_RULE_SCOPE,
1363 IPV6_SADDR_RULE_PREFERRED,
1364#ifdef CONFIG_IPV6_MIP6
1365 IPV6_SADDR_RULE_HOA,
1366#endif
1367 IPV6_SADDR_RULE_OIF,
1368 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001369 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001370 IPV6_SADDR_RULE_ORCHID,
1371 IPV6_SADDR_RULE_PREFIX,
Erik Kline7fd25612014-10-28 18:11:14 +09001372#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1373 IPV6_SADDR_RULE_NOT_OPTIMISTIC,
1374#endif
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001375 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001376};
1377
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001378struct ipv6_saddr_score {
1379 int rule;
1380 int addr_type;
1381 struct inet6_ifaddr *ifa;
1382 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1383 int scopedist;
1384 int matchlen;
1385};
1386
1387struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001388 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001389 int ifindex;
1390 int scope;
1391 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001392 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001393};
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001394
Dave Jonesb6f99a22007-03-22 12:27:49 -07001395static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001397 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001398 return 1;
1399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Erik Kline7fd25612014-10-28 18:11:14 +09001402static inline bool ipv6_use_optimistic_addr(struct inet6_dev *idev)
1403{
1404#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1405 return idev && idev->cnf.optimistic_dad && idev->cnf.use_optimistic;
1406#else
1407 return false;
1408#endif
1409}
1410
Benjamin Thery3de23252008-05-28 14:51:24 +02001411static int ipv6_get_saddr_eval(struct net *net,
1412 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001413 struct ipv6_saddr_dst *dst,
1414 int i)
1415{
1416 int ret;
1417
1418 if (i <= score->rule) {
1419 switch (i) {
1420 case IPV6_SADDR_RULE_SCOPE:
1421 ret = score->scopedist;
1422 break;
1423 case IPV6_SADDR_RULE_PREFIX:
1424 ret = score->matchlen;
1425 break;
1426 default:
1427 ret = !!test_bit(i, score->scorebits);
1428 }
1429 goto out;
1430 }
1431
1432 switch (i) {
1433 case IPV6_SADDR_RULE_INIT:
1434 /* Rule 0: remember if hiscore is not ready yet */
1435 ret = !!score->ifa;
1436 break;
1437 case IPV6_SADDR_RULE_LOCAL:
1438 /* Rule 1: Prefer same address */
1439 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1440 break;
1441 case IPV6_SADDR_RULE_SCOPE:
1442 /* Rule 2: Prefer appropriate scope
1443 *
1444 * ret
1445 * ^
1446 * -1 | d 15
1447 * ---+--+-+---> scope
1448 * |
1449 * | d is scope of the destination.
1450 * B-d | \
1451 * | \ <- smaller scope is better if
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08001452 * B-15 | \ if scope is enough for destination.
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001453 * | ret = B - scope (-1 <= scope >= d <= 15).
1454 * d-C-1 | /
1455 * |/ <- greater is better
1456 * -C / if scope is not enough for destination.
1457 * /| ret = scope - C (-1 <= d < scope <= 15).
1458 *
1459 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1460 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1461 * Assume B = 0 and we get C > 29.
1462 */
1463 ret = __ipv6_addr_src_scope(score->addr_type);
1464 if (ret >= dst->scope)
1465 ret = -ret;
1466 else
1467 ret -= 128; /* 30 is enough */
1468 score->scopedist = ret;
1469 break;
1470 case IPV6_SADDR_RULE_PREFERRED:
Erik Kline7fd25612014-10-28 18:11:14 +09001471 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001472 /* Rule 3: Avoid deprecated and optimistic addresses */
Erik Kline7fd25612014-10-28 18:11:14 +09001473 u8 avoid = IFA_F_DEPRECATED;
1474
1475 if (!ipv6_use_optimistic_addr(score->ifa->idev))
1476 avoid |= IFA_F_OPTIMISTIC;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001477 ret = ipv6_saddr_preferred(score->addr_type) ||
Erik Kline7fd25612014-10-28 18:11:14 +09001478 !(score->ifa->flags & avoid);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001479 break;
Erik Kline7fd25612014-10-28 18:11:14 +09001480 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001481#ifdef CONFIG_IPV6_MIP6
1482 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001483 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001484 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001485 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1486 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001487 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001488 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001489#endif
1490 case IPV6_SADDR_RULE_OIF:
1491 /* Rule 5: Prefer outgoing interface */
1492 ret = (!dst->ifindex ||
1493 dst->ifindex == score->ifa->idev->dev->ifindex);
1494 break;
1495 case IPV6_SADDR_RULE_LABEL:
1496 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001497 ret = ipv6_addr_label(net,
1498 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001499 score->ifa->idev->dev->ifindex) == dst->label;
1500 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001501 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001502 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001503 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001504 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001505 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001506 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1507 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1508 score->ifa->idev->cnf.use_tempaddr >= 2;
1509 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001510 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001511 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001512 case IPV6_SADDR_RULE_ORCHID:
1513 /* Rule 8-: Prefer ORCHID vs ORCHID or
1514 * non-ORCHID vs non-ORCHID
1515 */
1516 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1517 ipv6_addr_orchid(dst->addr));
1518 break;
1519 case IPV6_SADDR_RULE_PREFIX:
1520 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001521 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1522 if (ret > score->ifa->prefix_len)
1523 ret = score->ifa->prefix_len;
1524 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001525 break;
Erik Kline7fd25612014-10-28 18:11:14 +09001526#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1527 case IPV6_SADDR_RULE_NOT_OPTIMISTIC:
1528 /* Optimistic addresses still have lower precedence than other
1529 * preferred addresses.
1530 */
1531 ret = !(score->ifa->flags & IFA_F_OPTIMISTIC);
1532 break;
1533#endif
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001534 default:
1535 ret = 0;
1536 }
1537
1538 if (ret)
1539 __set_bit(i, score->scorebits);
1540 score->rule = i;
1541out:
1542 return ret;
1543}
1544
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001545static int __ipv6_dev_get_saddr(struct net *net,
1546 struct ipv6_saddr_dst *dst,
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001547 struct inet6_dev *idev,
1548 struct ipv6_saddr_score *scores,
1549 int hiscore_idx)
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001550{
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001551 struct ipv6_saddr_score *score = &scores[1 - hiscore_idx], *hiscore = &scores[hiscore_idx];
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001552
1553 read_lock_bh(&idev->lock);
1554 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
1555 int i;
1556
1557 /*
1558 * - Tentative Address (RFC2462 section 5.4)
1559 * - A tentative address is not considered
1560 * "assigned to an interface" in the traditional
1561 * sense, unless it is also flagged as optimistic.
1562 * - Candidate Source Address (section 4)
1563 * - In any case, anycast addresses, multicast
1564 * addresses, and the unspecified address MUST
1565 * NOT be included in a candidate set.
1566 */
1567 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1568 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
1569 continue;
1570
1571 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1572
1573 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1574 score->addr_type & IPV6_ADDR_MULTICAST)) {
1575 net_dbg_ratelimited("ADDRCONF: unspecified / multicast address assigned as unicast address on %s",
1576 idev->dev->name);
1577 continue;
1578 }
1579
1580 score->rule = -1;
1581 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
1582
1583 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1584 int minihiscore, miniscore;
1585
1586 minihiscore = ipv6_get_saddr_eval(net, hiscore, dst, i);
1587 miniscore = ipv6_get_saddr_eval(net, score, dst, i);
1588
1589 if (minihiscore > miniscore) {
1590 if (i == IPV6_SADDR_RULE_SCOPE &&
1591 score->scopedist > 0) {
1592 /*
1593 * special case:
1594 * each remaining entry
1595 * has too small (not enough)
1596 * scope, because ifa entries
1597 * are sorted by their scope
1598 * values.
1599 */
1600 goto out;
1601 }
1602 break;
1603 } else if (minihiscore < miniscore) {
1604 if (hiscore->ifa)
1605 in6_ifa_put(hiscore->ifa);
1606
1607 in6_ifa_hold(score->ifa);
1608
1609 swap(hiscore, score);
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001610 hiscore_idx = 1 - hiscore_idx;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001611
1612 /* restore our iterator */
1613 score->ifa = hiscore->ifa;
1614
1615 break;
1616 }
1617 }
1618 }
1619out:
1620 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001621 return hiscore_idx;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001622}
1623
David Ahernafbac6012016-06-16 16:24:26 -07001624static int ipv6_get_saddr_master(struct net *net,
1625 const struct net_device *dst_dev,
1626 const struct net_device *master,
1627 struct ipv6_saddr_dst *dst,
1628 struct ipv6_saddr_score *scores,
1629 int hiscore_idx)
1630{
1631 struct inet6_dev *idev;
1632
1633 idev = __in6_dev_get(dst_dev);
1634 if (idev)
1635 hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev,
1636 scores, hiscore_idx);
1637
1638 idev = __in6_dev_get(master);
1639 if (idev)
1640 hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev,
1641 scores, hiscore_idx);
1642
1643 return hiscore_idx;
1644}
1645
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001646int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001647 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001648 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001650 struct ipv6_saddr_score scores[2], *hiscore;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001651 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001652 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001653 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001654 int dst_type;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001655 bool use_oif_addr = false;
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001656 int hiscore_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001658 dst_type = __ipv6_addr_type(daddr);
1659 dst.addr = daddr;
1660 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1661 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001662 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001663 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001664
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001665 scores[hiscore_idx].rule = -1;
1666 scores[hiscore_idx].ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001668 rcu_read_lock();
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001669
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001670 /* Candidate Source Address (section 4)
1671 * - multicast and link-local destination address,
1672 * the set of candidate source address MUST only
1673 * include addresses assigned to interfaces
1674 * belonging to the same link as the outgoing
1675 * interface.
1676 * (- For site-local destination addresses, the
1677 * set of candidate source addresses MUST only
1678 * include addresses assigned to interfaces
1679 * belonging to the same site as the outgoing
1680 * interface.)
Erik Kline3985e8a2015-07-22 16:38:25 +09001681 * - "It is RECOMMENDED that the candidate source addresses
1682 * be the set of unicast addresses assigned to the
1683 * interface that will be used to send to the destination
1684 * (the 'outgoing' interface)." (RFC 6724)
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001685 */
1686 if (dst_dev) {
Erik Kline3985e8a2015-07-22 16:38:25 +09001687 idev = __in6_dev_get(dst_dev);
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001688 if ((dst_type & IPV6_ADDR_MULTICAST) ||
Erik Kline3985e8a2015-07-22 16:38:25 +09001689 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL ||
1690 (idev && idev->cnf.use_oif_addrs_only)) {
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001691 use_oif_addr = true;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001692 }
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001693 }
1694
1695 if (use_oif_addr) {
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001696 if (idev)
YOSHIFUJI Hideakic15df302015-07-16 16:51:30 +09001697 hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx);
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001698 } else {
David Ahernafbac6012016-06-16 16:24:26 -07001699 const struct net_device *master;
1700 int master_idx = 0;
1701
1702 /* if dst_dev exists and is enslaved to an L3 device, then
1703 * prefer addresses from dst_dev and then the master over
1704 * any other enslaved devices in the L3 domain.
1705 */
1706 master = l3mdev_master_dev_rcu(dst_dev);
1707 if (master) {
1708 master_idx = master->ifindex;
1709
1710 hiscore_idx = ipv6_get_saddr_master(net, dst_dev,
1711 master, &dst,
1712 scores, hiscore_idx);
1713
1714 if (scores[hiscore_idx].ifa)
1715 goto out;
1716 }
1717
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001718 for_each_netdev_rcu(net, dev) {
David Ahernafbac6012016-06-16 16:24:26 -07001719 /* only consider addresses on devices in the
1720 * same L3 domain
1721 */
1722 if (l3mdev_master_ifindex_rcu(dev) != master_idx)
1723 continue;
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001724 idev = __in6_dev_get(dev);
1725 if (!idev)
1726 continue;
YOSHIFUJI Hideakic15df302015-07-16 16:51:30 +09001727 hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx);
YOSHIFUJI Hideaki/吉藤英明9131f3d2015-07-10 16:58:31 +09001728 }
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001729 }
David Ahernafbac6012016-06-16 16:24:26 -07001730
1731out:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001732 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
YOSHIFUJI Hideaki/吉藤英明c0b8da12015-07-13 23:28:10 +09001734 hiscore = &scores[hiscore_idx];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001735 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001736 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001737
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001738 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001739 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001742EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Amerigo Wang89657792013-06-29 21:30:49 +08001744int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001745 u32 banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001746{
1747 struct inet6_ifaddr *ifp;
1748 int err = -EADDRNOTAVAIL;
1749
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01001750 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
1751 if (ifp->scope > IFA_LINK)
1752 break;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001753 if (ifp->scope == IFA_LINK &&
1754 !(ifp->flags & banned_flags)) {
1755 *addr = ifp->addr;
1756 err = 0;
1757 break;
1758 }
1759 }
1760 return err;
1761}
1762
Neil Horman95c385b2007-04-25 17:08:10 -07001763int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
Jiri Pirko479840f2013-12-06 09:45:21 +01001764 u32 banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 struct inet6_dev *idev;
1767 int err = -EADDRNOTAVAIL;
1768
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001769 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001770 idev = __in6_dev_get(dev);
1771 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001773 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 read_unlock_bh(&idev->lock);
1775 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001776 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return err;
1778}
1779
1780static int ipv6_count_addresses(struct inet6_dev *idev)
1781{
1782 int cnt = 0;
1783 struct inet6_ifaddr *ifp;
1784
1785 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001786 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 cnt++;
1788 read_unlock_bh(&idev->lock);
1789 return cnt;
1790}
1791
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001792int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001793 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Erik Klinec58da4c2015-02-04 20:01:23 +09001795 return ipv6_chk_addr_and_flags(net, addr, dev, strict, IFA_F_TENTATIVE);
1796}
1797EXPORT_SYMBOL(ipv6_chk_addr);
1798
1799int ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr,
1800 const struct net_device *dev, int strict,
1801 u32 banned_flags)
1802{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001803 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001804 unsigned int hash = inet6_addr_hash(addr);
Erik Klinec58da4c2015-02-04 20:01:23 +09001805 u32 ifp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
stephen hemminger5c578aed2010-03-17 20:31:11 +00001807 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001808 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001809 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001810 continue;
Erik Klinec58da4c2015-02-04 20:01:23 +09001811 /* Decouple optimistic from tentative for evaluation here.
1812 * Ban optimistic addresses explicitly, when required.
1813 */
1814 ifp_flags = (ifp->flags&IFA_F_OPTIMISTIC)
1815 ? (ifp->flags&~IFA_F_TENTATIVE)
1816 : ifp->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (ipv6_addr_equal(&ifp->addr, addr) &&
Erik Klinec58da4c2015-02-04 20:01:23 +09001818 !(ifp_flags&banned_flags) &&
Ian Morris63159f22015-03-29 14:00:04 +01001819 (!dev || ifp->idev->dev == dev ||
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001820 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1821 rcu_read_unlock_bh();
1822 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001825
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001826 rcu_read_unlock_bh();
1827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
Erik Klinec58da4c2015-02-04 20:01:23 +09001829EXPORT_SYMBOL(ipv6_chk_addr_and_flags);
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001830
David S. Miller3e81c6d2010-03-20 16:18:00 -07001831static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1832 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001834 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001835 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Sasha Levinb67bfe02013-02-27 17:06:00 -08001837 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001838 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001839 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (ipv6_addr_equal(&ifp->addr, addr)) {
Ian Morris63159f22015-03-29 14:00:04 +01001841 if (!dev || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001842 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001845 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001848/* Compares an address/prefix_len with addresses on device @dev.
1849 * If one is found it returns true.
1850 */
1851bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1852 const unsigned int prefix_len, struct net_device *dev)
1853{
1854 struct inet6_dev *idev;
1855 struct inet6_ifaddr *ifa;
1856 bool ret = false;
1857
1858 rcu_read_lock();
1859 idev = __in6_dev_get(dev);
1860 if (idev) {
1861 read_lock_bh(&idev->lock);
1862 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1863 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1864 if (ret)
1865 break;
1866 }
1867 read_unlock_bh(&idev->lock);
1868 }
1869 rcu_read_unlock();
1870
1871 return ret;
1872}
1873EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1874
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001875int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001876{
1877 struct inet6_dev *idev;
1878 struct inet6_ifaddr *ifa;
1879 int onlink;
1880
1881 onlink = 0;
1882 rcu_read_lock();
1883 idev = __in6_dev_get(dev);
1884 if (idev) {
1885 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001886 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001887 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1888 ifa->prefix_len);
1889 if (onlink)
1890 break;
1891 }
1892 read_unlock_bh(&idev->lock);
1893 }
1894 rcu_read_unlock();
1895 return onlink;
1896}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001897EXPORT_SYMBOL(ipv6_chk_prefix);
1898
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001899struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001900 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
David S. Millerb79d1d52010-03-25 21:39:21 -07001902 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001903 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
stephen hemminger5c578aed2010-03-17 20:31:11 +00001905 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001906 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001907 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001908 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 if (ipv6_addr_equal(&ifp->addr, addr)) {
Ian Morris63159f22015-03-29 14:00:04 +01001910 if (!dev || ifp->idev->dev == dev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001912 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 in6_ifa_hold(ifp);
1914 break;
1915 }
1916 }
1917 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001918 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
David S. Millerb79d1d52010-03-25 21:39:21 -07001920 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923/* Gets referenced address, destroys ifaddr */
1924
Brian Haleycc411d02009-09-09 14:41:32 +00001925static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Lubomir Rintel3d171f32016-01-08 13:47:23 +01001927 if (dad_failed)
1928 ifp->flags |= IFA_F_DADFAILED;
1929
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02001930 if (ifp->flags&IFA_F_TEMPORARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 struct inet6_ifaddr *ifpub;
1932 spin_lock_bh(&ifp->lock);
1933 ifpub = ifp->ifpub;
1934 if (ifpub) {
1935 in6_ifa_hold(ifpub);
1936 spin_unlock_bh(&ifp->lock);
1937 ipv6_create_tempaddr(ifpub, ifp);
1938 in6_ifa_put(ifpub);
1939 } else {
1940 spin_unlock_bh(&ifp->lock);
1941 }
1942 ipv6_del_addr(ifp);
Sabrina Dubrocaec8add22017-06-29 16:56:54 +02001943 } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) {
1944 spin_lock_bh(&ifp->lock);
1945 addrconf_del_dad_work(ifp);
1946 ifp->flags |= IFA_F_TENTATIVE;
1947 spin_unlock_bh(&ifp->lock);
1948 if (dad_failed)
1949 ipv6_ifa_notify(0, ifp);
1950 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001951 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 ipv6_del_addr(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01001953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
Herbert Xuf2344a12010-05-18 15:55:27 -07001956static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1957{
1958 int err = -ENOENT;
1959
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001960 spin_lock_bh(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07001961 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1962 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1963 err = 0;
1964 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01001965 spin_unlock_bh(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07001966
1967 return err;
1968}
1969
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001970void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1971{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001972 struct inet6_dev *idev = ifp->idev;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01001973 struct net *net = dev_net(ifp->idev->dev);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001974
Ursula Braun853dc2e2010-10-24 23:06:43 +00001975 if (addrconf_dad_end(ifp)) {
1976 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001977 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001978 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001979
Joe Perchese87cc472012-05-13 21:56:26 +00001980 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1981 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001982
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01001983 spin_lock_bh(&ifp->lock);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001984
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01001985 if (ifp->flags & IFA_F_STABLE_PRIVACY) {
1986 int scope = ifp->scope;
1987 u32 flags = ifp->flags;
1988 struct in6_addr new_addr;
1989 struct inet6_ifaddr *ifp2;
1990 u32 valid_lft, preferred_lft;
1991 int pfxlen = ifp->prefix_len;
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01001992 int retries = ifp->stable_privacy_retry + 1;
1993
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01001994 if (retries > net->ipv6.sysctl.idgen_retries) {
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01001995 net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n",
1996 ifp->idev->dev->name);
1997 goto errdad;
1998 }
1999
2000 new_addr = ifp->addr;
2001 if (ipv6_generate_stable_address(&new_addr, retries,
2002 idev))
2003 goto errdad;
2004
2005 valid_lft = ifp->valid_lft;
2006 preferred_lft = ifp->prefered_lft;
2007
2008 spin_unlock_bh(&ifp->lock);
2009
2010 if (idev->cnf.max_addresses &&
2011 ipv6_count_addresses(idev) >=
2012 idev->cnf.max_addresses)
2013 goto lock_errdad;
2014
2015 net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n",
2016 ifp->idev->dev->name);
2017
2018 ifp2 = ipv6_add_addr(idev, &new_addr, NULL, pfxlen,
2019 scope, flags, valid_lft,
2020 preferred_lft);
2021 if (IS_ERR(ifp2))
2022 goto lock_errdad;
2023
2024 spin_lock_bh(&ifp2->lock);
2025 ifp2->stable_privacy_retry = retries;
2026 ifp2->state = INET6_IFADDR_STATE_PREDAD;
2027 spin_unlock_bh(&ifp2->lock);
2028
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01002029 addrconf_mod_dad_work(ifp2, net->ipv6.sysctl.idgen_delay);
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002030 in6_ifa_put(ifp2);
2031lock_errdad:
2032 spin_lock_bh(&ifp->lock);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002033 }
2034
Hannes Frederic Sowa5f40ef72015-03-23 23:36:04 +01002035errdad:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002036 /* transition from _POSTDAD to _ERRDAD */
2037 ifp->state = INET6_IFADDR_STATE_ERRDAD;
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01002038 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002039
2040 addrconf_mod_dad_work(ifp, 0);
Wei Yongjun751eb6b2016-09-05 16:06:31 +08002041 in6_ifa_put(ifp);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002044/* Join to solicited addr multicast group.
2045 * caller must hold RTNL */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002046void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
2048 struct in6_addr maddr;
2049
2050 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2051 return;
2052
2053 addrconf_addr_solict_mult(addr, &maddr);
2054 ipv6_dev_mc_inc(dev, &maddr);
2055}
2056
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002057/* caller must hold RTNL */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002058void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 struct in6_addr maddr;
2061
2062 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
2063 return;
2064
2065 addrconf_addr_solict_mult(addr, &maddr);
2066 __ipv6_dev_mc_dec(idev, &maddr);
2067}
2068
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002069/* caller must hold RTNL */
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002070static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
2072 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002073
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01002074 if (ifp->prefix_len >= 127) /* RFC 6164 */
Bjørn Mork2bda8a02011-07-05 23:04:13 +00002075 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2077 if (ipv6_addr_any(&addr))
2078 return;
WANG Cong013b4d92014-09-11 15:35:11 -07002079 __ipv6_dev_ac_inc(ifp->idev, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +02002082/* caller must hold RTNL */
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002083static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 struct in6_addr addr;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002086
Hannes Frederic Sowa88ad3142014-01-06 17:53:14 +01002087 if (ifp->prefix_len >= 127) /* RFC 6164 */
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00002088 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
2090 if (ipv6_addr_any(&addr))
2091 return;
2092 __ipv6_dev_ac_dec(ifp->idev, &addr);
2093}
2094
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002095static int addrconf_ifid_6lowpan(u8 *eui, struct net_device *dev)
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002096{
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002097 switch (dev->addr_len) {
2098 case ETH_ALEN:
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +02002099 memcpy(eui, dev->dev_addr, 3);
2100 eui[3] = 0xFF;
2101 eui[4] = 0xFE;
2102 memcpy(eui + 5, dev->dev_addr + 3, 3);
2103 break;
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002104 case EUI64_ADDR_LEN:
2105 memcpy(eui, dev->dev_addr, EUI64_ADDR_LEN);
2106 eui[0] ^= 2;
2107 break;
2108 default:
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002109 return -1;
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002110 }
2111
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002112 return 0;
2113}
2114
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002115static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
2116{
2117 union fwnet_hwaddr *ha;
2118
2119 if (dev->addr_len != FWNET_ALEN)
2120 return -1;
2121
2122 ha = (union fwnet_hwaddr *)dev->dev_addr;
2123
2124 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
2125 eui[0] ^= 2;
2126 return 0;
2127}
2128
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002129static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
2130{
2131 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
2132 if (dev->addr_len != ARCNET_ALEN)
2133 return -1;
2134 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002135 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002136 return 0;
2137}
2138
2139static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
2140{
2141 if (dev->addr_len != INFINIBAND_ALEN)
2142 return -1;
2143 memcpy(eui, dev->dev_addr + 12, 8);
2144 eui[0] |= 2;
2145 return 0;
2146}
2147
stephen hemmingerc61393e2010-10-04 20:17:53 +00002148static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002149{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00002150 if (addr == 0)
2151 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002152 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
2153 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
2154 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
2155 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
2156 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
2157 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
2158 eui[1] = 0;
2159 eui[2] = 0x5E;
2160 eui[3] = 0xFE;
2161 memcpy(eui + 4, &addr, 4);
2162 return 0;
2163}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002164
2165static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
2166{
2167 if (dev->priv_flags & IFF_ISATAP)
2168 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2169 return -1;
2170}
2171
stephen hemmingeraee80b52011-06-08 10:44:30 +00002172static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
2173{
2174 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
2175}
2176
Nicolas Dichtele8377352013-08-20 12:16:06 +02002177static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
2178{
2179 memcpy(eui, dev->perm_addr, 3);
2180 memcpy(eui + 5, dev->perm_addr + 3, 3);
2181 eui[3] = 0xFF;
2182 eui[4] = 0xFE;
2183 eui[0] ^= 2;
2184 return 0;
2185}
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
2188{
2189 switch (dev->type) {
2190 case ARPHRD_ETHER:
2191 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002192 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002194 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08002196 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002197 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09002198 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002199 case ARPHRD_IPGRE:
Felix Jia45ce0fd2017-01-26 16:59:18 +13002200 case ARPHRD_TUNNEL:
stephen hemmingeraee80b52011-06-08 10:44:30 +00002201 return addrconf_ifid_gre(eui, dev);
Jukka Rissanene74bccb82013-12-11 17:05:36 +02002202 case ARPHRD_6LOWPAN:
Alexander Aring8a7a4b42017-03-12 10:19:36 +02002203 return addrconf_ifid_6lowpan(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002204 case ARPHRD_IEEE1394:
2205 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02002206 case ARPHRD_TUNNEL6:
Felix Jia45ce0fd2017-01-26 16:59:18 +13002207 case ARPHRD_IP6GRE:
Nicolas Dichtele8377352013-08-20 12:16:06 +02002208 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210 return -1;
2211}
2212
2213static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
2214{
2215 int err = -1;
2216 struct inet6_ifaddr *ifp;
2217
2218 read_lock_bh(&idev->lock);
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01002219 list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) {
2220 if (ifp->scope > IFA_LINK)
2221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
2223 memcpy(eui, ifp->addr.s6_addr+8, 8);
2224 err = 0;
2225 break;
2226 }
2227 }
2228 read_unlock_bh(&idev->lock);
2229 return err;
2230}
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Jiri Bohac9d6280d2016-10-13 18:50:02 +02002233static void ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08002236 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239 /*
2240 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
2241 * check if generated address is not inappropriate
2242 *
2243 * - Reserved subnet anycast (RFC 2526)
2244 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002245 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 * 00-00-5E-FE-xx-xx-xx-xx
2247 * - value 0
2248 * - XXX: already assigned to an address on the device
2249 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002250 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
2252 (idev->rndid[7]&0x80))
2253 goto regen;
2254 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
2255 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
2256 goto regen;
2257 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
2258 goto regen;
2259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
2261
Jiri Bohac9d6280d2016-10-13 18:50:02 +02002262static void ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002263{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Jiri Bohac9d6280d2016-10-13 18:50:02 +02002265 ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268/*
2269 * Add prefix route.
2270 */
2271
2272static void
2273addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07002274 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
Thomas Graf86872cb2006-08-22 00:01:08 -07002276 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002277 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX,
Thomas Graf86872cb2006-08-22 00:01:08 -07002278 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2279 .fc_ifindex = dev->ifindex,
2280 .fc_expires = expires,
2281 .fc_dst_len = plen,
2282 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002283 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07002284 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07002285 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002287 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 /* Prevent useless cloning on PtP SIT.
2290 This thing is done here expecting that the whole
2291 class of non-broadcast devices need not cloning.
2292 */
Amerigo Wang07a93622012-10-29 16:23:10 +00002293#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07002294 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
2295 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002296#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
David Ahern333c4302017-05-21 10:12:04 -06002298 ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299}
2300
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002301
2302static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
2303 int plen,
2304 const struct net_device *dev,
2305 u32 flags, u32 noflags)
2306{
2307 struct fib6_node *fn;
2308 struct rt6_info *rt = NULL;
2309 struct fib6_table *table;
David Ahernca254492015-10-12 11:47:10 -07002310 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002311
David Ahernca254492015-10-12 11:47:10 -07002312 table = fib6_get_table(dev_net(dev), tb_id);
Ian Morris63159f22015-03-29 14:00:04 +01002313 if (!table)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002314 return NULL;
2315
Li RongQing5744dd92012-09-11 21:59:01 +00002316 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002317 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
2318 if (!fn)
2319 goto out;
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002320
2321 noflags |= RTF_CACHE;
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002322 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002323 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002324 continue;
2325 if ((rt->rt6i_flags & flags) != flags)
2326 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01002327 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002328 continue;
2329 dst_hold(&rt->dst);
2330 break;
2331 }
2332out:
Li RongQing5744dd92012-09-11 21:59:01 +00002333 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002334 return rt;
2335}
2336
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338/* Create "default" multicast route to the interface */
2339
2340static void addrconf_add_mroute(struct net_device *dev)
2341{
Thomas Graf86872cb2006-08-22 00:01:08 -07002342 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002343 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_LOCAL,
Thomas Graf86872cb2006-08-22 00:01:08 -07002344 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2345 .fc_ifindex = dev->ifindex,
2346 .fc_dst_len = 8,
2347 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002348 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002349 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Thomas Graf86872cb2006-08-22 00:01:08 -07002351 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2352
David Ahern333c4302017-05-21 10:12:04 -06002353 ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2357{
2358 struct inet6_dev *idev;
2359
2360 ASSERT_RTNL();
2361
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002362 idev = ipv6_find_idev(dev);
2363 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002364 return ERR_PTR(-ENOBUFS);
2365
2366 if (idev->cnf.disable_ipv6)
2367 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 /* Add default multicast route */
David Ahernba46ee42016-06-13 13:44:18 -07002370 if (!(dev->flags & IFF_LOOPBACK) && !netif_is_l3_master(dev))
Li Wei4af04ab2011-12-06 21:23:45 +00002371 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 return idev;
2374}
2375
Jiri Pirko53bd6742013-12-06 09:45:22 +01002376static void manage_tempaddrs(struct inet6_dev *idev,
2377 struct inet6_ifaddr *ifp,
2378 __u32 valid_lft, __u32 prefered_lft,
2379 bool create, unsigned long now)
2380{
2381 u32 flags;
2382 struct inet6_ifaddr *ift;
2383
2384 read_lock_bh(&idev->lock);
2385 /* update all temporary addresses in the list */
2386 list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) {
2387 int age, max_valid, max_prefered;
2388
2389 if (ifp != ift->ifpub)
2390 continue;
2391
2392 /* RFC 4941 section 3.3:
2393 * If a received option will extend the lifetime of a public
2394 * address, the lifetimes of temporary addresses should
2395 * be extended, subject to the overall constraint that no
2396 * temporary addresses should ever remain "valid" or "preferred"
2397 * for a time longer than (TEMP_VALID_LIFETIME) or
2398 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively.
2399 */
2400 age = (now - ift->cstamp) / HZ;
2401 max_valid = idev->cnf.temp_valid_lft - age;
2402 if (max_valid < 0)
2403 max_valid = 0;
2404
2405 max_prefered = idev->cnf.temp_prefered_lft -
Jiri Bohac76506a92016-10-13 18:52:15 +02002406 idev->desync_factor - age;
Jiri Pirko53bd6742013-12-06 09:45:22 +01002407 if (max_prefered < 0)
2408 max_prefered = 0;
2409
2410 if (valid_lft > max_valid)
2411 valid_lft = max_valid;
2412
2413 if (prefered_lft > max_prefered)
2414 prefered_lft = max_prefered;
2415
2416 spin_lock(&ift->lock);
2417 flags = ift->flags;
2418 ift->valid_lft = valid_lft;
2419 ift->prefered_lft = prefered_lft;
2420 ift->tstamp = now;
2421 if (prefered_lft > 0)
2422 ift->flags &= ~IFA_F_DEPRECATED;
2423
2424 spin_unlock(&ift->lock);
2425 if (!(flags&IFA_F_TENTATIVE))
2426 ipv6_ifa_notify(0, ift);
2427 }
2428
2429 if ((create || list_empty(&idev->tempaddr_list)) &&
2430 idev->cnf.use_tempaddr > 0) {
2431 /* When a new public address is created as described
2432 * in [ADDRCONF], also create a new temporary address.
2433 * Also create a temporary address if it's enabled but
2434 * no temporary address currently exists.
2435 */
2436 read_unlock_bh(&idev->lock);
2437 ipv6_create_tempaddr(ifp, NULL);
2438 } else {
2439 read_unlock_bh(&idev->lock);
2440 }
2441}
2442
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002443static bool is_addr_mode_generate_stable(struct inet6_dev *idev)
2444{
Felix Jiad35a00b2017-01-26 16:59:17 +13002445 return idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY ||
2446 idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_RANDOM;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002447}
2448
Alexander Aringcc84b3c2016-06-15 21:20:24 +02002449int addrconf_prefix_rcv_add_addr(struct net *net, struct net_device *dev,
2450 const struct prefix_info *pinfo,
2451 struct inet6_dev *in6_dev,
2452 const struct in6_addr *addr, int addr_type,
2453 u32 addr_flags, bool sllao, bool tokenized,
2454 __u32 valid_lft, u32 prefered_lft)
Alexander Aring4f672232016-06-15 21:20:22 +02002455{
2456 struct inet6_ifaddr *ifp = ipv6_get_ifaddr(net, addr, dev, 1);
2457 int create = 0, update_lft = 0;
2458
2459 if (!ifp && valid_lft) {
2460 int max_addresses = in6_dev->cnf.max_addresses;
2461
2462#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2463 if (in6_dev->cnf.optimistic_dad &&
2464 !net->ipv6.devconf_all->forwarding && sllao)
2465 addr_flags |= IFA_F_OPTIMISTIC;
2466#endif
2467
2468 /* Do not allow to create too much of autoconfigured
2469 * addresses; this would be too easy way to crash kernel.
2470 */
2471 if (!max_addresses ||
2472 ipv6_count_addresses(in6_dev) < max_addresses)
2473 ifp = ipv6_add_addr(in6_dev, addr, NULL,
2474 pinfo->prefix_len,
2475 addr_type&IPV6_ADDR_SCOPE_MASK,
2476 addr_flags, valid_lft,
2477 prefered_lft);
2478
2479 if (IS_ERR_OR_NULL(ifp))
2480 return -1;
2481
2482 update_lft = 0;
2483 create = 1;
2484 spin_lock_bh(&ifp->lock);
2485 ifp->flags |= IFA_F_MANAGETEMPADDR;
2486 ifp->cstamp = jiffies;
2487 ifp->tokenized = tokenized;
2488 spin_unlock_bh(&ifp->lock);
2489 addrconf_dad_start(ifp);
2490 }
2491
2492 if (ifp) {
2493 u32 flags;
2494 unsigned long now;
2495 u32 stored_lft;
2496
2497 /* update lifetime (RFC2462 5.5.3 e) */
2498 spin_lock_bh(&ifp->lock);
2499 now = jiffies;
2500 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2501 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2502 else
2503 stored_lft = 0;
2504 if (!update_lft && !create && stored_lft) {
2505 const u32 minimum_lft = min_t(u32,
2506 stored_lft, MIN_VALID_LIFETIME);
2507 valid_lft = max(valid_lft, minimum_lft);
2508
2509 /* RFC4862 Section 5.5.3e:
2510 * "Note that the preferred lifetime of the
2511 * corresponding address is always reset to
2512 * the Preferred Lifetime in the received
2513 * Prefix Information option, regardless of
2514 * whether the valid lifetime is also reset or
2515 * ignored."
2516 *
2517 * So we should always update prefered_lft here.
2518 */
2519 update_lft = 1;
2520 }
2521
2522 if (update_lft) {
2523 ifp->valid_lft = valid_lft;
2524 ifp->prefered_lft = prefered_lft;
2525 ifp->tstamp = now;
2526 flags = ifp->flags;
2527 ifp->flags &= ~IFA_F_DEPRECATED;
2528 spin_unlock_bh(&ifp->lock);
2529
2530 if (!(flags&IFA_F_TENTATIVE))
2531 ipv6_ifa_notify(0, ifp);
2532 } else
2533 spin_unlock_bh(&ifp->lock);
2534
2535 manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft,
2536 create, now);
2537
2538 in6_ifa_put(ifp);
2539 addrconf_verify();
2540 }
2541
2542 return 0;
2543}
Alexander Aringcc84b3c2016-06-15 21:20:24 +02002544EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr);
Alexander Aring4f672232016-06-15 21:20:22 +02002545
Neil Hormane6bff992012-01-04 10:49:15 +00002546void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
2548 struct prefix_info *pinfo;
2549 __u32 valid_lft;
2550 __u32 prefered_lft;
Alexander Aring4f672232016-06-15 21:20:22 +02002551 int addr_type, err;
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01002552 u32 addr_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002554 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002559 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 return;
2561 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 /*
2564 * Validation checks ([ADDRCONF], page 19)
2565 */
2566
2567 addr_type = ipv6_addr_type(&pinfo->prefix);
2568
2569 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2570 return;
2571
2572 valid_lft = ntohl(pinfo->valid);
2573 prefered_lft = ntohl(pinfo->prefered);
2574
2575 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002576 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 return;
2578 }
2579
2580 in6_dev = in6_dev_get(dev);
2581
Ian Morris63159f22015-03-29 14:00:04 +01002582 if (!in6_dev) {
Joe Perchese87cc472012-05-13 21:56:26 +00002583 net_dbg_ratelimited("addrconf: device %s not configured\n",
2584 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 return;
2586 }
2587
2588 /*
2589 * Two things going on here:
2590 * 1) Add routes for on-link prefixes
2591 * 2) Configure prefixes with the auto flag set
2592 */
2593
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002594 if (pinfo->onlink) {
2595 struct rt6_info *rt;
2596 unsigned long rt_expires;
2597
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002598 /* Avoid arithmetic overflow. Really, we could
2599 * save rt_expires in seconds, likely valid_lft,
2600 * but it would require division in fib gc, that it
2601 * not good.
2602 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002603 if (HZ > USER_HZ)
2604 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2605 else
2606 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002607
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002608 if (addrconf_finite_timeout(rt_expires))
2609 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002611 rt = addrconf_get_prefix_route(&pinfo->prefix,
2612 pinfo->prefix_len,
2613 dev,
2614 RTF_ADDRCONF | RTF_PREFIX_RT,
2615 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002617 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002618 /* Autoconf prefix route */
2619 if (valid_lft == 0) {
2620 ip6_del_rt(rt);
2621 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002622 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002623 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002624 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002625 } else {
Gao feng1716a962012-04-06 00:13:10 +00002626 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
2628 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002629 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002630 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2631 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002632 /* not infinity */
2633 flags |= RTF_EXPIRES;
2634 expires = jiffies_to_clock_t(rt_expires);
2635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002637 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002639 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 }
2641
2642 /* Try to figure out our local address for this prefix */
2643
2644 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 struct in6_addr addr;
Alexander Aringf997c552016-06-15 21:20:23 +02002646 bool tokenized = false, dev_addr_generated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
2648 if (pinfo->prefix_len == 64) {
2649 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002650
2651 if (!ipv6_addr_any(&in6_dev->token)) {
2652 read_lock_bh(&in6_dev->lock);
2653 memcpy(addr.s6_addr + 8,
2654 in6_dev->token.s6_addr + 8, 8);
2655 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002656 tokenized = true;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01002657 } else if (is_addr_mode_generate_stable(in6_dev) &&
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01002658 !ipv6_generate_stable_address(&addr, 0,
2659 in6_dev)) {
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01002660 addr_flags |= IFA_F_STABLE_PRIVACY;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01002661 goto ok;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002662 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2663 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Alexander Aring4f672232016-06-15 21:20:22 +02002664 goto put;
Alexander Aringf997c552016-06-15 21:20:23 +02002665 } else {
2666 dev_addr_generated = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
2668 goto ok;
2669 }
Joe Perchese87cc472012-05-13 21:56:26 +00002670 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2671 pinfo->prefix_len);
Alexander Aring4f672232016-06-15 21:20:22 +02002672 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
2674ok:
Alexander Aring4f672232016-06-15 21:20:22 +02002675 err = addrconf_prefix_rcv_add_addr(net, dev, pinfo, in6_dev,
2676 &addr, addr_type,
2677 addr_flags, sllao,
2678 tokenized, valid_lft,
2679 prefered_lft);
2680 if (err)
2681 goto put;
Alexander Aringf997c552016-06-15 21:20:23 +02002682
2683 /* Ignore error case here because previous prefix add addr was
2684 * successful which will be notified.
2685 */
2686 ndisc_ops_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, &addr,
2687 addr_type, addr_flags, sllao,
2688 tokenized, valid_lft,
2689 prefered_lft,
2690 dev_addr_generated);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 }
2692 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
Alexander Aring4f672232016-06-15 21:20:22 +02002693put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 in6_dev_put(in6_dev);
2695}
2696
2697/*
2698 * Set destination address.
2699 * Special case for SIT interfaces where we create a new "virtual"
2700 * device.
2701 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002702int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
2704 struct in6_ifreq ireq;
2705 struct net_device *dev;
2706 int err = -EINVAL;
2707
2708 rtnl_lock();
2709
2710 err = -EFAULT;
2711 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2712 goto err_exit;
2713
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002714 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
2716 err = -ENODEV;
Ian Morris63159f22015-03-29 14:00:04 +01002717 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 goto err_exit;
2719
Amerigo Wang07a93622012-10-29 16:23:10 +00002720#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002722 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 struct ip_tunnel_parm p;
2725
2726 err = -EADDRNOTAVAIL;
2727 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2728 goto err_exit;
2729
2730 memset(&p, 0, sizeof(p));
2731 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2732 p.iph.saddr = 0;
2733 p.iph.version = 4;
2734 p.iph.ihl = 5;
2735 p.iph.protocol = IPPROTO_IPV6;
2736 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002737 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002739 if (ops->ndo_do_ioctl) {
2740 mm_segment_t oldfs = get_fs();
2741
2742 set_fs(KERNEL_DS);
2743 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2744 set_fs(oldfs);
2745 } else
2746 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748 if (err == 0) {
2749 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002750 dev = __dev_get_by_name(net, p.name);
2751 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 goto err_exit;
2753 err = dev_open(dev);
2754 }
2755 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002756#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758err_exit:
2759 rtnl_unlock();
2760 return err;
2761}
2762
Madhu Challa93a714d2015-02-25 09:58:35 -08002763static int ipv6_mc_config(struct sock *sk, bool join,
2764 const struct in6_addr *addr, int ifindex)
2765{
2766 int ret;
2767
2768 ASSERT_RTNL();
2769
2770 lock_sock(sk);
2771 if (join)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002772 ret = ipv6_sock_mc_join(sk, ifindex, addr);
Madhu Challa93a714d2015-02-25 09:58:35 -08002773 else
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002774 ret = ipv6_sock_mc_drop(sk, ifindex, addr);
Madhu Challa93a714d2015-02-25 09:58:35 -08002775 release_sock(sk);
2776
2777 return ret;
2778}
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780/*
2781 * Manual configuration of address on an interface
2782 */
Jiri Pirko479840f2013-12-06 09:45:21 +01002783static int inet6_addr_add(struct net *net, int ifindex,
2784 const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002785 const struct in6_addr *peer_pfx,
Jiri Pirko479840f2013-12-06 09:45:21 +01002786 unsigned int plen, __u32 ifa_flags,
2787 __u32 prefered_lft, __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
2789 struct inet6_ifaddr *ifp;
2790 struct inet6_dev *idev;
2791 struct net_device *dev;
Madhu Challa93a714d2015-02-25 09:58:35 -08002792 unsigned long timeout;
2793 clock_t expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002795 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002798
Thomas Graf24ef0da2008-05-28 16:54:22 +02002799 if (plen > 128)
2800 return -EINVAL;
2801
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002802 /* check the lifetime */
2803 if (!valid_lft || prefered_lft > valid_lft)
2804 return -EINVAL;
2805
Jiri Pirko53bd6742013-12-06 09:45:22 +01002806 if (ifa_flags & IFA_F_MANAGETEMPADDR && plen != 64)
2807 return -EINVAL;
2808
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002809 dev = __dev_get_by_index(net, ifindex);
2810 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002812
Brian Haley64e724f2010-07-20 10:34:30 +00002813 idev = addrconf_add_dev(dev);
2814 if (IS_ERR(idev))
2815 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Madhu Challa93a714d2015-02-25 09:58:35 -08002817 if (ifa_flags & IFA_F_MCAUTOJOIN) {
2818 int ret = ipv6_mc_config(net->ipv6.mc_autojoin_sk,
2819 true, pfx, ifindex);
2820
2821 if (ret < 0)
2822 return ret;
2823 }
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 scope = ipv6_addr_scope(pfx);
2826
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002827 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2828 if (addrconf_finite_timeout(timeout)) {
2829 expires = jiffies_to_clock_t(timeout * HZ);
2830 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002831 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002832 } else {
2833 expires = 0;
2834 flags = 0;
2835 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002836 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002837
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002838 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2839 if (addrconf_finite_timeout(timeout)) {
2840 if (timeout == 0)
2841 ifa_flags |= IFA_F_DEPRECATED;
2842 prefered_lft = timeout;
2843 }
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002844
Jiri Benc8a226b22013-08-01 10:41:28 +02002845 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2846 valid_lft, prefered_lft);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 if (!IS_ERR(ifp)) {
Thomas Haller761aac72014-01-15 15:36:58 +01002849 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
2850 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
2851 expires, flags);
2852 }
2853
Neil Horman95c385b2007-04-25 17:08:10 -07002854 /*
2855 * Note that section 3.1 of RFC 4429 indicates
2856 * that the Optimistic flag should not be set for
2857 * manually configured addresses
2858 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002859 addrconf_dad_start(ifp);
Jiri Pirko53bd6742013-12-06 09:45:22 +01002860 if (ifa_flags & IFA_F_MANAGETEMPADDR)
2861 manage_tempaddrs(idev, ifp, valid_lft, prefered_lft,
2862 true, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01002864 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 return 0;
Madhu Challa93a714d2015-02-25 09:58:35 -08002866 } else if (ifa_flags & IFA_F_MCAUTOJOIN) {
2867 ipv6_mc_config(net->ipv6.mc_autojoin_sk,
2868 false, pfx, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
2870
2871 return PTR_ERR(ifp);
2872}
2873
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002874static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags,
2875 const struct in6_addr *pfx, unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
2877 struct inet6_ifaddr *ifp;
2878 struct inet6_dev *idev;
2879 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002880
Thomas Graf24ef0da2008-05-28 16:54:22 +02002881 if (plen > 128)
2882 return -EINVAL;
2883
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002884 dev = __dev_get_by_index(net, ifindex);
2885 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 return -ENODEV;
2887
Ian Morrise5d08d72014-11-23 21:28:43 +00002888 idev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +01002889 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 return -ENXIO;
2891
2892 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002893 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 if (ifp->prefix_len == plen &&
2895 ipv6_addr_equal(pfx, &ifp->addr)) {
2896 in6_ifa_hold(ifp);
2897 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002898
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002899 if (!(ifp->flags & IFA_F_TEMPORARY) &&
2900 (ifa_flags & IFA_F_MANAGETEMPADDR))
2901 manage_tempaddrs(idev, ifp, 0, 0, false,
2902 jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 ipv6_del_addr(ifp);
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002904 addrconf_verify_rtnl();
Madhu Challa93a714d2015-02-25 09:58:35 -08002905 if (ipv6_addr_is_multicast(pfx)) {
2906 ipv6_mc_config(net->ipv6.mc_autojoin_sk,
2907 false, pfx, dev->ifindex);
2908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 return 0;
2910 }
2911 }
2912 read_unlock_bh(&idev->lock);
2913 return -EADDRNOTAVAIL;
2914}
2915
2916
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002917int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918{
2919 struct in6_ifreq ireq;
2920 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002921
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002922 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2926 return -EFAULT;
2927
2928 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002929 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002930 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2931 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 rtnl_unlock();
2933 return err;
2934}
2935
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002936int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
2938 struct in6_ifreq ireq;
2939 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002940
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002941 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return -EPERM;
2943
2944 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2945 return -EFAULT;
2946
2947 rtnl_lock();
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02002948 err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002949 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 rtnl_unlock();
2951 return err;
2952}
2953
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002954static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2955 int plen, int scope)
2956{
2957 struct inet6_ifaddr *ifp;
2958
Jiri Benc8a226b22013-08-01 10:41:28 +02002959 ifp = ipv6_add_addr(idev, addr, NULL, plen,
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01002960 scope, IFA_F_PERMANENT,
2961 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002962 if (!IS_ERR(ifp)) {
2963 spin_lock_bh(&ifp->lock);
2964 ifp->flags &= ~IFA_F_TENTATIVE;
2965 spin_unlock_bh(&ifp->lock);
Paolo Abeni764d3be2016-11-22 16:57:40 +01002966 rt_genid_bump_ipv6(dev_net(idev->dev));
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002967 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2968 in6_ifa_put(ifp);
2969 }
2970}
2971
Amerigo Wang07a93622012-10-29 16:23:10 +00002972#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973static void sit_add_v4_addrs(struct inet6_dev *idev)
2974{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 struct in6_addr addr;
2976 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002977 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002978 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002979 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 ASSERT_RTNL();
2982
2983 memset(&addr, 0, sizeof(struct in6_addr));
2984 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2985
2986 if (idev->dev->flags&IFF_POINTOPOINT) {
2987 addr.s6_addr32[0] = htonl(0xfe800000);
2988 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002989 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 } else {
2991 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002992 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002993 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 }
2995
2996 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002997 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002998 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 return;
3000 }
3001
Benjamin Thery6fda7352008-03-05 10:47:47 -08003002 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003003 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003005 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007 int flag = scope;
3008
3009 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
3011 addr.s6_addr32[3] = ifa->ifa_local;
3012
3013 if (ifa->ifa_scope == RT_SCOPE_LINK)
3014 continue;
3015 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
3016 if (idev->dev->flags&IFF_POINTOPOINT)
3017 continue;
3018 flag |= IFA_HOST;
3019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003021 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01003022 addrconf_prefix_route(&addr, plen, idev->dev, 0,
3023 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
3025 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027}
Joerg Roedel0be669b2006-10-10 14:49:53 -07003028#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030static void init_loopback(struct net_device *dev)
3031{
3032 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05303033 struct net_device *sp_dev;
3034 struct inet6_ifaddr *sp_ifa;
3035 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037 /* ::1 */
3038
3039 ASSERT_RTNL();
3040
Ian Morrise5d08d72014-11-23 21:28:43 +00003041 idev = ipv6_find_idev(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003042 if (!idev) {
Joe Perches91df42b2012-05-15 14:11:54 +00003043 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 return;
3045 }
3046
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08003047 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05303048
3049 /* Add routes to other interface's IPv6 addresses */
3050 for_each_netdev(dev_net(dev), sp_dev) {
3051 if (!strcmp(sp_dev->name, dev->name))
3052 continue;
3053
3054 idev = __in6_dev_get(sp_dev);
3055 if (!idev)
3056 continue;
3057
3058 read_lock_bh(&idev->lock);
3059 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
3060
3061 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
3062 continue;
3063
Gao feng33d99112014-01-24 16:29:11 +08003064 if (sp_ifa->rt) {
3065 /* This dst has been added to garbage list when
3066 * lo device down, release this obsolete dst and
3067 * reallocate a new router for ifa.
3068 */
Nicolas Dichtela2204452016-10-12 10:10:40 +02003069 if (!atomic_read(&sp_ifa->rt->rt6i_ref)) {
Gao feng33d99112014-01-24 16:29:11 +08003070 ip6_rt_put(sp_ifa->rt);
3071 sp_ifa->rt = NULL;
3072 } else {
3073 continue;
3074 }
3075 }
Gao fenga881ae12013-06-16 11:14:30 +08003076
François-Xavier Le Bail57ec0af2013-12-02 11:28:49 +01003077 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05303078
3079 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00003080 if (!IS_ERR(sp_rt)) {
3081 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05303082 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00003083 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05303084 }
3085 read_unlock_bh(&idev->lock);
3086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087}
3088
Alexander Aring2ad3ed52016-06-15 21:20:17 +02003089void addrconf_add_linklocal(struct inet6_dev *idev,
3090 const struct in6_addr *addr, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003092 struct inet6_ifaddr *ifp;
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003093 u32 addr_flags = flags | IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Neil Horman95c385b2007-04-25 17:08:10 -07003095#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3096 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07003097 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07003098 addr_flags |= IFA_F_OPTIMISTIC;
3099#endif
3100
Hannes Frederic Sowa07edd742014-01-08 15:43:22 +01003101 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags,
3102 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003104 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04003105 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 in6_ifa_put(ifp);
3107 }
3108}
Alexander Aring2ad3ed52016-06-15 21:20:17 +02003109EXPORT_SYMBOL_GPL(addrconf_add_linklocal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003111static bool ipv6_reserved_interfaceid(struct in6_addr address)
3112{
3113 if ((address.s6_addr32[2] | address.s6_addr32[3]) == 0)
3114 return true;
3115
3116 if (address.s6_addr32[2] == htonl(0x02005eff) &&
3117 ((address.s6_addr32[3] & htonl(0xfe000000)) == htonl(0xfe000000)))
3118 return true;
3119
3120 if (address.s6_addr32[2] == htonl(0xfdffffff) &&
3121 ((address.s6_addr32[3] & htonl(0xffffff80)) == htonl(0xffffff80)))
3122 return true;
3123
3124 return false;
3125}
3126
3127static int ipv6_generate_stable_address(struct in6_addr *address,
3128 u8 dad_count,
3129 const struct inet6_dev *idev)
3130{
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003131 static DEFINE_SPINLOCK(lock);
3132 static __u32 digest[SHA_DIGEST_WORDS];
3133 static __u32 workspace[SHA_WORKSPACE_WORDS];
3134
3135 static union {
3136 char __data[SHA_MESSAGE_BYTES];
3137 struct {
3138 struct in6_addr secret;
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003139 __be32 prefix[2];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003140 unsigned char hwaddr[MAX_ADDR_LEN];
3141 u8 dad_count;
3142 } __packed;
3143 } data;
3144
3145 struct in6_addr secret;
3146 struct in6_addr temp;
3147 struct net *net = dev_net(idev->dev);
3148
3149 BUILD_BUG_ON(sizeof(data.__data) != sizeof(data));
3150
3151 if (idev->cnf.stable_secret.initialized)
3152 secret = idev->cnf.stable_secret.secret;
3153 else if (net->ipv6.devconf_dflt->stable_secret.initialized)
3154 secret = net->ipv6.devconf_dflt->stable_secret.secret;
3155 else
3156 return -1;
3157
3158retry:
3159 spin_lock_bh(&lock);
3160
3161 sha_init(digest);
3162 memset(&data, 0, sizeof(data));
3163 memset(workspace, 0, sizeof(workspace));
3164 memcpy(data.hwaddr, idev->dev->perm_addr, idev->dev->addr_len);
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003165 data.prefix[0] = address->s6_addr32[0];
3166 data.prefix[1] = address->s6_addr32[1];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003167 data.secret = secret;
3168 data.dad_count = dad_count;
3169
3170 sha_transform(digest, data.__data, workspace);
3171
3172 temp = *address;
Hannes Frederic Sowaff402172015-03-24 11:05:28 +01003173 temp.s6_addr32[2] = (__force __be32)digest[0];
3174 temp.s6_addr32[3] = (__force __be32)digest[1];
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003175
3176 spin_unlock_bh(&lock);
3177
3178 if (ipv6_reserved_interfaceid(temp)) {
3179 dad_count++;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +01003180 if (dad_count > dev_net(idev->dev)->ipv6.sysctl.idgen_retries)
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003181 return -1;
3182 goto retry;
3183 }
3184
3185 *address = temp;
3186 return 0;
3187}
3188
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003189static void ipv6_gen_mode_random_init(struct inet6_dev *idev)
3190{
3191 struct ipv6_stable_secret *s = &idev->cnf.stable_secret;
3192
3193 if (s->initialized)
3194 return;
3195 s = &idev->cnf.stable_secret;
3196 get_random_bytes(&s->secret, sizeof(s->secret));
3197 s->initialized = true;
3198}
3199
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003200static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route)
3201{
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003202 struct in6_addr addr;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003203
David Ahernca254492015-10-12 11:47:10 -07003204 /* no link local addresses on L3 master devices */
3205 if (netif_is_l3_master(idev->dev))
3206 return;
3207
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003208 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
3209
Felix Jiad35a00b2017-01-26 16:59:17 +13003210 switch (idev->cnf.addr_gen_mode) {
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003211 case IN6_ADDR_GEN_MODE_RANDOM:
3212 ipv6_gen_mode_random_init(idev);
3213 /* fallthrough */
3214 case IN6_ADDR_GEN_MODE_STABLE_PRIVACY:
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003215 if (!ipv6_generate_stable_address(&addr, 0, idev))
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003216 addrconf_add_linklocal(idev, &addr,
3217 IFA_F_STABLE_PRIVACY);
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01003218 else if (prefix_route)
3219 addrconf_prefix_route(&addr, 64, idev->dev, 0, 0);
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003220 break;
3221 case IN6_ADDR_GEN_MODE_EUI64:
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003222 /* addrconf_add_linklocal also adds a prefix_route and we
3223 * only need to care about prefix routes if ipv6_generate_eui64
3224 * couldn't generate one.
3225 */
3226 if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0)
Hannes Frederic Sowa64236f32015-03-23 23:36:02 +01003227 addrconf_add_linklocal(idev, &addr, 0);
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003228 else if (prefix_route)
3229 addrconf_prefix_route(&addr, 64, idev->dev, 0, 0);
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003230 break;
3231 case IN6_ADDR_GEN_MODE_NONE:
3232 default:
3233 /* will not add any link local address */
3234 break;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003235 }
3236}
3237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238static void addrconf_dev_config(struct net_device *dev)
3239{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003240 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
3242 ASSERT_RTNL();
3243
Herbert Xu74235a22007-06-14 13:02:55 -07003244 if ((dev->type != ARPHRD_ETHER) &&
3245 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07003246 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00003247 (dev->type != ARPHRD_INFINIBAND) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02003248 (dev->type != ARPHRD_IEEE1394) &&
Jukka Rissanene74bccb82013-12-11 17:05:36 +02003249 (dev->type != ARPHRD_TUNNEL6) &&
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003250 (dev->type != ARPHRD_6LOWPAN) &&
Felix Jia45ce0fd2017-01-26 16:59:18 +13003251 (dev->type != ARPHRD_IP6GRE) &&
3252 (dev->type != ARPHRD_IPGRE) &&
3253 (dev->type != ARPHRD_TUNNEL) &&
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003254 (dev->type != ARPHRD_NONE)) {
Herbert Xu74235a22007-06-14 13:02:55 -07003255 /* Alas, we support only Ethernet autoconfiguration. */
3256 return;
3257 }
3258
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00003260 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 return;
3262
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003263 /* this device type has no EUI support */
3264 if (dev->type == ARPHRD_NONE &&
Felix Jiad35a00b2017-01-26 16:59:17 +13003265 idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64)
3266 idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_RANDOM;
Bjørn Morkcc9da6c2015-12-16 16:44:38 +01003267
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003268 addrconf_addr_gen(idev, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269}
3270
Amerigo Wang07a93622012-10-29 16:23:10 +00003271#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272static void addrconf_sit_config(struct net_device *dev)
3273{
3274 struct inet6_dev *idev;
3275
3276 ASSERT_RTNL();
3277
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003278 /*
3279 * Configure the tunnel with one of our IPv4
3280 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 * our v4 addrs in the tunnel
3282 */
3283
Ian Morrise5d08d72014-11-23 21:28:43 +00003284 idev = ipv6_find_idev(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003285 if (!idev) {
Joe Perches91df42b2012-05-15 14:11:54 +00003286 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 return;
3288 }
3289
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11003290 if (dev->priv_flags & IFF_ISATAP) {
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003291 addrconf_addr_gen(idev, false);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11003292 return;
3293 }
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 sit_add_v4_addrs(idev);
3296
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00003297 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299}
Joerg Roedel0be669b2006-10-10 14:49:53 -07003300#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Amerigo Wang07a93622012-10-29 16:23:10 +00003302#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00003303static void addrconf_gre_config(struct net_device *dev)
3304{
3305 struct inet6_dev *idev;
stephen hemmingeraee80b52011-06-08 10:44:30 +00003306
stephen hemmingeraee80b52011-06-08 10:44:30 +00003307 ASSERT_RTNL();
3308
Ian Morrise5d08d72014-11-23 21:28:43 +00003309 idev = ipv6_find_idev(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003310 if (!idev) {
Joe Perches91df42b2012-05-15 14:11:54 +00003311 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00003312 return;
3313 }
3314
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02003315 addrconf_addr_gen(idev, true);
Hannes Frederic Sowad9e4ce62015-10-08 18:19:39 +02003316 if (dev->flags & IFF_POINTOPOINT)
3317 addrconf_add_mroute(dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00003318}
3319#endif
3320
David Ahernf1705ec2016-02-24 09:25:37 -08003321static int fixup_permanent_addr(struct inet6_dev *idev,
3322 struct inet6_ifaddr *ifp)
3323{
David Ahern8048ced2017-04-25 09:17:29 -07003324 /* rt6i_ref == 0 means the host route was removed from the
3325 * FIB, for example, if 'lo' device is taken down. In that
3326 * case regenerate the host route.
3327 */
3328 if (!ifp->rt || !atomic_read(&ifp->rt->rt6i_ref)) {
3329 struct rt6_info *rt, *prev;
David Ahernf1705ec2016-02-24 09:25:37 -08003330
3331 rt = addrconf_dst_alloc(idev, &ifp->addr, false);
3332 if (unlikely(IS_ERR(rt)))
3333 return PTR_ERR(rt);
3334
David Ahern8048ced2017-04-25 09:17:29 -07003335 /* ifp->rt can be accessed outside of rtnl */
3336 spin_lock(&ifp->lock);
3337 prev = ifp->rt;
David Ahernf1705ec2016-02-24 09:25:37 -08003338 ifp->rt = rt;
David Ahern8048ced2017-04-25 09:17:29 -07003339 spin_unlock(&ifp->lock);
3340
3341 ip6_rt_put(prev);
David Ahernf1705ec2016-02-24 09:25:37 -08003342 }
3343
3344 if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) {
3345 addrconf_prefix_route(&ifp->addr, ifp->prefix_len,
3346 idev->dev, 0, 0);
3347 }
3348
David Ahern6d717132017-05-02 14:43:44 -07003349 if (ifp->state == INET6_IFADDR_STATE_PREDAD)
3350 addrconf_dad_start(ifp);
David Ahernf1705ec2016-02-24 09:25:37 -08003351
3352 return 0;
3353}
3354
3355static void addrconf_permanent_addr(struct net_device *dev)
3356{
3357 struct inet6_ifaddr *ifp, *tmp;
3358 struct inet6_dev *idev;
3359
3360 idev = __in6_dev_get(dev);
3361 if (!idev)
3362 return;
3363
3364 write_lock_bh(&idev->lock);
3365
3366 list_for_each_entry_safe(ifp, tmp, &idev->addr_list, if_list) {
3367 if ((ifp->flags & IFA_F_PERMANENT) &&
3368 fixup_permanent_addr(idev, ifp) < 0) {
3369 write_unlock_bh(&idev->lock);
3370 ipv6_del_addr(ifp);
3371 write_lock_bh(&idev->lock);
3372
3373 net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n",
3374 idev->dev->name, &ifp->addr);
3375 }
3376 }
3377
3378 write_unlock_bh(&idev->lock);
3379}
3380
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003381static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00003382 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383{
Jiri Pirko351638e2013-05-28 01:30:21 +00003384 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
David Ahern4f7f34e2016-04-07 11:10:41 -07003385 struct netdev_notifier_changeupper_info *info;
Eric Dumazet748e2d92012-08-22 21:50:59 +00003386 struct inet6_dev *idev = __in6_dev_get(dev);
WANG Cong60abc0b2017-06-21 14:34:58 -07003387 struct net *net = dev_net(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003388 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07003389 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003391 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003392 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07003393 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003394 idev = ipv6_add_dev(dev);
WANG Conga317a2f2014-07-25 15:25:09 -07003395 if (IS_ERR(idev))
3396 return notifier_from_errno(PTR_ERR(idev));
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09003397 }
3398 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003399
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003400 case NETDEV_CHANGEMTU:
3401 /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */
3402 if (dev->mtu < IPV6_MIN_MTU) {
WANG Cong60abc0b2017-06-21 14:34:58 -07003403 addrconf_ifdown(dev, dev != net->loopback_dev);
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003404 break;
3405 }
3406
3407 if (idev) {
3408 rt6_mtu_change(dev, dev->mtu);
3409 idev->cnf.mtu6 = dev->mtu;
3410 break;
3411 }
3412
3413 /* allocate new idev */
3414 idev = ipv6_add_dev(dev);
3415 if (IS_ERR(idev))
3416 break;
3417
3418 /* device is still not ready */
3419 if (!(idev->if_flags & IF_READY))
3420 break;
3421
3422 run_pending = 1;
3423
3424 /* fall through */
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003427 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07003428 if (dev->flags & IFF_SLAVE)
3429 break;
3430
WANG Cong3ce62a82014-09-11 15:07:16 -07003431 if (idev && idev->cnf.disable_ipv6)
3432 break;
3433
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003434 if (event == NETDEV_UP) {
David Ahern38bd10c2016-04-21 20:56:12 -07003435 /* restore routes for permanent addresses */
3436 addrconf_permanent_addr(dev);
3437
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07003438 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003439 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00003440 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003441 dev->name);
3442 break;
3443 }
Kristian Slavov99081042006-02-08 16:10:53 -08003444
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11003445 if (!idev && dev->mtu >= IPV6_MIN_MTU)
3446 idev = ipv6_add_dev(dev);
3447
WANG Conga317a2f2014-07-25 15:25:09 -07003448 if (!IS_ERR_OR_NULL(idev)) {
Kristian Slavov99081042006-02-08 16:10:53 -08003449 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08003450 run_pending = 1;
3451 }
Alexander Duyckb7b0b1d2015-10-26 11:06:33 -07003452 } else if (event == NETDEV_CHANGE) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07003453 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003454 /* device is still not ready. */
3455 break;
3456 }
3457
3458 if (idev) {
Linus Lüssinga088d1d2017-02-03 08:11:03 +01003459 if (idev->if_flags & IF_READY) {
3460 /* device is already configured -
3461 * but resend MLD reports, we might
3462 * have roamed and need to update
3463 * multicast snooping switches
3464 */
3465 ipv6_mc_up(idev);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003466 break;
Linus Lüssinga088d1d2017-02-03 08:11:03 +01003467 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003468 idev->if_flags |= IF_READY;
3469 }
3470
Joe Perchesf3213832012-05-15 14:11:53 +00003471 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
3472 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003473
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003474 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003475 }
3476
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003477 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00003478#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 case ARPHRD_SIT:
3480 addrconf_sit_config(dev);
3481 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07003482#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00003483#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00003484 case ARPHRD_IPGRE:
3485 addrconf_gre_config(dev);
3486 break;
3487#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 case ARPHRD_LOOPBACK:
3489 init_loopback(dev);
3490 break;
3491
3492 default:
3493 addrconf_dev_config(dev);
3494 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003495 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003496
WANG Conga317a2f2014-07-25 15:25:09 -07003497 if (!IS_ERR_OR_NULL(idev)) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003498 if (run_pending)
3499 addrconf_dad_run(idev);
3500
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003501 /*
3502 * If the MTU changed during the interface down,
3503 * when the interface up, the changed MTU must be
3504 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003506 if (idev->cnf.mtu6 != dev->mtu &&
3507 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 rt6_mtu_change(dev, dev->mtu);
3509 idev->cnf.mtu6 = dev->mtu;
3510 }
3511 idev->tstamp = jiffies;
3512 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003513
3514 /*
3515 * If the changed mtu during down is lower than
3516 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 */
3518 if (dev->mtu < IPV6_MIN_MTU)
WANG Cong60abc0b2017-06-21 14:34:58 -07003519 addrconf_ifdown(dev, dev != net->loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 }
3521 break;
3522
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 case NETDEV_DOWN:
3524 case NETDEV_UNREGISTER:
3525 /*
3526 * Remove all addresses from this interface.
3527 */
3528 addrconf_ifdown(dev, event != NETDEV_DOWN);
3529 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07003533 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003534 addrconf_sysctl_unregister(idev);
WANG Conga317a2f2014-07-25 15:25:09 -07003535 err = addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07003536 if (err)
3537 return notifier_from_errno(err);
WANG Conga317a2f2014-07-25 15:25:09 -07003538 err = snmp6_register_dev(idev);
3539 if (err) {
3540 addrconf_sysctl_unregister(idev);
3541 return notifier_from_errno(err);
3542 }
Stephen Hemminger5632c512007-04-28 21:16:39 -07003543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003545
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003546 case NETDEV_PRE_TYPE_CHANGE:
3547 case NETDEV_POST_TYPE_CHANGE:
Andrew Lunn3ef09522015-12-03 21:12:32 +01003548 if (idev)
3549 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07003550 break;
David Ahern4f7f34e2016-04-07 11:10:41 -07003551
3552 case NETDEV_CHANGEUPPER:
3553 info = ptr;
3554
3555 /* flush all routes if dev is linked to or unlinked from
3556 * an L3 master device (e.g., VRF)
3557 */
3558 if (info->upper_dev && netif_is_l3_master(info->upper_dev))
3559 addrconf_ifdown(dev, 0);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
3562 return NOTIFY_OK;
3563}
3564
3565/*
3566 * addrconf module should be notified of a device going up
3567 */
3568static struct notifier_block ipv6_dev_notf = {
3569 .notifier_call = addrconf_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07003570 .priority = ADDRCONF_NOTIFY_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571};
3572
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003573static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07003574{
3575 struct inet6_dev *idev;
3576 ASSERT_RTNL();
3577
3578 idev = __in6_dev_get(dev);
3579
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003580 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003581 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003582 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003583 ipv6_mc_unmap(idev);
3584}
3585
David Ahern70af9212016-04-08 12:01:21 -07003586static bool addr_is_local(const struct in6_addr *addr)
3587{
3588 return ipv6_addr_type(addr) &
3589 (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
3590}
3591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592static int addrconf_ifdown(struct net_device *dev, int how)
3593{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003594 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003595 struct inet6_dev *idev;
David Ahernf1705ec2016-02-24 09:25:37 -08003596 struct inet6_ifaddr *ifa, *tmp;
3597 struct list_head del_list;
3598 int _keep_addr;
3599 bool keep_addr;
David S. Miller73a8bd72011-01-23 23:27:15 -08003600 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
3602 ASSERT_RTNL();
3603
David S. Miller73a8bd72011-01-23 23:27:15 -08003604 rt6_ifdown(net, dev);
3605 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
3607 idev = __in6_dev_get(dev);
Ian Morris63159f22015-03-29 14:00:04 +01003608 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 return -ENODEV;
3610
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003611 /*
3612 * Step 1: remove reference to ipv6 device from parent device.
3613 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003615 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003617
3618 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003619 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
3621 /* Step 1.5: remove snmp6 entry */
3622 snmp6_unregister_dev(idev);
3623
3624 }
3625
David Ahernf1705ec2016-02-24 09:25:37 -08003626 /* aggregate the system setting and interface setting */
3627 _keep_addr = net->ipv6.devconf_all->keep_addr_on_down;
3628 if (!_keep_addr)
3629 _keep_addr = idev->cnf.keep_addr_on_down;
3630
3631 /* combine the user config with event to determine if permanent
3632 * addresses are to be removed from address hash table
3633 */
Mike Manningbc561632016-08-12 12:02:38 +01003634 keep_addr = !(how || _keep_addr <= 0 || idev->cnf.disable_ipv6);
David Ahernf1705ec2016-02-24 09:25:37 -08003635
David S. Miller73a8bd72011-01-23 23:27:15 -08003636 /* Step 2: clear hash table */
3637 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3638 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003639
3640 spin_lock_bh(&addrconf_hash_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01003641restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003642 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003643 if (ifa->idev == idev) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003644 addrconf_del_dad_work(ifa);
David Ahernf1705ec2016-02-24 09:25:37 -08003645 /* combined flag + permanent flag decide if
3646 * address is retained on a down event
3647 */
3648 if (!keep_addr ||
David Ahern70af9212016-04-08 12:01:21 -07003649 !(ifa->flags & IFA_F_PERMANENT) ||
3650 addr_is_local(&ifa->addr)) {
David Ahernf1705ec2016-02-24 09:25:37 -08003651 hlist_del_init_rcu(&ifa->addr_lst);
3652 goto restart;
3653 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003654 }
3655 }
3656 spin_unlock_bh(&addrconf_hash_lock);
3657 }
3658
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 write_lock_bh(&idev->lock);
3660
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003661 addrconf_del_rs_timer(idev);
3662
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003663 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003664 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003665 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003667 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003668 while (!list_empty(&idev->tempaddr_list)) {
3669 ifa = list_first_entry(&idev->tempaddr_list,
3670 struct inet6_ifaddr, tmp_list);
3671 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 write_unlock_bh(&idev->lock);
3673 spin_lock_bh(&ifa->lock);
3674
3675 if (ifa->ifpub) {
3676 in6_ifa_put(ifa->ifpub);
3677 ifa->ifpub = NULL;
3678 }
3679 spin_unlock_bh(&ifa->lock);
3680 in6_ifa_put(ifa);
3681 write_lock_bh(&idev->lock);
3682 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003683
David Ahernf1705ec2016-02-24 09:25:37 -08003684 /* re-combine the user config with event to determine if permanent
3685 * addresses are to be removed from the interface list
3686 */
Mike Manningbc561632016-08-12 12:02:38 +01003687 keep_addr = (!how && _keep_addr > 0 && !idev->cnf.disable_ipv6);
David Ahernf1705ec2016-02-24 09:25:37 -08003688
3689 INIT_LIST_HEAD(&del_list);
3690 list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) {
David Ahern38bd10c2016-04-21 20:56:12 -07003691 struct rt6_info *rt = NULL;
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003692 bool keep;
David Ahern38bd10c2016-04-21 20:56:12 -07003693
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003694 addrconf_del_dad_work(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003695
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003696 keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) &&
3697 !addr_is_local(&ifa->addr);
3698 if (!keep)
3699 list_move(&ifa->if_list, &del_list);
3700
David S. Miller73a8bd72011-01-23 23:27:15 -08003701 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003702 spin_lock_bh(&ifa->lock);
David Ahernf1705ec2016-02-24 09:25:37 -08003703
Rabin Vincenta2d6cbb2017-04-10 08:36:39 +02003704 if (keep) {
David Ahernf1705ec2016-02-24 09:25:37 -08003705 /* set state to skip the notifier below */
3706 state = INET6_IFADDR_STATE_DEAD;
David Ahern6d717132017-05-02 14:43:44 -07003707 ifa->state = INET6_IFADDR_STATE_PREDAD;
David Ahernf1705ec2016-02-24 09:25:37 -08003708 if (!(ifa->flags & IFA_F_NODAD))
3709 ifa->flags |= IFA_F_TENTATIVE;
David Ahern38bd10c2016-04-21 20:56:12 -07003710
3711 rt = ifa->rt;
3712 ifa->rt = NULL;
David Ahernf1705ec2016-02-24 09:25:37 -08003713 } else {
3714 state = ifa->state;
3715 ifa->state = INET6_IFADDR_STATE_DEAD;
David Ahernf1705ec2016-02-24 09:25:37 -08003716 }
3717
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003718 spin_unlock_bh(&ifa->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003719
David Ahern38bd10c2016-04-21 20:56:12 -07003720 if (rt)
3721 ip6_del_rt(rt);
3722
David S. Miller73a8bd72011-01-23 23:27:15 -08003723 if (state != INET6_IFADDR_STATE_DEAD) {
3724 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003725 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
Mike Manningea06f712016-07-22 18:32:11 +01003726 } else {
3727 if (idev->cnf.forwarding)
3728 addrconf_leave_anycast(ifa);
3729 addrconf_leave_solict(ifa->idev, &ifa->addr);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003730 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003731
David S. Miller73a8bd72011-01-23 23:27:15 -08003732 write_lock_bh(&idev->lock);
3733 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 write_unlock_bh(&idev->lock);
3736
David Ahernf1705ec2016-02-24 09:25:37 -08003737 /* now clean up addresses to be removed */
3738 while (!list_empty(&del_list)) {
3739 ifa = list_first_entry(&del_list,
3740 struct inet6_ifaddr, if_list);
3741 list_del(&ifa->if_list);
3742
3743 in6_ifa_put(ifa);
3744 }
3745
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003746 /* Step 5: Discard anycast and multicast list */
3747 if (how) {
3748 ipv6_ac_destroy_dev(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 ipv6_mc_destroy_dev(idev);
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003750 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 ipv6_mc_down(idev);
Sabrina Dubroca381f4dc2014-09-10 23:23:02 +02003752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003755
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003756 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003757 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003758 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 neigh_parms_release(&nd_tbl, idev->nd_parms);
3760 neigh_ifdown(&nd_tbl, dev);
3761 in6_dev_put(idev);
3762 }
3763 return 0;
3764}
3765
3766static void addrconf_rs_timer(unsigned long data)
3767{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003768 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003769 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003770 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003772 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003773 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 goto out;
3775
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003776 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003778
3779 /* Announcement received after solicitation was sent */
3780 if (idev->if_flags & IF_RA_RCVD)
3781 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003783 if (idev->rs_probes++ < idev->cnf.rtr_solicits || idev->cnf.rtr_solicits < 0) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003784 write_unlock(&idev->lock);
3785 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3786 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003787 &in6addr_linklocal_allrouters);
3788 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003789 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
Cong Wangcaf92bc2013-08-31 13:44:32 +08003791 write_lock(&idev->lock);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003792 idev->rs_interval = rfc3315_s14_backoff_update(
3793 idev->rs_interval, idev->cnf.rtr_solicit_max_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003794 /* The wait after the last probe can be shorter */
3795 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3796 idev->cnf.rtr_solicits) ?
3797 idev->cnf.rtr_solicit_delay :
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07003798 idev->rs_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 /*
3801 * Note: we do not support deprecated "all on-link"
3802 * assumption any longer.
3803 */
Joe Perches91df42b2012-05-15 14:11:54 +00003804 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 }
3806
3807out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003808 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003809put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003810 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811}
3812
3813/*
3814 * Duplicate Address Detection
3815 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003816static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3817{
3818 unsigned long rand_num;
3819 struct inet6_dev *idev = ifp->idev;
Erik Nordmarkadc176c2016-12-02 14:00:08 -08003820 u64 nonce;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003821
Neil Horman95c385b2007-04-25 17:08:10 -07003822 if (ifp->flags & IFA_F_OPTIMISTIC)
3823 rand_num = 0;
3824 else
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003825 rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1);
Neil Horman95c385b2007-04-25 17:08:10 -07003826
Erik Nordmarkadc176c2016-12-02 14:00:08 -08003827 nonce = 0;
3828 if (idev->cnf.enhanced_dad ||
3829 dev_net(idev->dev)->ipv6.devconf_all->enhanced_dad) {
3830 do
3831 get_random_bytes(&nonce, 6);
3832 while (nonce == 0);
3833 }
3834 ifp->dad_nonce = nonce;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003835 ifp->dad_probes = idev->cnf.dad_transmits;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003836 addrconf_mod_dad_work(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003837}
3838
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003839static void addrconf_dad_begin(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840{
3841 struct inet6_dev *idev = ifp->idev;
3842 struct net_device *dev = idev->dev;
Paolo Abeni764d3be2016-11-22 16:57:40 +01003843 bool bump_id, notify = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 addrconf_join_solict(dev, &ifp->addr);
3846
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05003847 prandom_seed((__force u32) ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003850 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003851 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
3854 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003855 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003856 !(ifp->flags&IFA_F_TENTATIVE) ||
3857 ifp->flags & IFA_F_NODAD) {
Paolo Abeni764d3be2016-11-22 16:57:40 +01003858 bump_id = ifp->flags & IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00003859 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003860 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 read_unlock_bh(&idev->lock);
3862
Paolo Abeni764d3be2016-11-22 16:57:40 +01003863 addrconf_dad_completed(ifp, bump_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 return;
3865 }
3866
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003867 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003868 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003869 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003870 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003871 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003872 * - keep it tentative if it is a permanent address.
3873 * - otherwise, kill it.
3874 */
3875 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003876 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003877 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003878 }
Neil Horman95c385b2007-04-25 17:08:10 -07003879
3880 /*
3881 * Optimistic nodes can start receiving
3882 * Frames right away
3883 */
Erik Kline7fd25612014-10-28 18:11:14 +09003884 if (ifp->flags & IFA_F_OPTIMISTIC) {
Neil Horman95c385b2007-04-25 17:08:10 -07003885 ip6_ins_rt(ifp->rt);
Erik Kline7fd25612014-10-28 18:11:14 +09003886 if (ipv6_use_optimistic_addr(idev)) {
3887 /* Because optimistic nodes can use this address,
3888 * notify listeners. If DAD fails, RTM_DELADDR is sent.
3889 */
subashab@codeaurora.org16186a82016-02-02 02:11:10 +00003890 notify = true;
Erik Kline7fd25612014-10-28 18:11:14 +09003891 }
3892 }
Neil Horman95c385b2007-04-25 17:08:10 -07003893
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003894 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003896 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 read_unlock_bh(&idev->lock);
subashab@codeaurora.org16186a82016-02-02 02:11:10 +00003898 if (notify)
3899 ipv6_ifa_notify(RTM_NEWADDR, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900}
3901
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003902static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903{
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003904 bool begin_dad = false;
3905
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003906 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003907 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
3908 ifp->state = INET6_IFADDR_STATE_PREDAD;
3909 begin_dad = true;
3910 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003911 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003912
3913 if (begin_dad)
3914 addrconf_mod_dad_work(ifp, 0);
3915}
3916
3917static void addrconf_dad_work(struct work_struct *w)
3918{
3919 struct inet6_ifaddr *ifp = container_of(to_delayed_work(w),
3920 struct inet6_ifaddr,
3921 dad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 struct inet6_dev *idev = ifp->idev;
Paolo Abeni764d3be2016-11-22 16:57:40 +01003923 bool bump_id, disable_ipv6 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 struct in6_addr mcaddr;
3925
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003926 enum {
3927 DAD_PROCESS,
3928 DAD_BEGIN,
3929 DAD_ABORT,
3930 } action = DAD_PROCESS;
3931
3932 rtnl_lock();
3933
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003934 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003935 if (ifp->state == INET6_IFADDR_STATE_PREDAD) {
3936 action = DAD_BEGIN;
3937 ifp->state = INET6_IFADDR_STATE_DAD;
3938 } else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) {
3939 action = DAD_ABORT;
3940 ifp->state = INET6_IFADDR_STATE_POSTDAD;
Mike Manning85b51b12016-08-18 14:39:40 +01003941
3942 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6 &&
3943 !(ifp->flags & IFA_F_STABLE_PRIVACY)) {
3944 struct in6_addr addr;
3945
3946 addr.s6_addr32[0] = htonl(0xfe800000);
3947 addr.s6_addr32[1] = 0;
3948
3949 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
3950 ipv6_addr_equal(&ifp->addr, &addr)) {
3951 /* DAD failed for link-local based on MAC */
3952 idev->cnf.disable_ipv6 = 1;
3953
3954 pr_info("%s: IPv6 being disabled!\n",
3955 ifp->idev->dev->name);
3956 disable_ipv6 = true;
3957 }
3958 }
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003959 }
Hannes Frederic Sowa8e8e6762015-03-23 23:36:03 +01003960 spin_unlock_bh(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003961
3962 if (action == DAD_BEGIN) {
3963 addrconf_dad_begin(ifp);
3964 goto out;
3965 } else if (action == DAD_ABORT) {
Wei Yongjun751eb6b2016-09-05 16:06:31 +08003966 in6_ifa_hold(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003967 addrconf_dad_stop(ifp, 1);
Mike Manning85b51b12016-08-18 14:39:40 +01003968 if (disable_ipv6)
3969 addrconf_ifdown(idev->dev, 0);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003970 goto out;
3971 }
3972
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003973 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003974 goto out;
3975
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003976 write_lock_bh(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003977 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003978 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 goto out;
3980 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003981
3982 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003983 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3984 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003985 write_unlock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003986 goto out;
3987 }
3988
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003989 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 /*
3991 * DAD was successful
3992 */
3993
Paolo Abeni764d3be2016-11-22 16:57:40 +01003994 bump_id = ifp->flags & IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00003995 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003996 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01003997 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
Paolo Abeni764d3be2016-11-22 16:57:40 +01003999 addrconf_dad_completed(ifp, bump_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
4001 goto out;
4002 }
4003
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004004 ifp->dad_probes--;
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004005 addrconf_mod_dad_work(ifp,
4006 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME));
stephen hemminger21809fa2010-02-08 19:48:52 +00004007 spin_unlock(&ifp->lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004008 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
4010 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -08004012 ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any,
4013 ifp->dad_nonce);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014out:
4015 in6_ifa_put(ifp);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004016 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017}
4018
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004019/* ifp->idev must be at least read locked */
4020static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp)
4021{
4022 struct inet6_ifaddr *ifpiter;
4023 struct inet6_dev *idev = ifp->idev;
4024
Hannes Frederic Sowa602582c2014-01-19 21:58:19 +01004025 list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) {
4026 if (ifpiter->scope > IFA_LINK)
4027 break;
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004028 if (ifp != ifpiter && ifpiter->scope == IFA_LINK &&
4029 (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|
4030 IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) ==
4031 IFA_F_PERMANENT)
4032 return false;
4033 }
4034 return true;
4035}
4036
Paolo Abeni764d3be2016-11-22 16:57:40 +01004037static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004039 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004040 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004041 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004042
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004043 addrconf_del_dad_work(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
4045 /*
4046 * Configure the address for reception. Now it is valid.
4047 */
4048
4049 ipv6_ifa_notify(RTM_NEWADDR, ifp);
4050
Tore Anderson026359b2011-08-28 23:47:33 +00004051 /* If added prefix is link local and we are prepared to process
4052 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 */
4054
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004055 read_lock_bh(&ifp->idev->lock);
Hannes Frederic Sowa11ffff72014-01-16 20:13:04 +01004056 send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004057 send_rs = send_mld &&
4058 ipv6_accept_ra(ifp->idev) &&
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004059 ifp->idev->cnf.rtr_solicits != 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004060 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004061 read_unlock_bh(&ifp->idev->lock);
4062
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02004063 /* While dad is in progress mld report's source address is in6_addrany.
4064 * Resend with proper ll now.
4065 */
4066 if (send_mld)
4067 ipv6_mc_dad_complete(ifp->idev);
4068
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004069 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 /*
4071 * If a host as already performed a random delay
4072 * [...] as part of DAD [...] there is no need
4073 * to delay again before sending the first RS
4074 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004075 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004076 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004077 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004079 write_lock_bh(&ifp->idev->lock);
4080 spin_lock(&ifp->lock);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004081 ifp->idev->rs_interval = rfc3315_s14_backoff_init(
4082 ifp->idev->cnf.rtr_solicit_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004083 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 ifp->idev->if_flags |= IF_RS_SENT;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07004085 addrconf_mod_rs_timer(ifp->idev, ifp->idev->rs_interval);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02004086 spin_unlock(&ifp->lock);
4087 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 }
Paolo Abeni764d3be2016-11-22 16:57:40 +01004089
4090 if (bump_id)
4091 rt_genid_bump_ipv6(dev_net(dev));
Marcus Huewea11a7f72017-02-06 18:34:56 +01004092
4093 /* Make sure that a new temporary address will be created
4094 * before this temporary address becomes deprecated.
4095 */
4096 if (ifp->flags & IFA_F_TEMPORARY)
4097 addrconf_verify_rtnl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098}
4099
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004100static void addrconf_dad_run(struct inet6_dev *idev)
4101{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09004102 struct inet6_ifaddr *ifp;
4103
4104 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00004105 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00004106 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07004107 if (ifp->flags & IFA_F_TENTATIVE &&
4108 ifp->state == INET6_IFADDR_STATE_DAD)
4109 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00004110 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09004111 }
4112 read_unlock_bh(&idev->lock);
4113}
4114
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115#ifdef CONFIG_PROC_FS
4116struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08004117 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004119 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120};
4121
Mihai Maruseac1d578302012-01-03 23:31:35 +00004122static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123{
4124 struct inet6_ifaddr *ifa = NULL;
4125 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09004126 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00004127 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
Mihai Maruseac1d578302012-01-03 23:31:35 +00004129 /* initial bucket if pos is 0 */
4130 if (pos == 0) {
4131 state->bucket = 0;
4132 state->offset = 0;
4133 }
4134
4135 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08004136 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00004137 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004138 if (!net_eq(dev_net(ifa->idev->dev), net))
4139 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004140 /* sync with offset */
4141 if (p < state->offset) {
4142 p++;
4143 continue;
4144 }
4145 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004146 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004147 }
4148
4149 /* prepare for next bucket */
4150 state->offset = 0;
4151 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00004153 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154}
4155
stephen hemmingerc2e21292010-03-17 20:31:10 +00004156static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
4157 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
4159 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09004160 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Sasha Levinb67bfe02013-02-27 17:06:00 -08004162 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004163 if (!net_eq(dev_net(ifa->idev->dev), net))
4164 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004165 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004166 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004167 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00004168
4169 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00004170 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004171 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00004172 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004173 if (!net_eq(dev_net(ifa->idev->dev), net))
4174 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00004175 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00004176 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08004177 }
4178 }
4179
stephen hemmingerc2e21292010-03-17 20:31:10 +00004180 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181}
4182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00004184 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185{
stephen hemminger5c578aed2010-03-17 20:31:11 +00004186 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00004187 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188}
4189
4190static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4191{
4192 struct inet6_ifaddr *ifa;
4193
4194 ifa = if6_get_next(seq, v);
4195 ++*pos;
4196 return ifa;
4197}
4198
4199static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00004200 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201{
stephen hemminger5c578aed2010-03-17 20:31:11 +00004202 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203}
4204
4205static int if6_seq_show(struct seq_file *seq, void *v)
4206{
4207 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Jiri Pirko971a3512013-12-10 13:56:29 +01004208 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07004209 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 ifp->idev->dev->ifindex,
4211 ifp->prefix_len,
4212 ifp->scope,
Jiri Pirko971a3512013-12-10 13:56:29 +01004213 (u8) ifp->flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 ifp->idev->dev->name);
4215 return 0;
4216}
4217
Philippe De Muyter56b3d972007-07-10 23:07:31 -07004218static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 .start = if6_seq_start,
4220 .next = if6_seq_next,
4221 .show = if6_seq_show,
4222 .stop = if6_seq_stop,
4223};
4224
4225static int if6_seq_open(struct inode *inode, struct file *file)
4226{
Daniel Lezcano3c400902008-01-10 22:42:49 -08004227 return seq_open_net(inode, file, &if6_seq_ops,
4228 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229}
4230
Arjan van de Ven9a321442007-02-12 00:55:35 -08004231static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 .owner = THIS_MODULE,
4233 .open = if6_seq_open,
4234 .read = seq_read,
4235 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08004236 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237};
4238
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004239static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
Gao fengd4beaa62013-02-18 01:34:54 +00004241 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 return -ENOMEM;
4243 return 0;
4244}
4245
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004246static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08004247{
Gao fengece31ff2013-02-18 01:34:56 +00004248 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08004249}
4250
4251static struct pernet_operations if6_proc_net_ops = {
Ian Morris67ba4152014-08-24 21:53:10 +01004252 .init = if6_proc_net_init,
4253 .exit = if6_proc_net_exit,
Daniel Lezcano3c400902008-01-10 22:42:49 -08004254};
4255
4256int __init if6_proc_init(void)
4257{
4258 return register_pernet_subsys(&if6_proc_net_ops);
4259}
4260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261void if6_proc_exit(void)
4262{
Daniel Lezcano3c400902008-01-10 22:42:49 -08004263 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264}
4265#endif /* CONFIG_PROC_FS */
4266
Amerigo Wang07a93622012-10-29 16:23:10 +00004267#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004268/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00004269int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004270{
4271 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00004272 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00004273 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00004274
stephen hemminger5c578aed2010-03-17 20:31:11 +00004275 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08004276 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09004277 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08004278 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09004279 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004280 (ifp->flags & IFA_F_HOMEADDRESS)) {
4281 ret = 1;
4282 break;
4283 }
4284 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00004285 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07004286 return ret;
4287}
4288#endif
4289
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290/*
4291 * Periodic address status verification
4292 */
4293
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004294static void addrconf_verify_rtnl(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004296 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 int i;
4299
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004300 ASSERT_RTNL();
4301
stephen hemminger5c578aed2010-03-17 20:31:11 +00004302 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004304 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004306 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004308 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309restart:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004310 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
Yasushi Asanofad8da32013-12-31 12:04:19 +09004313 /* When setting preferred_lft to a value not zero or
4314 * infinity, while valid_lft is infinity
4315 * IFA_F_PERMANENT has a non-infinity life time.
4316 */
4317 if ((ifp->flags & IFA_F_PERMANENT) &&
4318 (ifp->prefered_lft == INFINITY_LIFE_TIME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 continue;
4320
4321 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004322 /* We try to batch several events at once. */
4323 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09004325 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
4326 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 spin_unlock(&ifp->lock);
4328 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 ipv6_del_addr(ifp);
4330 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09004331 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
4332 spin_unlock(&ifp->lock);
4333 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00004335 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 int deprecate = 0;
4337
4338 if (!(ifp->flags&IFA_F_DEPRECATED)) {
4339 deprecate = 1;
4340 ifp->flags |= IFA_F_DEPRECATED;
4341 }
4342
Yasushi Asanofad8da32013-12-31 12:04:19 +09004343 if ((ifp->valid_lft != INFINITY_LIFE_TIME) &&
4344 (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 next = ifp->tstamp + ifp->valid_lft * HZ;
4346
4347 spin_unlock(&ifp->lock);
4348
4349 if (deprecate) {
4350 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
4352 ipv6_ifa_notify(0, ifp);
4353 in6_ifa_put(ifp);
4354 goto restart;
4355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
4357 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00004358 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
4359 ifp->idev->cnf.dad_transmits *
Jiri Pirko1f9248e2013-12-07 19:26:53 +01004360 NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ;
stephen hemminger88949cf2010-03-17 20:31:17 +00004361
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 if (age >= ifp->prefered_lft - regen_advance) {
4363 struct inet6_ifaddr *ifpub = ifp->ifpub;
4364 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4365 next = ifp->tstamp + ifp->prefered_lft * HZ;
4366 if (!ifp->regen_count && ifpub) {
4367 ifp->regen_count++;
4368 in6_ifa_hold(ifp);
4369 in6_ifa_hold(ifpub);
4370 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00004371
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08004372 spin_lock(&ifpub->lock);
4373 ifpub->regen_count = 0;
4374 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 ipv6_create_tempaddr(ifpub, ifp);
4376 in6_ifa_put(ifpub);
4377 in6_ifa_put(ifp);
4378 goto restart;
4379 }
4380 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
4381 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
4382 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 } else {
4384 /* ifp->prefered_lft <= ifp->valid_lft */
4385 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
4386 next = ifp->tstamp + ifp->prefered_lft * HZ;
4387 spin_unlock(&ifp->lock);
4388 }
4389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 }
4391
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07004392 next_sec = round_jiffies_up(next);
4393 next_sched = next;
4394
4395 /* If rounded timeout is accurate enough, accept it. */
4396 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
4397 next_sched = next_sec;
4398
4399 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
4400 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
4401 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
4402
dingtianhongba3542e2013-08-17 10:27:04 +08004403 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
4404 now, next, next_sec, next_sched);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004405 mod_delayed_work(addrconf_wq, &addr_chk_work, next_sched - now);
stephen hemminger5c578aed2010-03-17 20:31:11 +00004406 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407}
4408
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004409static void addrconf_verify_work(struct work_struct *w)
4410{
4411 rtnl_lock();
4412 addrconf_verify_rtnl();
4413 rtnl_unlock();
4414}
4415
4416static void addrconf_verify(void)
4417{
4418 mod_delayed_work(addrconf_wq, &addr_chk_work, 0);
4419}
4420
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004421static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
4422 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07004423{
4424 struct in6_addr *pfx = NULL;
4425
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004426 *peer_pfx = NULL;
4427
Thomas Graf461d8832006-09-18 00:09:49 -07004428 if (addr)
4429 pfx = nla_data(addr);
4430
4431 if (local) {
4432 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004433 *peer_pfx = pfx;
4434 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07004435 }
4436
4437 return pfx;
4438}
4439
Patrick McHardyef7c79e2007-06-05 12:38:30 -07004440static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07004441 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
4442 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
4443 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
Jiri Pirko479840f2013-12-06 09:45:21 +01004444 [IFA_FLAGS] = { .len = sizeof(u32) },
Thomas Graf461d8832006-09-18 00:09:49 -07004445};
4446
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447static int
David Ahernc21ef3e2017-04-16 09:48:24 -07004448inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh,
4449 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004451 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07004452 struct ifaddrmsg *ifm;
4453 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004454 struct in6_addr *pfx, *peer_pfx;
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02004455 u32 ifa_flags;
Thomas Grafb933f712006-09-18 00:10:19 -07004456 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Johannes Bergfceb6432017-04-12 14:34:07 +02004458 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004459 extack);
Thomas Grafb933f712006-09-18 00:10:19 -07004460 if (err < 0)
4461 return err;
4462
4463 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004464 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Ian Morris63159f22015-03-29 14:00:04 +01004465 if (!pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 return -EINVAL;
4467
Heiner Kallweit6046d5b2014-04-20 21:29:36 +02004468 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
4469
4470 /* We ignore other flags so far. */
4471 ifa_flags &= IFA_F_MANAGETEMPADDR;
4472
4473 return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx,
4474 ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475}
4476
Jiri Pirko479840f2013-12-06 09:45:21 +01004477static int inet6_addr_modify(struct inet6_ifaddr *ifp, u32 ifa_flags,
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004478 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004479{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004480 u32 flags;
4481 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004482 unsigned long timeout;
Jiri Pirko53bd6742013-12-06 09:45:22 +01004483 bool was_managetempaddr;
Thomas Haller5b84efe2014-01-15 15:36:59 +01004484 bool had_prefixroute;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09004485
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004486 ASSERT_RTNL();
4487
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004488 if (!valid_lft || (prefered_lft > valid_lft))
4489 return -EINVAL;
4490
Jiri Pirko53bd6742013-12-06 09:45:22 +01004491 if (ifa_flags & IFA_F_MANAGETEMPADDR &&
4492 (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64))
4493 return -EINVAL;
4494
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004495 timeout = addrconf_timeout_fixup(valid_lft, HZ);
4496 if (addrconf_finite_timeout(timeout)) {
4497 expires = jiffies_to_clock_t(timeout * HZ);
4498 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004499 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004500 } else {
4501 expires = 0;
4502 flags = 0;
4503 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07004504 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004505
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09004506 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
4507 if (addrconf_finite_timeout(timeout)) {
4508 if (timeout == 0)
4509 ifa_flags |= IFA_F_DEPRECATED;
4510 prefered_lft = timeout;
4511 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004512
4513 spin_lock_bh(&ifp->lock);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004514 was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR;
Thomas Haller5b84efe2014-01-15 15:36:59 +01004515 had_prefixroute = ifp->flags & IFA_F_PERMANENT &&
4516 !(ifp->flags & IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004517 ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD |
Thomas Haller761aac72014-01-15 15:36:58 +01004518 IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
4519 IFA_F_NOPREFIXROUTE);
Jiri Pirko53bd6742013-12-06 09:45:22 +01004520 ifp->flags |= ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004521 ifp->tstamp = jiffies;
4522 ifp->valid_lft = valid_lft;
4523 ifp->prefered_lft = prefered_lft;
4524
4525 spin_unlock_bh(&ifp->lock);
4526 if (!(ifp->flags&IFA_F_TENTATIVE))
4527 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004528
Thomas Haller761aac72014-01-15 15:36:58 +01004529 if (!(ifa_flags & IFA_F_NOPREFIXROUTE)) {
4530 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
4531 expires, flags);
Thomas Haller5b84efe2014-01-15 15:36:59 +01004532 } else if (had_prefixroute) {
4533 enum cleanup_prefix_rt_t action;
4534 unsigned long rt_expires;
4535
4536 write_lock_bh(&ifp->idev->lock);
4537 action = check_cleanup_prefix_route(ifp, &rt_expires);
4538 write_unlock_bh(&ifp->idev->lock);
4539
4540 if (action != CLEANUP_PREFIX_RT_NOP) {
4541 cleanup_prefix_route(ifp, rt_expires,
4542 action == CLEANUP_PREFIX_RT_DEL);
4543 }
Thomas Haller761aac72014-01-15 15:36:58 +01004544 }
Jiri Pirko53bd6742013-12-06 09:45:22 +01004545
4546 if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) {
4547 if (was_managetempaddr && !(ifp->flags & IFA_F_MANAGETEMPADDR))
4548 valid_lft = prefered_lft = 0;
4549 manage_tempaddrs(ifp->idev, ifp, valid_lft, prefered_lft,
4550 !was_managetempaddr, jiffies);
4551 }
4552
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01004553 addrconf_verify_rtnl();
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004554
4555 return 0;
4556}
4557
4558static int
David Ahernc21ef3e2017-04-16 09:48:24 -07004559inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh,
4560 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004562 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07004563 struct ifaddrmsg *ifm;
4564 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004565 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07004566 struct inet6_ifaddr *ifa;
4567 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004568 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
Jiri Pirko479840f2013-12-06 09:45:21 +01004569 u32 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07004570 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Johannes Bergfceb6432017-04-12 14:34:07 +02004572 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004573 extack);
Thomas Graf461d8832006-09-18 00:09:49 -07004574 if (err < 0)
4575 return err;
4576
4577 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004578 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Ian Morris63159f22015-03-29 14:00:04 +01004579 if (!pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 return -EINVAL;
4581
Thomas Graf461d8832006-09-18 00:09:49 -07004582 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09004583 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07004584
4585 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09004586 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07004587 preferred_lft = ci->ifa_prefered;
4588 } else {
4589 preferred_lft = INFINITY_LIFE_TIME;
4590 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA0778769d2006-07-28 18:12:10 +09004591 }
4592
Daniel Lezcanoaf284932008-03-05 10:46:57 -08004593 dev = __dev_get_by_index(net, ifm->ifa_index);
Ian Morris63159f22015-03-29 14:00:04 +01004594 if (!dev)
Thomas Graf7198f8c2006-09-18 00:13:46 -07004595 return -ENODEV;
4596
Jiri Pirko479840f2013-12-06 09:45:21 +01004597 ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags;
4598
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004599 /* We ignore other flags so far. */
Thomas Haller761aac72014-01-15 15:36:58 +01004600 ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR |
Madhu Challa93a714d2015-02-25 09:58:35 -08004601 IFA_F_NOPREFIXROUTE | IFA_F_MCAUTOJOIN;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004602
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08004603 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Ian Morris63159f22015-03-29 14:00:04 +01004604 if (!ifa) {
Thomas Graf7198f8c2006-09-18 00:13:46 -07004605 /*
4606 * It would be best to check for !NLM_F_CREATE here but
stephen hemmingerdb9c7c32014-01-12 11:26:32 -08004607 * userspace already relies on not having to provide this.
Thomas Graf7198f8c2006-09-18 00:13:46 -07004608 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004609 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08004610 ifm->ifa_prefixlen, ifa_flags,
4611 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09004612 }
4613
Thomas Graf7198f8c2006-09-18 00:13:46 -07004614 if (nlh->nlmsg_flags & NLM_F_EXCL ||
4615 !(nlh->nlmsg_flags & NLM_F_REPLACE))
4616 err = -EEXIST;
4617 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07004618 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07004619
4620 in6_ifa_put(ifa);
4621
4622 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623}
4624
Jiri Pirko479840f2013-12-06 09:45:21 +01004625static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags,
Thomas Graf101bb222006-09-18 00:11:52 -07004626 u8 scope, int ifindex)
4627{
4628 struct ifaddrmsg *ifm;
4629
4630 ifm = nlmsg_data(nlh);
4631 ifm->ifa_family = AF_INET6;
4632 ifm->ifa_prefixlen = prefixlen;
4633 ifm->ifa_flags = flags;
4634 ifm->ifa_scope = scope;
4635 ifm->ifa_index = ifindex;
4636}
4637
Thomas Graf85486af2006-09-18 00:11:24 -07004638static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
4639 unsigned long tstamp, u32 preferred, u32 valid)
4640{
4641 struct ifa_cacheinfo ci;
4642
Thomas Graf18a31e12010-11-17 04:12:02 +00004643 ci.cstamp = cstamp_delta(cstamp);
4644 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07004645 ci.ifa_prefered = preferred;
4646 ci.ifa_valid = valid;
4647
4648 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
4649}
4650
Thomas Graf101bb222006-09-18 00:11:52 -07004651static inline int rt_scope(int ifa_scope)
4652{
4653 if (ifa_scope & IFA_HOST)
4654 return RT_SCOPE_HOST;
4655 else if (ifa_scope & IFA_LINK)
4656 return RT_SCOPE_LINK;
4657 else if (ifa_scope & IFA_SITE)
4658 return RT_SCOPE_SITE;
4659 else
4660 return RT_SCOPE_UNIVERSE;
4661}
4662
Thomas Graf0ab68032006-09-18 00:12:35 -07004663static inline int inet6_ifaddr_msgsize(void)
4664{
Thomas Graf339bf982006-11-10 14:10:15 -08004665 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004666 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08004667 + nla_total_size(16) /* IFA_ADDRESS */
Jiri Pirko479840f2013-12-06 09:45:21 +01004668 + nla_total_size(sizeof(struct ifa_cacheinfo))
4669 + nla_total_size(4) /* IFA_FLAGS */;
Thomas Graf0ab68032006-09-18 00:12:35 -07004670}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004671
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004673 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07004676 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677
Eric W. Biederman15e47302012-09-07 20:12:54 +00004678 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Ian Morris63159f22015-03-29 14:00:04 +01004679 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004680 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004681
Thomas Graf101bb222006-09-18 00:11:52 -07004682 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
4683 ifa->idev->dev->ifindex);
4684
Yasushi Asanofad8da32013-12-31 12:04:19 +09004685 if (!((ifa->flags&IFA_F_PERMANENT) &&
4686 (ifa->prefered_lft == INFINITY_LIFE_TIME))) {
Thomas Graf85486af2006-09-18 00:11:24 -07004687 preferred = ifa->prefered_lft;
4688 valid = ifa->valid_lft;
4689 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00004691 if (preferred > tval)
4692 preferred -= tval;
4693 else
4694 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00004695 if (valid != INFINITY_LIFE_TIME) {
4696 if (valid > tval)
4697 valid -= tval;
4698 else
4699 valid = 0;
4700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 }
4702 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07004703 preferred = INFINITY_LIFE_TIME;
4704 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 }
Thomas Graf85486af2006-09-18 00:11:24 -07004706
Cong Wang7996c792013-05-22 05:41:06 +00004707 if (!ipv6_addr_any(&ifa->peer_addr)) {
Jiri Benc930345e2015-03-29 16:59:25 +02004708 if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 ||
4709 nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->peer_addr) < 0)
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004710 goto error;
4711 } else
Jiri Benc930345e2015-03-29 16:59:25 +02004712 if (nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->addr) < 0)
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004713 goto error;
4714
4715 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
4716 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07004717
Jiri Pirko479840f2013-12-06 09:45:21 +01004718 if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
4719 goto error;
4720
Johannes Berg053c0952015-01-16 22:09:00 +01004721 nlmsg_end(skb, nlh);
4722 return 0;
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004723
4724error:
4725 nlmsg_cancel(skb, nlh);
4726 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727}
4728
4729static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004730 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07004733 u8 scope = RT_SCOPE_UNIVERSE;
4734 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735
Thomas Graf101bb222006-09-18 00:11:52 -07004736 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
4737 scope = RT_SCOPE_SITE;
4738
Eric W. Biederman15e47302012-09-07 20:12:54 +00004739 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Ian Morris63159f22015-03-29 14:00:04 +01004740 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004741 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004742
Thomas Graf101bb222006-09-18 00:11:52 -07004743 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Jiri Benc930345e2015-03-29 16:59:25 +02004744 if (nla_put_in6_addr(skb, IFA_MULTICAST, &ifmca->mca_addr) < 0 ||
Thomas Graf0ab68032006-09-18 00:12:35 -07004745 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08004746 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
4747 nlmsg_cancel(skb, nlh);
4748 return -EMSGSIZE;
4749 }
Thomas Graf85486af2006-09-18 00:11:24 -07004750
Johannes Berg053c0952015-01-16 22:09:00 +01004751 nlmsg_end(skb, nlh);
4752 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753}
4754
4755static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004756 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07004759 u8 scope = RT_SCOPE_UNIVERSE;
4760 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
Thomas Graf101bb222006-09-18 00:11:52 -07004762 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
4763 scope = RT_SCOPE_SITE;
4764
Eric W. Biederman15e47302012-09-07 20:12:54 +00004765 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Ian Morris63159f22015-03-29 14:00:04 +01004766 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004767 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07004768
Thomas Graf101bb222006-09-18 00:11:52 -07004769 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Jiri Benc930345e2015-03-29 16:59:25 +02004770 if (nla_put_in6_addr(skb, IFA_ANYCAST, &ifaca->aca_addr) < 0 ||
Thomas Graf0ab68032006-09-18 00:12:35 -07004771 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08004772 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
4773 nlmsg_cancel(skb, nlh);
4774 return -EMSGSIZE;
4775 }
Thomas Graf85486af2006-09-18 00:11:24 -07004776
Johannes Berg053c0952015-01-16 22:09:00 +01004777 nlmsg_end(skb, nlh);
4778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779}
4780
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004781enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 UNICAST_ADDR,
4783 MULTICAST_ADDR,
4784 ANYCAST_ADDR,
4785};
4786
Eric Dumazet234b27c2009-11-12 04:11:50 +00004787/* called with rcu_read_lock() */
4788static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
4789 struct netlink_callback *cb, enum addr_type_t type,
4790 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 struct ifmcaddr6 *ifmca;
4793 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004794 int err = 1;
4795 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
Eric Dumazet234b27c2009-11-12 04:11:50 +00004797 read_lock_bh(&idev->lock);
4798 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00004799 case UNICAST_ADDR: {
4800 struct inet6_ifaddr *ifa;
4801
Eric Dumazet234b27c2009-11-12 04:11:50 +00004802 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00004803 list_for_each_entry(ifa, &idev->addr_list, if_list) {
4804 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004805 continue;
4806 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004807 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004808 cb->nlh->nlmsg_seq,
4809 RTM_NEWADDR,
4810 NLM_F_MULTI);
Johannes Berg053c0952015-01-16 22:09:00 +01004811 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004812 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004813 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004815 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00004816 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004817 case MULTICAST_ADDR:
4818 /* multicast address */
4819 for (ifmca = idev->mc_list; ifmca;
4820 ifmca = ifmca->next, ip_idx++) {
4821 if (ip_idx < s_ip_idx)
4822 continue;
4823 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004824 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004825 cb->nlh->nlmsg_seq,
4826 RTM_GETMULTICAST,
4827 NLM_F_MULTI);
Johannes Berg053c0952015-01-16 22:09:00 +01004828 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004829 break;
4830 }
4831 break;
4832 case ANYCAST_ADDR:
4833 /* anycast address */
4834 for (ifaca = idev->ac_list; ifaca;
4835 ifaca = ifaca->aca_next, ip_idx++) {
4836 if (ip_idx < s_ip_idx)
4837 continue;
4838 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004839 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004840 cb->nlh->nlmsg_seq,
4841 RTM_GETANYCAST,
4842 NLM_F_MULTI);
Johannes Berg053c0952015-01-16 22:09:00 +01004843 if (err < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004844 break;
4845 }
4846 break;
4847 default:
4848 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004850 read_unlock_bh(&idev->lock);
4851 *p_ip_idx = ip_idx;
4852 return err;
4853}
4854
4855static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4856 enum addr_type_t type)
4857{
4858 struct net *net = sock_net(skb->sk);
4859 int h, s_h;
4860 int idx, ip_idx;
4861 int s_idx, s_ip_idx;
4862 struct net_device *dev;
4863 struct inet6_dev *idev;
4864 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004865
4866 s_h = cb->args[0];
4867 s_idx = idx = cb->args[1];
4868 s_ip_idx = ip_idx = cb->args[2];
4869
4870 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004871 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004872 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4873 idx = 0;
4874 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004875 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004876 if (idx < s_idx)
4877 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004878 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004879 s_ip_idx = 0;
4880 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004881 idev = __in6_dev_get(dev);
4882 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004883 goto cont;
4884
4885 if (in6_dump_addrs(idev, skb, cb, type,
David S. Miller7b46a642015-01-18 23:36:08 -05004886 s_ip_idx, &ip_idx) < 0)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004887 goto done;
4888cont:
4889 idx++;
4890 }
4891 }
4892done:
4893 rcu_read_unlock();
4894 cb->args[0] = h;
4895 cb->args[1] = idx;
4896 cb->args[2] = ip_idx;
4897
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 return skb->len;
4899}
4900
4901static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4902{
4903 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004904
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 return inet6_dump_addr(skb, cb, type);
4906}
4907
4908static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4909{
4910 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004911
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 return inet6_dump_addr(skb, cb, type);
4913}
4914
4915
4916static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4917{
4918 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004919
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 return inet6_dump_addr(skb, cb, type);
4921}
4922
David Ahernc21ef3e2017-04-16 09:48:24 -07004923static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
4924 struct netlink_ext_ack *extack)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004925{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004926 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004927 struct ifaddrmsg *ifm;
4928 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004929 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004930 struct net_device *dev = NULL;
4931 struct inet6_ifaddr *ifa;
4932 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004933 int err;
4934
Johannes Bergfceb6432017-04-12 14:34:07 +02004935 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004936 extack);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004937 if (err < 0)
4938 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004939
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004940 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Ian Morris63159f22015-03-29 14:00:04 +01004941 if (!addr) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004942 err = -EINVAL;
4943 goto errout;
4944 }
4945
4946 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004947 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004948 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004949
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004950 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4951 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004952 err = -EADDRNOTAVAIL;
4953 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004954 }
4955
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004956 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4957 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004958 err = -ENOBUFS;
4959 goto errout_ifa;
4960 }
4961
Eric W. Biederman15e47302012-09-07 20:12:54 +00004962 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004963 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004964 if (err < 0) {
4965 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4966 WARN_ON(err == -EMSGSIZE);
4967 kfree_skb(skb);
4968 goto errout_ifa;
4969 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004970 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004971errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004972 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004973errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004974 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004975}
4976
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4978{
4979 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004980 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004981 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982
Mahesh Bandewarf784ad32017-01-04 15:01:01 -08004983 /* Don't send DELADDR notification for TENTATIVE address,
4984 * since NEWADDR notification is sent only after removing
4985 * TENTATIVE flag.
4986 */
4987 if (ifa->flags & IFA_F_TENTATIVE && event == RTM_DELADDR)
4988 return;
4989
Thomas Graf0ab68032006-09-18 00:12:35 -07004990 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01004991 if (!skb)
Thomas Graf5d620262006-08-15 00:35:02 -07004992 goto errout;
4993
4994 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004995 if (err < 0) {
4996 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4997 WARN_ON(err == -EMSGSIZE);
4998 kfree_skb(skb);
4999 goto errout;
5000 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005001 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
5002 return;
Thomas Graf5d620262006-08-15 00:35:02 -07005003errout:
5004 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08005005 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006}
5007
Dave Jonesb6f99a22007-03-22 12:27:49 -07005008static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 __s32 *array, int bytes)
5010{
Thomas Graf04561c12006-11-14 19:53:58 -08005011 BUG_ON(bytes < (DEVCONF_MAX * 4));
5012
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 memset(array, 0, bytes);
5014 array[DEVCONF_FORWARDING] = cnf->forwarding;
5015 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
5016 array[DEVCONF_MTU6] = cnf->mtu6;
5017 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
5018 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
5019 array[DEVCONF_AUTOCONF] = cnf->autoconf;
5020 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
5021 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00005022 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
5023 jiffies_to_msecs(cnf->rtr_solicit_interval);
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005024 array[DEVCONF_RTR_SOLICIT_MAX_INTERVAL] =
5025 jiffies_to_msecs(cnf->rtr_solicit_max_interval);
Thomas Graf93908d12010-11-17 01:44:24 +00005026 array[DEVCONF_RTR_SOLICIT_DELAY] =
5027 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02005029 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
5030 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
5031 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
5032 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
5034 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
5035 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
5036 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
5037 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08005039 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
Hangbin Liu8013d1d72015-07-30 14:28:42 +08005040 array[DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT] = cnf->accept_ra_min_hop_limit;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08005041 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005042#ifdef CONFIG_IPV6_ROUTER_PREF
5043 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00005044 array[DEVCONF_RTR_PROBE_INTERVAL] =
5045 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08005046#ifdef CONFIG_IPV6_ROUTE_INFO
Joel Scherpelzbbea1242017-03-22 18:19:04 +09005047 array[DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN] = cnf->accept_ra_rt_info_min_plen;
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08005048 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
5049#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08005050#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07005051 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005052 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07005053#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
5054 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
Erik Kline7fd25612014-10-28 18:11:14 +09005055 array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic;
Neil Horman95c385b2007-04-25 17:08:10 -07005056#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005057#ifdef CONFIG_IPV6_MROUTE
5058 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
5059#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005060 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005061 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00005062 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005063 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02005064 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Ben Greeard9333192014-06-25 14:44:53 -07005065 array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local;
Harout Hedeshianc2943f12015-01-20 10:06:05 -07005066 array[DEVCONF_ACCEPT_RA_MTU] = cnf->accept_ra_mtu;
Andy Gospodarek35103d12015-08-13 10:39:01 -04005067 array[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN] = cnf->ignore_routes_with_linkdown;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005068 /* we omit DEVCONF_STABLE_SECRET for now */
Erik Kline3985e8a2015-07-22 16:38:25 +09005069 array[DEVCONF_USE_OIF_ADDRS_ONLY] = cnf->use_oif_addrs_only;
Johannes Bergabbc3042016-02-04 13:31:19 +01005070 array[DEVCONF_DROP_UNICAST_IN_L2_MULTICAST] = cnf->drop_unicast_in_l2_multicast;
Johannes Berg7a02bf82016-02-04 13:31:20 +01005071 array[DEVCONF_DROP_UNSOLICITED_NA] = cnf->drop_unsolicited_na;
David Ahernf1705ec2016-02-24 09:25:37 -08005072 array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down;
David Lebrun1ababeb2016-11-08 14:57:39 +01005073 array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled;
David Lebrunbf355b82016-11-08 14:57:42 +01005074#ifdef CONFIG_IPV6_SEG6_HMAC
5075 array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac;
5076#endif
Erik Nordmarkadc176c2016-12-02 14:00:08 -08005077 array[DEVCONF_ENHANCED_DAD] = cnf->enhanced_dad;
Felix Jiad35a00b2017-01-26 16:59:17 +13005078 array[DEVCONF_ADDR_GEN_MODE] = cnf->addr_gen_mode;
David Forsterdf789fe2017-02-23 16:27:18 +00005079 array[DEVCONF_DISABLE_POLICY] = cnf->disable_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080}
5081
Thomas Grafb382b192010-11-16 04:33:57 +00005082static inline size_t inet6_ifla6_size(void)
5083{
5084 return nla_total_size(4) /* IFLA_INET6_FLAGS */
5085 + nla_total_size(sizeof(struct ifla_cacheinfo))
5086 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
5087 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005088 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
5089 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00005090}
5091
Thomas Graf339bf982006-11-10 14:10:15 -08005092static inline size_t inet6_if_nlmsg_size(void)
5093{
5094 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
5095 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
5096 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
5097 + nla_total_size(4) /* IFLA_MTU */
5098 + nla_total_size(4) /* IFLA_LINK */
Andy Gospodarek03443382015-08-13 15:26:35 -04005099 + nla_total_size(1) /* IFLA_OPERSTATE */
Thomas Grafb382b192010-11-16 04:33:57 +00005100 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08005101}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07005102
Eric Dumazetbe281e52011-05-19 01:14:23 +00005103static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Jia Heaca05672016-09-30 11:29:03 +08005104 int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005105{
5106 int i;
Jia Heaca05672016-09-30 11:29:03 +08005107 int pad = bytes - sizeof(u64) * ICMP6_MIB_MAX;
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005108 BUG_ON(pad < 0);
5109
5110 /* Use put_unaligned() because stats may not be aligned for u64. */
Jia Heaca05672016-09-30 11:29:03 +08005111 put_unaligned(ICMP6_MIB_MAX, &stats[0]);
5112 for (i = 1; i < ICMP6_MIB_MAX; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00005113 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005114
Jia Heaca05672016-09-30 11:29:03 +08005115 memset(&stats[ICMP6_MIB_MAX], 0, pad);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005116}
5117
WANG Cong698365f2014-05-05 15:55:55 -07005118static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib,
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305119 int bytes, size_t syncpoff)
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005120{
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305121 int i, c;
5122 u64 buff[IPSTATS_MIB_MAX];
5123 int pad = bytes - sizeof(u64) * IPSTATS_MIB_MAX;
5124
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005125 BUG_ON(pad < 0);
5126
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305127 memset(buff, 0, sizeof(buff));
5128 buff[0] = IPSTATS_MIB_MAX;
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005129
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305130 for_each_possible_cpu(c) {
5131 for (i = 1; i < IPSTATS_MIB_MAX; i++)
5132 buff[i] += snmp_get_cpu_field64(mib, c, i, syncpoff);
5133 }
5134
5135 memcpy(stats, buff, IPSTATS_MIB_MAX * sizeof(u64));
5136 memset(&stats[IPSTATS_MIB_MAX], 0, pad);
Eric Dumazet4ce3c182010-06-30 13:31:19 -07005137}
5138
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005139static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
5140 int bytes)
5141{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005142 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005143 case IFLA_INET6_STATS:
Raghavendra K Ta3a77372015-08-30 11:29:42 +05305144 __snmp6_fill_stats64(stats, idev->stats.ipv6, bytes,
5145 offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005146 break;
5147 case IFLA_INET6_ICMP6STATS:
Jia Heaca05672016-09-30 11:29:03 +08005148 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07005149 break;
5150 }
5151}
5152
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005153static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev,
5154 u32 ext_filter_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005156 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08005157 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
David S. Millerc78679e2012-04-01 20:27:33 -04005159 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
5160 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08005162 ci.tstamp = cstamp_delta(idev->tstamp);
5163 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
Jiri Pirko1f9248e2013-12-07 19:26:53 +01005164 ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME));
David S. Millerc78679e2012-04-01 20:27:33 -04005165 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
5166 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005167 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
Ian Morris63159f22015-03-29 14:00:04 +01005168 if (!nla)
Thomas Graf04561c12006-11-14 19:53:58 -08005169 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005170 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005172 /* XXX - MC not implemented */
5173
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005174 if (ext_filter_mask & RTEXT_FILTER_SKIP_STATS)
5175 return 0;
5176
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005177 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
Ian Morris63159f22015-03-29 14:00:04 +01005178 if (!nla)
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005179 goto nla_put_failure;
5180 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
5181
5182 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
Ian Morris63159f22015-03-29 14:00:04 +01005183 if (!nla)
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07005184 goto nla_put_failure;
5185 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005187 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
Ian Morris63159f22015-03-29 14:00:04 +01005188 if (!nla)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005189 goto nla_put_failure;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005190
Felix Jiad35a00b2017-01-26 16:59:17 +13005191 if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->cnf.addr_gen_mode))
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005192 goto nla_put_failure;
5193
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005194 read_lock_bh(&idev->lock);
5195 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
5196 read_unlock_bh(&idev->lock);
5197
Thomas Grafb382b192010-11-16 04:33:57 +00005198 return 0;
5199
5200nla_put_failure:
5201 return -EMSGSIZE;
5202}
5203
Arad, Ronenb1974ed2015-10-19 09:23:28 -07005204static size_t inet6_get_link_af_size(const struct net_device *dev,
5205 u32 ext_filter_mask)
Thomas Grafb382b192010-11-16 04:33:57 +00005206{
5207 if (!__in6_dev_get(dev))
5208 return 0;
5209
5210 return inet6_ifla6_size();
5211}
5212
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005213static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev,
5214 u32 ext_filter_mask)
Thomas Grafb382b192010-11-16 04:33:57 +00005215{
5216 struct inet6_dev *idev = __in6_dev_get(dev);
5217
5218 if (!idev)
5219 return -ENODATA;
5220
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005221 if (inet6_fill_ifla6_attrs(skb, idev, ext_filter_mask) < 0)
Thomas Grafb382b192010-11-16 04:33:57 +00005222 return -EMSGSIZE;
5223
5224 return 0;
5225}
5226
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005227static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
5228{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005229 struct inet6_ifaddr *ifp;
5230 struct net_device *dev = idev->dev;
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005231 bool clear_token, update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02005232 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005233
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005234 ASSERT_RTNL();
5235
Ian Morris63159f22015-03-29 14:00:04 +01005236 if (!token)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005237 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005238 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
5239 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005240 if (!ipv6_accept_ra(idev))
5241 return -EINVAL;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005242 if (idev->cnf.rtr_solicits == 0)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005243 return -EINVAL;
5244
5245 write_lock_bh(&idev->lock);
5246
5247 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
5248 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
5249
5250 write_unlock_bh(&idev->lock);
5251
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005252 clear_token = ipv6_addr_any(token);
5253 if (clear_token)
5254 goto update_lft;
5255
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02005256 if (!idev->dead && (idev->if_flags & IF_READY) &&
5257 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
5258 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00005259 /* If we're not ready, then normal ifup will take care
5260 * of this. Otherwise, we need to request our rs here.
5261 */
5262 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
5263 update_rs = true;
5264 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005265
Daniel Borkmann47e27d52016-04-08 15:55:00 +02005266update_lft:
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005267 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00005268
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005269 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00005270 idev->if_flags |= IF_RS_SENT;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005271 idev->rs_interval = rfc3315_s14_backoff_init(
5272 idev->cnf.rtr_solicit_interval);
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005273 idev->rs_probes = 1;
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07005274 addrconf_mod_rs_timer(idev, idev->rs_interval);
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02005275 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005276
5277 /* Well, that's kinda nasty ... */
5278 list_for_each_entry(ifp, &idev->addr_list, if_list) {
5279 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00005280 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005281 ifp->valid_lft = 0;
5282 ifp->prefered_lft = 0;
5283 }
5284 spin_unlock(&ifp->lock);
5285 }
5286
5287 write_unlock_bh(&idev->lock);
Lubomir Rintelb2ed64a2014-10-27 17:39:16 +01005288 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005289 addrconf_verify_rtnl();
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005290 return 0;
5291}
5292
Daniel Borkmann11b1f822015-02-05 14:39:11 +01005293static const struct nla_policy inet6_af_policy[IFLA_INET6_MAX + 1] = {
5294 [IFLA_INET6_ADDR_GEN_MODE] = { .type = NLA_U8 },
5295 [IFLA_INET6_TOKEN] = { .len = sizeof(struct in6_addr) },
5296};
5297
5298static int inet6_validate_link_af(const struct net_device *dev,
5299 const struct nlattr *nla)
5300{
5301 struct nlattr *tb[IFLA_INET6_MAX + 1];
5302
5303 if (dev && !__in6_dev_get(dev))
5304 return -EAFNOSUPPORT;
5305
Johannes Bergfceb6432017-04-12 14:34:07 +02005306 return nla_parse_nested(tb, IFLA_INET6_MAX, nla, inet6_af_policy,
5307 NULL);
Daniel Borkmann11b1f822015-02-05 14:39:11 +01005308}
5309
Felix Jiad35a00b2017-01-26 16:59:17 +13005310static int check_addr_gen_mode(int mode)
5311{
5312 if (mode != IN6_ADDR_GEN_MODE_EUI64 &&
5313 mode != IN6_ADDR_GEN_MODE_NONE &&
5314 mode != IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5315 mode != IN6_ADDR_GEN_MODE_RANDOM)
5316 return -EINVAL;
5317 return 1;
5318}
5319
5320static int check_stable_privacy(struct inet6_dev *idev, struct net *net,
5321 int mode)
5322{
5323 if (mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY &&
5324 !idev->cnf.stable_secret.initialized &&
5325 !net->ipv6.devconf_dflt->stable_secret.initialized)
5326 return -EINVAL;
5327 return 1;
5328}
5329
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005330static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
5331{
5332 int err = -EINVAL;
5333 struct inet6_dev *idev = __in6_dev_get(dev);
5334 struct nlattr *tb[IFLA_INET6_MAX + 1];
5335
5336 if (!idev)
5337 return -EAFNOSUPPORT;
5338
Johannes Bergfceb6432017-04-12 14:34:07 +02005339 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0)
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005340 BUG();
5341
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005342 if (tb[IFLA_INET6_TOKEN]) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005343 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005344 if (err)
5345 return err;
5346 }
5347
5348 if (tb[IFLA_INET6_ADDR_GEN_MODE]) {
5349 u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]);
5350
Felix Jiad35a00b2017-01-26 16:59:17 +13005351 if (check_addr_gen_mode(mode) < 0 ||
5352 check_stable_privacy(idev, dev_net(dev), mode) < 0)
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005353 return -EINVAL;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01005354
Felix Jiad35a00b2017-01-26 16:59:17 +13005355 idev->cnf.addr_gen_mode = mode;
Jiri Pirkobc91b0f2014-07-11 21:10:18 +02005356 err = 0;
5357 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005358
5359 return err;
5360}
5361
Thomas Grafb382b192010-11-16 04:33:57 +00005362static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005363 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00005364{
5365 struct net_device *dev = idev->dev;
5366 struct ifinfomsg *hdr;
5367 struct nlmsghdr *nlh;
5368 void *protoinfo;
5369
Eric W. Biederman15e47302012-09-07 20:12:54 +00005370 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Ian Morris63159f22015-03-29 14:00:04 +01005371 if (!nlh)
Thomas Grafb382b192010-11-16 04:33:57 +00005372 return -EMSGSIZE;
5373
5374 hdr = nlmsg_data(nlh);
5375 hdr->ifi_family = AF_INET6;
5376 hdr->__ifi_pad = 0;
5377 hdr->ifi_type = dev->type;
5378 hdr->ifi_index = dev->ifindex;
5379 hdr->ifi_flags = dev_get_flags(dev);
5380 hdr->ifi_change = 0;
5381
David S. Millerc78679e2012-04-01 20:27:33 -04005382 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
5383 (dev->addr_len &&
5384 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
5385 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
Nicolas Dichtela54acb32015-04-02 17:07:00 +02005386 (dev->ifindex != dev_get_iflink(dev) &&
Andy Gospodarek03443382015-08-13 15:26:35 -04005387 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) ||
5388 nla_put_u8(skb, IFLA_OPERSTATE,
5389 netif_running(dev) ? dev->operstate : IF_OPER_DOWN))
David S. Millerc78679e2012-04-01 20:27:33 -04005390 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00005391 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
Ian Morris63159f22015-03-29 14:00:04 +01005392 if (!protoinfo)
Thomas Grafb382b192010-11-16 04:33:57 +00005393 goto nla_put_failure;
5394
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04005395 if (inet6_fill_ifla6_attrs(skb, idev, 0) < 0)
Thomas Grafb382b192010-11-16 04:33:57 +00005396 goto nla_put_failure;
5397
Thomas Graf04561c12006-11-14 19:53:58 -08005398 nla_nest_end(skb, protoinfo);
Johannes Berg053c0952015-01-16 22:09:00 +01005399 nlmsg_end(skb, nlh);
5400 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Thomas Graf04561c12006-11-14 19:53:58 -08005402nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08005403 nlmsg_cancel(skb, nlh);
5404 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405}
5406
5407static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
5408{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09005409 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00005410 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08005411 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 struct net_device *dev;
5413 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00005414 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
Eric Dumazet84d26972009-11-09 12:11:28 +00005416 s_h = cb->args[0];
5417 s_idx = cb->args[1];
5418
5419 rcu_read_lock();
5420 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
5421 idx = 0;
5422 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08005423 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00005424 if (idx < s_idx)
5425 goto cont;
5426 idev = __in6_dev_get(dev);
5427 if (!idev)
5428 goto cont;
5429 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005430 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00005431 cb->nlh->nlmsg_seq,
Johannes Berg053c0952015-01-16 22:09:00 +01005432 RTM_NEWLINK, NLM_F_MULTI) < 0)
Eric Dumazet84d26972009-11-09 12:11:28 +00005433 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07005434cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00005435 idx++;
5436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 }
Eric Dumazet84d26972009-11-09 12:11:28 +00005438out:
5439 rcu_read_unlock();
5440 cb->args[1] = idx;
5441 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
5443 return skb->len;
5444}
5445
5446void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
5447{
5448 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005449 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07005450 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005451
Thomas Graf339bf982006-11-10 14:10:15 -08005452 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01005453 if (!skb)
Thomas Graf8d7a76c2006-08-15 00:35:47 -07005454 goto errout;
5455
5456 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08005457 if (err < 0) {
5458 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
5459 WARN_ON(err == -EMSGSIZE);
5460 kfree_skb(skb);
5461 goto errout;
5462 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00005463 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005464 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07005465errout:
5466 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00005467 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468}
5469
Thomas Graf339bf982006-11-10 14:10:15 -08005470static inline size_t inet6_prefix_nlmsg_size(void)
5471{
5472 return NLMSG_ALIGN(sizeof(struct prefixmsg))
5473 + nla_total_size(sizeof(struct in6_addr))
5474 + nla_total_size(sizeof(struct prefix_cacheinfo));
5475}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07005476
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005478 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08005479 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480{
Thomas Graf6051e2f2006-11-14 19:54:19 -08005481 struct prefixmsg *pmsg;
5482 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 struct prefix_cacheinfo ci;
5484
Eric W. Biederman15e47302012-09-07 20:12:54 +00005485 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Ian Morris63159f22015-03-29 14:00:04 +01005486 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005487 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08005488
5489 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07005491 pmsg->prefix_pad1 = 0;
5492 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 pmsg->prefix_ifindex = idev->dev->ifindex;
5494 pmsg->prefix_len = pinfo->prefix_len;
5495 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07005496 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 pmsg->prefix_flags = 0;
5498 if (pinfo->onlink)
5499 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
5500 if (pinfo->autoconf)
5501 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
5502
David S. Millerc78679e2012-04-01 20:27:33 -04005503 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
5504 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 ci.preferred_time = ntohl(pinfo->prefered);
5506 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04005507 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
5508 goto nla_put_failure;
Johannes Berg053c0952015-01-16 22:09:00 +01005509 nlmsg_end(skb, nlh);
5510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
Thomas Graf6051e2f2006-11-14 19:54:19 -08005512nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08005513 nlmsg_cancel(skb, nlh);
5514 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515}
5516
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005517static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 struct prefix_info *pinfo)
5519{
5520 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005521 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07005522 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523
Thomas Graf339bf982006-11-10 14:10:15 -08005524 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +01005525 if (!skb)
Thomas Graf8c384bfa2006-08-15 00:36:07 -07005526 goto errout;
5527
5528 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08005529 if (err < 0) {
5530 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
5531 WARN_ON(err == -EMSGSIZE);
5532 kfree_skb(skb);
5533 goto errout;
5534 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005535 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
5536 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07005537errout:
5538 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08005539 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540}
5541
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
5543{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00005544 struct net *net = dev_net(ifp->idev->dev);
5545
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01005546 if (event)
5547 ASSERT_RTNL();
5548
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
5550
5551 switch (event) {
5552 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07005553 /*
5554 * If the address was optimistic
5555 * we inserted the route at the start of
5556 * our DAD process, so we don't need
5557 * to do it again
5558 */
5559 if (!(ifp->rt->rt6i_node))
5560 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561 if (ifp->idev->cnf.forwarding)
5562 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00005563 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005564 addrconf_prefix_route(&ifp->peer_addr, 128,
5565 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 break;
5567 case RTM_DELADDR:
5568 if (ifp->idev->cnf.forwarding)
5569 addrconf_leave_anycast(ifp);
5570 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00005571 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005572 struct rt6_info *rt;
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005573
Nicolas Dichtele7478df2014-09-03 23:59:22 +02005574 rt = addrconf_get_prefix_route(&ifp->peer_addr, 128,
5575 ifp->idev->dev, 0, 0);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07005576 if (rt)
5577 ip6_del_rt(rt);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00005578 }
David Ahern38bd10c2016-04-21 20:56:12 -07005579 if (ifp->rt) {
Wei Wangad65a2f2017-06-17 10:42:35 -07005580 if (dst_hold_safe(&ifp->rt->dst))
5581 ip6_del_rt(ifp->rt);
David Ahern38bd10c2016-04-21 20:56:12 -07005582 }
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02005583 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 break;
5585 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00005586 atomic_inc(&net->ipv6.dev_addr_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587}
5588
5589static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
5590{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07005591 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592 if (likely(ifp->idev->dead == 0))
5593 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07005594 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595}
5596
5597#ifdef CONFIG_SYSCTL
5598
5599static
Joe Perchesfe2c6332013-06-11 23:04:25 -07005600int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 void __user *buffer, size_t *lenp, loff_t *ppos)
5602{
5603 int *valp = ctl->data;
5604 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00005605 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07005606 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 int ret;
5608
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005609 /*
5610 * ctl->data points to idev->cnf.forwarding, we should
5611 * not modify it until we get the rtnl lock.
5612 */
5613 lctl = *ctl;
5614 lctl.data = &val;
5615
5616 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08005618 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00005619 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00005620 if (ret)
5621 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005622 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623}
5624
Marcelo Leitner77751422015-02-23 11:17:13 -03005625static
5626int addrconf_sysctl_mtu(struct ctl_table *ctl, int write,
5627 void __user *buffer, size_t *lenp, loff_t *ppos)
5628{
5629 struct inet6_dev *idev = ctl->extra1;
5630 int min_mtu = IPV6_MIN_MTU;
5631 struct ctl_table lctl;
5632
5633 lctl = *ctl;
5634 lctl.extra1 = &min_mtu;
5635 lctl.extra2 = idev ? &idev->dev->mtu : NULL;
5636
5637 return proc_dointvec_minmax(&lctl, write, buffer, lenp, ppos);
5638}
5639
Brian Haley56d417b2009-06-01 03:07:33 -07005640static void dev_disable_change(struct inet6_dev *idev)
5641{
Cong Wang75538c22013-05-29 11:30:50 +08005642 struct netdev_notifier_info info;
5643
Brian Haley56d417b2009-06-01 03:07:33 -07005644 if (!idev || !idev->dev)
5645 return;
5646
Cong Wang75538c22013-05-29 11:30:50 +08005647 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07005648 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08005649 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07005650 else
Cong Wang75538c22013-05-29 11:30:50 +08005651 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07005652}
5653
5654static void addrconf_disable_change(struct net *net, __s32 newf)
5655{
5656 struct net_device *dev;
5657 struct inet6_dev *idev;
5658
Kefeng Wang03e4def2017-01-19 16:26:21 +08005659 for_each_netdev(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07005660 idev = __in6_dev_get(dev);
5661 if (idev) {
5662 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
5663 idev->cnf.disable_ipv6 = newf;
5664 if (changed)
5665 dev_disable_change(idev);
5666 }
Brian Haley56d417b2009-06-01 03:07:33 -07005667 }
Brian Haley56d417b2009-06-01 03:07:33 -07005668}
5669
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005670static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07005671{
5672 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005673 int old;
5674
5675 if (!rtnl_trylock())
5676 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07005677
5678 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005679 old = *p;
5680 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07005681
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005682 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
5683 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07005684 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00005685 }
Brian Haley56d417b2009-06-01 03:07:33 -07005686
5687 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07005688 net->ipv6.devconf_dflt->disable_ipv6 = newf;
5689 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005690 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07005691 dev_disable_change((struct inet6_dev *)table->extra1);
5692
5693 rtnl_unlock();
5694 return 0;
5695}
5696
5697static
Joe Perchesfe2c6332013-06-11 23:04:25 -07005698int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07005699 void __user *buffer, size_t *lenp, loff_t *ppos)
5700{
5701 int *valp = ctl->data;
5702 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00005703 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07005704 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07005705 int ret;
5706
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00005707 /*
5708 * ctl->data points to idev->cnf.disable_ipv6, we should
5709 * not modify it until we get the rtnl lock.
5710 */
5711 lctl = *ctl;
5712 lctl.data = &val;
5713
5714 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07005715
5716 if (write)
5717 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00005718 if (ret)
5719 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07005720 return ret;
5721}
5722
stephen hemmingerc92d5492013-12-17 22:37:14 -08005723static
5724int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write,
5725 void __user *buffer, size_t *lenp, loff_t *ppos)
5726{
5727 int *valp = ctl->data;
5728 int ret;
5729 int old, new;
5730
5731 old = *valp;
5732 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
5733 new = *valp;
5734
5735 if (write && old != new) {
5736 struct net *net = ctl->extra2;
5737
5738 if (!rtnl_trylock())
5739 return restart_syscall();
5740
5741 if (valp == &net->ipv6.devconf_dflt->proxy_ndp)
David Ahern85b3daa2017-03-28 14:28:04 -07005742 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
5743 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005744 NETCONFA_IFINDEX_DEFAULT,
5745 net->ipv6.devconf_dflt);
5746 else if (valp == &net->ipv6.devconf_all->proxy_ndp)
David Ahern85b3daa2017-03-28 14:28:04 -07005747 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
5748 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005749 NETCONFA_IFINDEX_ALL,
5750 net->ipv6.devconf_all);
5751 else {
5752 struct inet6_dev *idev = ctl->extra1;
5753
David Ahern85b3daa2017-03-28 14:28:04 -07005754 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF,
5755 NETCONFA_PROXY_NEIGH,
stephen hemmingerc92d5492013-12-17 22:37:14 -08005756 idev->dev->ifindex,
5757 &idev->cnf);
5758 }
5759 rtnl_unlock();
5760 }
5761
5762 return ret;
5763}
5764
Felix Jiad35a00b2017-01-26 16:59:17 +13005765static int addrconf_sysctl_addr_gen_mode(struct ctl_table *ctl, int write,
5766 void __user *buffer, size_t *lenp,
5767 loff_t *ppos)
5768{
5769 int ret = 0;
5770 int new_val;
5771 struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1;
5772 struct net *net = (struct net *)ctl->extra2;
5773
Felix Jia8c171d62017-02-27 12:41:23 +13005774 if (!rtnl_trylock())
5775 return restart_syscall();
5776
Felix Jiad35a00b2017-01-26 16:59:17 +13005777 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
5778
5779 if (write) {
5780 new_val = *((int *)ctl->data);
5781
Felix Jia8c171d62017-02-27 12:41:23 +13005782 if (check_addr_gen_mode(new_val) < 0) {
5783 ret = -EINVAL;
5784 goto out;
5785 }
Felix Jiad35a00b2017-01-26 16:59:17 +13005786
5787 /* request for default */
5788 if (&net->ipv6.devconf_dflt->addr_gen_mode == ctl->data) {
5789 ipv6_devconf_dflt.addr_gen_mode = new_val;
5790
5791 /* request for individual net device */
5792 } else {
5793 if (!idev)
Felix Jia8c171d62017-02-27 12:41:23 +13005794 goto out;
Felix Jiad35a00b2017-01-26 16:59:17 +13005795
Felix Jia8c171d62017-02-27 12:41:23 +13005796 if (check_stable_privacy(idev, net, new_val) < 0) {
5797 ret = -EINVAL;
5798 goto out;
5799 }
Felix Jiad35a00b2017-01-26 16:59:17 +13005800
5801 if (idev->cnf.addr_gen_mode != new_val) {
5802 idev->cnf.addr_gen_mode = new_val;
Felix Jiad35a00b2017-01-26 16:59:17 +13005803 addrconf_dev_config(idev->dev);
Felix Jiad35a00b2017-01-26 16:59:17 +13005804 }
5805 }
5806 }
5807
Felix Jia8c171d62017-02-27 12:41:23 +13005808out:
5809 rtnl_unlock();
5810
Felix Jiad35a00b2017-01-26 16:59:17 +13005811 return ret;
5812}
5813
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005814static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write,
5815 void __user *buffer, size_t *lenp,
5816 loff_t *ppos)
5817{
5818 int err;
5819 struct in6_addr addr;
5820 char str[IPV6_MAX_STRLEN];
5821 struct ctl_table lctl = *ctl;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01005822 struct net *net = ctl->extra2;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005823 struct ipv6_stable_secret *secret = ctl->data;
5824
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01005825 if (&net->ipv6.devconf_all->stable_secret == ctl->data)
5826 return -EIO;
5827
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005828 lctl.maxlen = IPV6_MAX_STRLEN;
5829 lctl.data = str;
5830
5831 if (!rtnl_trylock())
5832 return restart_syscall();
5833
5834 if (!write && !secret->initialized) {
5835 err = -EIO;
5836 goto out;
5837 }
5838
WANG Cong5449a5c2015-12-21 10:55:45 -08005839 err = snprintf(str, sizeof(str), "%pI6", &secret->secret);
5840 if (err >= sizeof(str)) {
5841 err = -EIO;
5842 goto out;
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005843 }
5844
5845 err = proc_dostring(&lctl, write, buffer, lenp, ppos);
5846 if (err || !write)
5847 goto out;
5848
5849 if (in6_pton(str, -1, addr.in6_u.u6_addr8, -1, NULL) != 1) {
5850 err = -EIO;
5851 goto out;
5852 }
5853
5854 secret->initialized = true;
5855 secret->secret = addr;
5856
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01005857 if (&net->ipv6.devconf_dflt->stable_secret == ctl->data) {
5858 struct net_device *dev;
5859
5860 for_each_netdev(net, dev) {
5861 struct inet6_dev *idev = __in6_dev_get(dev);
5862
5863 if (idev) {
Felix Jiad35a00b2017-01-26 16:59:17 +13005864 idev->cnf.addr_gen_mode =
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01005865 IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
5866 }
5867 }
5868 } else {
5869 struct inet6_dev *idev = ctl->extra1;
5870
Felix Jiad35a00b2017-01-26 16:59:17 +13005871 idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY;
Hannes Frederic Sowa622c81d52015-03-23 23:36:01 +01005872 }
5873
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01005874out:
5875 rtnl_unlock();
5876
5877 return err;
5878}
stephen hemmingerc92d5492013-12-17 22:37:14 -08005879
Andy Gospodarek35103d12015-08-13 10:39:01 -04005880static
5881int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl,
5882 int write,
5883 void __user *buffer,
5884 size_t *lenp,
5885 loff_t *ppos)
5886{
5887 int *valp = ctl->data;
5888 int val = *valp;
5889 loff_t pos = *ppos;
5890 struct ctl_table lctl;
5891 int ret;
5892
5893 /* ctl->data points to idev->cnf.ignore_routes_when_linkdown
5894 * we should not modify it until we get the rtnl lock.
5895 */
5896 lctl = *ctl;
5897 lctl.data = &val;
5898
5899 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
5900
5901 if (write)
5902 ret = addrconf_fixup_linkdown(ctl, valp, val);
5903 if (ret)
5904 *ppos = pos;
5905 return ret;
5906}
5907
David Forsterdf789fe2017-02-23 16:27:18 +00005908static
5909void addrconf_set_nopolicy(struct rt6_info *rt, int action)
5910{
5911 if (rt) {
5912 if (action)
5913 rt->dst.flags |= DST_NOPOLICY;
5914 else
5915 rt->dst.flags &= ~DST_NOPOLICY;
5916 }
5917}
5918
5919static
5920void addrconf_disable_policy_idev(struct inet6_dev *idev, int val)
5921{
5922 struct inet6_ifaddr *ifa;
5923
5924 read_lock_bh(&idev->lock);
5925 list_for_each_entry(ifa, &idev->addr_list, if_list) {
5926 spin_lock(&ifa->lock);
5927 if (ifa->rt) {
5928 struct rt6_info *rt = ifa->rt;
5929 struct fib6_table *table = rt->rt6i_table;
5930 int cpu;
5931
5932 read_lock(&table->tb6_lock);
5933 addrconf_set_nopolicy(ifa->rt, val);
5934 if (rt->rt6i_pcpu) {
5935 for_each_possible_cpu(cpu) {
5936 struct rt6_info **rtp;
5937
5938 rtp = per_cpu_ptr(rt->rt6i_pcpu, cpu);
5939 addrconf_set_nopolicy(*rtp, val);
5940 }
5941 }
5942 read_unlock(&table->tb6_lock);
5943 }
5944 spin_unlock(&ifa->lock);
5945 }
5946 read_unlock_bh(&idev->lock);
5947}
5948
5949static
5950int addrconf_disable_policy(struct ctl_table *ctl, int *valp, int val)
5951{
5952 struct inet6_dev *idev;
5953 struct net *net;
5954
5955 if (!rtnl_trylock())
5956 return restart_syscall();
5957
5958 *valp = val;
5959
5960 net = (struct net *)ctl->extra2;
5961 if (valp == &net->ipv6.devconf_dflt->disable_policy) {
5962 rtnl_unlock();
5963 return 0;
5964 }
5965
5966 if (valp == &net->ipv6.devconf_all->disable_policy) {
5967 struct net_device *dev;
5968
5969 for_each_netdev(net, dev) {
5970 idev = __in6_dev_get(dev);
5971 if (idev)
5972 addrconf_disable_policy_idev(idev, val);
5973 }
5974 } else {
5975 idev = (struct inet6_dev *)ctl->extra1;
5976 addrconf_disable_policy_idev(idev, val);
5977 }
5978
5979 rtnl_unlock();
5980 return 0;
5981}
5982
5983static
5984int addrconf_sysctl_disable_policy(struct ctl_table *ctl, int write,
5985 void __user *buffer, size_t *lenp,
5986 loff_t *ppos)
5987{
5988 int *valp = ctl->data;
5989 int val = *valp;
5990 loff_t pos = *ppos;
5991 struct ctl_table lctl;
5992 int ret;
5993
5994 lctl = *ctl;
5995 lctl.data = &val;
5996 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
5997
5998 if (write && (*valp != val))
5999 ret = addrconf_disable_policy(ctl, valp, val);
6000
6001 if (ret)
6002 *ppos = pos;
6003
6004 return ret;
6005}
6006
Maciej Żenczykowskicb4a4c62016-10-07 01:00:49 -07006007static int minus_one = -1;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006008static const int one = 1;
6009static const int two_five_five = 255;
6010
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006011static const struct ctl_table addrconf_sysctl[] = {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006012 {
6013 .procname = "forwarding",
6014 .data = &ipv6_devconf.forwarding,
6015 .maxlen = sizeof(int),
6016 .mode = 0644,
6017 .proc_handler = addrconf_sysctl_forward,
6018 },
6019 {
6020 .procname = "hop_limit",
6021 .data = &ipv6_devconf.hop_limit,
6022 .maxlen = sizeof(int),
6023 .mode = 0644,
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006024 .proc_handler = proc_dointvec_minmax,
6025 .extra1 = (void *)&one,
6026 .extra2 = (void *)&two_five_five,
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006027 },
6028 {
6029 .procname = "mtu",
6030 .data = &ipv6_devconf.mtu6,
6031 .maxlen = sizeof(int),
6032 .mode = 0644,
6033 .proc_handler = addrconf_sysctl_mtu,
6034 },
6035 {
6036 .procname = "accept_ra",
6037 .data = &ipv6_devconf.accept_ra,
6038 .maxlen = sizeof(int),
6039 .mode = 0644,
6040 .proc_handler = proc_dointvec,
6041 },
6042 {
6043 .procname = "accept_redirects",
6044 .data = &ipv6_devconf.accept_redirects,
6045 .maxlen = sizeof(int),
6046 .mode = 0644,
6047 .proc_handler = proc_dointvec,
6048 },
6049 {
6050 .procname = "autoconf",
6051 .data = &ipv6_devconf.autoconf,
6052 .maxlen = sizeof(int),
6053 .mode = 0644,
6054 .proc_handler = proc_dointvec,
6055 },
6056 {
6057 .procname = "dad_transmits",
6058 .data = &ipv6_devconf.dad_transmits,
6059 .maxlen = sizeof(int),
6060 .mode = 0644,
6061 .proc_handler = proc_dointvec,
6062 },
6063 {
6064 .procname = "router_solicitations",
6065 .data = &ipv6_devconf.rtr_solicits,
6066 .maxlen = sizeof(int),
6067 .mode = 0644,
Maciej Żenczykowskicb4a4c62016-10-07 01:00:49 -07006068 .proc_handler = proc_dointvec_minmax,
6069 .extra1 = &minus_one,
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006070 },
6071 {
6072 .procname = "router_solicitation_interval",
6073 .data = &ipv6_devconf.rtr_solicit_interval,
6074 .maxlen = sizeof(int),
6075 .mode = 0644,
6076 .proc_handler = proc_dointvec_jiffies,
6077 },
6078 {
Maciej Żenczykowskibd11f072016-09-27 23:57:58 -07006079 .procname = "router_solicitation_max_interval",
6080 .data = &ipv6_devconf.rtr_solicit_max_interval,
6081 .maxlen = sizeof(int),
6082 .mode = 0644,
6083 .proc_handler = proc_dointvec_jiffies,
6084 },
6085 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006086 .procname = "router_solicitation_delay",
6087 .data = &ipv6_devconf.rtr_solicit_delay,
6088 .maxlen = sizeof(int),
6089 .mode = 0644,
6090 .proc_handler = proc_dointvec_jiffies,
6091 },
6092 {
6093 .procname = "force_mld_version",
6094 .data = &ipv6_devconf.force_mld_version,
6095 .maxlen = sizeof(int),
6096 .mode = 0644,
6097 .proc_handler = proc_dointvec,
6098 },
6099 {
6100 .procname = "mldv1_unsolicited_report_interval",
6101 .data =
6102 &ipv6_devconf.mldv1_unsolicited_report_interval,
6103 .maxlen = sizeof(int),
6104 .mode = 0644,
6105 .proc_handler = proc_dointvec_ms_jiffies,
6106 },
6107 {
6108 .procname = "mldv2_unsolicited_report_interval",
6109 .data =
6110 &ipv6_devconf.mldv2_unsolicited_report_interval,
6111 .maxlen = sizeof(int),
6112 .mode = 0644,
6113 .proc_handler = proc_dointvec_ms_jiffies,
6114 },
6115 {
6116 .procname = "use_tempaddr",
6117 .data = &ipv6_devconf.use_tempaddr,
6118 .maxlen = sizeof(int),
6119 .mode = 0644,
6120 .proc_handler = proc_dointvec,
6121 },
6122 {
6123 .procname = "temp_valid_lft",
6124 .data = &ipv6_devconf.temp_valid_lft,
6125 .maxlen = sizeof(int),
6126 .mode = 0644,
6127 .proc_handler = proc_dointvec,
6128 },
6129 {
6130 .procname = "temp_prefered_lft",
6131 .data = &ipv6_devconf.temp_prefered_lft,
6132 .maxlen = sizeof(int),
6133 .mode = 0644,
6134 .proc_handler = proc_dointvec,
6135 },
6136 {
6137 .procname = "regen_max_retry",
6138 .data = &ipv6_devconf.regen_max_retry,
6139 .maxlen = sizeof(int),
6140 .mode = 0644,
6141 .proc_handler = proc_dointvec,
6142 },
6143 {
6144 .procname = "max_desync_factor",
6145 .data = &ipv6_devconf.max_desync_factor,
6146 .maxlen = sizeof(int),
6147 .mode = 0644,
6148 .proc_handler = proc_dointvec,
6149 },
6150 {
6151 .procname = "max_addresses",
6152 .data = &ipv6_devconf.max_addresses,
6153 .maxlen = sizeof(int),
6154 .mode = 0644,
6155 .proc_handler = proc_dointvec,
6156 },
6157 {
6158 .procname = "accept_ra_defrtr",
6159 .data = &ipv6_devconf.accept_ra_defrtr,
6160 .maxlen = sizeof(int),
6161 .mode = 0644,
6162 .proc_handler = proc_dointvec,
6163 },
6164 {
6165 .procname = "accept_ra_min_hop_limit",
6166 .data = &ipv6_devconf.accept_ra_min_hop_limit,
6167 .maxlen = sizeof(int),
6168 .mode = 0644,
6169 .proc_handler = proc_dointvec,
6170 },
6171 {
6172 .procname = "accept_ra_pinfo",
6173 .data = &ipv6_devconf.accept_ra_pinfo,
6174 .maxlen = sizeof(int),
6175 .mode = 0644,
6176 .proc_handler = proc_dointvec,
6177 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08006178#ifdef CONFIG_IPV6_ROUTER_PREF
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006179 {
6180 .procname = "accept_ra_rtr_pref",
6181 .data = &ipv6_devconf.accept_ra_rtr_pref,
6182 .maxlen = sizeof(int),
6183 .mode = 0644,
6184 .proc_handler = proc_dointvec,
6185 },
6186 {
6187 .procname = "router_probe_interval",
6188 .data = &ipv6_devconf.rtr_probe_interval,
6189 .maxlen = sizeof(int),
6190 .mode = 0644,
6191 .proc_handler = proc_dointvec_jiffies,
6192 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08006193#ifdef CONFIG_IPV6_ROUTE_INFO
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006194 {
Joel Scherpelzbbea1242017-03-22 18:19:04 +09006195 .procname = "accept_ra_rt_info_min_plen",
6196 .data = &ipv6_devconf.accept_ra_rt_info_min_plen,
6197 .maxlen = sizeof(int),
6198 .mode = 0644,
6199 .proc_handler = proc_dointvec,
6200 },
6201 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006202 .procname = "accept_ra_rt_info_max_plen",
6203 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
6204 .maxlen = sizeof(int),
6205 .mode = 0644,
6206 .proc_handler = proc_dointvec,
6207 },
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08006208#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08006209#endif
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006210 {
6211 .procname = "proxy_ndp",
6212 .data = &ipv6_devconf.proxy_ndp,
6213 .maxlen = sizeof(int),
6214 .mode = 0644,
6215 .proc_handler = addrconf_sysctl_proxy_ndp,
6216 },
6217 {
6218 .procname = "accept_source_route",
6219 .data = &ipv6_devconf.accept_source_route,
6220 .maxlen = sizeof(int),
6221 .mode = 0644,
6222 .proc_handler = proc_dointvec,
6223 },
Neil Horman95c385b2007-04-25 17:08:10 -07006224#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006225 {
6226 .procname = "optimistic_dad",
6227 .data = &ipv6_devconf.optimistic_dad,
6228 .maxlen = sizeof(int),
6229 .mode = 0644,
6230 .proc_handler = proc_dointvec,
6231 },
6232 {
6233 .procname = "use_optimistic",
6234 .data = &ipv6_devconf.use_optimistic,
6235 .maxlen = sizeof(int),
6236 .mode = 0644,
6237 .proc_handler = proc_dointvec,
6238 },
Neil Horman95c385b2007-04-25 17:08:10 -07006239#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09006240#ifdef CONFIG_IPV6_MROUTE
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006241 {
6242 .procname = "mc_forwarding",
6243 .data = &ipv6_devconf.mc_forwarding,
6244 .maxlen = sizeof(int),
6245 .mode = 0444,
6246 .proc_handler = proc_dointvec,
6247 },
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09006248#endif
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006249 {
6250 .procname = "disable_ipv6",
6251 .data = &ipv6_devconf.disable_ipv6,
6252 .maxlen = sizeof(int),
6253 .mode = 0644,
6254 .proc_handler = addrconf_sysctl_disable,
6255 },
6256 {
6257 .procname = "accept_dad",
6258 .data = &ipv6_devconf.accept_dad,
6259 .maxlen = sizeof(int),
6260 .mode = 0644,
6261 .proc_handler = proc_dointvec,
6262 },
6263 {
6264 .procname = "force_tllao",
6265 .data = &ipv6_devconf.force_tllao,
6266 .maxlen = sizeof(int),
6267 .mode = 0644,
6268 .proc_handler = proc_dointvec
6269 },
6270 {
6271 .procname = "ndisc_notify",
6272 .data = &ipv6_devconf.ndisc_notify,
6273 .maxlen = sizeof(int),
6274 .mode = 0644,
6275 .proc_handler = proc_dointvec
6276 },
6277 {
6278 .procname = "suppress_frag_ndisc",
6279 .data = &ipv6_devconf.suppress_frag_ndisc,
6280 .maxlen = sizeof(int),
6281 .mode = 0644,
6282 .proc_handler = proc_dointvec
6283 },
6284 {
6285 .procname = "accept_ra_from_local",
6286 .data = &ipv6_devconf.accept_ra_from_local,
6287 .maxlen = sizeof(int),
6288 .mode = 0644,
6289 .proc_handler = proc_dointvec,
6290 },
6291 {
6292 .procname = "accept_ra_mtu",
6293 .data = &ipv6_devconf.accept_ra_mtu,
6294 .maxlen = sizeof(int),
6295 .mode = 0644,
6296 .proc_handler = proc_dointvec,
6297 },
6298 {
6299 .procname = "stable_secret",
6300 .data = &ipv6_devconf.stable_secret,
6301 .maxlen = IPV6_MAX_STRLEN,
6302 .mode = 0600,
6303 .proc_handler = addrconf_sysctl_stable_secret,
6304 },
6305 {
6306 .procname = "use_oif_addrs_only",
6307 .data = &ipv6_devconf.use_oif_addrs_only,
6308 .maxlen = sizeof(int),
6309 .mode = 0644,
6310 .proc_handler = proc_dointvec,
6311 },
6312 {
6313 .procname = "ignore_routes_with_linkdown",
6314 .data = &ipv6_devconf.ignore_routes_with_linkdown,
6315 .maxlen = sizeof(int),
6316 .mode = 0644,
6317 .proc_handler = addrconf_sysctl_ignore_routes_with_linkdown,
6318 },
6319 {
6320 .procname = "drop_unicast_in_l2_multicast",
6321 .data = &ipv6_devconf.drop_unicast_in_l2_multicast,
6322 .maxlen = sizeof(int),
6323 .mode = 0644,
6324 .proc_handler = proc_dointvec,
6325 },
6326 {
6327 .procname = "drop_unsolicited_na",
6328 .data = &ipv6_devconf.drop_unsolicited_na,
6329 .maxlen = sizeof(int),
6330 .mode = 0644,
6331 .proc_handler = proc_dointvec,
6332 },
6333 {
6334 .procname = "keep_addr_on_down",
6335 .data = &ipv6_devconf.keep_addr_on_down,
6336 .maxlen = sizeof(int),
6337 .mode = 0644,
6338 .proc_handler = proc_dointvec,
David Ahernf1705ec2016-02-24 09:25:37 -08006339
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006340 },
6341 {
David Lebrun1ababeb2016-11-08 14:57:39 +01006342 .procname = "seg6_enabled",
6343 .data = &ipv6_devconf.seg6_enabled,
6344 .maxlen = sizeof(int),
6345 .mode = 0644,
6346 .proc_handler = proc_dointvec,
6347 },
David Lebrunbf355b82016-11-08 14:57:42 +01006348#ifdef CONFIG_IPV6_SEG6_HMAC
6349 {
6350 .procname = "seg6_require_hmac",
6351 .data = &ipv6_devconf.seg6_require_hmac,
6352 .maxlen = sizeof(int),
6353 .mode = 0644,
6354 .proc_handler = proc_dointvec,
6355 },
6356#endif
David Lebrun1ababeb2016-11-08 14:57:39 +01006357 {
Erik Nordmarkadc176c2016-12-02 14:00:08 -08006358 .procname = "enhanced_dad",
6359 .data = &ipv6_devconf.enhanced_dad,
6360 .maxlen = sizeof(int),
6361 .mode = 0644,
6362 .proc_handler = proc_dointvec,
6363 },
6364 {
Felix Jiad35a00b2017-01-26 16:59:17 +13006365 .procname = "addr_gen_mode",
6366 .data = &ipv6_devconf.addr_gen_mode,
6367 .maxlen = sizeof(int),
6368 .mode = 0644,
6369 .proc_handler = addrconf_sysctl_addr_gen_mode,
6370 },
6371 {
David Forsterdf789fe2017-02-23 16:27:18 +00006372 .procname = "disable_policy",
6373 .data = &ipv6_devconf.disable_policy,
6374 .maxlen = sizeof(int),
6375 .mode = 0644,
6376 .proc_handler = addrconf_sysctl_disable_policy,
6377 },
6378 {
Konstantin Khlebnikov5df1f772016-04-18 14:41:17 +03006379 /* sentinel */
6380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381};
6382
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08006383static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08006384 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385{
Nicolas Dichtel29c994e2016-08-30 10:09:22 +02006386 int i, ifindex;
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006387 struct ctl_table *table;
Eric W. Biederman6105e292012-04-19 13:41:24 +00006388 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11006389
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006390 table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL);
6391 if (!table)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006392 goto out;
6393
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006394 for (i = 0; table[i].data; i++) {
6395 table[i].data += (char *)p - (char *)&ipv6_devconf;
Maciej Żenczykowskicb9e6842016-09-29 00:33:43 -07006396 /* If one of these is already set, then it is not safe to
6397 * overwrite either of them: this makes proc_dointvec_minmax
6398 * usable.
6399 */
6400 if (!table[i].extra1 && !table[i].extra2) {
6401 table[i].extra1 = idev; /* embedded; no ref */
6402 table[i].extra2 = net;
6403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405
Eric W. Biederman6105e292012-04-19 13:41:24 +00006406 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006408 p->sysctl_header = register_net_sysctl(net, path, table);
6409 if (!p->sysctl_header)
Eric W. Biederman6105e292012-04-19 13:41:24 +00006410 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006411
Nicolas Dichtel29c994e2016-08-30 10:09:22 +02006412 if (!strcmp(dev_name, "all"))
6413 ifindex = NETCONFA_IFINDEX_ALL;
6414 else if (!strcmp(dev_name, "default"))
6415 ifindex = NETCONFA_IFINDEX_DEFAULT;
6416 else
6417 ifindex = idev->dev->ifindex;
David Ahern85b3daa2017-03-28 14:28:04 -07006418 inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL,
6419 ifindex, p);
Pavel Emelyanov95897312008-01-10 17:41:45 -08006420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006422free:
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006423 kfree(table);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11006424out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08006425 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426}
6427
David Ahern23452172017-03-28 14:28:05 -07006428static void __addrconf_sysctl_unregister(struct net *net,
6429 struct ipv6_devconf *p, int ifindex)
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006430{
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006431 struct ctl_table *table;
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006432
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006433 if (!p->sysctl_header)
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006434 return;
6435
Konstantin Khlebnikov607ea7c2016-04-18 14:41:10 +03006436 table = p->sysctl_header->ctl_table_arg;
6437 unregister_net_sysctl_table(p->sysctl_header);
6438 p->sysctl_header = NULL;
6439 kfree(table);
David Ahern23452172017-03-28 14:28:05 -07006440
6441 inet6_netconf_notify_devconf(net, RTM_DELNETCONF, 0, ifindex, NULL);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006442}
6443
WANG Conga317a2f2014-07-25 15:25:09 -07006444static int addrconf_sysctl_register(struct inet6_dev *idev)
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11006445{
WANG Conga317a2f2014-07-25 15:25:09 -07006446 int err;
6447
6448 if (!sysctl_dev_name_is_allowed(idev->dev->name))
6449 return -EINVAL;
6450
6451 err = neigh_sysctl_register(idev->dev, idev->nd_parms,
6452 &ndisc_ifinfo_sysctl_change);
6453 if (err)
6454 return err;
6455 err = __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
6456 idev, &idev->cnf);
6457 if (err)
6458 neigh_sysctl_unregister(idev->nd_parms);
6459
6460 return err;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11006461}
6462
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006463static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464{
David Ahern23452172017-03-28 14:28:05 -07006465 __addrconf_sysctl_unregister(dev_net(idev->dev), &idev->cnf,
6466 idev->dev->ifindex);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08006467 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468}
6469
6470
6471#endif
6472
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00006473static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006474{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08006475 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006476 struct ipv6_devconf *all, *dflt;
6477
Hong Zhiguoa79ca222013-03-26 01:52:45 +08006478 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +01006479 if (!all)
Hong Zhiguoa79ca222013-03-26 01:52:45 +08006480 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006481
Hong Zhiguoa79ca222013-03-26 01:52:45 +08006482 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +01006483 if (!dflt)
Hong Zhiguoa79ca222013-03-26 01:52:45 +08006484 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006485
Hong Zhiguoa79ca222013-03-26 01:52:45 +08006486 /* these will be inherited by all namespaces */
6487 dflt->autoconf = ipv6_defaults.autoconf;
6488 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006489
Hannes Frederic Sowa3d1bec92015-03-23 23:36:00 +01006490 dflt->stable_secret.initialized = false;
6491 all->stable_secret.initialized = false;
6492
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006493 net->ipv6.devconf_all = all;
6494 net->ipv6.devconf_dflt = dflt;
6495
6496#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08006497 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006498 if (err < 0)
6499 goto err_reg_all;
6500
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08006501 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006502 if (err < 0)
6503 goto err_reg_dflt;
6504#endif
6505 return 0;
6506
6507#ifdef CONFIG_SYSCTL
6508err_reg_dflt:
David Ahern23452172017-03-28 14:28:05 -07006509 __addrconf_sysctl_unregister(net, all, NETCONFA_IFINDEX_ALL);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006510err_reg_all:
6511 kfree(dflt);
6512#endif
6513err_alloc_dflt:
6514 kfree(all);
6515err_alloc_all:
6516 return err;
6517}
6518
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00006519static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006520{
6521#ifdef CONFIG_SYSCTL
David Ahern23452172017-03-28 14:28:05 -07006522 __addrconf_sysctl_unregister(net, net->ipv6.devconf_dflt,
6523 NETCONFA_IFINDEX_DEFAULT);
6524 __addrconf_sysctl_unregister(net, net->ipv6.devconf_all,
6525 NETCONFA_IFINDEX_ALL);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006526#endif
zhuyj73cf0e922014-11-26 10:25:58 +08006527 kfree(net->ipv6.devconf_dflt);
6528 kfree(net->ipv6.devconf_all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006529}
6530
6531static struct pernet_operations addrconf_ops = {
6532 .init = addrconf_init_net,
6533 .exit = addrconf_exit_net,
6534};
6535
Daniel Borkmann207895fd32015-01-29 12:15:03 +01006536static struct rtnl_af_ops inet6_ops __read_mostly = {
Thomas Grafb382b192010-11-16 04:33:57 +00006537 .family = AF_INET6,
6538 .fill_link_af = inet6_fill_link_af,
6539 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmann11b1f822015-02-05 14:39:11 +01006540 .validate_link_af = inet6_validate_link_af,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00006541 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00006542};
6543
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544/*
6545 * Init / cleanup code
6546 */
6547
6548int __init addrconf_init(void)
6549{
WANG Conga317a2f2014-07-25 15:25:09 -07006550 struct inet6_dev *idev;
stephen hemmingerc2e21292010-03-17 20:31:10 +00006551 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09006552
Stephen Hemmingere21e8462010-03-20 16:09:01 -07006553 err = ipv6_addr_label_init();
6554 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00006555 pr_crit("%s: cannot initialize default policy table: %d\n",
6556 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00006557 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09006558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559
Neil Horman2cc6d2b2010-09-24 09:55:52 +00006560 err = register_pernet_subsys(&addrconf_ops);
6561 if (err < 0)
6562 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006563
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006564 addrconf_wq = create_workqueue("ipv6_addrconf");
6565 if (!addrconf_wq) {
6566 err = -ENOMEM;
6567 goto out_nowq;
6568 }
6569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 /* The addrconf netdev notifier requires that loopback_dev
6571 * has it's ipv6 private information allocated and setup
6572 * before it can bring up and give link-local addresses
6573 * to other devices which are up.
6574 *
6575 * Unfortunately, loopback_dev is not necessarily the first
6576 * entry in the global dev_base list of net devices. In fact,
6577 * it is likely to be the very last entry on that list.
6578 * So this causes the notifier registry below to try and
6579 * give link-local addresses to all devices besides loopback_dev
6580 * first, then loopback_dev, which cases all the non-loopback_dev
6581 * devices to fail to get a link-local address.
6582 *
6583 * So, as a temporary fix, allocate the ipv6 structure for
6584 * loopback_dev first by hand.
6585 * Longer term, all of the dependencies ipv6 has upon the loopback
6586 * device and it being up should be removed.
6587 */
6588 rtnl_lock();
WANG Conga317a2f2014-07-25 15:25:09 -07006589 idev = ipv6_add_dev(init_net.loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590 rtnl_unlock();
WANG Conga317a2f2014-07-25 15:25:09 -07006591 if (IS_ERR(idev)) {
6592 err = PTR_ERR(idev);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006593 goto errlo;
WANG Conga317a2f2014-07-25 15:25:09 -07006594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595
WANG Cong2f460932017-05-03 22:07:31 -07006596 ip6_route_init_special_entries();
6597
stephen hemmingerc2e21292010-03-17 20:31:10 +00006598 for (i = 0; i < IN6_ADDR_HSIZE; i++)
6599 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
6600
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 register_netdevice_notifier(&ipv6_dev_notf);
6602
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006603 addrconf_verify();
Thomas Grafc127ea22007-03-22 11:58:32 -07006604
stephen hemminger3678a9d2013-12-30 10:41:32 -08006605 rtnl_af_register(&inet6_ops);
Thomas Grafb382b192010-11-16 04:33:57 +00006606
Greg Rosec7ac8672011-06-10 01:27:09 +00006607 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
6608 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07006609 if (err < 0)
6610 goto errout;
6611
6612 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00006613 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
6614 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
6615 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
6616 inet6_dump_ifaddr, NULL);
6617 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
6618 inet6_dump_ifmcaddr, NULL);
6619 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
6620 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00006621 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00006622 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07006623
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09006624 ipv6_addr_label_rtnl_register();
6625
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07006627errout:
Thomas Grafb382b192010-11-16 04:33:57 +00006628 rtnl_af_unregister(&inet6_ops);
Thomas Grafc127ea22007-03-22 11:58:32 -07006629 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006630errlo:
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006631 destroy_workqueue(addrconf_wq);
6632out_nowq:
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006633 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00006634out_addrlabel:
6635 ipv6_addr_label_cleanup();
6636out:
Thomas Grafc127ea22007-03-22 11:58:32 -07006637 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638}
6639
Daniel Lezcano09f77092007-12-13 05:34:58 -08006640void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08006642 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 int i;
6644
6645 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08006646 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00006647 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648
6649 rtnl_lock();
6650
Thomas Grafb382b192010-11-16 04:33:57 +00006651 __rtnl_af_unregister(&inet6_ops);
6652
Daniel Lezcano176c39a2009-03-03 01:06:45 -08006653 /* clean dev list */
6654 for_each_netdev(&init_net, dev) {
6655 if (__in6_dev_get(dev) == NULL)
6656 continue;
6657 addrconf_ifdown(dev, 1);
6658 }
6659 addrconf_ifdown(init_net.loopback_dev, 2);
6660
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 * Check hash table.
6663 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00006664 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00006665 for (i = 0; i < IN6_ADDR_HSIZE; i++)
6666 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00006667 spin_unlock_bh(&addrconf_hash_lock);
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006668 cancel_delayed_work(&addr_chk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669 rtnl_unlock();
Hannes Frederic Sowac15b1cc2014-03-27 18:28:07 +01006670
6671 destroy_workqueue(addrconf_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672}