Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * IPv6 Address [auto]configuration |
| 4 | * Linux INET6 implementation |
| 5 | * |
| 6 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 7 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | /* |
| 12 | * Changes: |
| 13 | * |
| 14 | * Janos Farkas : delete timer on ifdown |
| 15 | * <chexum@bankinf.banki.hu> |
| 16 | * Andi Kleen : kill double kfree on module |
| 17 | * unload. |
| 18 | * Maciej W. Rozycki : FDDI support |
| 19 | * sekiya@USAGI : Don't send too many RS |
| 20 | * packets. |
| 21 | * yoshfuji@USAGI : Fixed interval between DAD |
| 22 | * packets. |
| 23 | * YOSHIFUJI Hideaki @USAGI : improved accuracy of |
| 24 | * address validation timer. |
| 25 | * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041) |
| 26 | * support. |
| 27 | * Yuji SEKIYA @USAGI : Don't assign a same IPv6 |
| 28 | * address on a same interface. |
| 29 | * YOSHIFUJI Hideaki @USAGI : ARCnet support |
| 30 | * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to |
| 31 | * seq_file. |
YOSHIFUJI Hideaki | b1cacb6 | 2005-11-08 09:38:12 -0800 | [diff] [blame] | 32 | * YOSHIFUJI Hideaki @USAGI : improved source address |
| 33 | * selection; consider scope, |
| 34 | * status etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | */ |
| 36 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 37 | #define pr_fmt(fmt) "IPv6: " fmt |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/errno.h> |
| 40 | #include <linux/types.h> |
Ilpo Järvinen | a0bffff | 2009-03-21 13:36:17 -0700 | [diff] [blame] | 41 | #include <linux/kernel.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 42 | #include <linux/sched/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/socket.h> |
| 44 | #include <linux/sockios.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/net.h> |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 46 | #include <linux/inet.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/in6.h> |
| 48 | #include <linux/netdevice.h> |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 49 | #include <linux/if_addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/if_arp.h> |
| 51 | #include <linux/if_arcnet.h> |
| 52 | #include <linux/if_infiniband.h> |
| 53 | #include <linux/route.h> |
| 54 | #include <linux/inetdevice.h> |
| 55 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 56 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #ifdef CONFIG_SYSCTL |
| 58 | #include <linux/sysctl.h> |
| 59 | #endif |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 60 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/delay.h> |
| 62 | #include <linux/notifier.h> |
Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 63 | #include <linux/string.h> |
Eric Dumazet | ddbe503 | 2012-07-18 08:11:12 +0000 | [diff] [blame] | 64 | #include <linux/hash.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 66 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #include <net/sock.h> |
| 68 | #include <net/snmp.h> |
| 69 | |
Alexander Aring | 5241c2d | 2015-12-14 20:55:22 +0100 | [diff] [blame] | 70 | #include <net/6lowpan.h> |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 71 | #include <net/firewire.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #include <net/ipv6.h> |
| 73 | #include <net/protocol.h> |
| 74 | #include <net/ndisc.h> |
| 75 | #include <net/ip6_route.h> |
| 76 | #include <net/addrconf.h> |
| 77 | #include <net/tcp.h> |
| 78 | #include <net/ip.h> |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 79 | #include <net/netlink.h> |
Mitsuru Chinen | f24e3d6 | 2007-10-10 02:53:43 -0700 | [diff] [blame] | 80 | #include <net/pkt_sched.h> |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 81 | #include <net/l3mdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #include <linux/if_tunnel.h> |
| 83 | #include <linux/rtnetlink.h> |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 84 | #include <linux/netconf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | #include <linux/random.h> |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 86 | #include <linux/uaccess.h> |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 87 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | #include <linux/proc_fs.h> |
| 90 | #include <linux/seq_file.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 91 | #include <linux/export.h> |
Justin Iurman | 9ee11f0 | 2021-07-20 21:42:57 +0200 | [diff] [blame] | 92 | #include <linux/ioam6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #define INFINITY_LIFE_TIME 0xFFFFFFFF |
Thomas Graf | 18a31e1 | 2010-11-17 04:12:02 +0000 | [diff] [blame] | 95 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 96 | #define IPV6_MAX_STRLEN \ |
| 97 | sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") |
| 98 | |
Thomas Graf | 18a31e1 | 2010-11-17 04:12:02 +0000 | [diff] [blame] | 99 | static inline u32 cstamp_delta(unsigned long cstamp) |
| 100 | { |
| 101 | return (cstamp - INITIAL_JIFFIES) * 100UL / HZ; |
| 102 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 104 | static inline s32 rfc3315_s14_backoff_init(s32 irt) |
| 105 | { |
| 106 | /* multiply 'initial retransmission time' by 0.9 .. 1.1 */ |
| 107 | u64 tmp = (900000 + prandom_u32() % 200001) * (u64)irt; |
| 108 | do_div(tmp, 1000000); |
| 109 | return (s32)tmp; |
| 110 | } |
| 111 | |
| 112 | static inline s32 rfc3315_s14_backoff_update(s32 rt, s32 mrt) |
| 113 | { |
| 114 | /* multiply 'retransmission timeout' by 1.9 .. 2.1 */ |
| 115 | u64 tmp = (1900000 + prandom_u32() % 200001) * (u64)rt; |
| 116 | do_div(tmp, 1000000); |
| 117 | if ((s32)tmp > mrt) { |
| 118 | /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */ |
| 119 | tmp = (900000 + prandom_u32() % 200001) * (u64)mrt; |
| 120 | do_div(tmp, 1000000); |
| 121 | } |
| 122 | return (s32)tmp; |
| 123 | } |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | #ifdef CONFIG_SYSCTL |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 126 | static int addrconf_sysctl_register(struct inet6_dev *idev); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 127 | static void addrconf_sysctl_unregister(struct inet6_dev *idev); |
| 128 | #else |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 129 | static inline int addrconf_sysctl_register(struct inet6_dev *idev) |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 130 | { |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 131 | return 0; |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | static inline void addrconf_sysctl_unregister(struct inet6_dev *idev) |
| 135 | { |
| 136 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | #endif |
| 138 | |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 139 | static void ipv6_gen_rnd_iid(struct in6_addr *addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 141 | static int ipv6_generate_eui64(u8 *eui, struct net_device *dev); |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 142 | static int ipv6_count_addresses(const struct inet6_dev *idev); |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 143 | static int ipv6_generate_stable_address(struct in6_addr *addr, |
| 144 | u8 dad_count, |
| 145 | const struct inet6_dev *idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Eric Dumazet | 27c565a | 2017-11-04 08:53:27 -0700 | [diff] [blame] | 147 | #define IN6_ADDR_HSIZE_SHIFT 8 |
| 148 | #define IN6_ADDR_HSIZE (1 << IN6_ADDR_HSIZE_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | /* |
| 150 | * Configured unicast address hash table |
| 151 | */ |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 152 | static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE]; |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 153 | static DEFINE_SPINLOCK(addrconf_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 155 | static void addrconf_verify(void); |
| 156 | static void addrconf_verify_rtnl(void); |
| 157 | static void addrconf_verify_work(struct work_struct *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 159 | static struct workqueue_struct *addrconf_wq; |
| 160 | static DECLARE_DELAYED_WORK(addr_chk_work, addrconf_verify_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | static void addrconf_join_anycast(struct inet6_ifaddr *ifp); |
| 163 | static void addrconf_leave_anycast(struct inet6_ifaddr *ifp); |
| 164 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 165 | static void addrconf_type_change(struct net_device *dev, |
| 166 | unsigned long event); |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 167 | static int addrconf_ifdown(struct net_device *dev, bool unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 169 | static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx, |
Romain Kuntz | 21caa66 | 2013-01-09 21:06:03 +0000 | [diff] [blame] | 170 | int plen, |
| 171 | const struct net_device *dev, |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 172 | u32 flags, u32 noflags, |
| 173 | bool no_gw); |
Romain Kuntz | 21caa66 | 2013-01-09 21:06:03 +0000 | [diff] [blame] | 174 | |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 175 | static void addrconf_dad_start(struct inet6_ifaddr *ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 176 | static void addrconf_dad_work(struct work_struct *w); |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 177 | static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id, |
| 178 | bool send_na); |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 179 | static void addrconf_dad_run(struct inet6_dev *idev, bool restart); |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 180 | static void addrconf_rs_timer(struct timer_list *t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); |
| 182 | static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); |
| 183 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 184 | static void inet6_prefix_notify(int event, struct inet6_dev *idev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | struct prefix_info *pinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Adrian Bunk | 888c848 | 2008-07-22 14:21:58 -0700 | [diff] [blame] | 187 | static struct ipv6_devconf ipv6_devconf __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | .forwarding = 0, |
| 189 | .hop_limit = IPV6_DEFAULT_HOPLIMIT, |
| 190 | .mtu6 = IPV6_MIN_MTU, |
| 191 | .accept_ra = 1, |
| 192 | .accept_redirects = 1, |
| 193 | .autoconf = 1, |
| 194 | .force_mld_version = 0, |
Hannes Frederic Sowa | fc4eba5 | 2013-08-14 01:03:46 +0200 | [diff] [blame] | 195 | .mldv1_unsolicited_report_interval = 10 * HZ, |
| 196 | .mldv2_unsolicited_report_interval = HZ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | .dad_transmits = 1, |
| 198 | .rtr_solicits = MAX_RTR_SOLICITATIONS, |
| 199 | .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL, |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 200 | .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY, |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 202 | .use_tempaddr = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | .temp_valid_lft = TEMP_VALID_LIFETIME, |
| 204 | .temp_prefered_lft = TEMP_PREFERRED_LIFETIME, |
| 205 | .regen_max_retry = REGEN_MAX_RETRY, |
| 206 | .max_desync_factor = MAX_DESYNC_FACTOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | .max_addresses = IPV6_MAX_ADDRESSES, |
YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 208 | .accept_ra_defrtr = 1, |
Praveen Chaudhary | 6b2e04b | 2021-01-25 13:44:30 -0800 | [diff] [blame] | 209 | .ra_defrtr_metric = IP6_RT_PRIO_USER, |
Ben Greear | d933319 | 2014-06-25 14:44:53 -0700 | [diff] [blame] | 210 | .accept_ra_from_local = 0, |
Hangbin Liu | 8013d1d | 2015-07-30 14:28:42 +0800 | [diff] [blame] | 211 | .accept_ra_min_hop_limit= 1, |
YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 212 | .accept_ra_pinfo = 1, |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 213 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 214 | .accept_ra_rtr_pref = 1, |
YOSHIFUJI Hideaki | 52e16356 | 2006-03-20 17:05:47 -0800 | [diff] [blame] | 215 | .rtr_probe_interval = 60 * HZ, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 216 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 217 | .accept_ra_rt_info_min_plen = 0, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 218 | .accept_ra_rt_info_max_plen = 0, |
| 219 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 220 | #endif |
YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 221 | .proxy_ndp = 0, |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 222 | .accept_source_route = 0, /* we do not accept RH0 by default. */ |
YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 223 | .disable_ipv6 = 0, |
Nicolas Dichtel | 0940095 | 2017-11-14 14:21:32 +0100 | [diff] [blame] | 224 | .accept_dad = 0, |
Hannes Frederic Sowa | b800c3b | 2013-08-27 01:36:51 +0200 | [diff] [blame] | 225 | .suppress_frag_ndisc = 1, |
Harout Hedeshian | c2943f1 | 2015-01-20 10:06:05 -0700 | [diff] [blame] | 226 | .accept_ra_mtu = 1, |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 227 | .stable_secret = { |
| 228 | .initialized = false, |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 229 | }, |
| 230 | .use_oif_addrs_only = 0, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 231 | .ignore_routes_with_linkdown = 0, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 232 | .keep_addr_on_down = 0, |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 233 | .seg6_enabled = 0, |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 234 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 235 | .seg6_require_hmac = 0, |
| 236 | #endif |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 237 | .enhanced_dad = 1, |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 238 | .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64, |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 239 | .disable_policy = 0, |
Alexander Aring | 8610c7c | 2020-03-27 18:00:20 -0400 | [diff] [blame] | 240 | .rpl_seg_enabled = 0, |
Justin Iurman | 9ee11f0 | 2021-07-20 21:42:57 +0200 | [diff] [blame] | 241 | .ioam6_enabled = 0, |
| 242 | .ioam6_id = IOAM6_DEFAULT_IF_ID, |
| 243 | .ioam6_id_wide = IOAM6_DEFAULT_IF_ID_WIDE, |
James Prestwood | 18ac597 | 2021-11-01 10:36:29 -0700 | [diff] [blame] | 244 | .ndisc_evict_nocarrier = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | }; |
| 246 | |
Brian Haley | ab32ea5 | 2006-09-22 14:15:41 -0700 | [diff] [blame] | 247 | static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | .forwarding = 0, |
| 249 | .hop_limit = IPV6_DEFAULT_HOPLIMIT, |
| 250 | .mtu6 = IPV6_MIN_MTU, |
| 251 | .accept_ra = 1, |
| 252 | .accept_redirects = 1, |
| 253 | .autoconf = 1, |
Hannes Frederic Sowa | fc4eba5 | 2013-08-14 01:03:46 +0200 | [diff] [blame] | 254 | .force_mld_version = 0, |
| 255 | .mldv1_unsolicited_report_interval = 10 * HZ, |
| 256 | .mldv2_unsolicited_report_interval = HZ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | .dad_transmits = 1, |
| 258 | .rtr_solicits = MAX_RTR_SOLICITATIONS, |
| 259 | .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL, |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 260 | .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | .use_tempaddr = 0, |
| 263 | .temp_valid_lft = TEMP_VALID_LIFETIME, |
| 264 | .temp_prefered_lft = TEMP_PREFERRED_LIFETIME, |
| 265 | .regen_max_retry = REGEN_MAX_RETRY, |
| 266 | .max_desync_factor = MAX_DESYNC_FACTOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | .max_addresses = IPV6_MAX_ADDRESSES, |
YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 268 | .accept_ra_defrtr = 1, |
Praveen Chaudhary | 6b2e04b | 2021-01-25 13:44:30 -0800 | [diff] [blame] | 269 | .ra_defrtr_metric = IP6_RT_PRIO_USER, |
Ben Greear | d933319 | 2014-06-25 14:44:53 -0700 | [diff] [blame] | 270 | .accept_ra_from_local = 0, |
Hangbin Liu | 8013d1d | 2015-07-30 14:28:42 +0800 | [diff] [blame] | 271 | .accept_ra_min_hop_limit= 1, |
YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 272 | .accept_ra_pinfo = 1, |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 273 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 274 | .accept_ra_rtr_pref = 1, |
YOSHIFUJI Hideaki | 52e16356 | 2006-03-20 17:05:47 -0800 | [diff] [blame] | 275 | .rtr_probe_interval = 60 * HZ, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 276 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 277 | .accept_ra_rt_info_min_plen = 0, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 278 | .accept_ra_rt_info_max_plen = 0, |
| 279 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 280 | #endif |
YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 281 | .proxy_ndp = 0, |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 282 | .accept_source_route = 0, /* we do not accept RH0 by default. */ |
YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 283 | .disable_ipv6 = 0, |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 284 | .accept_dad = 1, |
Hannes Frederic Sowa | b800c3b | 2013-08-27 01:36:51 +0200 | [diff] [blame] | 285 | .suppress_frag_ndisc = 1, |
Harout Hedeshian | c2943f1 | 2015-01-20 10:06:05 -0700 | [diff] [blame] | 286 | .accept_ra_mtu = 1, |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 287 | .stable_secret = { |
| 288 | .initialized = false, |
| 289 | }, |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 290 | .use_oif_addrs_only = 0, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 291 | .ignore_routes_with_linkdown = 0, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 292 | .keep_addr_on_down = 0, |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 293 | .seg6_enabled = 0, |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 294 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 295 | .seg6_require_hmac = 0, |
| 296 | #endif |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 297 | .enhanced_dad = 1, |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 298 | .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64, |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 299 | .disable_policy = 0, |
Alexander Aring | 8610c7c | 2020-03-27 18:00:20 -0400 | [diff] [blame] | 300 | .rpl_seg_enabled = 0, |
Justin Iurman | 9ee11f0 | 2021-07-20 21:42:57 +0200 | [diff] [blame] | 301 | .ioam6_enabled = 0, |
| 302 | .ioam6_id = IOAM6_DEFAULT_IF_ID, |
| 303 | .ioam6_id_wide = IOAM6_DEFAULT_IF_ID_WIDE, |
James Prestwood | 18ac597 | 2021-11-01 10:36:29 -0700 | [diff] [blame] | 304 | .ndisc_evict_nocarrier = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | }; |
| 306 | |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 307 | /* Check if link is ready: is it up and is a valid qdisc available */ |
| 308 | static inline bool addrconf_link_ready(const struct net_device *dev) |
Mitsuru Chinen | f24e3d6 | 2007-10-10 02:53:43 -0700 | [diff] [blame] | 309 | { |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 310 | return netif_oper_up(dev) && !qdisc_tx_is_noop(dev); |
Mitsuru Chinen | f24e3d6 | 2007-10-10 02:53:43 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 313 | static void addrconf_del_rs_timer(struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 315 | if (del_timer(&idev->rs_timer)) |
| 316 | __in6_dev_put(idev); |
| 317 | } |
| 318 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 319 | static void addrconf_del_dad_work(struct inet6_ifaddr *ifp) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 320 | { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 321 | if (cancel_delayed_work(&ifp->dad_work)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | __in6_ifa_put(ifp); |
| 323 | } |
| 324 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 325 | static void addrconf_mod_rs_timer(struct inet6_dev *idev, |
| 326 | unsigned long when) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | { |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 328 | if (!timer_pending(&idev->rs_timer)) |
| 329 | in6_dev_hold(idev); |
| 330 | mod_timer(&idev->rs_timer, jiffies + when); |
| 331 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 333 | static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp, |
| 334 | unsigned long delay) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 335 | { |
Xin Long | f8a894b | 2017-06-15 16:33:58 +0800 | [diff] [blame] | 336 | in6_ifa_hold(ifp); |
| 337 | if (mod_delayed_work(addrconf_wq, &ifp->dad_work, delay)) |
| 338 | in6_ifa_put(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 341 | static int snmp6_alloc_dev(struct inet6_dev *idev) |
| 342 | { |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 343 | int i; |
| 344 | |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 345 | idev->stats.ipv6 = alloc_percpu(struct ipstats_mib); |
| 346 | if (!idev->stats.ipv6) |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 347 | goto err_ip; |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 348 | |
| 349 | for_each_possible_cpu(i) { |
| 350 | struct ipstats_mib *addrconf_stats; |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 351 | addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i); |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 352 | u64_stats_init(&addrconf_stats->syncp); |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 356 | idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device), |
| 357 | GFP_KERNEL); |
| 358 | if (!idev->stats.icmpv6dev) |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 359 | goto err_icmp; |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 360 | idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device), |
| 361 | GFP_KERNEL); |
| 362 | if (!idev->stats.icmpv6msgdev) |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 363 | goto err_icmpmsg; |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 364 | |
| 365 | return 0; |
| 366 | |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 367 | err_icmpmsg: |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 368 | kfree(idev->stats.icmpv6dev); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 369 | err_icmp: |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 370 | free_percpu(idev->stats.ipv6); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 371 | err_ip: |
Pavel Emelyanov | aaf70ec | 2007-10-17 21:25:32 -0700 | [diff] [blame] | 372 | return -ENOMEM; |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 375 | static struct inet6_dev *ipv6_add_dev(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
| 377 | struct inet6_dev *ndev; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 378 | int err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
| 380 | ASSERT_RTNL(); |
| 381 | |
| 382 | if (dev->mtu < IPV6_MIN_MTU) |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 383 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 385 | ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 386 | if (!ndev) |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 387 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 389 | rwlock_init(&ndev->lock); |
| 390 | ndev->dev = dev; |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 391 | INIT_LIST_HEAD(&ndev->addr_list); |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 392 | timer_setup(&ndev->rs_timer, addrconf_rs_timer, 0); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 393 | memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf)); |
Hannes Frederic Sowa | 9b29c69 | 2015-12-15 22:59:12 +0100 | [diff] [blame] | 394 | |
| 395 | if (ndev->cnf.stable_secret.initialized) |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 396 | ndev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY; |
Hannes Frederic Sowa | 9b29c69 | 2015-12-15 22:59:12 +0100 | [diff] [blame] | 397 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 398 | ndev->cnf.mtu6 = dev->mtu; |
Rocco Yue | 49b99da | 2021-08-27 23:04:12 +0800 | [diff] [blame] | 399 | ndev->ra_mtu = 0; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 400 | ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 401 | if (!ndev->nd_parms) { |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 402 | kfree(ndev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 403 | return ERR_PTR(err); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 404 | } |
Ben Hutchings | 0187bdf | 2008-06-19 16:15:47 -0700 | [diff] [blame] | 405 | if (ndev->cnf.forwarding) |
| 406 | dev_disable_lro(dev); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 407 | /* We refer to the device */ |
Eric Dumazet | 8c72700 | 2021-12-04 20:22:11 -0800 | [diff] [blame] | 408 | dev_hold_track(dev, &ndev->dev_tracker, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 410 | if (snmp6_alloc_dev(ndev) < 0) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 411 | netdev_dbg(dev, "%s: cannot allocate memory for statistics\n", |
| 412 | __func__); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 413 | neigh_parms_release(&nd_tbl, ndev->nd_parms); |
Eric Dumazet | 8c72700 | 2021-12-04 20:22:11 -0800 | [diff] [blame] | 414 | dev_put_track(dev, &ndev->dev_tracker); |
Roy Li | 8603e33 | 2011-09-20 15:10:16 -0400 | [diff] [blame] | 415 | kfree(ndev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 416 | return ERR_PTR(err); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 417 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 419 | if (snmp6_register_dev(ndev) < 0) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 420 | netdev_dbg(dev, "%s: cannot create /proc/net/dev_snmp6/%s\n", |
| 421 | __func__, dev->name); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 422 | goto err_release; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 423 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 425 | /* One reference from device. */ |
Reshetova, Elena | 1be9246 | 2017-07-04 09:34:55 +0300 | [diff] [blame] | 426 | refcount_set(&ndev->refcnt, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 428 | if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) |
| 429 | ndev->cnf.accept_dad = -1; |
| 430 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 431 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
YOSHIFUJI Hideaki | b077d7a | 2008-04-13 23:42:18 -0700 | [diff] [blame] | 432 | if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 433 | pr_info("%s: Disabled Multicast RS\n", dev->name); |
YOSHIFUJI Hideaki | b077d7a | 2008-04-13 23:42:18 -0700 | [diff] [blame] | 434 | ndev->cnf.rtr_solicits = 0; |
| 435 | } |
| 436 | #endif |
| 437 | |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 438 | INIT_LIST_HEAD(&ndev->tempaddr_list); |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 439 | ndev->desync_factor = U32_MAX; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 440 | if ((dev->flags&IFF_LOOPBACK) || |
| 441 | dev->type == ARPHRD_TUNNEL || |
YOSHIFUJI Hideaki | 9625ed7 | 2008-04-13 23:47:11 -0700 | [diff] [blame] | 442 | dev->type == ARPHRD_TUNNEL6 || |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 443 | dev->type == ARPHRD_SIT || |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 444 | dev->type == ARPHRD_NONE) { |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 445 | ndev->cnf.use_tempaddr = -1; |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 446 | } |
David S. Miller | 5d9efa7 | 2013-10-28 20:07:50 -0400 | [diff] [blame] | 447 | |
Daniel Borkmann | 914faa1 | 2013-04-09 03:47:14 +0000 | [diff] [blame] | 448 | ndev->token = in6addr_any; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 449 | |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 450 | if (netif_running(dev) && addrconf_link_ready(dev)) |
Herbert Xu | 53aadcc | 2007-03-27 14:31:52 -0700 | [diff] [blame] | 451 | ndev->if_flags |= IF_READY; |
| 452 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 453 | ipv6_mc_init_dev(ndev); |
| 454 | ndev->tstamp = jiffies; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 455 | err = addrconf_sysctl_register(ndev); |
| 456 | if (err) { |
| 457 | ipv6_mc_destroy_dev(ndev); |
Sabrina Dubroca | 2a189f9e | 2015-11-04 14:47:53 +0100 | [diff] [blame] | 458 | snmp6_unregister_dev(ndev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 459 | goto err_release; |
| 460 | } |
David L Stevens | 30c4cf5 | 2007-01-04 12:31:14 -0800 | [diff] [blame] | 461 | /* protected by rtnl_lock */ |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 462 | rcu_assign_pointer(dev->ip6_ptr, ndev); |
YOSHIFUJI Hideaki | d88ae4c | 2007-01-14 21:48:40 -0800 | [diff] [blame] | 463 | |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 464 | /* Join interface-local all-node multicast group */ |
| 465 | ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes); |
| 466 | |
YOSHIFUJI Hideaki | d88ae4c | 2007-01-14 21:48:40 -0800 | [diff] [blame] | 467 | /* Join all-node multicast group */ |
YOSHIFUJI Hideaki | f3ee401 | 2008-04-10 15:42:11 +0900 | [diff] [blame] | 468 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes); |
YOSHIFUJI Hideaki | d88ae4c | 2007-01-14 21:48:40 -0800 | [diff] [blame] | 469 | |
Li Wei | d6ddef9 | 2012-03-05 14:45:17 +0000 | [diff] [blame] | 470 | /* Join all-router multicast group if forwarding is set */ |
Li Wei | 8b2aaed | 2012-03-07 14:58:07 +0000 | [diff] [blame] | 471 | if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST)) |
Li Wei | d6ddef9 | 2012-03-05 14:45:17 +0000 | [diff] [blame] | 472 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters); |
| 473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return ndev; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 475 | |
| 476 | err_release: |
| 477 | neigh_parms_release(&nd_tbl, ndev->nd_parms); |
| 478 | ndev->dead = 1; |
| 479 | in6_dev_finish_destroy(ndev); |
| 480 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 483 | static struct inet6_dev *ipv6_find_idev(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { |
| 485 | struct inet6_dev *idev; |
| 486 | |
| 487 | ASSERT_RTNL(); |
| 488 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 489 | idev = __in6_dev_get(dev); |
| 490 | if (!idev) { |
| 491 | idev = ipv6_add_dev(dev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 492 | if (IS_ERR(idev)) |
Sabrina Dubroca | db0b99f | 2019-08-23 15:44:36 +0200 | [diff] [blame] | 493 | return idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | if (dev->flags&IFF_UP) |
| 497 | ipv6_mc_up(idev); |
| 498 | return idev; |
| 499 | } |
| 500 | |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 501 | static int inet6_netconf_msgsize_devconf(int type) |
| 502 | { |
| 503 | int size = NLMSG_ALIGN(sizeof(struct netconfmsg)) |
| 504 | + nla_total_size(4); /* NETCONFA_IFINDEX */ |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 505 | bool all = false; |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 506 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 507 | if (type == NETCONFA_ALL) |
| 508 | all = true; |
| 509 | |
| 510 | if (all || type == NETCONFA_FORWARDING) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 511 | size += nla_total_size(4); |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 512 | #ifdef CONFIG_IPV6_MROUTE |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 513 | if (all || type == NETCONFA_MC_FORWARDING) |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 514 | size += nla_total_size(4); |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 515 | #endif |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 516 | if (all || type == NETCONFA_PROXY_NEIGH) |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 517 | size += nla_total_size(4); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 518 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 519 | if (all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 520 | size += nla_total_size(4); |
| 521 | |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 522 | return size; |
| 523 | } |
| 524 | |
| 525 | static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex, |
| 526 | struct ipv6_devconf *devconf, u32 portid, |
| 527 | u32 seq, int event, unsigned int flags, |
| 528 | int type) |
| 529 | { |
| 530 | struct nlmsghdr *nlh; |
| 531 | struct netconfmsg *ncm; |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 532 | bool all = false; |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 533 | |
| 534 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg), |
| 535 | flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 536 | if (!nlh) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 537 | return -EMSGSIZE; |
| 538 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 539 | if (type == NETCONFA_ALL) |
| 540 | all = true; |
| 541 | |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 542 | ncm = nlmsg_data(nlh); |
| 543 | ncm->ncm_family = AF_INET6; |
| 544 | |
| 545 | if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0) |
| 546 | goto nla_put_failure; |
| 547 | |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 548 | if (!devconf) |
| 549 | goto out; |
| 550 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 551 | if ((all || type == NETCONFA_FORWARDING) && |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 552 | nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0) |
| 553 | goto nla_put_failure; |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 554 | #ifdef CONFIG_IPV6_MROUTE |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 555 | if ((all || type == NETCONFA_MC_FORWARDING) && |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 556 | nla_put_s32(skb, NETCONFA_MC_FORWARDING, |
| 557 | devconf->mc_forwarding) < 0) |
| 558 | goto nla_put_failure; |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 559 | #endif |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 560 | if ((all || type == NETCONFA_PROXY_NEIGH) && |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 561 | nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0) |
| 562 | goto nla_put_failure; |
| 563 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 564 | if ((all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) && |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 565 | nla_put_s32(skb, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 566 | devconf->ignore_routes_with_linkdown) < 0) |
| 567 | goto nla_put_failure; |
| 568 | |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 569 | out: |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 570 | nlmsg_end(skb, nlh); |
| 571 | return 0; |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 572 | |
| 573 | nla_put_failure: |
| 574 | nlmsg_cancel(skb, nlh); |
| 575 | return -EMSGSIZE; |
| 576 | } |
| 577 | |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 578 | void inet6_netconf_notify_devconf(struct net *net, int event, int type, |
| 579 | int ifindex, struct ipv6_devconf *devconf) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 580 | { |
| 581 | struct sk_buff *skb; |
| 582 | int err = -ENOBUFS; |
| 583 | |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 584 | skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 585 | if (!skb) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 586 | goto errout; |
| 587 | |
| 588 | err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0, |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 589 | event, 0, type); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 590 | if (err < 0) { |
| 591 | /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */ |
| 592 | WARN_ON(err == -EMSGSIZE); |
| 593 | kfree_skb(skb); |
| 594 | goto errout; |
| 595 | } |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 596 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_KERNEL); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 597 | return; |
| 598 | errout: |
Cong Ding | bd77902 | 2012-12-18 12:08:56 +0000 | [diff] [blame] | 599 | rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 602 | static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = { |
| 603 | [NETCONFA_IFINDEX] = { .len = sizeof(int) }, |
| 604 | [NETCONFA_FORWARDING] = { .len = sizeof(int) }, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 605 | [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) }, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 606 | [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN] = { .len = sizeof(int) }, |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 607 | }; |
| 608 | |
Jakub Kicinski | 38d5181 | 2019-01-18 10:46:22 -0800 | [diff] [blame] | 609 | static int inet6_netconf_valid_get_req(struct sk_buff *skb, |
| 610 | const struct nlmsghdr *nlh, |
| 611 | struct nlattr **tb, |
| 612 | struct netlink_ext_ack *extack) |
| 613 | { |
| 614 | int i, err; |
| 615 | |
| 616 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(struct netconfmsg))) { |
| 617 | NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf get request"); |
| 618 | return -EINVAL; |
| 619 | } |
| 620 | |
| 621 | if (!netlink_strict_get_check(skb)) |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 622 | return nlmsg_parse_deprecated(nlh, sizeof(struct netconfmsg), |
| 623 | tb, NETCONFA_MAX, |
| 624 | devconf_ipv6_policy, extack); |
Jakub Kicinski | 38d5181 | 2019-01-18 10:46:22 -0800 | [diff] [blame] | 625 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 626 | err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct netconfmsg), |
| 627 | tb, NETCONFA_MAX, |
| 628 | devconf_ipv6_policy, extack); |
Jakub Kicinski | 38d5181 | 2019-01-18 10:46:22 -0800 | [diff] [blame] | 629 | if (err) |
| 630 | return err; |
| 631 | |
| 632 | for (i = 0; i <= NETCONFA_MAX; i++) { |
| 633 | if (!tb[i]) |
| 634 | continue; |
| 635 | |
| 636 | switch (i) { |
| 637 | case NETCONFA_IFINDEX: |
| 638 | break; |
| 639 | default: |
| 640 | NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in netconf get request"); |
| 641 | return -EINVAL; |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | return 0; |
| 646 | } |
| 647 | |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 648 | static int inet6_netconf_get_devconf(struct sk_buff *in_skb, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 649 | struct nlmsghdr *nlh, |
| 650 | struct netlink_ext_ack *extack) |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 651 | { |
| 652 | struct net *net = sock_net(in_skb->sk); |
| 653 | struct nlattr *tb[NETCONFA_MAX+1]; |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 654 | struct inet6_dev *in6_dev = NULL; |
| 655 | struct net_device *dev = NULL; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 656 | struct sk_buff *skb; |
| 657 | struct ipv6_devconf *devconf; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 658 | int ifindex; |
| 659 | int err; |
| 660 | |
Jakub Kicinski | 38d5181 | 2019-01-18 10:46:22 -0800 | [diff] [blame] | 661 | err = inet6_netconf_valid_get_req(in_skb, nlh, tb, extack); |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 662 | if (err < 0) |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 663 | return err; |
| 664 | |
| 665 | if (!tb[NETCONFA_IFINDEX]) |
| 666 | return -EINVAL; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 667 | |
Anton Protopopov | a97eb33 | 2016-02-16 21:43:16 -0500 | [diff] [blame] | 668 | err = -EINVAL; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 669 | ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]); |
| 670 | switch (ifindex) { |
| 671 | case NETCONFA_IFINDEX_ALL: |
| 672 | devconf = net->ipv6.devconf_all; |
| 673 | break; |
| 674 | case NETCONFA_IFINDEX_DEFAULT: |
| 675 | devconf = net->ipv6.devconf_dflt; |
| 676 | break; |
| 677 | default: |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 678 | dev = dev_get_by_index(net, ifindex); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 679 | if (!dev) |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 680 | return -EINVAL; |
| 681 | in6_dev = in6_dev_get(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 682 | if (!in6_dev) |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 683 | goto errout; |
| 684 | devconf = &in6_dev->cnf; |
| 685 | break; |
| 686 | } |
| 687 | |
| 688 | err = -ENOBUFS; |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 689 | skb = nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 690 | if (!skb) |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 691 | goto errout; |
| 692 | |
| 693 | err = inet6_netconf_fill_devconf(skb, ifindex, devconf, |
| 694 | NETLINK_CB(in_skb).portid, |
| 695 | nlh->nlmsg_seq, RTM_NEWNETCONF, 0, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 696 | NETCONFA_ALL); |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 697 | if (err < 0) { |
| 698 | /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */ |
| 699 | WARN_ON(err == -EMSGSIZE); |
| 700 | kfree_skb(skb); |
| 701 | goto errout; |
| 702 | } |
| 703 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); |
| 704 | errout: |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 705 | if (in6_dev) |
| 706 | in6_dev_put(in6_dev); |
Yajun Deng | 1160dfa | 2021-08-05 19:55:27 +0800 | [diff] [blame] | 707 | dev_put(dev); |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 708 | return err; |
| 709 | } |
| 710 | |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 711 | static int inet6_netconf_dump_devconf(struct sk_buff *skb, |
| 712 | struct netlink_callback *cb) |
| 713 | { |
David Ahern | addd383 | 2018-10-07 20:16:41 -0700 | [diff] [blame] | 714 | const struct nlmsghdr *nlh = cb->nlh; |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 715 | struct net *net = sock_net(skb->sk); |
| 716 | int h, s_h; |
| 717 | int idx, s_idx; |
| 718 | struct net_device *dev; |
| 719 | struct inet6_dev *idev; |
| 720 | struct hlist_head *head; |
| 721 | |
David Ahern | addd383 | 2018-10-07 20:16:41 -0700 | [diff] [blame] | 722 | if (cb->strict_check) { |
| 723 | struct netlink_ext_ack *extack = cb->extack; |
| 724 | struct netconfmsg *ncm; |
| 725 | |
| 726 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ncm))) { |
| 727 | NL_SET_ERR_MSG_MOD(extack, "Invalid header for netconf dump request"); |
| 728 | return -EINVAL; |
| 729 | } |
| 730 | |
| 731 | if (nlmsg_attrlen(nlh, sizeof(*ncm))) { |
| 732 | NL_SET_ERR_MSG_MOD(extack, "Invalid data after header in netconf dump request"); |
| 733 | return -EINVAL; |
| 734 | } |
| 735 | } |
| 736 | |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 737 | s_h = cb->args[0]; |
| 738 | s_idx = idx = cb->args[1]; |
| 739 | |
| 740 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 741 | idx = 0; |
| 742 | head = &net->dev_index_head[h]; |
| 743 | rcu_read_lock(); |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 744 | cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ |
| 745 | net->dev_base_seq; |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 746 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
| 747 | if (idx < s_idx) |
| 748 | goto cont; |
| 749 | idev = __in6_dev_get(dev); |
| 750 | if (!idev) |
| 751 | goto cont; |
| 752 | |
| 753 | if (inet6_netconf_fill_devconf(skb, dev->ifindex, |
| 754 | &idev->cnf, |
| 755 | NETLINK_CB(cb->skb).portid, |
David Ahern | addd383 | 2018-10-07 20:16:41 -0700 | [diff] [blame] | 756 | nlh->nlmsg_seq, |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 757 | RTM_NEWNETCONF, |
| 758 | NLM_F_MULTI, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 759 | NETCONFA_ALL) < 0) { |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 760 | rcu_read_unlock(); |
| 761 | goto done; |
| 762 | } |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 763 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 764 | cont: |
| 765 | idx++; |
| 766 | } |
| 767 | rcu_read_unlock(); |
| 768 | } |
| 769 | if (h == NETDEV_HASHENTRIES) { |
| 770 | if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL, |
| 771 | net->ipv6.devconf_all, |
| 772 | NETLINK_CB(cb->skb).portid, |
David Ahern | addd383 | 2018-10-07 20:16:41 -0700 | [diff] [blame] | 773 | nlh->nlmsg_seq, |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 774 | RTM_NEWNETCONF, NLM_F_MULTI, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 775 | NETCONFA_ALL) < 0) |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 776 | goto done; |
| 777 | else |
| 778 | h++; |
| 779 | } |
| 780 | if (h == NETDEV_HASHENTRIES + 1) { |
| 781 | if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT, |
| 782 | net->ipv6.devconf_dflt, |
| 783 | NETLINK_CB(cb->skb).portid, |
David Ahern | addd383 | 2018-10-07 20:16:41 -0700 | [diff] [blame] | 784 | nlh->nlmsg_seq, |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 785 | RTM_NEWNETCONF, NLM_F_MULTI, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 786 | NETCONFA_ALL) < 0) |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 787 | goto done; |
| 788 | else |
| 789 | h++; |
| 790 | } |
| 791 | done: |
| 792 | cb->args[0] = h; |
| 793 | cb->args[1] = idx; |
| 794 | |
| 795 | return skb->len; |
| 796 | } |
| 797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | #ifdef CONFIG_SYSCTL |
| 799 | static void dev_forward_change(struct inet6_dev *idev) |
| 800 | { |
| 801 | struct net_device *dev; |
| 802 | struct inet6_ifaddr *ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
| 804 | if (!idev) |
| 805 | return; |
| 806 | dev = idev->dev; |
Ben Hutchings | 0187bdf | 2008-06-19 16:15:47 -0700 | [diff] [blame] | 807 | if (idev->cnf.forwarding) |
| 808 | dev_disable_lro(dev); |
Amerigo Wang | 1a94083 | 2012-10-28 17:43:53 +0000 | [diff] [blame] | 809 | if (dev->flags & IFF_MULTICAST) { |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 810 | if (idev->cnf.forwarding) { |
YOSHIFUJI Hideaki | f3ee401 | 2008-04-10 15:42:11 +0900 | [diff] [blame] | 811 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters); |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 812 | ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters); |
| 813 | ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters); |
| 814 | } else { |
YOSHIFUJI Hideaki | f3ee401 | 2008-04-10 15:42:11 +0900 | [diff] [blame] | 815 | ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters); |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 816 | ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters); |
| 817 | ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters); |
| 818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | } |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 820 | |
| 821 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
Michal Wrobel | 2c12a74 | 2007-02-26 15:36:10 -0800 | [diff] [blame] | 822 | if (ifa->flags&IFA_F_TENTATIVE) |
| 823 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | if (idev->cnf.forwarding) |
| 825 | addrconf_join_anycast(ifa); |
| 826 | else |
| 827 | addrconf_leave_anycast(ifa); |
| 828 | } |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 829 | inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, |
| 830 | NETCONFA_FORWARDING, |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 831 | dev->ifindex, &idev->cnf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 835 | static void addrconf_forward_change(struct net *net, __s32 newf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | { |
| 837 | struct net_device *dev; |
| 838 | struct inet6_dev *idev; |
| 839 | |
Ben Hutchings | 4acd494 | 2012-08-14 08:54:51 +0000 | [diff] [blame] | 840 | for_each_netdev(net, dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | idev = __in6_dev_get(dev); |
| 842 | if (idev) { |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 843 | int changed = (!idev->cnf.forwarding) ^ (!newf); |
| 844 | idev->cnf.forwarding = newf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | if (changed) |
| 846 | dev_forward_change(idev); |
| 847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 850 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 851 | static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf) |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 852 | { |
Pavel Emelyanov | bff16c2 | 2008-01-10 17:42:13 -0800 | [diff] [blame] | 853 | struct net *net; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 854 | int old; |
| 855 | |
| 856 | if (!rtnl_trylock()) |
| 857 | return restart_syscall(); |
Pavel Emelyanov | bff16c2 | 2008-01-10 17:42:13 -0800 | [diff] [blame] | 858 | |
| 859 | net = (struct net *)table->extra2; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 860 | old = *p; |
| 861 | *p = newf; |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 862 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 863 | if (p == &net->ipv6.devconf_dflt->forwarding) { |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 864 | if ((!newf) ^ (!old)) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 865 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 866 | NETCONFA_FORWARDING, |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 867 | NETCONFA_IFINDEX_DEFAULT, |
| 868 | net->ipv6.devconf_dflt); |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 869 | rtnl_unlock(); |
| 870 | return 0; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 871 | } |
Stephen Hemminger | b325fdd | 2009-02-26 06:55:31 +0000 | [diff] [blame] | 872 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 873 | if (p == &net->ipv6.devconf_all->forwarding) { |
Nicolas Dichtel | d26c638 | 2016-08-30 10:09:21 +0200 | [diff] [blame] | 874 | int old_dflt = net->ipv6.devconf_dflt->forwarding; |
| 875 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 876 | net->ipv6.devconf_dflt->forwarding = newf; |
Nicolas Dichtel | d26c638 | 2016-08-30 10:09:21 +0200 | [diff] [blame] | 877 | if ((!newf) ^ (!old_dflt)) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 878 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 879 | NETCONFA_FORWARDING, |
Nicolas Dichtel | d26c638 | 2016-08-30 10:09:21 +0200 | [diff] [blame] | 880 | NETCONFA_IFINDEX_DEFAULT, |
| 881 | net->ipv6.devconf_dflt); |
| 882 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 883 | addrconf_forward_change(net, newf); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 884 | if ((!newf) ^ (!old)) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 885 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 886 | NETCONFA_FORWARDING, |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 887 | NETCONFA_IFINDEX_ALL, |
| 888 | net->ipv6.devconf_all); |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 889 | } else if ((!newf) ^ (!old)) |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 890 | dev_forward_change((struct inet6_dev *)table->extra1); |
Ben Hutchings | 0187bdf | 2008-06-19 16:15:47 -0700 | [diff] [blame] | 891 | rtnl_unlock(); |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 892 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 893 | if (newf) |
Daniel Lezcano | 7b4da53 | 2008-03-04 13:47:14 -0800 | [diff] [blame] | 894 | rt6_purge_dflt_routers(net); |
Stephen Hemminger | b325fdd | 2009-02-26 06:55:31 +0000 | [diff] [blame] | 895 | return 1; |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 896 | } |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 897 | |
| 898 | static void addrconf_linkdown_change(struct net *net, __s32 newf) |
| 899 | { |
| 900 | struct net_device *dev; |
| 901 | struct inet6_dev *idev; |
| 902 | |
| 903 | for_each_netdev(net, dev) { |
| 904 | idev = __in6_dev_get(dev); |
| 905 | if (idev) { |
| 906 | int changed = (!idev->cnf.ignore_routes_with_linkdown) ^ (!newf); |
| 907 | |
| 908 | idev->cnf.ignore_routes_with_linkdown = newf; |
| 909 | if (changed) |
| 910 | inet6_netconf_notify_devconf(dev_net(dev), |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 911 | RTM_NEWNETCONF, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 912 | NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 913 | dev->ifindex, |
| 914 | &idev->cnf); |
| 915 | } |
| 916 | } |
| 917 | } |
| 918 | |
| 919 | static int addrconf_fixup_linkdown(struct ctl_table *table, int *p, int newf) |
| 920 | { |
| 921 | struct net *net; |
| 922 | int old; |
| 923 | |
| 924 | if (!rtnl_trylock()) |
| 925 | return restart_syscall(); |
| 926 | |
| 927 | net = (struct net *)table->extra2; |
| 928 | old = *p; |
| 929 | *p = newf; |
| 930 | |
| 931 | if (p == &net->ipv6.devconf_dflt->ignore_routes_with_linkdown) { |
| 932 | if ((!newf) ^ (!old)) |
| 933 | inet6_netconf_notify_devconf(net, |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 934 | RTM_NEWNETCONF, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 935 | NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 936 | NETCONFA_IFINDEX_DEFAULT, |
| 937 | net->ipv6.devconf_dflt); |
| 938 | rtnl_unlock(); |
| 939 | return 0; |
| 940 | } |
| 941 | |
| 942 | if (p == &net->ipv6.devconf_all->ignore_routes_with_linkdown) { |
| 943 | net->ipv6.devconf_dflt->ignore_routes_with_linkdown = newf; |
| 944 | addrconf_linkdown_change(net, newf); |
| 945 | if ((!newf) ^ (!old)) |
| 946 | inet6_netconf_notify_devconf(net, |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 947 | RTM_NEWNETCONF, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 948 | NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 949 | NETCONFA_IFINDEX_ALL, |
| 950 | net->ipv6.devconf_all); |
| 951 | } |
| 952 | rtnl_unlock(); |
| 953 | |
| 954 | return 1; |
| 955 | } |
| 956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | #endif |
| 958 | |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 959 | /* Nobody refers to this ifaddr, destroy it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp) |
| 961 | { |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 962 | WARN_ON(!hlist_unhashed(&ifp->addr_lst)); |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | #ifdef NET_REFCNT_DEBUG |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 965 | pr_debug("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | #endif |
| 967 | |
| 968 | in6_dev_put(ifp->idev); |
| 969 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 970 | if (cancel_delayed_work(&ifp->dad_work)) |
| 971 | pr_notice("delayed DAD work was pending while freeing ifa=%p\n", |
| 972 | ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Herbert Xu | e9d3e08 | 2010-05-18 15:36:06 -0700 | [diff] [blame] | 974 | if (ifp->state != INET6_IFADDR_STATE_DEAD) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 975 | pr_warn("Freeing alive inet6 address %p\n", ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | return; |
| 977 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | |
Lai Jiangshan | e578598 | 2011-03-15 18:00:14 +0800 | [diff] [blame] | 979 | kfree_rcu(ifp, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | } |
| 981 | |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 982 | static void |
| 983 | ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp) |
| 984 | { |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 985 | struct list_head *p; |
YOSHIFUJI Hideaki | 8a6ce0c | 2006-07-11 13:05:30 -0700 | [diff] [blame] | 986 | int ifp_scope = ipv6_addr_src_scope(&ifp->addr); |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 987 | |
| 988 | /* |
| 989 | * Each device address list is sorted in order of scope - |
| 990 | * global before linklocal. |
| 991 | */ |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 992 | list_for_each(p, &idev->addr_list) { |
| 993 | struct inet6_ifaddr *ifa |
| 994 | = list_entry(p, struct inet6_ifaddr, if_list); |
YOSHIFUJI Hideaki | 8a6ce0c | 2006-07-11 13:05:30 -0700 | [diff] [blame] | 995 | if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr)) |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 996 | break; |
| 997 | } |
| 998 | |
Eric Dumazet | 8ef802a | 2017-10-07 19:30:23 -0700 | [diff] [blame] | 999 | list_add_tail_rcu(&ifp->if_list, p); |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 1000 | } |
| 1001 | |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 1002 | static u32 inet6_addr_hash(const struct net *net, const struct in6_addr *addr) |
YOSHIFUJI Hideaki | 3eb84f4 | 2008-04-10 15:42:08 +0900 | [diff] [blame] | 1003 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 1004 | u32 val = ipv6_addr_hash(addr) ^ net_hash_mix(net); |
| 1005 | |
| 1006 | return hash_32(val, IN6_ADDR_HSIZE_SHIFT); |
YOSHIFUJI Hideaki | 3eb84f4 | 2008-04-10 15:42:08 +0900 | [diff] [blame] | 1007 | } |
| 1008 | |
Eric Dumazet | 56fc709 | 2017-10-23 16:17:45 -0700 | [diff] [blame] | 1009 | static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr, |
Eric Dumazet | 752a929 | 2017-10-23 16:17:46 -0700 | [diff] [blame] | 1010 | struct net_device *dev, unsigned int hash) |
Eric Dumazet | 56fc709 | 2017-10-23 16:17:45 -0700 | [diff] [blame] | 1011 | { |
Eric Dumazet | 56fc709 | 2017-10-23 16:17:45 -0700 | [diff] [blame] | 1012 | struct inet6_ifaddr *ifp; |
| 1013 | |
| 1014 | hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) { |
| 1015 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
| 1016 | continue; |
| 1017 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
| 1018 | if (!dev || ifp->idev->dev == dev) |
| 1019 | return true; |
| 1020 | } |
| 1021 | } |
| 1022 | return false; |
| 1023 | } |
| 1024 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1025 | static int ipv6_add_addr_hash(struct net_device *dev, struct inet6_ifaddr *ifa) |
| 1026 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 1027 | unsigned int hash = inet6_addr_hash(dev_net(dev), &ifa->addr); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1028 | int err = 0; |
| 1029 | |
| 1030 | spin_lock(&addrconf_hash_lock); |
| 1031 | |
| 1032 | /* Ignore adding duplicate addresses on an interface */ |
Eric Dumazet | 752a929 | 2017-10-23 16:17:46 -0700 | [diff] [blame] | 1033 | if (ipv6_chk_same_addr(dev_net(dev), &ifa->addr, dev, hash)) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 1034 | netdev_dbg(dev, "ipv6_add_addr: already assigned\n"); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1035 | err = -EEXIST; |
Eric Dumazet | 752a929 | 2017-10-23 16:17:46 -0700 | [diff] [blame] | 1036 | } else { |
| 1037 | hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1038 | } |
| 1039 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1040 | spin_unlock(&addrconf_hash_lock); |
| 1041 | |
| 1042 | return err; |
| 1043 | } |
| 1044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | /* On success it returns ifp with increased reference count */ |
| 1046 | |
| 1047 | static struct inet6_ifaddr * |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1048 | ipv6_add_addr(struct inet6_dev *idev, struct ifa6_config *cfg, |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 1049 | bool can_block, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | { |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1051 | gfp_t gfp_flags = can_block ? GFP_KERNEL : GFP_ATOMIC; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1052 | int addr_type = ipv6_addr_type(cfg->pfx); |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 1053 | struct net *net = dev_net(idev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | struct inet6_ifaddr *ifa = NULL; |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1055 | struct fib6_info *f6i = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | int err = 0; |
YOSHIFUJI Hideaki | d68b827 | 2008-06-25 16:26:47 +0900 | [diff] [blame] | 1057 | |
| 1058 | if (addr_type == IPV6_ADDR_ANY || |
Hangbin Liu | f17f764 | 2019-08-20 10:19:47 +0800 | [diff] [blame] | 1059 | (addr_type & IPV6_ADDR_MULTICAST && |
| 1060 | !(cfg->ifa_flags & IFA_F_MCAUTOJOIN)) || |
YOSHIFUJI Hideaki | d68b827 | 2008-06-25 16:26:47 +0900 | [diff] [blame] | 1061 | (!(idev->dev->flags & IFF_LOOPBACK) && |
Robert Shearman | 3ede0bb | 2018-09-19 13:56:53 +0100 | [diff] [blame] | 1062 | !netif_is_l3_master(idev->dev) && |
YOSHIFUJI Hideaki | d68b827 | 2008-06-25 16:26:47 +0900 | [diff] [blame] | 1063 | addr_type & IPV6_ADDR_LOOPBACK)) |
| 1064 | return ERR_PTR(-EADDRNOTAVAIL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | if (idev->dead) { |
| 1067 | err = -ENODEV; /*XXX*/ |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1068 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 1071 | if (idev->cnf.disable_ipv6) { |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 1072 | err = -EACCES; |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1073 | goto out; |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 1074 | } |
| 1075 | |
David Ahern | ff7883e | 2017-10-18 09:56:53 -0700 | [diff] [blame] | 1076 | /* validator notifier needs to be blocking; |
| 1077 | * do not call in atomic context |
| 1078 | */ |
| 1079 | if (can_block) { |
| 1080 | struct in6_validator_info i6vi = { |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1081 | .i6vi_addr = *cfg->pfx, |
David Ahern | ff7883e | 2017-10-18 09:56:53 -0700 | [diff] [blame] | 1082 | .i6vi_dev = idev, |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 1083 | .extack = extack, |
David Ahern | ff7883e | 2017-10-18 09:56:53 -0700 | [diff] [blame] | 1084 | }; |
| 1085 | |
| 1086 | err = inet6addr_validator_notifier_call_chain(NETDEV_UP, &i6vi); |
| 1087 | err = notifier_to_errno(err); |
| 1088 | if (err < 0) |
| 1089 | goto out; |
| 1090 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | |
Vasily Averin | 6126891 | 2021-07-19 13:44:31 +0300 | [diff] [blame] | 1092 | ifa = kzalloc(sizeof(*ifa), gfp_flags | __GFP_ACCOUNT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1093 | if (!ifa) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | err = -ENOBUFS; |
| 1095 | goto out; |
| 1096 | } |
| 1097 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1098 | f6i = addrconf_f6i_alloc(net, idev, cfg->pfx, false, gfp_flags); |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1099 | if (IS_ERR(f6i)) { |
| 1100 | err = PTR_ERR(f6i); |
| 1101 | f6i = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | goto out; |
| 1103 | } |
| 1104 | |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 1105 | if (net->ipv6.devconf_all->disable_policy || |
| 1106 | idev->cnf.disable_policy) |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1107 | f6i->dst_nopolicy = true; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 1108 | |
Jiri Pirko | bba2489 | 2013-12-07 19:26:57 +0100 | [diff] [blame] | 1109 | neigh_parms_data_state_setall(idev->nd_parms); |
| 1110 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1111 | ifa->addr = *cfg->pfx; |
| 1112 | if (cfg->peer_pfx) |
| 1113 | ifa->peer_addr = *cfg->peer_pfx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
| 1115 | spin_lock_init(&ifa->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1116 | INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work); |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 1117 | INIT_HLIST_NODE(&ifa->addr_lst); |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1118 | ifa->scope = cfg->scope; |
| 1119 | ifa->prefix_len = cfg->plen; |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 1120 | ifa->rt_priority = cfg->rt_priority; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1121 | ifa->flags = cfg->ifa_flags; |
Mahesh Bandewar | 66eb9f8 | 2017-05-12 17:03:39 -0700 | [diff] [blame] | 1122 | /* No need to add the TENTATIVE flag for addresses with NODAD */ |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1123 | if (!(cfg->ifa_flags & IFA_F_NODAD)) |
Mahesh Bandewar | 66eb9f8 | 2017-05-12 17:03:39 -0700 | [diff] [blame] | 1124 | ifa->flags |= IFA_F_TENTATIVE; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1125 | ifa->valid_lft = cfg->valid_lft; |
| 1126 | ifa->prefered_lft = cfg->preferred_lft; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | ifa->cstamp = ifa->tstamp = jiffies; |
Daniel Borkmann | 617fe29 | 2013-04-09 03:47:16 +0000 | [diff] [blame] | 1128 | ifa->tokenized = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1130 | ifa->rt = f6i; |
Keir Fraser | 57f5f54 | 2006-08-29 02:43:49 -0700 | [diff] [blame] | 1131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | ifa->idev = idev; |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1133 | in6_dev_hold(idev); |
| 1134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | /* For caller */ |
Reshetova, Elena | 271201c | 2017-07-04 09:34:56 +0300 | [diff] [blame] | 1136 | refcount_set(&ifa->refcnt, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1138 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1140 | err = ipv6_add_addr_hash(idev->dev, ifa); |
| 1141 | if (err < 0) { |
| 1142 | rcu_read_unlock_bh(); |
| 1143 | goto out; |
| 1144 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
| 1146 | write_lock(&idev->lock); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | /* Add to inet6_dev unicast addr list. */ |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 1149 | ipv6_link_dev_addr(idev, ifa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | if (ifa->flags&IFA_F_TEMPORARY) { |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 1152 | list_add(&ifa->tmp_list, &idev->tempaddr_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | in6_ifa_hold(ifa); |
| 1154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | in6_ifa_hold(ifa); |
| 1157 | write_unlock(&idev->lock); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1158 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1159 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1161 | inet6addr_notifier_call_chain(NETDEV_UP, ifa); |
| 1162 | out: |
| 1163 | if (unlikely(err < 0)) { |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1164 | fib6_info_release(f6i); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1165 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1166 | if (ifa) { |
| 1167 | if (ifa->idev) |
| 1168 | in6_dev_put(ifa->idev); |
| 1169 | kfree(ifa); |
| 1170 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | ifa = ERR_PTR(err); |
| 1172 | } |
| 1173 | |
| 1174 | return ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | } |
| 1176 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1177 | enum cleanup_prefix_rt_t { |
| 1178 | CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */ |
| 1179 | CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */ |
| 1180 | CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */ |
| 1181 | }; |
| 1182 | |
| 1183 | /* |
| 1184 | * Check, whether the prefix for ifp would still need a prefix route |
| 1185 | * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_* |
| 1186 | * constants. |
| 1187 | * |
| 1188 | * 1) we don't purge prefix if address was not permanent. |
| 1189 | * prefix is managed by its own lifetime. |
| 1190 | * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE. |
| 1191 | * 3) if there are no addresses, delete prefix. |
| 1192 | * 4) if there are still other permanent address(es), |
| 1193 | * corresponding prefix is still permanent. |
| 1194 | * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE, |
| 1195 | * don't purge the prefix, assume user space is managing it. |
| 1196 | * 6) otherwise, update prefix lifetime to the |
| 1197 | * longest valid lifetime among the corresponding |
| 1198 | * addresses on the device. |
| 1199 | * Note: subsequent RA will update lifetime. |
| 1200 | **/ |
| 1201 | static enum cleanup_prefix_rt_t |
| 1202 | check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires) |
| 1203 | { |
| 1204 | struct inet6_ifaddr *ifa; |
| 1205 | struct inet6_dev *idev = ifp->idev; |
| 1206 | unsigned long lifetime; |
| 1207 | enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL; |
| 1208 | |
| 1209 | *expires = jiffies; |
| 1210 | |
| 1211 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
| 1212 | if (ifa == ifp) |
| 1213 | continue; |
Zhiqiang Liu | e75913c | 2019-02-11 10:57:46 +0800 | [diff] [blame] | 1214 | if (ifa->prefix_len != ifp->prefix_len || |
| 1215 | !ipv6_prefix_equal(&ifa->addr, &ifp->addr, |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1216 | ifp->prefix_len)) |
| 1217 | continue; |
| 1218 | if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE)) |
| 1219 | return CLEANUP_PREFIX_RT_NOP; |
| 1220 | |
| 1221 | action = CLEANUP_PREFIX_RT_EXPIRE; |
| 1222 | |
| 1223 | spin_lock(&ifa->lock); |
| 1224 | |
| 1225 | lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ); |
| 1226 | /* |
| 1227 | * Note: Because this address is |
| 1228 | * not permanent, lifetime < |
| 1229 | * LONG_MAX / HZ here. |
| 1230 | */ |
| 1231 | if (time_before(*expires, ifa->tstamp + lifetime * HZ)) |
| 1232 | *expires = ifa->tstamp + lifetime * HZ; |
| 1233 | spin_unlock(&ifa->lock); |
| 1234 | } |
| 1235 | |
| 1236 | return action; |
| 1237 | } |
| 1238 | |
| 1239 | static void |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 1240 | cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires, |
| 1241 | bool del_rt, bool del_peer) |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1242 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1243 | struct fib6_info *f6i; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1244 | |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 1245 | f6i = addrconf_get_prefix_route(del_peer ? &ifp->peer_addr : &ifp->addr, |
| 1246 | ifp->prefix_len, |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 1247 | ifp->idev->dev, 0, RTF_DEFAULT, true); |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1248 | if (f6i) { |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1249 | if (del_rt) |
Roopa Prabhu | 11dd74b | 2020-04-27 13:56:45 -0700 | [diff] [blame] | 1250 | ip6_del_rt(dev_net(ifp->idev->dev), f6i, false); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1251 | else { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1252 | if (!(f6i->fib6_flags & RTF_EXPIRES)) |
| 1253 | fib6_set_expires(f6i, expires); |
| 1254 | fib6_info_release(f6i); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1255 | } |
| 1256 | } |
| 1257 | } |
| 1258 | |
| 1259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | /* This function wants to get referenced ifp and releases it before return */ |
| 1261 | |
| 1262 | static void ipv6_del_addr(struct inet6_ifaddr *ifp) |
| 1263 | { |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1264 | int state; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1265 | enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP; |
| 1266 | unsigned long expires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1268 | ASSERT_RTNL(); |
| 1269 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 1270 | spin_lock_bh(&ifp->lock); |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1271 | state = ifp->state; |
Herbert Xu | e9d3e08 | 2010-05-18 15:36:06 -0700 | [diff] [blame] | 1272 | ifp->state = INET6_IFADDR_STATE_DEAD; |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 1273 | spin_unlock_bh(&ifp->lock); |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1274 | |
| 1275 | if (state == INET6_IFADDR_STATE_DEAD) |
| 1276 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 1278 | spin_lock_bh(&addrconf_hash_lock); |
| 1279 | hlist_del_init_rcu(&ifp->addr_lst); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 1280 | spin_unlock_bh(&addrconf_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1282 | write_lock_bh(&ifp->idev->lock); |
David S. Miller | 5d9efa7 | 2013-10-28 20:07:50 -0400 | [diff] [blame] | 1283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | if (ifp->flags&IFA_F_TEMPORARY) { |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 1285 | list_del(&ifp->tmp_list); |
| 1286 | if (ifp->ifpub) { |
| 1287 | in6_ifa_put(ifp->ifpub); |
| 1288 | ifp->ifpub = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | } |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 1290 | __in6_ifa_put(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1293 | if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE)) |
| 1294 | action = check_cleanup_prefix_route(ifp, &expires); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 1295 | |
Eric Dumazet | 8ef802a | 2017-10-07 19:30:23 -0700 | [diff] [blame] | 1296 | list_del_rcu(&ifp->if_list); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1297 | __in6_ifa_put(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1299 | write_unlock_bh(&ifp->idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1301 | addrconf_del_dad_work(ifp); |
Andrey Vagin | b223856 | 2008-07-08 15:13:31 -0700 | [diff] [blame] | 1302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | ipv6_ifa_notify(RTM_DELADDR, ifp); |
| 1304 | |
Cong Wang | f88c91d | 2013-04-14 23:18:43 +0800 | [diff] [blame] | 1305 | inet6addr_notifier_call_chain(NETDEV_DOWN, ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1307 | if (action != CLEANUP_PREFIX_RT_NOP) { |
| 1308 | cleanup_prefix_route(ifp, expires, |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 1309 | action == CLEANUP_PREFIX_RT_DEL, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } |
| 1311 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 1312 | /* clean up prefsrc entries */ |
| 1313 | rt6_remove_prefsrc(ifp); |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1314 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | in6_ifa_put(ifp); |
| 1316 | } |
| 1317 | |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 1318 | static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, bool block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | { |
| 1320 | struct inet6_dev *idev = ifp->idev; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1321 | unsigned long tmp_tstamp, age; |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1322 | unsigned long regen_advance; |
Lorenzo Colitti | 76f793e | 2011-07-26 13:50:49 +0000 | [diff] [blame] | 1323 | unsigned long now = jiffies; |
Jiri Bohac | 7aa8e63 | 2016-10-20 12:29:26 +0200 | [diff] [blame] | 1324 | s32 cnf_temp_preferred_lft; |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 1325 | struct inet6_ifaddr *ift; |
| 1326 | struct ifa6_config cfg; |
| 1327 | long max_desync_factor; |
| 1328 | struct in6_addr addr; |
| 1329 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1331 | write_lock_bh(&idev->lock); |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 1332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | retry: |
| 1334 | in6_dev_hold(idev); |
| 1335 | if (idev->cnf.use_tempaddr <= 0) { |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1336 | write_unlock_bh(&idev->lock); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1337 | pr_info("%s: use_tempaddr is disabled\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | in6_dev_put(idev); |
| 1339 | ret = -1; |
| 1340 | goto out; |
| 1341 | } |
| 1342 | spin_lock_bh(&ifp->lock); |
| 1343 | if (ifp->regen_count++ >= idev->cnf.regen_max_retry) { |
| 1344 | idev->cnf.use_tempaddr = -1; /*XXX*/ |
| 1345 | spin_unlock_bh(&ifp->lock); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1346 | write_unlock_bh(&idev->lock); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1347 | pr_warn("%s: regeneration time exceeded - disabled temporary address support\n", |
| 1348 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | in6_dev_put(idev); |
| 1350 | ret = -1; |
| 1351 | goto out; |
| 1352 | } |
| 1353 | in6_ifa_hold(ifp); |
| 1354 | memcpy(addr.s6_addr, ifp->addr.s6_addr, 8); |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 1355 | ipv6_gen_rnd_iid(&addr); |
| 1356 | |
Lorenzo Colitti | 76f793e | 2011-07-26 13:50:49 +0000 | [diff] [blame] | 1357 | age = (now - ifp->tstamp) / HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1359 | regen_advance = idev->cnf.regen_max_retry * |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1360 | idev->cnf.dad_transmits * |
Hangbin Liu | 19e16d2 | 2020-04-01 14:46:20 +0800 | [diff] [blame] | 1361 | max(NEIGH_VAR(idev->nd_parms, RETRANS_TIME), HZ/100) / HZ; |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1362 | |
| 1363 | /* recalculate max_desync_factor each time and update |
| 1364 | * idev->desync_factor if it's larger |
| 1365 | */ |
Jiri Bohac | 7aa8e63 | 2016-10-20 12:29:26 +0200 | [diff] [blame] | 1366 | cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft); |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1367 | max_desync_factor = min_t(__u32, |
| 1368 | idev->cnf.max_desync_factor, |
Jiri Bohac | 7aa8e63 | 2016-10-20 12:29:26 +0200 | [diff] [blame] | 1369 | cnf_temp_preferred_lft - regen_advance); |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1370 | |
| 1371 | if (unlikely(idev->desync_factor > max_desync_factor)) { |
| 1372 | if (max_desync_factor > 0) { |
| 1373 | get_random_bytes(&idev->desync_factor, |
| 1374 | sizeof(idev->desync_factor)); |
| 1375 | idev->desync_factor %= max_desync_factor; |
| 1376 | } else { |
| 1377 | idev->desync_factor = 0; |
| 1378 | } |
| 1379 | } |
| 1380 | |
David Ahern | 3f2d67b | 2018-06-11 07:12:12 -0700 | [diff] [blame] | 1381 | memset(&cfg, 0, sizeof(cfg)); |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1382 | cfg.valid_lft = min_t(__u32, ifp->valid_lft, |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1383 | idev->cnf.temp_valid_lft + age); |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1384 | cfg.preferred_lft = cnf_temp_preferred_lft + age - idev->desync_factor; |
| 1385 | cfg.preferred_lft = min_t(__u32, ifp->prefered_lft, cfg.preferred_lft); |
| 1386 | |
| 1387 | cfg.plen = ifp->prefix_len; |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1388 | tmp_tstamp = ifp->tstamp; |
| 1389 | spin_unlock_bh(&ifp->lock); |
| 1390 | |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1391 | write_unlock_bh(&idev->lock); |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1392 | |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1393 | /* A temporary address is created only if this calculated Preferred |
| 1394 | * Lifetime is greater than REGEN_ADVANCE time units. In particular, |
| 1395 | * an implementation must not create a temporary address with a zero |
| 1396 | * Preferred Lifetime. |
Heiner Kallweit | ecab670 | 2014-03-12 22:13:19 +0100 | [diff] [blame] | 1397 | * Use age calculation as in addrconf_verify to avoid unnecessary |
| 1398 | * temporary addresses being generated. |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1399 | */ |
Heiner Kallweit | ecab670 | 2014-03-12 22:13:19 +0100 | [diff] [blame] | 1400 | age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1401 | if (cfg.preferred_lft <= regen_advance + age) { |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1402 | in6_ifa_put(ifp); |
| 1403 | in6_dev_put(idev); |
| 1404 | ret = -1; |
| 1405 | goto out; |
| 1406 | } |
| 1407 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1408 | cfg.ifa_flags = IFA_F_TEMPORARY; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1409 | /* set in addrconf_prefix_rcv() */ |
| 1410 | if (ifp->flags & IFA_F_OPTIMISTIC) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1411 | cfg.ifa_flags |= IFA_F_OPTIMISTIC; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1412 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1413 | cfg.pfx = &addr; |
| 1414 | cfg.scope = ipv6_addr_scope(cfg.pfx); |
| 1415 | |
| 1416 | ift = ipv6_add_addr(idev, &cfg, block, NULL); |
Hannes Frederic Sowa | 4b08a8f | 2013-08-16 13:02:27 +0200 | [diff] [blame] | 1417 | if (IS_ERR(ift)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | in6_ifa_put(ifp); |
| 1419 | in6_dev_put(idev); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1420 | pr_info("%s: retry temporary address regeneration\n", __func__); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1421 | write_lock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | goto retry; |
| 1423 | } |
| 1424 | |
| 1425 | spin_lock_bh(&ift->lock); |
| 1426 | ift->ifpub = ifp; |
Lorenzo Colitti | 76f793e | 2011-07-26 13:50:49 +0000 | [diff] [blame] | 1427 | ift->cstamp = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | ift->tstamp = tmp_tstamp; |
| 1429 | spin_unlock_bh(&ift->lock); |
| 1430 | |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 1431 | addrconf_dad_start(ift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | in6_ifa_put(ift); |
| 1433 | in6_dev_put(idev); |
| 1434 | out: |
| 1435 | return ret; |
| 1436 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | |
| 1438 | /* |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1439 | * Choose an appropriate source address (RFC3484) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | */ |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1441 | enum { |
| 1442 | IPV6_SADDR_RULE_INIT = 0, |
| 1443 | IPV6_SADDR_RULE_LOCAL, |
| 1444 | IPV6_SADDR_RULE_SCOPE, |
| 1445 | IPV6_SADDR_RULE_PREFERRED, |
| 1446 | #ifdef CONFIG_IPV6_MIP6 |
| 1447 | IPV6_SADDR_RULE_HOA, |
| 1448 | #endif |
| 1449 | IPV6_SADDR_RULE_OIF, |
| 1450 | IPV6_SADDR_RULE_LABEL, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1451 | IPV6_SADDR_RULE_PRIVACY, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1452 | IPV6_SADDR_RULE_ORCHID, |
| 1453 | IPV6_SADDR_RULE_PREFIX, |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1454 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 1455 | IPV6_SADDR_RULE_NOT_OPTIMISTIC, |
| 1456 | #endif |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1457 | IPV6_SADDR_RULE_MAX |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1458 | }; |
| 1459 | |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1460 | struct ipv6_saddr_score { |
| 1461 | int rule; |
| 1462 | int addr_type; |
| 1463 | struct inet6_ifaddr *ifa; |
| 1464 | DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX); |
| 1465 | int scopedist; |
| 1466 | int matchlen; |
| 1467 | }; |
| 1468 | |
| 1469 | struct ipv6_saddr_dst { |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 1470 | const struct in6_addr *addr; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1471 | int ifindex; |
| 1472 | int scope; |
| 1473 | int label; |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1474 | unsigned int prefs; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1475 | }; |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1476 | |
Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 1477 | static inline int ipv6_saddr_preferred(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | { |
Ulrich Weber | 45bb006 | 2010-02-25 23:28:58 +0000 | [diff] [blame] | 1479 | if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK)) |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1480 | return 1; |
| 1481 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | } |
| 1483 | |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 1484 | static bool ipv6_use_optimistic_addr(struct net *net, |
| 1485 | struct inet6_dev *idev) |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1486 | { |
| 1487 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 1488 | if (!idev) |
| 1489 | return false; |
| 1490 | if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad) |
| 1491 | return false; |
| 1492 | if (!net->ipv6.devconf_all->use_optimistic && !idev->cnf.use_optimistic) |
| 1493 | return false; |
| 1494 | |
| 1495 | return true; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1496 | #else |
| 1497 | return false; |
| 1498 | #endif |
| 1499 | } |
| 1500 | |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 1501 | static bool ipv6_allow_optimistic_dad(struct net *net, |
| 1502 | struct inet6_dev *idev) |
| 1503 | { |
| 1504 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 1505 | if (!idev) |
| 1506 | return false; |
| 1507 | if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad) |
| 1508 | return false; |
| 1509 | |
| 1510 | return true; |
| 1511 | #else |
| 1512 | return false; |
| 1513 | #endif |
| 1514 | } |
| 1515 | |
Benjamin Thery | 3de2325 | 2008-05-28 14:51:24 +0200 | [diff] [blame] | 1516 | static int ipv6_get_saddr_eval(struct net *net, |
| 1517 | struct ipv6_saddr_score *score, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1518 | struct ipv6_saddr_dst *dst, |
| 1519 | int i) |
| 1520 | { |
| 1521 | int ret; |
| 1522 | |
| 1523 | if (i <= score->rule) { |
| 1524 | switch (i) { |
| 1525 | case IPV6_SADDR_RULE_SCOPE: |
| 1526 | ret = score->scopedist; |
| 1527 | break; |
| 1528 | case IPV6_SADDR_RULE_PREFIX: |
| 1529 | ret = score->matchlen; |
| 1530 | break; |
| 1531 | default: |
| 1532 | ret = !!test_bit(i, score->scorebits); |
| 1533 | } |
| 1534 | goto out; |
| 1535 | } |
| 1536 | |
| 1537 | switch (i) { |
| 1538 | case IPV6_SADDR_RULE_INIT: |
| 1539 | /* Rule 0: remember if hiscore is not ready yet */ |
| 1540 | ret = !!score->ifa; |
| 1541 | break; |
| 1542 | case IPV6_SADDR_RULE_LOCAL: |
| 1543 | /* Rule 1: Prefer same address */ |
| 1544 | ret = ipv6_addr_equal(&score->ifa->addr, dst->addr); |
| 1545 | break; |
| 1546 | case IPV6_SADDR_RULE_SCOPE: |
| 1547 | /* Rule 2: Prefer appropriate scope |
| 1548 | * |
| 1549 | * ret |
| 1550 | * ^ |
| 1551 | * -1 | d 15 |
| 1552 | * ---+--+-+---> scope |
| 1553 | * | |
| 1554 | * | d is scope of the destination. |
| 1555 | * B-d | \ |
| 1556 | * | \ <- smaller scope is better if |
stephen hemminger | db9c7c3 | 2014-01-12 11:26:32 -0800 | [diff] [blame] | 1557 | * B-15 | \ if scope is enough for destination. |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1558 | * | ret = B - scope (-1 <= scope >= d <= 15). |
| 1559 | * d-C-1 | / |
| 1560 | * |/ <- greater is better |
| 1561 | * -C / if scope is not enough for destination. |
| 1562 | * /| ret = scope - C (-1 <= d < scope <= 15). |
| 1563 | * |
| 1564 | * d - C - 1 < B -15 (for all -1 <= d <= 15). |
| 1565 | * C > d + 14 - B >= 15 + 14 - B = 29 - B. |
| 1566 | * Assume B = 0 and we get C > 29. |
| 1567 | */ |
| 1568 | ret = __ipv6_addr_src_scope(score->addr_type); |
| 1569 | if (ret >= dst->scope) |
| 1570 | ret = -ret; |
| 1571 | else |
| 1572 | ret -= 128; /* 30 is enough */ |
| 1573 | score->scopedist = ret; |
| 1574 | break; |
| 1575 | case IPV6_SADDR_RULE_PREFERRED: |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1576 | { |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1577 | /* Rule 3: Avoid deprecated and optimistic addresses */ |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1578 | u8 avoid = IFA_F_DEPRECATED; |
| 1579 | |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 1580 | if (!ipv6_use_optimistic_addr(net, score->ifa->idev)) |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1581 | avoid |= IFA_F_OPTIMISTIC; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1582 | ret = ipv6_saddr_preferred(score->addr_type) || |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1583 | !(score->ifa->flags & avoid); |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1584 | break; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1585 | } |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1586 | #ifdef CONFIG_IPV6_MIP6 |
| 1587 | case IPV6_SADDR_RULE_HOA: |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1588 | { |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1589 | /* Rule 4: Prefer home address */ |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1590 | int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA); |
| 1591 | ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1592 | break; |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1593 | } |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1594 | #endif |
| 1595 | case IPV6_SADDR_RULE_OIF: |
| 1596 | /* Rule 5: Prefer outgoing interface */ |
| 1597 | ret = (!dst->ifindex || |
| 1598 | dst->ifindex == score->ifa->idev->dev->ifindex); |
| 1599 | break; |
| 1600 | case IPV6_SADDR_RULE_LABEL: |
| 1601 | /* Rule 6: Prefer matching label */ |
Benjamin Thery | 3de2325 | 2008-05-28 14:51:24 +0200 | [diff] [blame] | 1602 | ret = ipv6_addr_label(net, |
| 1603 | &score->ifa->addr, score->addr_type, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1604 | score->ifa->idev->dev->ifindex) == dst->label; |
| 1605 | break; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1606 | case IPV6_SADDR_RULE_PRIVACY: |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1607 | { |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1608 | /* Rule 7: Prefer public address |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1609 | * Note: prefer temporary address if use_tempaddr >= 2 |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1610 | */ |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1611 | int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ? |
| 1612 | !!(dst->prefs & IPV6_PREFER_SRC_TMP) : |
| 1613 | score->ifa->idev->cnf.use_tempaddr >= 2; |
| 1614 | ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1615 | break; |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1616 | } |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1617 | case IPV6_SADDR_RULE_ORCHID: |
| 1618 | /* Rule 8-: Prefer ORCHID vs ORCHID or |
| 1619 | * non-ORCHID vs non-ORCHID |
| 1620 | */ |
| 1621 | ret = !(ipv6_addr_orchid(&score->ifa->addr) ^ |
| 1622 | ipv6_addr_orchid(dst->addr)); |
| 1623 | break; |
| 1624 | case IPV6_SADDR_RULE_PREFIX: |
| 1625 | /* Rule 8: Use longest matching prefix */ |
YOSHIFUJI Hideaki / 吉藤英明 | 91b4b04 | 2012-09-10 18:41:07 +0000 | [diff] [blame] | 1626 | ret = ipv6_addr_diff(&score->ifa->addr, dst->addr); |
| 1627 | if (ret > score->ifa->prefix_len) |
| 1628 | ret = score->ifa->prefix_len; |
| 1629 | score->matchlen = ret; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1630 | break; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1631 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 1632 | case IPV6_SADDR_RULE_NOT_OPTIMISTIC: |
| 1633 | /* Optimistic addresses still have lower precedence than other |
| 1634 | * preferred addresses. |
| 1635 | */ |
| 1636 | ret = !(score->ifa->flags & IFA_F_OPTIMISTIC); |
| 1637 | break; |
| 1638 | #endif |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1639 | default: |
| 1640 | ret = 0; |
| 1641 | } |
| 1642 | |
| 1643 | if (ret) |
| 1644 | __set_bit(i, score->scorebits); |
| 1645 | score->rule = i; |
| 1646 | out: |
| 1647 | return ret; |
| 1648 | } |
| 1649 | |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1650 | static int __ipv6_dev_get_saddr(struct net *net, |
| 1651 | struct ipv6_saddr_dst *dst, |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1652 | struct inet6_dev *idev, |
| 1653 | struct ipv6_saddr_score *scores, |
| 1654 | int hiscore_idx) |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1655 | { |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1656 | struct ipv6_saddr_score *score = &scores[1 - hiscore_idx], *hiscore = &scores[hiscore_idx]; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1657 | |
Eric Dumazet | f59c031 | 2017-10-07 19:30:27 -0700 | [diff] [blame] | 1658 | list_for_each_entry_rcu(score->ifa, &idev->addr_list, if_list) { |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1659 | int i; |
| 1660 | |
| 1661 | /* |
| 1662 | * - Tentative Address (RFC2462 section 5.4) |
| 1663 | * - A tentative address is not considered |
| 1664 | * "assigned to an interface" in the traditional |
| 1665 | * sense, unless it is also flagged as optimistic. |
| 1666 | * - Candidate Source Address (section 4) |
| 1667 | * - In any case, anycast addresses, multicast |
| 1668 | * addresses, and the unspecified address MUST |
| 1669 | * NOT be included in a candidate set. |
| 1670 | */ |
| 1671 | if ((score->ifa->flags & IFA_F_TENTATIVE) && |
| 1672 | (!(score->ifa->flags & IFA_F_OPTIMISTIC))) |
| 1673 | continue; |
| 1674 | |
| 1675 | score->addr_type = __ipv6_addr_type(&score->ifa->addr); |
| 1676 | |
| 1677 | if (unlikely(score->addr_type == IPV6_ADDR_ANY || |
| 1678 | score->addr_type & IPV6_ADDR_MULTICAST)) { |
| 1679 | net_dbg_ratelimited("ADDRCONF: unspecified / multicast address assigned as unicast address on %s", |
| 1680 | idev->dev->name); |
| 1681 | continue; |
| 1682 | } |
| 1683 | |
| 1684 | score->rule = -1; |
| 1685 | bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX); |
| 1686 | |
| 1687 | for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) { |
| 1688 | int minihiscore, miniscore; |
| 1689 | |
| 1690 | minihiscore = ipv6_get_saddr_eval(net, hiscore, dst, i); |
| 1691 | miniscore = ipv6_get_saddr_eval(net, score, dst, i); |
| 1692 | |
| 1693 | if (minihiscore > miniscore) { |
| 1694 | if (i == IPV6_SADDR_RULE_SCOPE && |
| 1695 | score->scopedist > 0) { |
| 1696 | /* |
| 1697 | * special case: |
| 1698 | * each remaining entry |
| 1699 | * has too small (not enough) |
| 1700 | * scope, because ifa entries |
| 1701 | * are sorted by their scope |
| 1702 | * values. |
| 1703 | */ |
| 1704 | goto out; |
| 1705 | } |
| 1706 | break; |
| 1707 | } else if (minihiscore < miniscore) { |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1708 | swap(hiscore, score); |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1709 | hiscore_idx = 1 - hiscore_idx; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1710 | |
| 1711 | /* restore our iterator */ |
| 1712 | score->ifa = hiscore->ifa; |
| 1713 | |
| 1714 | break; |
| 1715 | } |
| 1716 | } |
| 1717 | } |
| 1718 | out: |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1719 | return hiscore_idx; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1720 | } |
| 1721 | |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1722 | static int ipv6_get_saddr_master(struct net *net, |
| 1723 | const struct net_device *dst_dev, |
| 1724 | const struct net_device *master, |
| 1725 | struct ipv6_saddr_dst *dst, |
| 1726 | struct ipv6_saddr_score *scores, |
| 1727 | int hiscore_idx) |
| 1728 | { |
| 1729 | struct inet6_dev *idev; |
| 1730 | |
| 1731 | idev = __in6_dev_get(dst_dev); |
| 1732 | if (idev) |
| 1733 | hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev, |
| 1734 | scores, hiscore_idx); |
| 1735 | |
| 1736 | idev = __in6_dev_get(master); |
| 1737 | if (idev) |
| 1738 | hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev, |
| 1739 | scores, hiscore_idx); |
| 1740 | |
| 1741 | return hiscore_idx; |
| 1742 | } |
| 1743 | |
Patrick McHardy | b3f644f | 2012-08-26 19:14:14 +0200 | [diff] [blame] | 1744 | int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev, |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 1745 | const struct in6_addr *daddr, unsigned int prefs, |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1746 | struct in6_addr *saddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | { |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1748 | struct ipv6_saddr_score scores[2], *hiscore; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1749 | struct ipv6_saddr_dst dst; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1750 | struct inet6_dev *idev; |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1751 | struct net_device *dev; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1752 | int dst_type; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1753 | bool use_oif_addr = false; |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1754 | int hiscore_idx = 0; |
Eric Dumazet | cc429c8 | 2017-10-07 19:30:28 -0700 | [diff] [blame] | 1755 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1757 | dst_type = __ipv6_addr_type(daddr); |
| 1758 | dst.addr = daddr; |
| 1759 | dst.ifindex = dst_dev ? dst_dev->ifindex : 0; |
| 1760 | dst.scope = __ipv6_addr_src_scope(dst_type); |
Benjamin Thery | 3de2325 | 2008-05-28 14:51:24 +0200 | [diff] [blame] | 1761 | dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex); |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1762 | dst.prefs = prefs; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1763 | |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1764 | scores[hiscore_idx].rule = -1; |
| 1765 | scores[hiscore_idx].ifa = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1767 | rcu_read_lock(); |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1768 | |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1769 | /* Candidate Source Address (section 4) |
| 1770 | * - multicast and link-local destination address, |
| 1771 | * the set of candidate source address MUST only |
| 1772 | * include addresses assigned to interfaces |
| 1773 | * belonging to the same link as the outgoing |
| 1774 | * interface. |
| 1775 | * (- For site-local destination addresses, the |
| 1776 | * set of candidate source addresses MUST only |
| 1777 | * include addresses assigned to interfaces |
| 1778 | * belonging to the same site as the outgoing |
| 1779 | * interface.) |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 1780 | * - "It is RECOMMENDED that the candidate source addresses |
| 1781 | * be the set of unicast addresses assigned to the |
| 1782 | * interface that will be used to send to the destination |
| 1783 | * (the 'outgoing' interface)." (RFC 6724) |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1784 | */ |
| 1785 | if (dst_dev) { |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 1786 | idev = __in6_dev_get(dst_dev); |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1787 | if ((dst_type & IPV6_ADDR_MULTICAST) || |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 1788 | dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL || |
| 1789 | (idev && idev->cnf.use_oif_addrs_only)) { |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1790 | use_oif_addr = true; |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1791 | } |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | if (use_oif_addr) { |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1795 | if (idev) |
YOSHIFUJI Hideaki | c15df30 | 2015-07-16 16:51:30 +0900 | [diff] [blame] | 1796 | hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx); |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1797 | } else { |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1798 | const struct net_device *master; |
| 1799 | int master_idx = 0; |
| 1800 | |
| 1801 | /* if dst_dev exists and is enslaved to an L3 device, then |
| 1802 | * prefer addresses from dst_dev and then the master over |
| 1803 | * any other enslaved devices in the L3 domain. |
| 1804 | */ |
| 1805 | master = l3mdev_master_dev_rcu(dst_dev); |
| 1806 | if (master) { |
| 1807 | master_idx = master->ifindex; |
| 1808 | |
| 1809 | hiscore_idx = ipv6_get_saddr_master(net, dst_dev, |
| 1810 | master, &dst, |
| 1811 | scores, hiscore_idx); |
| 1812 | |
| 1813 | if (scores[hiscore_idx].ifa) |
| 1814 | goto out; |
| 1815 | } |
| 1816 | |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1817 | for_each_netdev_rcu(net, dev) { |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1818 | /* only consider addresses on devices in the |
| 1819 | * same L3 domain |
| 1820 | */ |
| 1821 | if (l3mdev_master_ifindex_rcu(dev) != master_idx) |
| 1822 | continue; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1823 | idev = __in6_dev_get(dev); |
| 1824 | if (!idev) |
| 1825 | continue; |
YOSHIFUJI Hideaki | c15df30 | 2015-07-16 16:51:30 +0900 | [diff] [blame] | 1826 | hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx); |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1827 | } |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1828 | } |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1829 | |
| 1830 | out: |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1831 | hiscore = &scores[hiscore_idx]; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1832 | if (!hiscore->ifa) |
Eric Dumazet | cc429c8 | 2017-10-07 19:30:28 -0700 | [diff] [blame] | 1833 | ret = -EADDRNOTAVAIL; |
| 1834 | else |
| 1835 | *saddr = hiscore->ifa->addr; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1836 | |
Eric Dumazet | cc429c8 | 2017-10-07 19:30:28 -0700 | [diff] [blame] | 1837 | rcu_read_unlock(); |
| 1838 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | } |
YOSHIFUJI Hideaki | 5e5f3f0 | 2008-03-03 21:44:34 +0900 | [diff] [blame] | 1840 | EXPORT_SYMBOL(ipv6_dev_get_saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | |
Amerigo Wang | 8965779 | 2013-06-29 21:30:49 +0800 | [diff] [blame] | 1842 | int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 1843 | u32 banned_flags) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 1844 | { |
| 1845 | struct inet6_ifaddr *ifp; |
| 1846 | int err = -EADDRNOTAVAIL; |
| 1847 | |
Hannes Frederic Sowa | 602582c | 2014-01-19 21:58:19 +0100 | [diff] [blame] | 1848 | list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) { |
| 1849 | if (ifp->scope > IFA_LINK) |
| 1850 | break; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 1851 | if (ifp->scope == IFA_LINK && |
| 1852 | !(ifp->flags & banned_flags)) { |
| 1853 | *addr = ifp->addr; |
| 1854 | err = 0; |
| 1855 | break; |
| 1856 | } |
| 1857 | } |
| 1858 | return err; |
| 1859 | } |
| 1860 | |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1861 | int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 1862 | u32 banned_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | { |
| 1864 | struct inet6_dev *idev; |
| 1865 | int err = -EADDRNOTAVAIL; |
| 1866 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1867 | rcu_read_lock(); |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 1868 | idev = __in6_dev_get(dev); |
| 1869 | if (idev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | read_lock_bh(&idev->lock); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 1871 | err = __ipv6_get_lladdr(idev, addr, banned_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | read_unlock_bh(&idev->lock); |
| 1873 | } |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1874 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | return err; |
| 1876 | } |
| 1877 | |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1878 | static int ipv6_count_addresses(const struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | { |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1880 | const struct inet6_ifaddr *ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | int cnt = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1883 | rcu_read_lock(); |
| 1884 | list_for_each_entry_rcu(ifp, &idev->addr_list, if_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | cnt++; |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1886 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | return cnt; |
| 1888 | } |
| 1889 | |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1890 | int ipv6_chk_addr(struct net *net, const struct in6_addr *addr, |
Florian Westphal | 2a7851b | 2013-05-17 03:56:10 +0000 | [diff] [blame] | 1891 | const struct net_device *dev, int strict) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | { |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1893 | return ipv6_chk_addr_and_flags(net, addr, dev, !dev, |
| 1894 | strict, IFA_F_TENTATIVE); |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1895 | } |
| 1896 | EXPORT_SYMBOL(ipv6_chk_addr); |
| 1897 | |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1898 | /* device argument is used to find the L3 domain of interest. If |
| 1899 | * skip_dev_check is set, then the ifp device is not checked against |
| 1900 | * the passed in dev argument. So the 2 cases for addresses checks are: |
| 1901 | * 1. does the address exist in the L3 domain that dev is part of |
| 1902 | * (skip_dev_check = true), or |
| 1903 | * |
| 1904 | * 2. does the address exist on the specific device |
| 1905 | * (skip_dev_check = false) |
| 1906 | */ |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1907 | static struct net_device * |
| 1908 | __ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr, |
| 1909 | const struct net_device *dev, bool skip_dev_check, |
| 1910 | int strict, u32 banned_flags) |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1911 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 1912 | unsigned int hash = inet6_addr_hash(net, addr); |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1913 | struct net_device *l3mdev, *ndev; |
Stephen Hemminger | eedf042 | 2010-05-17 22:27:12 -0700 | [diff] [blame] | 1914 | struct inet6_ifaddr *ifp; |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1915 | u32 ifp_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | |
Eric Dumazet | 480318a | 2017-10-23 16:17:48 -0700 | [diff] [blame] | 1917 | rcu_read_lock(); |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1918 | |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1919 | l3mdev = l3mdev_master_dev_rcu(dev); |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1920 | if (skip_dev_check) |
| 1921 | dev = NULL; |
| 1922 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1923 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1924 | ndev = ifp->idev->dev; |
| 1925 | if (!net_eq(dev_net(ndev), net)) |
Daniel Lezcano | bfeade0 | 2008-01-10 22:43:18 -0800 | [diff] [blame] | 1926 | continue; |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1927 | |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1928 | if (l3mdev_master_dev_rcu(ndev) != l3mdev) |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1929 | continue; |
| 1930 | |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1931 | /* Decouple optimistic from tentative for evaluation here. |
| 1932 | * Ban optimistic addresses explicitly, when required. |
| 1933 | */ |
| 1934 | ifp_flags = (ifp->flags&IFA_F_OPTIMISTIC) |
| 1935 | ? (ifp->flags&~IFA_F_TENTATIVE) |
| 1936 | : ifp->flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | if (ipv6_addr_equal(&ifp->addr, addr) && |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1938 | !(ifp_flags&banned_flags) && |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1939 | (!dev || ndev == dev || |
Stephen Hemminger | eedf042 | 2010-05-17 22:27:12 -0700 | [diff] [blame] | 1940 | !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) { |
Eric Dumazet | 480318a | 2017-10-23 16:17:48 -0700 | [diff] [blame] | 1941 | rcu_read_unlock(); |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1942 | return ndev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | } |
| 1944 | } |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 1945 | |
Eric Dumazet | 480318a | 2017-10-23 16:17:48 -0700 | [diff] [blame] | 1946 | rcu_read_unlock(); |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 1947 | return NULL; |
| 1948 | } |
| 1949 | |
| 1950 | int ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr, |
| 1951 | const struct net_device *dev, bool skip_dev_check, |
| 1952 | int strict, u32 banned_flags) |
| 1953 | { |
| 1954 | return __ipv6_chk_addr_and_flags(net, addr, dev, skip_dev_check, |
| 1955 | strict, banned_flags) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | } |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1957 | EXPORT_SYMBOL(ipv6_chk_addr_and_flags); |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 1958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1960 | /* Compares an address/prefix_len with addresses on device @dev. |
| 1961 | * If one is found it returns true. |
| 1962 | */ |
| 1963 | bool ipv6_chk_custom_prefix(const struct in6_addr *addr, |
| 1964 | const unsigned int prefix_len, struct net_device *dev) |
| 1965 | { |
Eric Dumazet | 47e2694 | 2017-10-07 19:30:25 -0700 | [diff] [blame] | 1966 | const struct inet6_ifaddr *ifa; |
| 1967 | const struct inet6_dev *idev; |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1968 | bool ret = false; |
| 1969 | |
| 1970 | rcu_read_lock(); |
| 1971 | idev = __in6_dev_get(dev); |
| 1972 | if (idev) { |
Eric Dumazet | 47e2694 | 2017-10-07 19:30:25 -0700 | [diff] [blame] | 1973 | list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) { |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1974 | ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len); |
| 1975 | if (ret) |
| 1976 | break; |
| 1977 | } |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1978 | } |
| 1979 | rcu_read_unlock(); |
| 1980 | |
| 1981 | return ret; |
| 1982 | } |
| 1983 | EXPORT_SYMBOL(ipv6_chk_custom_prefix); |
| 1984 | |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1985 | int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev) |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1986 | { |
Eric Dumazet | 24ba333 | 2017-10-07 19:30:26 -0700 | [diff] [blame] | 1987 | const struct inet6_ifaddr *ifa; |
| 1988 | const struct inet6_dev *idev; |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1989 | int onlink; |
| 1990 | |
| 1991 | onlink = 0; |
| 1992 | rcu_read_lock(); |
| 1993 | idev = __in6_dev_get(dev); |
| 1994 | if (idev) { |
Eric Dumazet | 24ba333 | 2017-10-07 19:30:26 -0700 | [diff] [blame] | 1995 | list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) { |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1996 | onlink = ipv6_prefix_equal(addr, &ifa->addr, |
| 1997 | ifa->prefix_len); |
| 1998 | if (onlink) |
| 1999 | break; |
| 2000 | } |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 2001 | } |
| 2002 | rcu_read_unlock(); |
| 2003 | return onlink; |
| 2004 | } |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 2005 | EXPORT_SYMBOL(ipv6_chk_prefix); |
| 2006 | |
Xin Long | 81f6cb3 | 2020-08-03 23:34:46 +0800 | [diff] [blame] | 2007 | /** |
| 2008 | * ipv6_dev_find - find the first device with a given source address. |
| 2009 | * @net: the net namespace |
| 2010 | * @addr: the source address |
Xin Long | 2c4de21 | 2020-10-31 19:30:44 +0100 | [diff] [blame] | 2011 | * @dev: used to find the L3 domain of interest |
Xin Long | 81f6cb3 | 2020-08-03 23:34:46 +0800 | [diff] [blame] | 2012 | * |
| 2013 | * The caller should be protected by RCU, or RTNL. |
| 2014 | */ |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 2015 | struct net_device *ipv6_dev_find(struct net *net, const struct in6_addr *addr, |
| 2016 | struct net_device *dev) |
Xin Long | 81f6cb3 | 2020-08-03 23:34:46 +0800 | [diff] [blame] | 2017 | { |
Xin Long | 4ef1a7c | 2020-08-17 14:30:49 +0800 | [diff] [blame] | 2018 | return __ipv6_chk_addr_and_flags(net, addr, dev, !dev, 1, |
| 2019 | IFA_F_TENTATIVE); |
Xin Long | 81f6cb3 | 2020-08-03 23:34:46 +0800 | [diff] [blame] | 2020 | } |
| 2021 | EXPORT_SYMBOL(ipv6_dev_find); |
| 2022 | |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 2023 | struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr, |
Daniel Lezcano | 1cab3da | 2008-01-10 22:44:09 -0800 | [diff] [blame] | 2024 | struct net_device *dev, int strict) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 2026 | unsigned int hash = inet6_addr_hash(net, addr); |
David S. Miller | b79d1d5 | 2010-03-25 21:39:21 -0700 | [diff] [blame] | 2027 | struct inet6_ifaddr *ifp, *result = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | |
Eric Dumazet | 24f226d | 2017-10-23 16:17:49 -0700 | [diff] [blame] | 2029 | rcu_read_lock(); |
| 2030 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 2031 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
Daniel Lezcano | 1cab3da | 2008-01-10 22:44:09 -0800 | [diff] [blame] | 2032 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2034 | if (!dev || ifp->idev->dev == dev || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) { |
David S. Miller | b79d1d5 | 2010-03-25 21:39:21 -0700 | [diff] [blame] | 2036 | result = ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | in6_ifa_hold(ifp); |
| 2038 | break; |
| 2039 | } |
| 2040 | } |
| 2041 | } |
Eric Dumazet | 24f226d | 2017-10-23 16:17:49 -0700 | [diff] [blame] | 2042 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | |
David S. Miller | b79d1d5 | 2010-03-25 21:39:21 -0700 | [diff] [blame] | 2044 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | } |
| 2046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | /* Gets referenced address, destroys ifaddr */ |
| 2048 | |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 2049 | static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | { |
Lubomir Rintel | 3d171f3 | 2016-01-08 13:47:23 +0100 | [diff] [blame] | 2051 | if (dad_failed) |
| 2052 | ifp->flags |= IFA_F_DADFAILED; |
| 2053 | |
Sabrina Dubroca | ec8add2 | 2017-06-29 16:56:54 +0200 | [diff] [blame] | 2054 | if (ifp->flags&IFA_F_TEMPORARY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | struct inet6_ifaddr *ifpub; |
| 2056 | spin_lock_bh(&ifp->lock); |
| 2057 | ifpub = ifp->ifpub; |
| 2058 | if (ifpub) { |
| 2059 | in6_ifa_hold(ifpub); |
| 2060 | spin_unlock_bh(&ifp->lock); |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2061 | ipv6_create_tempaddr(ifpub, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | in6_ifa_put(ifpub); |
| 2063 | } else { |
| 2064 | spin_unlock_bh(&ifp->lock); |
| 2065 | } |
| 2066 | ipv6_del_addr(ifp); |
Sabrina Dubroca | ec8add2 | 2017-06-29 16:56:54 +0200 | [diff] [blame] | 2067 | } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) { |
| 2068 | spin_lock_bh(&ifp->lock); |
| 2069 | addrconf_del_dad_work(ifp); |
| 2070 | ifp->flags |= IFA_F_TENTATIVE; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 2071 | if (dad_failed) |
| 2072 | ifp->flags &= ~IFA_F_OPTIMISTIC; |
Sabrina Dubroca | ec8add2 | 2017-06-29 16:56:54 +0200 | [diff] [blame] | 2073 | spin_unlock_bh(&ifp->lock); |
| 2074 | if (dad_failed) |
| 2075 | ipv6_ifa_notify(0, ifp); |
| 2076 | in6_ifa_put(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2077 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | ipv6_del_addr(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | } |
| 2081 | |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2082 | static int addrconf_dad_end(struct inet6_ifaddr *ifp) |
| 2083 | { |
| 2084 | int err = -ENOENT; |
| 2085 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 2086 | spin_lock_bh(&ifp->lock); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2087 | if (ifp->state == INET6_IFADDR_STATE_DAD) { |
| 2088 | ifp->state = INET6_IFADDR_STATE_POSTDAD; |
| 2089 | err = 0; |
| 2090 | } |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 2091 | spin_unlock_bh(&ifp->lock); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2092 | |
| 2093 | return err; |
| 2094 | } |
| 2095 | |
Vishwanath Pai | da13c59 | 2017-10-30 19:38:52 -0400 | [diff] [blame] | 2096 | void addrconf_dad_failure(struct sk_buff *skb, struct inet6_ifaddr *ifp) |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 2097 | { |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 2098 | struct inet6_dev *idev = ifp->idev; |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 2099 | struct net *net = dev_net(ifp->idev->dev); |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 2100 | |
Ursula Braun | 853dc2e | 2010-10-24 23:06:43 +0000 | [diff] [blame] | 2101 | if (addrconf_dad_end(ifp)) { |
| 2102 | in6_ifa_put(ifp); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2103 | return; |
Ursula Braun | 853dc2e | 2010-10-24 23:06:43 +0000 | [diff] [blame] | 2104 | } |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2105 | |
Vishwanath Pai | da13c59 | 2017-10-30 19:38:52 -0400 | [diff] [blame] | 2106 | net_info_ratelimited("%s: IPv6 duplicate address %pI6c used by %pM detected!\n", |
| 2107 | ifp->idev->dev->name, &ifp->addr, eth_hdr(skb)->h_source); |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 2108 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2109 | spin_lock_bh(&ifp->lock); |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 2110 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2111 | if (ifp->flags & IFA_F_STABLE_PRIVACY) { |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2112 | struct in6_addr new_addr; |
| 2113 | struct inet6_ifaddr *ifp2; |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2114 | int retries = ifp->stable_privacy_retry + 1; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2115 | struct ifa6_config cfg = { |
| 2116 | .pfx = &new_addr, |
| 2117 | .plen = ifp->prefix_len, |
| 2118 | .ifa_flags = ifp->flags, |
| 2119 | .valid_lft = ifp->valid_lft, |
| 2120 | .preferred_lft = ifp->prefered_lft, |
| 2121 | .scope = ifp->scope, |
| 2122 | }; |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2123 | |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 2124 | if (retries > net->ipv6.sysctl.idgen_retries) { |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2125 | net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n", |
| 2126 | ifp->idev->dev->name); |
| 2127 | goto errdad; |
| 2128 | } |
| 2129 | |
| 2130 | new_addr = ifp->addr; |
| 2131 | if (ipv6_generate_stable_address(&new_addr, retries, |
| 2132 | idev)) |
| 2133 | goto errdad; |
| 2134 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2135 | spin_unlock_bh(&ifp->lock); |
| 2136 | |
| 2137 | if (idev->cnf.max_addresses && |
| 2138 | ipv6_count_addresses(idev) >= |
| 2139 | idev->cnf.max_addresses) |
| 2140 | goto lock_errdad; |
| 2141 | |
| 2142 | net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n", |
| 2143 | ifp->idev->dev->name); |
| 2144 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2145 | ifp2 = ipv6_add_addr(idev, &cfg, false, NULL); |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2146 | if (IS_ERR(ifp2)) |
| 2147 | goto lock_errdad; |
| 2148 | |
| 2149 | spin_lock_bh(&ifp2->lock); |
| 2150 | ifp2->stable_privacy_retry = retries; |
| 2151 | ifp2->state = INET6_IFADDR_STATE_PREDAD; |
| 2152 | spin_unlock_bh(&ifp2->lock); |
| 2153 | |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 2154 | addrconf_mod_dad_work(ifp2, net->ipv6.sysctl.idgen_delay); |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2155 | in6_ifa_put(ifp2); |
| 2156 | lock_errdad: |
| 2157 | spin_lock_bh(&ifp->lock); |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 2158 | } |
| 2159 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2160 | errdad: |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2161 | /* transition from _POSTDAD to _ERRDAD */ |
| 2162 | ifp->state = INET6_IFADDR_STATE_ERRDAD; |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 2163 | spin_unlock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2164 | |
| 2165 | addrconf_mod_dad_work(ifp, 0); |
Wei Yongjun | 751eb6b | 2016-09-05 16:06:31 +0800 | [diff] [blame] | 2166 | in6_ifa_put(ifp); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 2167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2169 | /* Join to solicited addr multicast group. |
| 2170 | * caller must hold RTNL */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2171 | void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | { |
| 2173 | struct in6_addr maddr; |
| 2174 | |
| 2175 | if (dev->flags&(IFF_LOOPBACK|IFF_NOARP)) |
| 2176 | return; |
| 2177 | |
| 2178 | addrconf_addr_solict_mult(addr, &maddr); |
| 2179 | ipv6_dev_mc_inc(dev, &maddr); |
| 2180 | } |
| 2181 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2182 | /* caller must hold RTNL */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2183 | void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | { |
| 2185 | struct in6_addr maddr; |
| 2186 | |
| 2187 | if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP)) |
| 2188 | return; |
| 2189 | |
| 2190 | addrconf_addr_solict_mult(addr, &maddr); |
| 2191 | __ipv6_dev_mc_dec(idev, &maddr); |
| 2192 | } |
| 2193 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2194 | /* caller must hold RTNL */ |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 2195 | static void addrconf_join_anycast(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | { |
| 2197 | struct in6_addr addr; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2198 | |
Hannes Frederic Sowa | 88ad314 | 2014-01-06 17:53:14 +0100 | [diff] [blame] | 2199 | if (ifp->prefix_len >= 127) /* RFC 6164 */ |
Bjørn Mork | 2bda8a0 | 2011-07-05 23:04:13 +0000 | [diff] [blame] | 2200 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len); |
| 2202 | if (ipv6_addr_any(&addr)) |
| 2203 | return; |
WANG Cong | 013b4d9 | 2014-09-11 15:35:11 -0700 | [diff] [blame] | 2204 | __ipv6_dev_ac_inc(ifp->idev, &addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | } |
| 2206 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2207 | /* caller must hold RTNL */ |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 2208 | static void addrconf_leave_anycast(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | { |
| 2210 | struct in6_addr addr; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2211 | |
Hannes Frederic Sowa | 88ad314 | 2014-01-06 17:53:14 +0100 | [diff] [blame] | 2212 | if (ifp->prefix_len >= 127) /* RFC 6164 */ |
YOSHIFUJI Hideaki | 32019e6 | 2011-07-24 11:44:34 +0000 | [diff] [blame] | 2213 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len); |
| 2215 | if (ipv6_addr_any(&addr)) |
| 2216 | return; |
| 2217 | __ipv6_dev_ac_dec(ifp->idev, &addr); |
| 2218 | } |
| 2219 | |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2220 | static int addrconf_ifid_6lowpan(u8 *eui, struct net_device *dev) |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 2221 | { |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2222 | switch (dev->addr_len) { |
| 2223 | case ETH_ALEN: |
Luiz Augusto von Dentz | 9dae2e0 | 2017-03-12 10:19:38 +0200 | [diff] [blame] | 2224 | memcpy(eui, dev->dev_addr, 3); |
| 2225 | eui[3] = 0xFF; |
| 2226 | eui[4] = 0xFE; |
| 2227 | memcpy(eui + 5, dev->dev_addr + 3, 3); |
| 2228 | break; |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2229 | case EUI64_ADDR_LEN: |
| 2230 | memcpy(eui, dev->dev_addr, EUI64_ADDR_LEN); |
| 2231 | eui[0] ^= 2; |
| 2232 | break; |
| 2233 | default: |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 2234 | return -1; |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2235 | } |
| 2236 | |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 2237 | return 0; |
| 2238 | } |
| 2239 | |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 2240 | static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev) |
| 2241 | { |
Jakub Kicinski | 1a8a23d | 2021-10-12 08:58:38 -0700 | [diff] [blame] | 2242 | const union fwnet_hwaddr *ha; |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 2243 | |
| 2244 | if (dev->addr_len != FWNET_ALEN) |
| 2245 | return -1; |
| 2246 | |
Jakub Kicinski | 1a8a23d | 2021-10-12 08:58:38 -0700 | [diff] [blame] | 2247 | ha = (const union fwnet_hwaddr *)dev->dev_addr; |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 2248 | |
| 2249 | memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id)); |
| 2250 | eui[0] ^= 2; |
| 2251 | return 0; |
| 2252 | } |
| 2253 | |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2254 | static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev) |
| 2255 | { |
| 2256 | /* XXX: inherit EUI-64 from other interface -- yoshfuji */ |
| 2257 | if (dev->addr_len != ARCNET_ALEN) |
| 2258 | return -1; |
| 2259 | memset(eui, 0, 7); |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 2260 | eui[7] = *(u8 *)dev->dev_addr; |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2261 | return 0; |
| 2262 | } |
| 2263 | |
| 2264 | static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev) |
| 2265 | { |
| 2266 | if (dev->addr_len != INFINIBAND_ALEN) |
| 2267 | return -1; |
| 2268 | memcpy(eui, dev->dev_addr + 12, 8); |
| 2269 | eui[0] |= 2; |
| 2270 | return 0; |
| 2271 | } |
| 2272 | |
stephen hemminger | c61393e | 2010-10-04 20:17:53 +0000 | [diff] [blame] | 2273 | static int __ipv6_isatap_ifid(u8 *eui, __be32 addr) |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2274 | { |
Sascha Hlusiak | 9af2851 | 2009-05-19 12:56:51 +0000 | [diff] [blame] | 2275 | if (addr == 0) |
| 2276 | return -1; |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2277 | eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) || |
| 2278 | ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) || |
| 2279 | ipv4_is_private_172(addr) || ipv4_is_test_192(addr) || |
| 2280 | ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) || |
| 2281 | ipv4_is_test_198(addr) || ipv4_is_multicast(addr) || |
| 2282 | ipv4_is_lbcast(addr)) ? 0x00 : 0x02; |
| 2283 | eui[1] = 0; |
| 2284 | eui[2] = 0x5E; |
| 2285 | eui[3] = 0xFE; |
| 2286 | memcpy(eui + 4, &addr, 4); |
| 2287 | return 0; |
| 2288 | } |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2289 | |
| 2290 | static int addrconf_ifid_sit(u8 *eui, struct net_device *dev) |
| 2291 | { |
| 2292 | if (dev->priv_flags & IFF_ISATAP) |
| 2293 | return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr); |
| 2294 | return -1; |
| 2295 | } |
| 2296 | |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 2297 | static int addrconf_ifid_gre(u8 *eui, struct net_device *dev) |
| 2298 | { |
| 2299 | return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr); |
| 2300 | } |
| 2301 | |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 2302 | static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev) |
| 2303 | { |
| 2304 | memcpy(eui, dev->perm_addr, 3); |
| 2305 | memcpy(eui + 5, dev->perm_addr + 3, 3); |
| 2306 | eui[3] = 0xFF; |
| 2307 | eui[4] = 0xFE; |
| 2308 | eui[0] ^= 2; |
| 2309 | return 0; |
| 2310 | } |
| 2311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | static int ipv6_generate_eui64(u8 *eui, struct net_device *dev) |
| 2313 | { |
| 2314 | switch (dev->type) { |
| 2315 | case ARPHRD_ETHER: |
| 2316 | case ARPHRD_FDDI: |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2317 | return addrconf_ifid_eui48(eui, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | case ARPHRD_ARCNET: |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2319 | return addrconf_ifid_arcnet(eui, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | case ARPHRD_INFINIBAND: |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2321 | return addrconf_ifid_infiniband(eui, dev); |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 2322 | case ARPHRD_SIT: |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2323 | return addrconf_ifid_sit(eui, dev); |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 2324 | case ARPHRD_IPGRE: |
Felix Jia | 45ce0fd | 2017-01-26 16:59:18 +1300 | [diff] [blame] | 2325 | case ARPHRD_TUNNEL: |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 2326 | return addrconf_ifid_gre(eui, dev); |
Jukka Rissanen | e74bccb8 | 2013-12-11 17:05:36 +0200 | [diff] [blame] | 2327 | case ARPHRD_6LOWPAN: |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2328 | return addrconf_ifid_6lowpan(eui, dev); |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 2329 | case ARPHRD_IEEE1394: |
| 2330 | return addrconf_ifid_ieee1394(eui, dev); |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 2331 | case ARPHRD_TUNNEL6: |
Felix Jia | 45ce0fd | 2017-01-26 16:59:18 +1300 | [diff] [blame] | 2332 | case ARPHRD_IP6GRE: |
Subash Abhinov Kasiviswanathan | 9deb441 | 2018-06-04 19:26:07 -0600 | [diff] [blame] | 2333 | case ARPHRD_RAWIP: |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 2334 | return addrconf_ifid_ip6tnl(eui, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | } |
| 2336 | return -1; |
| 2337 | } |
| 2338 | |
| 2339 | static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev) |
| 2340 | { |
| 2341 | int err = -1; |
| 2342 | struct inet6_ifaddr *ifp; |
| 2343 | |
| 2344 | read_lock_bh(&idev->lock); |
Hannes Frederic Sowa | 602582c | 2014-01-19 21:58:19 +0100 | [diff] [blame] | 2345 | list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) { |
| 2346 | if (ifp->scope > IFA_LINK) |
| 2347 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2348 | if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) { |
| 2349 | memcpy(eui, ifp->addr.s6_addr+8, 8); |
| 2350 | err = 0; |
| 2351 | break; |
| 2352 | } |
| 2353 | } |
| 2354 | read_unlock_bh(&idev->lock); |
| 2355 | return err; |
| 2356 | } |
| 2357 | |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2358 | /* Generation of a randomized Interface Identifier |
| 2359 | * draft-ietf-6man-rfc4941bis, Section 3.3.1 |
| 2360 | */ |
| 2361 | |
| 2362 | static void ipv6_gen_rnd_iid(struct in6_addr *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | regen: |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2365 | get_random_bytes(&addr->s6_addr[8], 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2367 | /* <draft-ietf-6man-rfc4941bis-08.txt>, Section 3.3.1: |
| 2368 | * check if generated address is not inappropriate: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2369 | * |
Bhaskar Chowdhury | 912b519a | 2021-03-27 04:42:40 +0530 | [diff] [blame] | 2370 | * - Reserved IPv6 Interface Identifiers |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2371 | * - XXX: already assigned to an address on the device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2374 | /* Subnet-router anycast: 0000:0000:0000:0000 */ |
| 2375 | if (!(addr->s6_addr32[2] | addr->s6_addr32[3])) |
| 2376 | goto regen; |
| 2377 | |
| 2378 | /* IANA Ethernet block: 0200:5EFF:FE00:0000-0200:5EFF:FE00:5212 |
| 2379 | * Proxy Mobile IPv6: 0200:5EFF:FE00:5213 |
| 2380 | * IANA Ethernet block: 0200:5EFF:FE00:5214-0200:5EFF:FEFF:FFFF |
| 2381 | */ |
| 2382 | if (ntohl(addr->s6_addr32[2]) == 0x02005eff && |
| 2383 | (ntohl(addr->s6_addr32[3]) & 0Xff000000) == 0xfe000000) |
| 2384 | goto regen; |
| 2385 | |
| 2386 | /* Reserved subnet anycast addresses */ |
| 2387 | if (ntohl(addr->s6_addr32[2]) == 0xfdffffff && |
| 2388 | ntohl(addr->s6_addr32[3]) >= 0Xffffff80) |
| 2389 | goto regen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | |
| 2392 | /* |
| 2393 | * Add prefix route. |
| 2394 | */ |
| 2395 | |
| 2396 | static void |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2397 | addrconf_prefix_route(struct in6_addr *pfx, int plen, u32 metric, |
| 2398 | struct net_device *dev, unsigned long expires, |
| 2399 | u32 flags, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2401 | struct fib6_config cfg = { |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2402 | .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2403 | .fc_metric = metric ? : IP6_RT_PRIO_ADDRCONF, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2404 | .fc_ifindex = dev->ifindex, |
| 2405 | .fc_expires = expires, |
| 2406 | .fc_dst_len = plen, |
| 2407 | .fc_flags = RTF_UP | flags, |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2408 | .fc_nlinfo.nl_net = dev_net(dev), |
Stephen Hemminger | f410a1f | 2008-08-23 05:16:46 -0700 | [diff] [blame] | 2409 | .fc_protocol = RTPROT_KERNEL, |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 2410 | .fc_type = RTN_UNICAST, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2411 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2413 | cfg.fc_dst = *pfx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | |
| 2415 | /* Prevent useless cloning on PtP SIT. |
| 2416 | This thing is done here expecting that the whole |
| 2417 | class of non-broadcast devices need not cloning. |
| 2418 | */ |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 2419 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2420 | if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT)) |
| 2421 | cfg.fc_flags |= RTF_NONEXTHOP; |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 2422 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 2424 | ip6_route_add(&cfg, gfp_flags, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | } |
| 2426 | |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2427 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2428 | static struct fib6_info *addrconf_get_prefix_route(const struct in6_addr *pfx, |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2429 | int plen, |
| 2430 | const struct net_device *dev, |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 2431 | u32 flags, u32 noflags, |
| 2432 | bool no_gw) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2433 | { |
| 2434 | struct fib6_node *fn; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2435 | struct fib6_info *rt = NULL; |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2436 | struct fib6_table *table; |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2437 | u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX; |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2438 | |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2439 | table = fib6_get_table(dev_net(dev), tb_id); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2440 | if (!table) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2441 | return NULL; |
| 2442 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2443 | rcu_read_lock(); |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 2444 | fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0, true); |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2445 | if (!fn) |
| 2446 | goto out; |
Martin KaFai Lau | 1f56a01f | 2015-04-28 13:03:03 -0700 | [diff] [blame] | 2447 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2448 | for_each_fib6_node_rt_rcu(fn) { |
David Ahern | f88d8ea | 2019-06-03 20:19:52 -0700 | [diff] [blame] | 2449 | /* prefix routes only use builtin fib6_nh */ |
| 2450 | if (rt->nh) |
| 2451 | continue; |
| 2452 | |
David Ahern | 1cf844c | 2019-05-22 20:27:59 -0700 | [diff] [blame] | 2453 | if (rt->fib6_nh->fib_nh_dev->ifindex != dev->ifindex) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2454 | continue; |
David Ahern | 1cf844c | 2019-05-22 20:27:59 -0700 | [diff] [blame] | 2455 | if (no_gw && rt->fib6_nh->fib_nh_gw_family) |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 2456 | continue; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2457 | if ((rt->fib6_flags & flags) != flags) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2458 | continue; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2459 | if ((rt->fib6_flags & noflags) != 0) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2460 | continue; |
Wei Wang | e873e4b | 2018-07-21 20:56:32 -0700 | [diff] [blame] | 2461 | if (!fib6_info_hold_safe(rt)) |
| 2462 | continue; |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2463 | break; |
| 2464 | } |
| 2465 | out: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2466 | rcu_read_unlock(); |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2467 | return rt; |
| 2468 | } |
| 2469 | |
| 2470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | /* Create "default" multicast route to the interface */ |
| 2472 | |
| 2473 | static void addrconf_add_mroute(struct net_device *dev) |
| 2474 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2475 | struct fib6_config cfg = { |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2476 | .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_LOCAL, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2477 | .fc_metric = IP6_RT_PRIO_ADDRCONF, |
| 2478 | .fc_ifindex = dev->ifindex, |
| 2479 | .fc_dst_len = 8, |
| 2480 | .fc_flags = RTF_UP, |
Matteo Croce | ceed903 | 2021-01-15 19:42:09 +0100 | [diff] [blame] | 2481 | .fc_type = RTN_MULTICAST, |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2482 | .fc_nlinfo.nl_net = dev_net(dev), |
Matteo Croce | a826b04 | 2021-01-15 19:42:08 +0100 | [diff] [blame] | 2483 | .fc_protocol = RTPROT_KERNEL, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2484 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2486 | ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0); |
| 2487 | |
Cong Wang | e500c6d | 2018-08-22 12:58:34 -0700 | [diff] [blame] | 2488 | ip6_route_add(&cfg, GFP_KERNEL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | } |
| 2490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | static struct inet6_dev *addrconf_add_dev(struct net_device *dev) |
| 2492 | { |
| 2493 | struct inet6_dev *idev; |
| 2494 | |
| 2495 | ASSERT_RTNL(); |
| 2496 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 2497 | idev = ipv6_find_idev(dev); |
Sabrina Dubroca | db0b99f | 2019-08-23 15:44:36 +0200 | [diff] [blame] | 2498 | if (IS_ERR(idev)) |
| 2499 | return idev; |
Brian Haley | 64e724f | 2010-07-20 10:34:30 +0000 | [diff] [blame] | 2500 | |
| 2501 | if (idev->cnf.disable_ipv6) |
| 2502 | return ERR_PTR(-EACCES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | |
| 2504 | /* Add default multicast route */ |
David Ahern | ba46ee4 | 2016-06-13 13:44:18 -0700 | [diff] [blame] | 2505 | if (!(dev->flags & IFF_LOOPBACK) && !netif_is_l3_master(dev)) |
Li Wei | 4af04ab | 2011-12-06 21:23:45 +0000 | [diff] [blame] | 2506 | addrconf_add_mroute(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | return idev; |
| 2509 | } |
| 2510 | |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2511 | static void manage_tempaddrs(struct inet6_dev *idev, |
| 2512 | struct inet6_ifaddr *ifp, |
| 2513 | __u32 valid_lft, __u32 prefered_lft, |
| 2514 | bool create, unsigned long now) |
| 2515 | { |
| 2516 | u32 flags; |
| 2517 | struct inet6_ifaddr *ift; |
| 2518 | |
| 2519 | read_lock_bh(&idev->lock); |
| 2520 | /* update all temporary addresses in the list */ |
| 2521 | list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) { |
| 2522 | int age, max_valid, max_prefered; |
| 2523 | |
| 2524 | if (ifp != ift->ifpub) |
| 2525 | continue; |
| 2526 | |
| 2527 | /* RFC 4941 section 3.3: |
| 2528 | * If a received option will extend the lifetime of a public |
| 2529 | * address, the lifetimes of temporary addresses should |
| 2530 | * be extended, subject to the overall constraint that no |
| 2531 | * temporary addresses should ever remain "valid" or "preferred" |
| 2532 | * for a time longer than (TEMP_VALID_LIFETIME) or |
| 2533 | * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively. |
| 2534 | */ |
| 2535 | age = (now - ift->cstamp) / HZ; |
| 2536 | max_valid = idev->cnf.temp_valid_lft - age; |
| 2537 | if (max_valid < 0) |
| 2538 | max_valid = 0; |
| 2539 | |
| 2540 | max_prefered = idev->cnf.temp_prefered_lft - |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 2541 | idev->desync_factor - age; |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2542 | if (max_prefered < 0) |
| 2543 | max_prefered = 0; |
| 2544 | |
| 2545 | if (valid_lft > max_valid) |
| 2546 | valid_lft = max_valid; |
| 2547 | |
| 2548 | if (prefered_lft > max_prefered) |
| 2549 | prefered_lft = max_prefered; |
| 2550 | |
| 2551 | spin_lock(&ift->lock); |
| 2552 | flags = ift->flags; |
| 2553 | ift->valid_lft = valid_lft; |
| 2554 | ift->prefered_lft = prefered_lft; |
| 2555 | ift->tstamp = now; |
| 2556 | if (prefered_lft > 0) |
| 2557 | ift->flags &= ~IFA_F_DEPRECATED; |
| 2558 | |
| 2559 | spin_unlock(&ift->lock); |
| 2560 | if (!(flags&IFA_F_TENTATIVE)) |
| 2561 | ipv6_ifa_notify(0, ift); |
| 2562 | } |
| 2563 | |
| 2564 | if ((create || list_empty(&idev->tempaddr_list)) && |
| 2565 | idev->cnf.use_tempaddr > 0) { |
| 2566 | /* When a new public address is created as described |
| 2567 | * in [ADDRCONF], also create a new temporary address. |
| 2568 | * Also create a temporary address if it's enabled but |
| 2569 | * no temporary address currently exists. |
| 2570 | */ |
| 2571 | read_unlock_bh(&idev->lock); |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 2572 | ipv6_create_tempaddr(ifp, false); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2573 | } else { |
| 2574 | read_unlock_bh(&idev->lock); |
| 2575 | } |
| 2576 | } |
| 2577 | |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 2578 | static bool is_addr_mode_generate_stable(struct inet6_dev *idev) |
| 2579 | { |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 2580 | return idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY || |
| 2581 | idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_RANDOM; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 2582 | } |
| 2583 | |
Alexander Aring | cc84b3c | 2016-06-15 21:20:24 +0200 | [diff] [blame] | 2584 | int addrconf_prefix_rcv_add_addr(struct net *net, struct net_device *dev, |
| 2585 | const struct prefix_info *pinfo, |
| 2586 | struct inet6_dev *in6_dev, |
| 2587 | const struct in6_addr *addr, int addr_type, |
| 2588 | u32 addr_flags, bool sllao, bool tokenized, |
| 2589 | __u32 valid_lft, u32 prefered_lft) |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2590 | { |
| 2591 | struct inet6_ifaddr *ifp = ipv6_get_ifaddr(net, addr, dev, 1); |
Fernando Gont | b75326c | 2020-04-19 09:24:57 -0300 | [diff] [blame] | 2592 | int create = 0; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2593 | |
| 2594 | if (!ifp && valid_lft) { |
| 2595 | int max_addresses = in6_dev->cnf.max_addresses; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2596 | struct ifa6_config cfg = { |
| 2597 | .pfx = addr, |
| 2598 | .plen = pinfo->prefix_len, |
| 2599 | .ifa_flags = addr_flags, |
| 2600 | .valid_lft = valid_lft, |
| 2601 | .preferred_lft = prefered_lft, |
| 2602 | .scope = addr_type & IPV6_ADDR_SCOPE_MASK, |
| 2603 | }; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2604 | |
| 2605 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 2606 | if ((net->ipv6.devconf_all->optimistic_dad || |
| 2607 | in6_dev->cnf.optimistic_dad) && |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2608 | !net->ipv6.devconf_all->forwarding && sllao) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2609 | cfg.ifa_flags |= IFA_F_OPTIMISTIC; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2610 | #endif |
| 2611 | |
| 2612 | /* Do not allow to create too much of autoconfigured |
| 2613 | * addresses; this would be too easy way to crash kernel. |
| 2614 | */ |
| 2615 | if (!max_addresses || |
| 2616 | ipv6_count_addresses(in6_dev) < max_addresses) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2617 | ifp = ipv6_add_addr(in6_dev, &cfg, false, NULL); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2618 | |
| 2619 | if (IS_ERR_OR_NULL(ifp)) |
| 2620 | return -1; |
| 2621 | |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2622 | create = 1; |
| 2623 | spin_lock_bh(&ifp->lock); |
| 2624 | ifp->flags |= IFA_F_MANAGETEMPADDR; |
| 2625 | ifp->cstamp = jiffies; |
| 2626 | ifp->tokenized = tokenized; |
| 2627 | spin_unlock_bh(&ifp->lock); |
| 2628 | addrconf_dad_start(ifp); |
| 2629 | } |
| 2630 | |
| 2631 | if (ifp) { |
| 2632 | u32 flags; |
| 2633 | unsigned long now; |
| 2634 | u32 stored_lft; |
| 2635 | |
Fernando Gont | b75326c | 2020-04-19 09:24:57 -0300 | [diff] [blame] | 2636 | /* Update lifetime (RFC4862 5.5.3 e) |
| 2637 | * We deviate from RFC4862 by honoring all Valid Lifetimes to |
| 2638 | * improve the reaction of SLAAC to renumbering events |
| 2639 | * (draft-gont-6man-slaac-renum-06, Section 4.2) |
| 2640 | */ |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2641 | spin_lock_bh(&ifp->lock); |
| 2642 | now = jiffies; |
| 2643 | if (ifp->valid_lft > (now - ifp->tstamp) / HZ) |
| 2644 | stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ; |
| 2645 | else |
| 2646 | stored_lft = 0; |
Fernando Gont | b75326c | 2020-04-19 09:24:57 -0300 | [diff] [blame] | 2647 | |
Lorenzo Bianconi | f85f94b | 2018-04-16 17:52:59 +0200 | [diff] [blame] | 2648 | if (!create && stored_lft) { |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2649 | ifp->valid_lft = valid_lft; |
| 2650 | ifp->prefered_lft = prefered_lft; |
| 2651 | ifp->tstamp = now; |
| 2652 | flags = ifp->flags; |
| 2653 | ifp->flags &= ~IFA_F_DEPRECATED; |
| 2654 | spin_unlock_bh(&ifp->lock); |
| 2655 | |
| 2656 | if (!(flags&IFA_F_TENTATIVE)) |
| 2657 | ipv6_ifa_notify(0, ifp); |
| 2658 | } else |
| 2659 | spin_unlock_bh(&ifp->lock); |
| 2660 | |
| 2661 | manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft, |
| 2662 | create, now); |
| 2663 | |
| 2664 | in6_ifa_put(ifp); |
| 2665 | addrconf_verify(); |
| 2666 | } |
| 2667 | |
| 2668 | return 0; |
| 2669 | } |
Alexander Aring | cc84b3c | 2016-06-15 21:20:24 +0200 | [diff] [blame] | 2670 | EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2671 | |
Neil Horman | e6bff99 | 2012-01-04 10:49:15 +0000 | [diff] [blame] | 2672 | void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | { |
| 2674 | struct prefix_info *pinfo; |
| 2675 | __u32 valid_lft; |
| 2676 | __u32 prefered_lft; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2677 | int addr_type, err; |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 2678 | u32 addr_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | struct inet6_dev *in6_dev; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 2680 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | |
| 2682 | pinfo = (struct prefix_info *) opt; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | if (len < sizeof(struct prefix_info)) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 2685 | netdev_dbg(dev, "addrconf: prefix option too short\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | return; |
| 2687 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2689 | /* |
| 2690 | * Validation checks ([ADDRCONF], page 19) |
| 2691 | */ |
| 2692 | |
| 2693 | addr_type = ipv6_addr_type(&pinfo->prefix); |
| 2694 | |
| 2695 | if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL)) |
| 2696 | return; |
| 2697 | |
| 2698 | valid_lft = ntohl(pinfo->valid); |
| 2699 | prefered_lft = ntohl(pinfo->prefered); |
| 2700 | |
| 2701 | if (prefered_lft > valid_lft) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2702 | net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2703 | return; |
| 2704 | } |
| 2705 | |
| 2706 | in6_dev = in6_dev_get(dev); |
| 2707 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2708 | if (!in6_dev) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2709 | net_dbg_ratelimited("addrconf: device %s not configured\n", |
| 2710 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | return; |
| 2712 | } |
| 2713 | |
| 2714 | /* |
| 2715 | * Two things going on here: |
| 2716 | * 1) Add routes for on-link prefixes |
| 2717 | * 2) Configure prefixes with the auto flag set |
| 2718 | */ |
| 2719 | |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2720 | if (pinfo->onlink) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2721 | struct fib6_info *rt; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2722 | unsigned long rt_expires; |
| 2723 | |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2724 | /* Avoid arithmetic overflow. Really, we could |
| 2725 | * save rt_expires in seconds, likely valid_lft, |
| 2726 | * but it would require division in fib gc, that it |
| 2727 | * not good. |
| 2728 | */ |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2729 | if (HZ > USER_HZ) |
| 2730 | rt_expires = addrconf_timeout_fixup(valid_lft, HZ); |
| 2731 | else |
| 2732 | rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ); |
YOSHIFUJI Hideaki | 3dd4bc6 | 2005-12-19 14:02:45 -0800 | [diff] [blame] | 2733 | |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2734 | if (addrconf_finite_timeout(rt_expires)) |
| 2735 | rt_expires *= HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2737 | rt = addrconf_get_prefix_route(&pinfo->prefix, |
| 2738 | pinfo->prefix_len, |
| 2739 | dev, |
| 2740 | RTF_ADDRCONF | RTF_PREFIX_RT, |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 2741 | RTF_DEFAULT, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2743 | if (rt) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2744 | /* Autoconf prefix route */ |
| 2745 | if (valid_lft == 0) { |
Roopa Prabhu | 11dd74b | 2020-04-27 13:56:45 -0700 | [diff] [blame] | 2746 | ip6_del_rt(net, rt, false); |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2747 | rt = NULL; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2748 | } else if (addrconf_finite_timeout(rt_expires)) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2749 | /* not infinity */ |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2750 | fib6_set_expires(rt, jiffies + rt_expires); |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2751 | } else { |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2752 | fib6_clean_expires(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2753 | } |
| 2754 | } else if (valid_lft) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2755 | clock_t expires = 0; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2756 | int flags = RTF_ADDRCONF | RTF_PREFIX_RT; |
| 2757 | if (addrconf_finite_timeout(rt_expires)) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2758 | /* not infinity */ |
| 2759 | flags |= RTF_EXPIRES; |
| 2760 | expires = jiffies_to_clock_t(rt_expires); |
| 2761 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2763 | 0, dev, expires, flags, |
| 2764 | GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | } |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2766 | fib6_info_release(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | } |
| 2768 | |
| 2769 | /* Try to figure out our local address for this prefix */ |
| 2770 | |
| 2771 | if (pinfo->autoconf && in6_dev->cnf.autoconf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | struct in6_addr addr; |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 2773 | bool tokenized = false, dev_addr_generated = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | |
| 2775 | if (pinfo->prefix_len == 64) { |
| 2776 | memcpy(&addr, &pinfo->prefix, 8); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 2777 | |
| 2778 | if (!ipv6_addr_any(&in6_dev->token)) { |
| 2779 | read_lock_bh(&in6_dev->lock); |
| 2780 | memcpy(addr.s6_addr + 8, |
| 2781 | in6_dev->token.s6_addr + 8, 8); |
| 2782 | read_unlock_bh(&in6_dev->lock); |
Daniel Borkmann | 617fe29 | 2013-04-09 03:47:16 +0000 | [diff] [blame] | 2783 | tokenized = true; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 2784 | } else if (is_addr_mode_generate_stable(in6_dev) && |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 2785 | !ipv6_generate_stable_address(&addr, 0, |
| 2786 | in6_dev)) { |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 2787 | addr_flags |= IFA_F_STABLE_PRIVACY; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 2788 | goto ok; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 2789 | } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) && |
| 2790 | ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) { |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2791 | goto put; |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 2792 | } else { |
| 2793 | dev_addr_generated = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | } |
| 2795 | goto ok; |
| 2796 | } |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2797 | net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n", |
| 2798 | pinfo->prefix_len); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2799 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | |
| 2801 | ok: |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2802 | err = addrconf_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, |
| 2803 | &addr, addr_type, |
| 2804 | addr_flags, sllao, |
| 2805 | tokenized, valid_lft, |
| 2806 | prefered_lft); |
| 2807 | if (err) |
| 2808 | goto put; |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 2809 | |
| 2810 | /* Ignore error case here because previous prefix add addr was |
| 2811 | * successful which will be notified. |
| 2812 | */ |
| 2813 | ndisc_ops_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, &addr, |
| 2814 | addr_type, addr_flags, sllao, |
| 2815 | tokenized, valid_lft, |
| 2816 | prefered_lft, |
| 2817 | dev_addr_generated); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2818 | } |
| 2819 | inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2820 | put: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | in6_dev_put(in6_dev); |
| 2822 | } |
| 2823 | |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2824 | static int addrconf_set_sit_dstaddr(struct net *net, struct net_device *dev, |
| 2825 | struct in6_ifreq *ireq) |
| 2826 | { |
| 2827 | struct ip_tunnel_parm p = { }; |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2828 | int err; |
| 2829 | |
| 2830 | if (!(ipv6_addr_type(&ireq->ifr6_addr) & IPV6_ADDR_COMPATv4)) |
| 2831 | return -EADDRNOTAVAIL; |
| 2832 | |
| 2833 | p.iph.daddr = ireq->ifr6_addr.s6_addr32[3]; |
| 2834 | p.iph.version = 4; |
| 2835 | p.iph.ihl = 5; |
| 2836 | p.iph.protocol = IPPROTO_IPV6; |
| 2837 | p.iph.ttl = 64; |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2838 | |
Christoph Hellwig | 8e3db0b | 2020-05-19 15:03:19 +0200 | [diff] [blame] | 2839 | if (!dev->netdev_ops->ndo_tunnel_ctl) |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2840 | return -EOPNOTSUPP; |
Christoph Hellwig | 8e3db0b | 2020-05-19 15:03:19 +0200 | [diff] [blame] | 2841 | err = dev->netdev_ops->ndo_tunnel_ctl(dev, &p, SIOCADDTUNNEL); |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2842 | if (err) |
| 2843 | return err; |
| 2844 | |
| 2845 | dev = __dev_get_by_name(net, p.name); |
| 2846 | if (!dev) |
| 2847 | return -ENOBUFS; |
| 2848 | return dev_open(dev, NULL); |
| 2849 | } |
| 2850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | /* |
| 2852 | * Set destination address. |
| 2853 | * Special case for SIT interfaces where we create a new "virtual" |
| 2854 | * device. |
| 2855 | */ |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2856 | int addrconf_set_dstaddr(struct net *net, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | struct net_device *dev; |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2859 | struct in6_ifreq ireq; |
| 2860 | int err = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | |
Christoph Hellwig | f098846 | 2020-05-19 15:03:17 +0200 | [diff] [blame] | 2862 | if (!IS_ENABLED(CONFIG_IPV6_SIT)) |
| 2863 | return -ENODEV; |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2864 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
| 2865 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | |
| 2867 | rtnl_lock(); |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2868 | dev = __dev_get_by_index(net, ireq.ifr6_ifindex); |
Christoph Hellwig | 68ad688 | 2020-05-19 15:03:18 +0200 | [diff] [blame] | 2869 | if (dev && dev->type == ARPHRD_SIT) |
| 2870 | err = addrconf_set_sit_dstaddr(net, dev, &ireq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2871 | rtnl_unlock(); |
| 2872 | return err; |
| 2873 | } |
| 2874 | |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2875 | static int ipv6_mc_config(struct sock *sk, bool join, |
| 2876 | const struct in6_addr *addr, int ifindex) |
| 2877 | { |
| 2878 | int ret; |
| 2879 | |
| 2880 | ASSERT_RTNL(); |
| 2881 | |
| 2882 | lock_sock(sk); |
| 2883 | if (join) |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2884 | ret = ipv6_sock_mc_join(sk, ifindex, addr); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2885 | else |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2886 | ret = ipv6_sock_mc_drop(sk, ifindex, addr); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2887 | release_sock(sk); |
| 2888 | |
| 2889 | return ret; |
| 2890 | } |
| 2891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | /* |
| 2893 | * Manual configuration of address on an interface |
| 2894 | */ |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 2895 | static int inet6_addr_add(struct net *net, int ifindex, |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2896 | struct ifa6_config *cfg, |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 2897 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | { |
| 2899 | struct inet6_ifaddr *ifp; |
| 2900 | struct inet6_dev *idev; |
| 2901 | struct net_device *dev; |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2902 | unsigned long timeout; |
| 2903 | clock_t expires; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2904 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | |
| 2906 | ASSERT_RTNL(); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2907 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2908 | if (cfg->plen > 128) |
Thomas Graf | 24ef0da | 2008-05-28 16:54:22 +0200 | [diff] [blame] | 2909 | return -EINVAL; |
| 2910 | |
Noriaki TAKAMIYA | 0778769 | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2911 | /* check the lifetime */ |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2912 | if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft) |
Noriaki TAKAMIYA | 0778769 | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2913 | return -EINVAL; |
| 2914 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2915 | if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && cfg->plen != 64) |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2916 | return -EINVAL; |
| 2917 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2918 | dev = __dev_get_by_index(net, ifindex); |
| 2919 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | return -ENODEV; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2921 | |
Brian Haley | 64e724f | 2010-07-20 10:34:30 +0000 | [diff] [blame] | 2922 | idev = addrconf_add_dev(dev); |
| 2923 | if (IS_ERR(idev)) |
| 2924 | return PTR_ERR(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2926 | if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) { |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2927 | int ret = ipv6_mc_config(net->ipv6.mc_autojoin_sk, |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2928 | true, cfg->pfx, ifindex); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2929 | |
| 2930 | if (ret < 0) |
| 2931 | return ret; |
| 2932 | } |
| 2933 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2934 | cfg->scope = ipv6_addr_scope(cfg->pfx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2936 | timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2937 | if (addrconf_finite_timeout(timeout)) { |
| 2938 | expires = jiffies_to_clock_t(timeout * HZ); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2939 | cfg->valid_lft = timeout; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2940 | flags = RTF_EXPIRES; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2941 | } else { |
| 2942 | expires = 0; |
| 2943 | flags = 0; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2944 | cfg->ifa_flags |= IFA_F_PERMANENT; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2945 | } |
Noriaki TAKAMIYA | 0778769 | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2946 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2947 | timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2948 | if (addrconf_finite_timeout(timeout)) { |
| 2949 | if (timeout == 0) |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2950 | cfg->ifa_flags |= IFA_F_DEPRECATED; |
| 2951 | cfg->preferred_lft = timeout; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2952 | } |
Noriaki TAKAMIYA | 0778769 | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2953 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2954 | ifp = ipv6_add_addr(idev, cfg, true, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | if (!IS_ERR(ifp)) { |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2956 | if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) { |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2957 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
| 2958 | ifp->rt_priority, dev, expires, |
| 2959 | flags, GFP_KERNEL); |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 2960 | } |
| 2961 | |
Lorenzo Bianconi | a2d481b | 2018-04-17 11:54:39 +0200 | [diff] [blame] | 2962 | /* Send a netlink notification if DAD is enabled and |
| 2963 | * optimistic flag is not set |
| 2964 | */ |
| 2965 | if (!(ifp->flags & (IFA_F_OPTIMISTIC | IFA_F_NODAD))) |
| 2966 | ipv6_ifa_notify(0, ifp); |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 2967 | /* |
| 2968 | * Note that section 3.1 of RFC 4429 indicates |
| 2969 | * that the Optimistic flag should not be set for |
| 2970 | * manually configured addresses |
| 2971 | */ |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 2972 | addrconf_dad_start(ifp); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2973 | if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR) |
| 2974 | manage_tempaddrs(idev, ifp, cfg->valid_lft, |
| 2975 | cfg->preferred_lft, true, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | in6_ifa_put(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2977 | addrconf_verify_rtnl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | return 0; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2979 | } else if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) { |
| 2980 | ipv6_mc_config(net->ipv6.mc_autojoin_sk, false, |
| 2981 | cfg->pfx, ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | } |
| 2983 | |
| 2984 | return PTR_ERR(ifp); |
| 2985 | } |
| 2986 | |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 2987 | static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags, |
| 2988 | const struct in6_addr *pfx, unsigned int plen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | { |
| 2990 | struct inet6_ifaddr *ifp; |
| 2991 | struct inet6_dev *idev; |
| 2992 | struct net_device *dev; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2993 | |
Thomas Graf | 24ef0da | 2008-05-28 16:54:22 +0200 | [diff] [blame] | 2994 | if (plen > 128) |
| 2995 | return -EINVAL; |
| 2996 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2997 | dev = __dev_get_by_index(net, ifindex); |
| 2998 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | return -ENODEV; |
| 3000 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3001 | idev = __in6_dev_get(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 3002 | if (!idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | return -ENXIO; |
| 3004 | |
| 3005 | read_lock_bh(&idev->lock); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 3006 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3007 | if (ifp->prefix_len == plen && |
| 3008 | ipv6_addr_equal(pfx, &ifp->addr)) { |
| 3009 | in6_ifa_hold(ifp); |
| 3010 | read_unlock_bh(&idev->lock); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3011 | |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 3012 | if (!(ifp->flags & IFA_F_TEMPORARY) && |
| 3013 | (ifa_flags & IFA_F_MANAGETEMPADDR)) |
| 3014 | manage_tempaddrs(idev, ifp, 0, 0, false, |
| 3015 | jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3016 | ipv6_del_addr(ifp); |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 3017 | addrconf_verify_rtnl(); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 3018 | if (ipv6_addr_is_multicast(pfx)) { |
| 3019 | ipv6_mc_config(net->ipv6.mc_autojoin_sk, |
| 3020 | false, pfx, dev->ifindex); |
| 3021 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | return 0; |
| 3023 | } |
| 3024 | } |
| 3025 | read_unlock_bh(&idev->lock); |
| 3026 | return -EADDRNOTAVAIL; |
| 3027 | } |
| 3028 | |
| 3029 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 3030 | int addrconf_add_ifaddr(struct net *net, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | { |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 3032 | struct ifa6_config cfg = { |
| 3033 | .ifa_flags = IFA_F_PERMANENT, |
| 3034 | .preferred_lft = INFINITY_LIFE_TIME, |
| 3035 | .valid_lft = INFINITY_LIFE_TIME, |
| 3036 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | struct in6_ifreq ireq; |
| 3038 | int err; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3039 | |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 3040 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | return -EPERM; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3042 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
| 3044 | return -EFAULT; |
| 3045 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 3046 | cfg.pfx = &ireq.ifr6_addr; |
| 3047 | cfg.plen = ireq.ifr6_prefixlen; |
| 3048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3049 | rtnl_lock(); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 3050 | err = inet6_addr_add(net, ireq.ifr6_ifindex, &cfg, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | rtnl_unlock(); |
| 3052 | return err; |
| 3053 | } |
| 3054 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 3055 | int addrconf_del_ifaddr(struct net *net, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | { |
| 3057 | struct in6_ifreq ireq; |
| 3058 | int err; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3059 | |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 3060 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | return -EPERM; |
| 3062 | |
| 3063 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
| 3064 | return -EFAULT; |
| 3065 | |
| 3066 | rtnl_lock(); |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 3067 | err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr, |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 3068 | ireq.ifr6_prefixlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | rtnl_unlock(); |
| 3070 | return err; |
| 3071 | } |
| 3072 | |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3073 | static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr, |
| 3074 | int plen, int scope) |
| 3075 | { |
| 3076 | struct inet6_ifaddr *ifp; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3077 | struct ifa6_config cfg = { |
| 3078 | .pfx = addr, |
| 3079 | .plen = plen, |
| 3080 | .ifa_flags = IFA_F_PERMANENT, |
| 3081 | .valid_lft = INFINITY_LIFE_TIME, |
| 3082 | .preferred_lft = INFINITY_LIFE_TIME, |
| 3083 | .scope = scope |
| 3084 | }; |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3085 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3086 | ifp = ipv6_add_addr(idev, &cfg, true, NULL); |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3087 | if (!IS_ERR(ifp)) { |
| 3088 | spin_lock_bh(&ifp->lock); |
| 3089 | ifp->flags &= ~IFA_F_TENTATIVE; |
| 3090 | spin_unlock_bh(&ifp->lock); |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3091 | rt_genid_bump_ipv6(dev_net(idev->dev)); |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3092 | ipv6_ifa_notify(RTM_NEWADDR, ifp); |
| 3093 | in6_ifa_put(ifp); |
| 3094 | } |
| 3095 | } |
| 3096 | |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3097 | #if IS_ENABLED(CONFIG_IPV6_SIT) || IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE) |
| 3098 | static void add_v4_addrs(struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3099 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3100 | struct in6_addr addr; |
| 3101 | struct net_device *dev; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 3102 | struct net *net = dev_net(idev->dev); |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3103 | int scope, plen, offset = 0; |
Nicolas Dichtel | f0e2acf | 2013-11-14 13:51:06 +0100 | [diff] [blame] | 3104 | u32 pflags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | |
| 3106 | ASSERT_RTNL(); |
| 3107 | |
| 3108 | memset(&addr, 0, sizeof(struct in6_addr)); |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3109 | /* in case of IP6GRE the dev_addr is an IPv6 and therefore we use only the last 4 bytes */ |
| 3110 | if (idev->dev->addr_len == sizeof(struct in6_addr)) |
| 3111 | offset = sizeof(struct in6_addr) - 4; |
| 3112 | memcpy(&addr.s6_addr32[3], idev->dev->dev_addr + offset, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | |
| 3114 | if (idev->dev->flags&IFF_POINTOPOINT) { |
Stephen Suryaputra | 61e18ce | 2021-10-20 16:06:18 -0400 | [diff] [blame] | 3115 | if (idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_NONE) |
| 3116 | return; |
| 3117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3118 | addr.s6_addr32[0] = htonl(0xfe800000); |
| 3119 | scope = IFA_LINK; |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3120 | plen = 64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | } else { |
| 3122 | scope = IPV6_ADDR_COMPATv4; |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3123 | plen = 96; |
Nicolas Dichtel | f0e2acf | 2013-11-14 13:51:06 +0100 | [diff] [blame] | 3124 | pflags |= RTF_NONEXTHOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3125 | } |
| 3126 | |
| 3127 | if (addr.s6_addr32[3]) { |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3128 | add_addr(idev, &addr, plen, scope); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3129 | addrconf_prefix_route(&addr, plen, 0, idev->dev, 0, pflags, |
Cong Wang | e500c6d | 2018-08-22 12:58:34 -0700 | [diff] [blame] | 3130 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 | return; |
| 3132 | } |
| 3133 | |
Benjamin Thery | 6fda735 | 2008-03-05 10:47:47 -0800 | [diff] [blame] | 3134 | for_each_netdev(net, dev) { |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3135 | struct in_device *in_dev = __in_dev_get_rtnl(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | if (in_dev && (dev->flags & IFF_UP)) { |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3137 | struct in_ifaddr *ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | int flag = scope; |
| 3139 | |
Florian Westphal | cd5a411 | 2019-05-31 18:27:07 +0200 | [diff] [blame] | 3140 | in_dev_for_each_ifa_rtnl(ifa, in_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3141 | addr.s6_addr32[3] = ifa->ifa_local; |
| 3142 | |
| 3143 | if (ifa->ifa_scope == RT_SCOPE_LINK) |
| 3144 | continue; |
| 3145 | if (ifa->ifa_scope >= RT_SCOPE_HOST) { |
| 3146 | if (idev->dev->flags&IFF_POINTOPOINT) |
| 3147 | continue; |
| 3148 | flag |= IFA_HOST; |
| 3149 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3150 | |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3151 | add_addr(idev, &addr, plen, flag); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3152 | addrconf_prefix_route(&addr, plen, 0, idev->dev, |
Cong Wang | e500c6d | 2018-08-22 12:58:34 -0700 | [diff] [blame] | 3153 | 0, pflags, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3154 | } |
| 3155 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3157 | } |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 3158 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3159 | |
| 3160 | static void init_loopback(struct net_device *dev) |
| 3161 | { |
| 3162 | struct inet6_dev *idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3163 | |
| 3164 | /* ::1 */ |
| 3165 | |
| 3166 | ASSERT_RTNL(); |
| 3167 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3168 | idev = ipv6_find_idev(dev); |
Sabrina Dubroca | db0b99f | 2019-08-23 15:44:36 +0200 | [diff] [blame] | 3169 | if (IS_ERR(idev)) { |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3170 | pr_debug("%s: add_dev failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | return; |
| 3172 | } |
| 3173 | |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3174 | add_addr(idev, &in6addr_loopback, 128, IFA_HOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3175 | } |
| 3176 | |
Alexander Aring | 2ad3ed5 | 2016-06-15 21:20:17 +0200 | [diff] [blame] | 3177 | void addrconf_add_linklocal(struct inet6_dev *idev, |
| 3178 | const struct in6_addr *addr, u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | { |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3180 | struct ifa6_config cfg = { |
| 3181 | .pfx = addr, |
| 3182 | .plen = 64, |
| 3183 | .ifa_flags = flags | IFA_F_PERMANENT, |
| 3184 | .valid_lft = INFINITY_LIFE_TIME, |
| 3185 | .preferred_lft = INFINITY_LIFE_TIME, |
| 3186 | .scope = IFA_LINK |
| 3187 | }; |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3188 | struct inet6_ifaddr *ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3190 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 3191 | if ((dev_net(idev->dev)->ipv6.devconf_all->optimistic_dad || |
| 3192 | idev->cnf.optimistic_dad) && |
David Miller | 702beb8 | 2008-07-20 18:17:02 -0700 | [diff] [blame] | 3193 | !dev_net(idev->dev)->ipv6.devconf_all->forwarding) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3194 | cfg.ifa_flags |= IFA_F_OPTIMISTIC; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3195 | #endif |
| 3196 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3197 | ifp = ipv6_add_addr(idev, &cfg, true, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | if (!IS_ERR(ifp)) { |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3199 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, 0, idev->dev, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3200 | 0, 0, GFP_ATOMIC); |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 3201 | addrconf_dad_start(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | in6_ifa_put(ifp); |
| 3203 | } |
| 3204 | } |
Alexander Aring | 2ad3ed5 | 2016-06-15 21:20:17 +0200 | [diff] [blame] | 3205 | EXPORT_SYMBOL_GPL(addrconf_add_linklocal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3207 | static bool ipv6_reserved_interfaceid(struct in6_addr address) |
| 3208 | { |
| 3209 | if ((address.s6_addr32[2] | address.s6_addr32[3]) == 0) |
| 3210 | return true; |
| 3211 | |
| 3212 | if (address.s6_addr32[2] == htonl(0x02005eff) && |
| 3213 | ((address.s6_addr32[3] & htonl(0xfe000000)) == htonl(0xfe000000))) |
| 3214 | return true; |
| 3215 | |
| 3216 | if (address.s6_addr32[2] == htonl(0xfdffffff) && |
| 3217 | ((address.s6_addr32[3] & htonl(0xffffff80)) == htonl(0xffffff80))) |
| 3218 | return true; |
| 3219 | |
| 3220 | return false; |
| 3221 | } |
| 3222 | |
| 3223 | static int ipv6_generate_stable_address(struct in6_addr *address, |
| 3224 | u8 dad_count, |
| 3225 | const struct inet6_dev *idev) |
| 3226 | { |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3227 | static DEFINE_SPINLOCK(lock); |
Eric Biggers | 6b0b0fa | 2020-05-02 11:24:25 -0700 | [diff] [blame] | 3228 | static __u32 digest[SHA1_DIGEST_WORDS]; |
| 3229 | static __u32 workspace[SHA1_WORKSPACE_WORDS]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3230 | |
| 3231 | static union { |
Eric Biggers | 6b0b0fa | 2020-05-02 11:24:25 -0700 | [diff] [blame] | 3232 | char __data[SHA1_BLOCK_SIZE]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3233 | struct { |
| 3234 | struct in6_addr secret; |
Hannes Frederic Sowa | ff40217 | 2015-03-24 11:05:28 +0100 | [diff] [blame] | 3235 | __be32 prefix[2]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3236 | unsigned char hwaddr[MAX_ADDR_LEN]; |
| 3237 | u8 dad_count; |
| 3238 | } __packed; |
| 3239 | } data; |
| 3240 | |
| 3241 | struct in6_addr secret; |
| 3242 | struct in6_addr temp; |
| 3243 | struct net *net = dev_net(idev->dev); |
| 3244 | |
| 3245 | BUILD_BUG_ON(sizeof(data.__data) != sizeof(data)); |
| 3246 | |
| 3247 | if (idev->cnf.stable_secret.initialized) |
| 3248 | secret = idev->cnf.stable_secret.secret; |
| 3249 | else if (net->ipv6.devconf_dflt->stable_secret.initialized) |
| 3250 | secret = net->ipv6.devconf_dflt->stable_secret.secret; |
| 3251 | else |
| 3252 | return -1; |
| 3253 | |
| 3254 | retry: |
| 3255 | spin_lock_bh(&lock); |
| 3256 | |
Eric Biggers | 6b0b0fa | 2020-05-02 11:24:25 -0700 | [diff] [blame] | 3257 | sha1_init(digest); |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3258 | memset(&data, 0, sizeof(data)); |
| 3259 | memset(workspace, 0, sizeof(workspace)); |
| 3260 | memcpy(data.hwaddr, idev->dev->perm_addr, idev->dev->addr_len); |
Hannes Frederic Sowa | ff40217 | 2015-03-24 11:05:28 +0100 | [diff] [blame] | 3261 | data.prefix[0] = address->s6_addr32[0]; |
| 3262 | data.prefix[1] = address->s6_addr32[1]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3263 | data.secret = secret; |
| 3264 | data.dad_count = dad_count; |
| 3265 | |
Eric Biggers | 6b0b0fa | 2020-05-02 11:24:25 -0700 | [diff] [blame] | 3266 | sha1_transform(digest, data.__data, workspace); |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3267 | |
| 3268 | temp = *address; |
Hannes Frederic Sowa | ff40217 | 2015-03-24 11:05:28 +0100 | [diff] [blame] | 3269 | temp.s6_addr32[2] = (__force __be32)digest[0]; |
| 3270 | temp.s6_addr32[3] = (__force __be32)digest[1]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3271 | |
| 3272 | spin_unlock_bh(&lock); |
| 3273 | |
| 3274 | if (ipv6_reserved_interfaceid(temp)) { |
| 3275 | dad_count++; |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 3276 | if (dad_count > dev_net(idev->dev)->ipv6.sysctl.idgen_retries) |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3277 | return -1; |
| 3278 | goto retry; |
| 3279 | } |
| 3280 | |
| 3281 | *address = temp; |
| 3282 | return 0; |
| 3283 | } |
| 3284 | |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3285 | static void ipv6_gen_mode_random_init(struct inet6_dev *idev) |
| 3286 | { |
| 3287 | struct ipv6_stable_secret *s = &idev->cnf.stable_secret; |
| 3288 | |
| 3289 | if (s->initialized) |
| 3290 | return; |
| 3291 | s = &idev->cnf.stable_secret; |
| 3292 | get_random_bytes(&s->secret, sizeof(s->secret)); |
| 3293 | s->initialized = true; |
| 3294 | } |
| 3295 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3296 | static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route) |
| 3297 | { |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3298 | struct in6_addr addr; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3299 | |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 3300 | /* no link local addresses on L3 master devices */ |
| 3301 | if (netif_is_l3_master(idev->dev)) |
| 3302 | return; |
| 3303 | |
Jarod Wilson | 744fdc82 | 2020-03-30 11:22:19 -0400 | [diff] [blame] | 3304 | /* no link local addresses on devices flagged as slaves */ |
| 3305 | if (idev->dev->flags & IFF_SLAVE) |
| 3306 | return; |
| 3307 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3308 | ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0); |
| 3309 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 3310 | switch (idev->cnf.addr_gen_mode) { |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3311 | case IN6_ADDR_GEN_MODE_RANDOM: |
| 3312 | ipv6_gen_mode_random_init(idev); |
Joe Perches | a8eceea | 2020-03-12 15:50:22 -0700 | [diff] [blame] | 3313 | fallthrough; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3314 | case IN6_ADDR_GEN_MODE_STABLE_PRIVACY: |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3315 | if (!ipv6_generate_stable_address(&addr, 0, idev)) |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 3316 | addrconf_add_linklocal(idev, &addr, |
| 3317 | IFA_F_STABLE_PRIVACY); |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3318 | else if (prefix_route) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3319 | addrconf_prefix_route(&addr, 64, 0, idev->dev, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3320 | 0, 0, GFP_KERNEL); |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3321 | break; |
| 3322 | case IN6_ADDR_GEN_MODE_EUI64: |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3323 | /* addrconf_add_linklocal also adds a prefix_route and we |
| 3324 | * only need to care about prefix routes if ipv6_generate_eui64 |
| 3325 | * couldn't generate one. |
| 3326 | */ |
| 3327 | if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0) |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 3328 | addrconf_add_linklocal(idev, &addr, 0); |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3329 | else if (prefix_route) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3330 | addrconf_prefix_route(&addr, 64, 0, idev->dev, |
David Ahern | 27b1060 | 2018-04-18 15:39:06 -0700 | [diff] [blame] | 3331 | 0, 0, GFP_KERNEL); |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3332 | break; |
| 3333 | case IN6_ADDR_GEN_MODE_NONE: |
| 3334 | default: |
| 3335 | /* will not add any link local address */ |
| 3336 | break; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3337 | } |
| 3338 | } |
| 3339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | static void addrconf_dev_config(struct net_device *dev) |
| 3341 | { |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3342 | struct inet6_dev *idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3343 | |
| 3344 | ASSERT_RTNL(); |
| 3345 | |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3346 | if ((dev->type != ARPHRD_ETHER) && |
| 3347 | (dev->type != ARPHRD_FDDI) && |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3348 | (dev->type != ARPHRD_ARCNET) && |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 3349 | (dev->type != ARPHRD_INFINIBAND) && |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 3350 | (dev->type != ARPHRD_IEEE1394) && |
Jukka Rissanen | e74bccb8 | 2013-12-11 17:05:36 +0200 | [diff] [blame] | 3351 | (dev->type != ARPHRD_TUNNEL6) && |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3352 | (dev->type != ARPHRD_6LOWPAN) && |
Felix Jia | 45ce0fd | 2017-01-26 16:59:18 +1300 | [diff] [blame] | 3353 | (dev->type != ARPHRD_TUNNEL) && |
Subash Abhinov Kasiviswanathan | 9deb441 | 2018-06-04 19:26:07 -0600 | [diff] [blame] | 3354 | (dev->type != ARPHRD_NONE) && |
| 3355 | (dev->type != ARPHRD_RAWIP)) { |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3356 | /* Alas, we support only Ethernet autoconfiguration. */ |
Hangbin Liu | 6038048 | 2020-03-10 15:27:37 +0800 | [diff] [blame] | 3357 | idev = __in6_dev_get(dev); |
| 3358 | if (!IS_ERR_OR_NULL(idev) && dev->flags & IFF_UP && |
| 3359 | dev->flags & IFF_MULTICAST) |
| 3360 | ipv6_mc_up(idev); |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3361 | return; |
| 3362 | } |
| 3363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3364 | idev = addrconf_add_dev(dev); |
Brian Haley | 64e724f | 2010-07-20 10:34:30 +0000 | [diff] [blame] | 3365 | if (IS_ERR(idev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | return; |
| 3367 | |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3368 | /* this device type has no EUI support */ |
| 3369 | if (dev->type == ARPHRD_NONE && |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 3370 | idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64) |
| 3371 | idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_RANDOM; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3372 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3373 | addrconf_addr_gen(idev, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3374 | } |
| 3375 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3376 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3377 | static void addrconf_sit_config(struct net_device *dev) |
| 3378 | { |
| 3379 | struct inet6_dev *idev; |
| 3380 | |
| 3381 | ASSERT_RTNL(); |
| 3382 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3383 | /* |
| 3384 | * Configure the tunnel with one of our IPv4 |
| 3385 | * addresses... we should configure all of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3386 | * our v4 addrs in the tunnel |
| 3387 | */ |
| 3388 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3389 | idev = ipv6_find_idev(dev); |
Sabrina Dubroca | db0b99f | 2019-08-23 15:44:36 +0200 | [diff] [blame] | 3390 | if (IS_ERR(idev)) { |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3391 | pr_debug("%s: add_dev failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | return; |
| 3393 | } |
| 3394 | |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 3395 | if (dev->priv_flags & IFF_ISATAP) { |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3396 | addrconf_addr_gen(idev, false); |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 3397 | return; |
| 3398 | } |
| 3399 | |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3400 | add_v4_addrs(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3401 | |
Nicolas Dichtel | 62b54dd | 2012-10-01 23:19:14 +0000 | [diff] [blame] | 3402 | if (dev->flags&IFF_POINTOPOINT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3403 | addrconf_add_mroute(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3404 | } |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 3405 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3406 | |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3407 | #if IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE) |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3408 | static void addrconf_gre_config(struct net_device *dev) |
| 3409 | { |
| 3410 | struct inet6_dev *idev; |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3411 | |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3412 | ASSERT_RTNL(); |
| 3413 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3414 | idev = ipv6_find_idev(dev); |
Sabrina Dubroca | db0b99f | 2019-08-23 15:44:36 +0200 | [diff] [blame] | 3415 | if (IS_ERR(idev)) { |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3416 | pr_debug("%s: add_dev failed\n", __func__); |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3417 | return; |
| 3418 | } |
| 3419 | |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3420 | if (dev->type == ARPHRD_ETHER) { |
| 3421 | addrconf_addr_gen(idev, true); |
| 3422 | return; |
| 3423 | } |
| 3424 | |
| 3425 | add_v4_addrs(idev); |
| 3426 | |
Hannes Frederic Sowa | d9e4ce6 | 2015-10-08 18:19:39 +0200 | [diff] [blame] | 3427 | if (dev->flags & IFF_POINTOPOINT) |
| 3428 | addrconf_add_mroute(dev); |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3429 | } |
| 3430 | #endif |
| 3431 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3432 | static int fixup_permanent_addr(struct net *net, |
| 3433 | struct inet6_dev *idev, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3434 | struct inet6_ifaddr *ifp) |
| 3435 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 3436 | /* !fib6_node means the host route was removed from the |
David Ahern | 8048ced | 2017-04-25 09:17:29 -0700 | [diff] [blame] | 3437 | * FIB, for example, if 'lo' device is taken down. In that |
| 3438 | * case regenerate the host route. |
| 3439 | */ |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 3440 | if (!ifp->rt || !ifp->rt->fib6_node) { |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 3441 | struct fib6_info *f6i, *prev; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3442 | |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 3443 | f6i = addrconf_f6i_alloc(net, idev, &ifp->addr, false, |
| 3444 | GFP_ATOMIC); |
| 3445 | if (IS_ERR(f6i)) |
| 3446 | return PTR_ERR(f6i); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3447 | |
David Ahern | 8048ced | 2017-04-25 09:17:29 -0700 | [diff] [blame] | 3448 | /* ifp->rt can be accessed outside of rtnl */ |
| 3449 | spin_lock(&ifp->lock); |
| 3450 | prev = ifp->rt; |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 3451 | ifp->rt = f6i; |
David Ahern | 8048ced | 2017-04-25 09:17:29 -0700 | [diff] [blame] | 3452 | spin_unlock(&ifp->lock); |
| 3453 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3454 | fib6_info_release(prev); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3455 | } |
| 3456 | |
| 3457 | if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) { |
| 3458 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3459 | ifp->rt_priority, idev->dev, 0, 0, |
| 3460 | GFP_ATOMIC); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3461 | } |
| 3462 | |
David Ahern | 6d71713 | 2017-05-02 14:43:44 -0700 | [diff] [blame] | 3463 | if (ifp->state == INET6_IFADDR_STATE_PREDAD) |
| 3464 | addrconf_dad_start(ifp); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3465 | |
| 3466 | return 0; |
| 3467 | } |
| 3468 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3469 | static void addrconf_permanent_addr(struct net *net, struct net_device *dev) |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3470 | { |
| 3471 | struct inet6_ifaddr *ifp, *tmp; |
| 3472 | struct inet6_dev *idev; |
| 3473 | |
| 3474 | idev = __in6_dev_get(dev); |
| 3475 | if (!idev) |
| 3476 | return; |
| 3477 | |
| 3478 | write_lock_bh(&idev->lock); |
| 3479 | |
| 3480 | list_for_each_entry_safe(ifp, tmp, &idev->addr_list, if_list) { |
| 3481 | if ((ifp->flags & IFA_F_PERMANENT) && |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3482 | fixup_permanent_addr(net, idev, ifp) < 0) { |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3483 | write_unlock_bh(&idev->lock); |
Eric Dumazet | e669b86 | 2017-10-30 22:47:09 -0700 | [diff] [blame] | 3484 | in6_ifa_hold(ifp); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3485 | ipv6_del_addr(ifp); |
| 3486 | write_lock_bh(&idev->lock); |
| 3487 | |
| 3488 | net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n", |
| 3489 | idev->dev->name, &ifp->addr); |
| 3490 | } |
| 3491 | } |
| 3492 | |
| 3493 | write_unlock_bh(&idev->lock); |
| 3494 | } |
| 3495 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3496 | static int addrconf_notify(struct notifier_block *this, unsigned long event, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 3497 | void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3498 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 3499 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 3500 | struct netdev_notifier_change_info *change_info; |
David Ahern | 4f7f34e | 2016-04-07 11:10:41 -0700 | [diff] [blame] | 3501 | struct netdev_notifier_changeupper_info *info; |
Eric Dumazet | 748e2d9 | 2012-08-22 21:50:59 +0000 | [diff] [blame] | 3502 | struct inet6_dev *idev = __in6_dev_get(dev); |
WANG Cong | 60abc0b | 2017-06-21 14:34:58 -0700 | [diff] [blame] | 3503 | struct net *net = dev_net(dev); |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3504 | int run_pending = 0; |
Herbert Xu | b217d61 | 2007-07-30 17:04:52 -0700 | [diff] [blame] | 3505 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3506 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 3507 | switch (event) { |
YOSHIFUJI Hideaki | 45ba9dd | 2007-02-15 02:07:27 +0900 | [diff] [blame] | 3508 | case NETDEV_REGISTER: |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3509 | if (!idev && dev->mtu >= IPV6_MIN_MTU) { |
YOSHIFUJI Hideaki | 45ba9dd | 2007-02-15 02:07:27 +0900 | [diff] [blame] | 3510 | idev = ipv6_add_dev(dev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3511 | if (IS_ERR(idev)) |
| 3512 | return notifier_from_errno(PTR_ERR(idev)); |
YOSHIFUJI Hideaki | 45ba9dd | 2007-02-15 02:07:27 +0900 | [diff] [blame] | 3513 | } |
| 3514 | break; |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3515 | |
Alexander Duyck | b7b0b1d | 2015-10-26 11:06:33 -0700 | [diff] [blame] | 3516 | case NETDEV_CHANGEMTU: |
| 3517 | /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */ |
| 3518 | if (dev->mtu < IPV6_MIN_MTU) { |
WANG Cong | 60abc0b | 2017-06-21 14:34:58 -0700 | [diff] [blame] | 3519 | addrconf_ifdown(dev, dev != net->loopback_dev); |
Alexander Duyck | b7b0b1d | 2015-10-26 11:06:33 -0700 | [diff] [blame] | 3520 | break; |
| 3521 | } |
| 3522 | |
| 3523 | if (idev) { |
| 3524 | rt6_mtu_change(dev, dev->mtu); |
| 3525 | idev->cnf.mtu6 = dev->mtu; |
| 3526 | break; |
| 3527 | } |
| 3528 | |
| 3529 | /* allocate new idev */ |
| 3530 | idev = ipv6_add_dev(dev); |
| 3531 | if (IS_ERR(idev)) |
| 3532 | break; |
| 3533 | |
| 3534 | /* device is still not ready */ |
| 3535 | if (!(idev->if_flags & IF_READY)) |
| 3536 | break; |
| 3537 | |
| 3538 | run_pending = 1; |
Joe Perches | a8eceea | 2020-03-12 15:50:22 -0700 | [diff] [blame] | 3539 | fallthrough; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3540 | case NETDEV_UP: |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3541 | case NETDEV_CHANGE: |
Jay Vosburgh | c2edacf | 2007-07-09 10:42:47 -0700 | [diff] [blame] | 3542 | if (dev->flags & IFF_SLAVE) |
| 3543 | break; |
| 3544 | |
WANG Cong | 3ce62a8 | 2014-09-11 15:07:16 -0700 | [diff] [blame] | 3545 | if (idev && idev->cnf.disable_ipv6) |
| 3546 | break; |
| 3547 | |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3548 | if (event == NETDEV_UP) { |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3549 | /* restore routes for permanent addresses */ |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3550 | addrconf_permanent_addr(net, dev); |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3551 | |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 3552 | if (!addrconf_link_ready(dev)) { |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3553 | /* device is not ready yet. */ |
Lubomir Rintel | 7c62b8d | 2019-01-21 14:54:20 +0100 | [diff] [blame] | 3554 | pr_debug("ADDRCONF(NETDEV_UP): %s: link is not ready\n", |
| 3555 | dev->name); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3556 | break; |
| 3557 | } |
Kristian Slavov | 9908104 | 2006-02-08 16:10:53 -0800 | [diff] [blame] | 3558 | |
Evgeniy Polyakov | d31c7b8 | 2007-11-30 23:36:08 +1100 | [diff] [blame] | 3559 | if (!idev && dev->mtu >= IPV6_MIN_MTU) |
| 3560 | idev = ipv6_add_dev(dev); |
| 3561 | |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3562 | if (!IS_ERR_OR_NULL(idev)) { |
Kristian Slavov | 9908104 | 2006-02-08 16:10:53 -0800 | [diff] [blame] | 3563 | idev->if_flags |= IF_READY; |
Benjamin Thery | e3ec6cf | 2008-11-05 01:43:57 -0800 | [diff] [blame] | 3564 | run_pending = 1; |
| 3565 | } |
Alexander Duyck | b7b0b1d | 2015-10-26 11:06:33 -0700 | [diff] [blame] | 3566 | } else if (event == NETDEV_CHANGE) { |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 3567 | if (!addrconf_link_ready(dev)) { |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3568 | /* device is still not ready. */ |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3569 | rt6_sync_down_dev(dev, event); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3570 | break; |
| 3571 | } |
| 3572 | |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 3573 | if (!IS_ERR_OR_NULL(idev)) { |
Linus Lüssing | a088d1d | 2017-02-03 08:11:03 +0100 | [diff] [blame] | 3574 | if (idev->if_flags & IF_READY) { |
| 3575 | /* device is already configured - |
| 3576 | * but resend MLD reports, we might |
| 3577 | * have roamed and need to update |
| 3578 | * multicast snooping switches |
| 3579 | */ |
| 3580 | ipv6_mc_up(idev); |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 3581 | change_info = ptr; |
| 3582 | if (change_info->flags_changed & IFF_NOARP) |
| 3583 | addrconf_dad_run(idev, true); |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3584 | rt6_sync_up(dev, RTNH_F_LINKDOWN); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3585 | break; |
Linus Lüssing | a088d1d | 2017-02-03 08:11:03 +0100 | [diff] [blame] | 3586 | } |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3587 | idev->if_flags |= IF_READY; |
| 3588 | } |
| 3589 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 3590 | pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n", |
| 3591 | dev->name); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3592 | |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3593 | run_pending = 1; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3594 | } |
| 3595 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 3596 | switch (dev->type) { |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3597 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3598 | case ARPHRD_SIT: |
| 3599 | addrconf_sit_config(dev); |
| 3600 | break; |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 3601 | #endif |
Antonio Quartulli | e5dd729 | 2021-09-03 18:58:42 +0200 | [diff] [blame] | 3602 | #if IS_ENABLED(CONFIG_NET_IPGRE) || IS_ENABLED(CONFIG_IPV6_GRE) |
| 3603 | case ARPHRD_IP6GRE: |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3604 | case ARPHRD_IPGRE: |
| 3605 | addrconf_gre_config(dev); |
| 3606 | break; |
| 3607 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | case ARPHRD_LOOPBACK: |
| 3609 | init_loopback(dev); |
| 3610 | break; |
| 3611 | |
| 3612 | default: |
| 3613 | addrconf_dev_config(dev); |
| 3614 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 3615 | } |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3616 | |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3617 | if (!IS_ERR_OR_NULL(idev)) { |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3618 | if (run_pending) |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 3619 | addrconf_dad_run(idev, false); |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3620 | |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3621 | /* Device has an address by now */ |
| 3622 | rt6_sync_up(dev, RTNH_F_DEAD); |
| 3623 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3624 | /* |
| 3625 | * If the MTU changed during the interface down, |
| 3626 | * when the interface up, the changed MTU must be |
| 3627 | * reflected in the idev as well as routers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3628 | */ |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3629 | if (idev->cnf.mtu6 != dev->mtu && |
| 3630 | dev->mtu >= IPV6_MIN_MTU) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3631 | rt6_mtu_change(dev, dev->mtu); |
| 3632 | idev->cnf.mtu6 = dev->mtu; |
| 3633 | } |
| 3634 | idev->tstamp = jiffies; |
| 3635 | inet6_ifinfo_notify(RTM_NEWLINK, idev); |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3636 | |
| 3637 | /* |
| 3638 | * If the changed mtu during down is lower than |
| 3639 | * IPV6_MIN_MTU stop IPv6 on this interface. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3640 | */ |
| 3641 | if (dev->mtu < IPV6_MIN_MTU) |
WANG Cong | 60abc0b | 2017-06-21 14:34:58 -0700 | [diff] [blame] | 3642 | addrconf_ifdown(dev, dev != net->loopback_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3643 | } |
| 3644 | break; |
| 3645 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3646 | case NETDEV_DOWN: |
| 3647 | case NETDEV_UNREGISTER: |
| 3648 | /* |
| 3649 | * Remove all addresses from this interface. |
| 3650 | */ |
| 3651 | addrconf_ifdown(dev, event != NETDEV_DOWN); |
| 3652 | break; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3654 | case NETDEV_CHANGENAME: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3655 | if (idev) { |
Stephen Hemminger | 5632c51 | 2007-04-28 21:16:39 -0700 | [diff] [blame] | 3656 | snmp6_unregister_dev(idev); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 3657 | addrconf_sysctl_unregister(idev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3658 | err = addrconf_sysctl_register(idev); |
Herbert Xu | b217d61 | 2007-07-30 17:04:52 -0700 | [diff] [blame] | 3659 | if (err) |
| 3660 | return notifier_from_errno(err); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3661 | err = snmp6_register_dev(idev); |
| 3662 | if (err) { |
| 3663 | addrconf_sysctl_unregister(idev); |
| 3664 | return notifier_from_errno(err); |
| 3665 | } |
Stephen Hemminger | 5632c51 | 2007-04-28 21:16:39 -0700 | [diff] [blame] | 3666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | break; |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3668 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3669 | case NETDEV_PRE_TYPE_CHANGE: |
| 3670 | case NETDEV_POST_TYPE_CHANGE: |
Andrew Lunn | 3ef0952 | 2015-12-03 21:12:32 +0100 | [diff] [blame] | 3671 | if (idev) |
| 3672 | addrconf_type_change(dev, event); |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3673 | break; |
David Ahern | 4f7f34e | 2016-04-07 11:10:41 -0700 | [diff] [blame] | 3674 | |
| 3675 | case NETDEV_CHANGEUPPER: |
| 3676 | info = ptr; |
| 3677 | |
| 3678 | /* flush all routes if dev is linked to or unlinked from |
| 3679 | * an L3 master device (e.g., VRF) |
| 3680 | */ |
| 3681 | if (info->upper_dev && netif_is_l3_master(info->upper_dev)) |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3682 | addrconf_ifdown(dev, false); |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 3683 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3684 | |
| 3685 | return NOTIFY_OK; |
| 3686 | } |
| 3687 | |
| 3688 | /* |
| 3689 | * addrconf module should be notified of a device going up |
| 3690 | */ |
| 3691 | static struct notifier_block ipv6_dev_notf = { |
| 3692 | .notifier_call = addrconf_notify, |
WANG Cong | 242d3a4 | 2017-05-08 10:12:13 -0700 | [diff] [blame] | 3693 | .priority = ADDRCONF_NOTIFY_PRIORITY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | }; |
| 3695 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3696 | static void addrconf_type_change(struct net_device *dev, unsigned long event) |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3697 | { |
| 3698 | struct inet6_dev *idev; |
| 3699 | ASSERT_RTNL(); |
| 3700 | |
| 3701 | idev = __in6_dev_get(dev); |
| 3702 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3703 | if (event == NETDEV_POST_TYPE_CHANGE) |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3704 | ipv6_mc_remap(idev); |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3705 | else if (event == NETDEV_PRE_TYPE_CHANGE) |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3706 | ipv6_mc_unmap(idev); |
| 3707 | } |
| 3708 | |
David Ahern | 70af921 | 2016-04-08 12:01:21 -0700 | [diff] [blame] | 3709 | static bool addr_is_local(const struct in6_addr *addr) |
| 3710 | { |
| 3711 | return ipv6_addr_type(addr) & |
| 3712 | (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK); |
| 3713 | } |
| 3714 | |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3715 | static int addrconf_ifdown(struct net_device *dev, bool unregister) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | { |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3717 | unsigned long event = unregister ? NETDEV_UNREGISTER : NETDEV_DOWN; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 3718 | struct net *net = dev_net(dev); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 3719 | struct inet6_dev *idev; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3720 | struct inet6_ifaddr *ifa, *tmp; |
Ivan Vecera | 0aef78a | 2018-04-24 19:51:29 +0200 | [diff] [blame] | 3721 | bool keep_addr = false; |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3722 | int state, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | |
| 3724 | ASSERT_RTNL(); |
| 3725 | |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3726 | rt6_disable_ip(dev, event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3727 | |
| 3728 | idev = __in6_dev_get(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 3729 | if (!idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3730 | return -ENODEV; |
| 3731 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3732 | /* |
| 3733 | * Step 1: remove reference to ipv6 device from parent device. |
| 3734 | * Do not dev_put! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3735 | */ |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3736 | if (unregister) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | idev->dead = 1; |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 3738 | |
| 3739 | /* protected by rtnl_lock */ |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 3740 | RCU_INIT_POINTER(dev->ip6_ptr, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
| 3742 | /* Step 1.5: remove snmp6 entry */ |
| 3743 | snmp6_unregister_dev(idev); |
| 3744 | |
| 3745 | } |
| 3746 | |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3747 | /* combine the user config with event to determine if permanent |
| 3748 | * addresses are to be removed from address hash table |
| 3749 | */ |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3750 | if (!unregister && !idev->cnf.disable_ipv6) { |
Ivan Vecera | 0aef78a | 2018-04-24 19:51:29 +0200 | [diff] [blame] | 3751 | /* aggregate the system setting and interface setting */ |
| 3752 | int _keep_addr = net->ipv6.devconf_all->keep_addr_on_down; |
| 3753 | |
| 3754 | if (!_keep_addr) |
| 3755 | _keep_addr = idev->cnf.keep_addr_on_down; |
| 3756 | |
| 3757 | keep_addr = (_keep_addr > 0); |
| 3758 | } |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3759 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3760 | /* Step 2: clear hash table */ |
| 3761 | for (i = 0; i < IN6_ADDR_HSIZE; i++) { |
| 3762 | struct hlist_head *h = &inet6_addr_lst[i]; |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3763 | |
| 3764 | spin_lock_bh(&addrconf_hash_lock); |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 3765 | restart: |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 3766 | hlist_for_each_entry_rcu(ifa, h, addr_lst) { |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3767 | if (ifa->idev == idev) { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3768 | addrconf_del_dad_work(ifa); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3769 | /* combined flag + permanent flag decide if |
| 3770 | * address is retained on a down event |
| 3771 | */ |
| 3772 | if (!keep_addr || |
David Ahern | 70af921 | 2016-04-08 12:01:21 -0700 | [diff] [blame] | 3773 | !(ifa->flags & IFA_F_PERMANENT) || |
| 3774 | addr_is_local(&ifa->addr)) { |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3775 | hlist_del_init_rcu(&ifa->addr_lst); |
| 3776 | goto restart; |
| 3777 | } |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3778 | } |
| 3779 | } |
| 3780 | spin_unlock_bh(&addrconf_hash_lock); |
| 3781 | } |
| 3782 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3783 | write_lock_bh(&idev->lock); |
| 3784 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3785 | addrconf_del_rs_timer(idev); |
| 3786 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3787 | /* Step 2: clear flags for stateless addrconf */ |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3788 | if (!unregister) |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3789 | idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3790 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3791 | /* Step 3: clear tempaddr list */ |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 3792 | while (!list_empty(&idev->tempaddr_list)) { |
| 3793 | ifa = list_first_entry(&idev->tempaddr_list, |
| 3794 | struct inet6_ifaddr, tmp_list); |
| 3795 | list_del(&ifa->tmp_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3796 | write_unlock_bh(&idev->lock); |
| 3797 | spin_lock_bh(&ifa->lock); |
| 3798 | |
| 3799 | if (ifa->ifpub) { |
| 3800 | in6_ifa_put(ifa->ifpub); |
| 3801 | ifa->ifpub = NULL; |
| 3802 | } |
| 3803 | spin_unlock_bh(&ifa->lock); |
| 3804 | in6_ifa_put(ifa); |
| 3805 | write_lock_bh(&idev->lock); |
| 3806 | } |
stephen hemminger | 8f37ada | 2010-03-03 08:19:59 +0000 | [diff] [blame] | 3807 | |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3808 | list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 3809 | struct fib6_info *rt = NULL; |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3810 | bool keep; |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3811 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3812 | addrconf_del_dad_work(ifa); |
stephen hemminger | 84e8b80 | 2010-03-02 13:32:46 +0000 | [diff] [blame] | 3813 | |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3814 | keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) && |
| 3815 | !addr_is_local(&ifa->addr); |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3816 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3817 | write_unlock_bh(&idev->lock); |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3818 | spin_lock_bh(&ifa->lock); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3819 | |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3820 | if (keep) { |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3821 | /* set state to skip the notifier below */ |
| 3822 | state = INET6_IFADDR_STATE_DEAD; |
David Ahern | 6d71713 | 2017-05-02 14:43:44 -0700 | [diff] [blame] | 3823 | ifa->state = INET6_IFADDR_STATE_PREDAD; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3824 | if (!(ifa->flags & IFA_F_NODAD)) |
| 3825 | ifa->flags |= IFA_F_TENTATIVE; |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3826 | |
| 3827 | rt = ifa->rt; |
| 3828 | ifa->rt = NULL; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3829 | } else { |
| 3830 | state = ifa->state; |
| 3831 | ifa->state = INET6_IFADDR_STATE_DEAD; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3832 | } |
| 3833 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3834 | spin_unlock_bh(&ifa->lock); |
stephen hemminger | 84e8b80 | 2010-03-02 13:32:46 +0000 | [diff] [blame] | 3835 | |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3836 | if (rt) |
Roopa Prabhu | 11dd74b | 2020-04-27 13:56:45 -0700 | [diff] [blame] | 3837 | ip6_del_rt(net, rt, false); |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3838 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3839 | if (state != INET6_IFADDR_STATE_DEAD) { |
| 3840 | __ipv6_ifa_notify(RTM_DELADDR, ifa); |
Cong Wang | f88c91d | 2013-04-14 23:18:43 +0800 | [diff] [blame] | 3841 | inet6addr_notifier_call_chain(NETDEV_DOWN, ifa); |
Mike Manning | ea06f71 | 2016-07-22 18:32:11 +0100 | [diff] [blame] | 3842 | } else { |
| 3843 | if (idev->cnf.forwarding) |
| 3844 | addrconf_leave_anycast(ifa); |
| 3845 | addrconf_leave_solict(ifa->idev, &ifa->addr); |
stephen hemminger | 27bdb2a | 2010-04-12 05:41:32 +0000 | [diff] [blame] | 3846 | } |
stephen hemminger | 8f37ada | 2010-03-03 08:19:59 +0000 | [diff] [blame] | 3847 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3848 | write_lock_bh(&idev->lock); |
Eric Dumazet | 8ef802a | 2017-10-07 19:30:23 -0700 | [diff] [blame] | 3849 | if (!keep) { |
| 3850 | list_del_rcu(&ifa->if_list); |
| 3851 | in6_ifa_put(ifa); |
| 3852 | } |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3853 | } |
stephen hemminger | 8f37ada | 2010-03-03 08:19:59 +0000 | [diff] [blame] | 3854 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3855 | write_unlock_bh(&idev->lock); |
| 3856 | |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3857 | /* Step 5: Discard anycast and multicast list */ |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3858 | if (unregister) { |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3859 | ipv6_ac_destroy_dev(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | ipv6_mc_destroy_dev(idev); |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3861 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3862 | ipv6_mc_down(idev); |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3863 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | idev->tstamp = jiffies; |
Rocco Yue | 49b99da | 2021-08-27 23:04:12 +0800 | [diff] [blame] | 3866 | idev->ra_mtu = 0; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3867 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3868 | /* Last: Shot the device (if unregistered) */ |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 3869 | if (unregister) { |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 3870 | addrconf_sysctl_unregister(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3871 | neigh_parms_release(&nd_tbl, idev->nd_parms); |
| 3872 | neigh_ifdown(&nd_tbl, dev); |
| 3873 | in6_dev_put(idev); |
| 3874 | } |
| 3875 | return 0; |
| 3876 | } |
| 3877 | |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 3878 | static void addrconf_rs_timer(struct timer_list *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3879 | { |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 3880 | struct inet6_dev *idev = from_timer(idev, t, rs_timer); |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3881 | struct net_device *dev = idev->dev; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3882 | struct in6_addr lladdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3884 | write_lock(&idev->lock); |
stephen hemminger | 5b2a195 | 2010-03-02 13:32:45 +0000 | [diff] [blame] | 3885 | if (idev->dead || !(idev->if_flags & IF_READY)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | goto out; |
| 3887 | |
Shmulik Ladkani | 9ba2add | 2012-12-02 01:44:53 +0000 | [diff] [blame] | 3888 | if (!ipv6_accept_ra(idev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | goto out; |
stephen hemminger | 5b2a195 | 2010-03-02 13:32:45 +0000 | [diff] [blame] | 3890 | |
| 3891 | /* Announcement received after solicitation was sent */ |
| 3892 | if (idev->if_flags & IF_RA_RCVD) |
| 3893 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 3895 | if (idev->rs_probes++ < idev->cnf.rtr_solicits || idev->cnf.rtr_solicits < 0) { |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3896 | write_unlock(&idev->lock); |
| 3897 | if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE)) |
| 3898 | ndisc_send_rs(dev, &lladdr, |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3899 | &in6addr_linklocal_allrouters); |
| 3900 | else |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3901 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3902 | |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3903 | write_lock(&idev->lock); |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 3904 | idev->rs_interval = rfc3315_s14_backoff_update( |
| 3905 | idev->rs_interval, idev->cnf.rtr_solicit_max_interval); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3906 | /* The wait after the last probe can be shorter */ |
| 3907 | addrconf_mod_rs_timer(idev, (idev->rs_probes == |
| 3908 | idev->cnf.rtr_solicits) ? |
| 3909 | idev->cnf.rtr_solicit_delay : |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 3910 | idev->rs_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | /* |
| 3913 | * Note: we do not support deprecated "all on-link" |
| 3914 | * assumption any longer. |
| 3915 | */ |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3916 | pr_debug("%s: no IPv6 routers present\n", idev->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3917 | } |
| 3918 | |
| 3919 | out: |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3920 | write_unlock(&idev->lock); |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3921 | put: |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3922 | in6_dev_put(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3923 | } |
| 3924 | |
| 3925 | /* |
| 3926 | * Duplicate Address Detection |
| 3927 | */ |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3928 | static void addrconf_dad_kick(struct inet6_ifaddr *ifp) |
| 3929 | { |
| 3930 | unsigned long rand_num; |
| 3931 | struct inet6_dev *idev = ifp->idev; |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 3932 | u64 nonce; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3933 | |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3934 | if (ifp->flags & IFA_F_OPTIMISTIC) |
| 3935 | rand_num = 0; |
| 3936 | else |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 3937 | rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1); |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3938 | |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 3939 | nonce = 0; |
| 3940 | if (idev->cnf.enhanced_dad || |
| 3941 | dev_net(idev->dev)->ipv6.devconf_all->enhanced_dad) { |
| 3942 | do |
| 3943 | get_random_bytes(&nonce, 6); |
| 3944 | while (nonce == 0); |
| 3945 | } |
| 3946 | ifp->dad_nonce = nonce; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3947 | ifp->dad_probes = idev->cnf.dad_transmits; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3948 | addrconf_mod_dad_work(ifp, rand_num); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3949 | } |
| 3950 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3951 | static void addrconf_dad_begin(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | { |
| 3953 | struct inet6_dev *idev = ifp->idev; |
| 3954 | struct net_device *dev = idev->dev; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3955 | bool bump_id, notify = false; |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3956 | struct net *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | |
| 3958 | addrconf_join_solict(dev, &ifp->addr); |
| 3959 | |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 3960 | prandom_seed((__force u32) ifp->addr.s6_addr32[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3961 | |
| 3962 | read_lock_bh(&idev->lock); |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 3963 | spin_lock(&ifp->lock); |
Herbert Xu | e9d3e08 | 2010-05-18 15:36:06 -0700 | [diff] [blame] | 3964 | if (ifp->state == INET6_IFADDR_STATE_DEAD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3966 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3967 | net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3968 | if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) || |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3969 | (net->ipv6.devconf_all->accept_dad < 1 && |
Matteo Croce | a2d3f3e | 2017-10-05 19:03:05 +0200 | [diff] [blame] | 3970 | idev->cnf.accept_dad < 1) || |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 3971 | !(ifp->flags&IFA_F_TENTATIVE) || |
| 3972 | ifp->flags & IFA_F_NODAD) { |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 3973 | bool send_na = false; |
| 3974 | |
| 3975 | if (ifp->flags & IFA_F_TENTATIVE && |
| 3976 | !(ifp->flags & IFA_F_OPTIMISTIC)) |
| 3977 | send_na = true; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3978 | bump_id = ifp->flags & IFA_F_TENTATIVE; |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 3979 | ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 3980 | spin_unlock(&ifp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3981 | read_unlock_bh(&idev->lock); |
| 3982 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 3983 | addrconf_dad_completed(ifp, bump_id, send_na); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3984 | return; |
| 3985 | } |
| 3986 | |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3987 | if (!(idev->if_flags & IF_READY)) { |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 3988 | spin_unlock(&ifp->lock); |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3989 | read_unlock_bh(&idev->lock); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3990 | /* |
Masatake YAMATO | 590a988 | 2009-06-09 10:41:12 +0900 | [diff] [blame] | 3991 | * If the device is not ready: |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3992 | * - keep it tentative if it is a permanent address. |
| 3993 | * - otherwise, kill it. |
| 3994 | */ |
| 3995 | in6_ifa_hold(ifp); |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 3996 | addrconf_dad_stop(ifp, 0); |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3997 | return; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3998 | } |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3999 | |
| 4000 | /* |
| 4001 | * Optimistic nodes can start receiving |
| 4002 | * Frames right away |
| 4003 | */ |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 4004 | if (ifp->flags & IFA_F_OPTIMISTIC) { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 4005 | ip6_ins_rt(net, ifp->rt); |
| 4006 | if (ipv6_use_optimistic_addr(net, idev)) { |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 4007 | /* Because optimistic nodes can use this address, |
| 4008 | * notify listeners. If DAD fails, RTM_DELADDR is sent. |
| 4009 | */ |
subashab@codeaurora.org | 16186a8 | 2016-02-02 02:11:10 +0000 | [diff] [blame] | 4010 | notify = true; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 4011 | } |
| 4012 | } |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 4013 | |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 4014 | addrconf_dad_kick(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4015 | out: |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 4016 | spin_unlock(&ifp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | read_unlock_bh(&idev->lock); |
subashab@codeaurora.org | 16186a8 | 2016-02-02 02:11:10 +0000 | [diff] [blame] | 4018 | if (notify) |
| 4019 | ipv6_ifa_notify(RTM_NEWADDR, ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4020 | } |
| 4021 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4022 | static void addrconf_dad_start(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4024 | bool begin_dad = false; |
| 4025 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 4026 | spin_lock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4027 | if (ifp->state != INET6_IFADDR_STATE_DEAD) { |
| 4028 | ifp->state = INET6_IFADDR_STATE_PREDAD; |
| 4029 | begin_dad = true; |
| 4030 | } |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 4031 | spin_unlock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4032 | |
| 4033 | if (begin_dad) |
| 4034 | addrconf_mod_dad_work(ifp, 0); |
| 4035 | } |
| 4036 | |
| 4037 | static void addrconf_dad_work(struct work_struct *w) |
| 4038 | { |
| 4039 | struct inet6_ifaddr *ifp = container_of(to_delayed_work(w), |
| 4040 | struct inet6_ifaddr, |
| 4041 | dad_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4042 | struct inet6_dev *idev = ifp->idev; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 4043 | bool bump_id, disable_ipv6 = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4044 | struct in6_addr mcaddr; |
| 4045 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4046 | enum { |
| 4047 | DAD_PROCESS, |
| 4048 | DAD_BEGIN, |
| 4049 | DAD_ABORT, |
| 4050 | } action = DAD_PROCESS; |
| 4051 | |
| 4052 | rtnl_lock(); |
| 4053 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 4054 | spin_lock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4055 | if (ifp->state == INET6_IFADDR_STATE_PREDAD) { |
| 4056 | action = DAD_BEGIN; |
| 4057 | ifp->state = INET6_IFADDR_STATE_DAD; |
| 4058 | } else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) { |
| 4059 | action = DAD_ABORT; |
| 4060 | ifp->state = INET6_IFADDR_STATE_POSTDAD; |
Mike Manning | 85b51b1 | 2016-08-18 14:39:40 +0100 | [diff] [blame] | 4061 | |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 4062 | if ((dev_net(idev->dev)->ipv6.devconf_all->accept_dad > 1 || |
| 4063 | idev->cnf.accept_dad > 1) && |
| 4064 | !idev->cnf.disable_ipv6 && |
Mike Manning | 85b51b1 | 2016-08-18 14:39:40 +0100 | [diff] [blame] | 4065 | !(ifp->flags & IFA_F_STABLE_PRIVACY)) { |
| 4066 | struct in6_addr addr; |
| 4067 | |
| 4068 | addr.s6_addr32[0] = htonl(0xfe800000); |
| 4069 | addr.s6_addr32[1] = 0; |
| 4070 | |
| 4071 | if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) && |
| 4072 | ipv6_addr_equal(&ifp->addr, &addr)) { |
| 4073 | /* DAD failed for link-local based on MAC */ |
| 4074 | idev->cnf.disable_ipv6 = 1; |
| 4075 | |
| 4076 | pr_info("%s: IPv6 being disabled!\n", |
| 4077 | ifp->idev->dev->name); |
| 4078 | disable_ipv6 = true; |
| 4079 | } |
| 4080 | } |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4081 | } |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 4082 | spin_unlock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4083 | |
| 4084 | if (action == DAD_BEGIN) { |
| 4085 | addrconf_dad_begin(ifp); |
| 4086 | goto out; |
| 4087 | } else if (action == DAD_ABORT) { |
Wei Yongjun | 751eb6b | 2016-09-05 16:06:31 +0800 | [diff] [blame] | 4088 | in6_ifa_hold(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4089 | addrconf_dad_stop(ifp, 1); |
Mike Manning | 85b51b1 | 2016-08-18 14:39:40 +0100 | [diff] [blame] | 4090 | if (disable_ipv6) |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 4091 | addrconf_ifdown(idev->dev, false); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4092 | goto out; |
| 4093 | } |
| 4094 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4095 | if (!ifp->dad_probes && addrconf_dad_end(ifp)) |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 4096 | goto out; |
| 4097 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4098 | write_lock_bh(&idev->lock); |
stephen hemminger | 122e451 | 2010-03-02 13:32:44 +0000 | [diff] [blame] | 4099 | if (idev->dead || !(idev->if_flags & IF_READY)) { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4100 | write_unlock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4101 | goto out; |
| 4102 | } |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4103 | |
| 4104 | spin_lock(&ifp->lock); |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 4105 | if (ifp->state == INET6_IFADDR_STATE_DEAD) { |
| 4106 | spin_unlock(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4107 | write_unlock_bh(&idev->lock); |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 4108 | goto out; |
| 4109 | } |
| 4110 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4111 | if (ifp->dad_probes == 0) { |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4112 | bool send_na = false; |
| 4113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4114 | /* |
| 4115 | * DAD was successful |
| 4116 | */ |
| 4117 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4118 | if (ifp->flags & IFA_F_TENTATIVE && |
| 4119 | !(ifp->flags & IFA_F_OPTIMISTIC)) |
| 4120 | send_na = true; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 4121 | bump_id = ifp->flags & IFA_F_TENTATIVE; |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 4122 | ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4123 | spin_unlock(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4124 | write_unlock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4125 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4126 | addrconf_dad_completed(ifp, bump_id, send_na); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4127 | |
| 4128 | goto out; |
| 4129 | } |
| 4130 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4131 | ifp->dad_probes--; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4132 | addrconf_mod_dad_work(ifp, |
Hangbin Liu | 19e16d2 | 2020-04-01 14:46:20 +0800 | [diff] [blame] | 4133 | max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME), |
| 4134 | HZ/100)); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4135 | spin_unlock(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4136 | write_unlock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4137 | |
| 4138 | /* send a neighbour solicitation for our addr */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | addrconf_addr_solict_mult(&ifp->addr, &mcaddr); |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 4140 | ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any, |
| 4141 | ifp->dad_nonce); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4142 | out: |
| 4143 | in6_ifa_put(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4144 | rtnl_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4145 | } |
| 4146 | |
Hannes Frederic Sowa | 11ffff7 | 2014-01-16 20:13:04 +0100 | [diff] [blame] | 4147 | /* ifp->idev must be at least read locked */ |
| 4148 | static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp) |
| 4149 | { |
| 4150 | struct inet6_ifaddr *ifpiter; |
| 4151 | struct inet6_dev *idev = ifp->idev; |
| 4152 | |
Hannes Frederic Sowa | 602582c | 2014-01-19 21:58:19 +0100 | [diff] [blame] | 4153 | list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) { |
| 4154 | if (ifpiter->scope > IFA_LINK) |
| 4155 | break; |
Hannes Frederic Sowa | 11ffff7 | 2014-01-16 20:13:04 +0100 | [diff] [blame] | 4156 | if (ifp != ifpiter && ifpiter->scope == IFA_LINK && |
| 4157 | (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE| |
| 4158 | IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) == |
| 4159 | IFA_F_PERMANENT) |
| 4160 | return false; |
| 4161 | } |
| 4162 | return true; |
| 4163 | } |
| 4164 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4165 | static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id, |
| 4166 | bool send_na) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4167 | { |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 4168 | struct net_device *dev = ifp->idev->dev; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4169 | struct in6_addr lladdr; |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4170 | bool send_rs, send_mld; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4171 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4172 | addrconf_del_dad_work(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4173 | |
| 4174 | /* |
| 4175 | * Configure the address for reception. Now it is valid. |
| 4176 | */ |
| 4177 | |
| 4178 | ipv6_ifa_notify(RTM_NEWADDR, ifp); |
| 4179 | |
Tore Anderson | 026359b | 2011-08-28 23:47:33 +0000 | [diff] [blame] | 4180 | /* If added prefix is link local and we are prepared to process |
| 4181 | router advertisements, start sending router solicitations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4182 | */ |
| 4183 | |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4184 | read_lock_bh(&ifp->idev->lock); |
Hannes Frederic Sowa | 11ffff7 | 2014-01-16 20:13:04 +0100 | [diff] [blame] | 4185 | send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp); |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4186 | send_rs = send_mld && |
| 4187 | ipv6_accept_ra(ifp->idev) && |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 4188 | ifp->idev->cnf.rtr_solicits != 0 && |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4189 | (dev->flags&IFF_LOOPBACK) == 0; |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4190 | read_unlock_bh(&ifp->idev->lock); |
| 4191 | |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4192 | /* While dad is in progress mld report's source address is in6_addrany. |
| 4193 | * Resend with proper ll now. |
| 4194 | */ |
| 4195 | if (send_mld) |
| 4196 | ipv6_mc_dad_complete(ifp->idev); |
| 4197 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4198 | /* send unsolicited NA if enabled */ |
| 4199 | if (send_na && |
| 4200 | (ifp->idev->cnf.ndisc_notify || |
| 4201 | dev_net(dev)->ipv6.devconf_all->ndisc_notify)) { |
| 4202 | ndisc_send_na(dev, &in6addr_linklocal_allnodes, &ifp->addr, |
| 4203 | /*router=*/ !!ifp->idev->cnf.forwarding, |
| 4204 | /*solicited=*/ false, /*override=*/ true, |
| 4205 | /*inc_opt=*/ true); |
| 4206 | } |
| 4207 | |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4208 | if (send_rs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4209 | /* |
| 4210 | * If a host as already performed a random delay |
| 4211 | * [...] as part of DAD [...] there is no need |
| 4212 | * to delay again before sending the first RS |
| 4213 | */ |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4214 | if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE)) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4215 | return; |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4216 | ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4217 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4218 | write_lock_bh(&ifp->idev->lock); |
| 4219 | spin_lock(&ifp->lock); |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 4220 | ifp->idev->rs_interval = rfc3315_s14_backoff_init( |
| 4221 | ifp->idev->cnf.rtr_solicit_interval); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4222 | ifp->idev->rs_probes = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4223 | ifp->idev->if_flags |= IF_RS_SENT; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 4224 | addrconf_mod_rs_timer(ifp->idev, ifp->idev->rs_interval); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4225 | spin_unlock(&ifp->lock); |
| 4226 | write_unlock_bh(&ifp->idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4227 | } |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 4228 | |
| 4229 | if (bump_id) |
| 4230 | rt_genid_bump_ipv6(dev_net(dev)); |
Marcus Huewe | a11a7f7 | 2017-02-06 18:34:56 +0100 | [diff] [blame] | 4231 | |
| 4232 | /* Make sure that a new temporary address will be created |
| 4233 | * before this temporary address becomes deprecated. |
| 4234 | */ |
| 4235 | if (ifp->flags & IFA_F_TEMPORARY) |
| 4236 | addrconf_verify_rtnl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4237 | } |
| 4238 | |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 4239 | static void addrconf_dad_run(struct inet6_dev *idev, bool restart) |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 4240 | { |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 4241 | struct inet6_ifaddr *ifp; |
| 4242 | |
| 4243 | read_lock_bh(&idev->lock); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 4244 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4245 | spin_lock(&ifp->lock); |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 4246 | if ((ifp->flags & IFA_F_TENTATIVE && |
| 4247 | ifp->state == INET6_IFADDR_STATE_DAD) || restart) { |
| 4248 | if (restart) |
| 4249 | ifp->state = INET6_IFADDR_STATE_PREDAD; |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 4250 | addrconf_dad_kick(ifp); |
Hangbin Liu | 896585d | 2018-11-21 21:52:33 +0800 | [diff] [blame] | 4251 | } |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4252 | spin_unlock(&ifp->lock); |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 4253 | } |
| 4254 | read_unlock_bh(&idev->lock); |
| 4255 | } |
| 4256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4257 | #ifdef CONFIG_PROC_FS |
| 4258 | struct if6_iter_state { |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4259 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4260 | int bucket; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4261 | int offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4262 | }; |
| 4263 | |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4264 | static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4265 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | struct if6_iter_state *state = seq->private; |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 4267 | struct net *net = seq_file_net(seq); |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4268 | struct inet6_ifaddr *ifa = NULL; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4269 | int p = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4270 | |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4271 | /* initial bucket if pos is 0 */ |
| 4272 | if (pos == 0) { |
| 4273 | state->bucket = 0; |
| 4274 | state->offset = 0; |
| 4275 | } |
| 4276 | |
| 4277 | for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4278 | hlist_for_each_entry_rcu(ifa, &inet6_addr_lst[state->bucket], |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4279 | addr_lst) { |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4280 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
| 4281 | continue; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4282 | /* sync with offset */ |
| 4283 | if (p < state->offset) { |
| 4284 | p++; |
| 4285 | continue; |
| 4286 | } |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4287 | return ifa; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4288 | } |
| 4289 | |
| 4290 | /* prepare for next bucket */ |
| 4291 | state->offset = 0; |
| 4292 | p = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4293 | } |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4294 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4295 | } |
| 4296 | |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4297 | static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, |
| 4298 | struct inet6_ifaddr *ifa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4299 | { |
| 4300 | struct if6_iter_state *state = seq->private; |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 4301 | struct net *net = seq_file_net(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4302 | |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4303 | hlist_for_each_entry_continue_rcu(ifa, addr_lst) { |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4304 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
| 4305 | continue; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4306 | state->offset++; |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4307 | return ifa; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4308 | } |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4309 | |
Jeff Barnhill | 86f9bd1 | 2018-09-21 00:45:27 +0000 | [diff] [blame] | 4310 | state->offset = 0; |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4311 | while (++state->bucket < IN6_ADDR_HSIZE) { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4312 | hlist_for_each_entry_rcu(ifa, |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4313 | &inet6_addr_lst[state->bucket], addr_lst) { |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4314 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
| 4315 | continue; |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4316 | return ifa; |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4317 | } |
| 4318 | } |
| 4319 | |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4320 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | } |
| 4322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | static void *if6_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4324 | __acquires(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4325 | { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4326 | rcu_read_lock(); |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4327 | return if6_get_first(seq, *pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4328 | } |
| 4329 | |
| 4330 | static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 4331 | { |
| 4332 | struct inet6_ifaddr *ifa; |
| 4333 | |
| 4334 | ifa = if6_get_next(seq, v); |
| 4335 | ++*pos; |
| 4336 | return ifa; |
| 4337 | } |
| 4338 | |
| 4339 | static void if6_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4340 | __releases(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4341 | { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4342 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | } |
| 4344 | |
| 4345 | static int if6_seq_show(struct seq_file *seq, void *v) |
| 4346 | { |
| 4347 | struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v; |
Jiri Pirko | 971a351 | 2013-12-10 13:56:29 +0100 | [diff] [blame] | 4348 | seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n", |
Harvey Harrison | b071195 | 2008-10-28 16:05:40 -0700 | [diff] [blame] | 4349 | &ifp->addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4350 | ifp->idev->dev->ifindex, |
| 4351 | ifp->prefix_len, |
| 4352 | ifp->scope, |
Jiri Pirko | 971a351 | 2013-12-10 13:56:29 +0100 | [diff] [blame] | 4353 | (u8) ifp->flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4354 | ifp->idev->dev->name); |
| 4355 | return 0; |
| 4356 | } |
| 4357 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 4358 | static const struct seq_operations if6_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4359 | .start = if6_seq_start, |
| 4360 | .next = if6_seq_next, |
| 4361 | .show = if6_seq_show, |
| 4362 | .stop = if6_seq_stop, |
| 4363 | }; |
| 4364 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4365 | static int __net_init if6_proc_net_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4366 | { |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame] | 4367 | if (!proc_create_net("if_inet6", 0444, net->proc_net, &if6_seq_ops, |
| 4368 | sizeof(struct if6_iter_state))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4369 | return -ENOMEM; |
| 4370 | return 0; |
| 4371 | } |
| 4372 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4373 | static void __net_exit if6_proc_net_exit(struct net *net) |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4374 | { |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 4375 | remove_proc_entry("if_inet6", net->proc_net); |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4376 | } |
| 4377 | |
| 4378 | static struct pernet_operations if6_proc_net_ops = { |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 4379 | .init = if6_proc_net_init, |
| 4380 | .exit = if6_proc_net_exit, |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4381 | }; |
| 4382 | |
| 4383 | int __init if6_proc_init(void) |
| 4384 | { |
| 4385 | return register_pernet_subsys(&if6_proc_net_ops); |
| 4386 | } |
| 4387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4388 | void if6_proc_exit(void) |
| 4389 | { |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4390 | unregister_pernet_subsys(&if6_proc_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4391 | } |
| 4392 | #endif /* CONFIG_PROC_FS */ |
| 4393 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 4394 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4395 | /* Check if address is a home address configured on any interface. */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 4396 | int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr) |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4397 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 4398 | unsigned int hash = inet6_addr_hash(net, addr); |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4399 | struct inet6_ifaddr *ifp = NULL; |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 4400 | int ret = 0; |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4401 | |
Eric Dumazet | 4e5f47a | 2017-10-23 16:17:51 -0700 | [diff] [blame] | 4402 | rcu_read_lock(); |
| 4403 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 4404 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
Daniel Lezcano | 389f661 | 2008-01-10 22:44:40 -0800 | [diff] [blame] | 4405 | continue; |
YOSHIFUJI Hideaki | caad295 | 2008-04-10 15:42:07 +0900 | [diff] [blame] | 4406 | if (ipv6_addr_equal(&ifp->addr, addr) && |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4407 | (ifp->flags & IFA_F_HOMEADDRESS)) { |
| 4408 | ret = 1; |
| 4409 | break; |
| 4410 | } |
| 4411 | } |
Eric Dumazet | 4e5f47a | 2017-10-23 16:17:51 -0700 | [diff] [blame] | 4412 | rcu_read_unlock(); |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4413 | return ret; |
| 4414 | } |
| 4415 | #endif |
| 4416 | |
Alexander Aring | f37c605 | 2020-03-27 18:00:19 -0400 | [diff] [blame] | 4417 | /* RFC6554 has some algorithm to avoid loops in segment routing by |
| 4418 | * checking if the segments contains any of a local interface address. |
| 4419 | * |
| 4420 | * Quote: |
| 4421 | * |
| 4422 | * To detect loops in the SRH, a router MUST determine if the SRH |
| 4423 | * includes multiple addresses assigned to any interface on that router. |
| 4424 | * If such addresses appear more than once and are separated by at least |
| 4425 | * one address not assigned to that router. |
| 4426 | */ |
| 4427 | int ipv6_chk_rpl_srh_loop(struct net *net, const struct in6_addr *segs, |
| 4428 | unsigned char nsegs) |
| 4429 | { |
| 4430 | const struct in6_addr *addr; |
| 4431 | int i, ret = 0, found = 0; |
| 4432 | struct inet6_ifaddr *ifp; |
| 4433 | bool separated = false; |
| 4434 | unsigned int hash; |
| 4435 | bool hash_found; |
| 4436 | |
| 4437 | rcu_read_lock(); |
| 4438 | for (i = 0; i < nsegs; i++) { |
| 4439 | addr = &segs[i]; |
| 4440 | hash = inet6_addr_hash(net, addr); |
| 4441 | |
| 4442 | hash_found = false; |
| 4443 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
| 4444 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
| 4445 | continue; |
| 4446 | |
| 4447 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
| 4448 | hash_found = true; |
| 4449 | break; |
| 4450 | } |
| 4451 | } |
| 4452 | |
| 4453 | if (hash_found) { |
| 4454 | if (found > 1 && separated) { |
| 4455 | ret = 1; |
| 4456 | break; |
| 4457 | } |
| 4458 | |
| 4459 | separated = false; |
| 4460 | found++; |
| 4461 | } else { |
| 4462 | separated = true; |
| 4463 | } |
| 4464 | } |
| 4465 | rcu_read_unlock(); |
| 4466 | |
| 4467 | return ret; |
| 4468 | } |
| 4469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | /* |
| 4471 | * Periodic address status verification |
| 4472 | */ |
| 4473 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4474 | static void addrconf_verify_rtnl(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | { |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4476 | unsigned long now, next, next_sec, next_sched; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4477 | struct inet6_ifaddr *ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4478 | int i; |
| 4479 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4480 | ASSERT_RTNL(); |
| 4481 | |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 4482 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4483 | now = jiffies; |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4484 | next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4485 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4486 | cancel_delayed_work(&addr_chk_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4487 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 4488 | for (i = 0; i < IN6_ADDR_HSIZE; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4489 | restart: |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4490 | hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[i], addr_lst) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | unsigned long age; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4492 | |
Yasushi Asano | fad8da3 | 2013-12-31 12:04:19 +0900 | [diff] [blame] | 4493 | /* When setting preferred_lft to a value not zero or |
| 4494 | * infinity, while valid_lft is infinity |
| 4495 | * IFA_F_PERMANENT has a non-infinity life time. |
| 4496 | */ |
| 4497 | if ((ifp->flags & IFA_F_PERMANENT) && |
| 4498 | (ifp->prefered_lft == INFINITY_LIFE_TIME)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4499 | continue; |
| 4500 | |
| 4501 | spin_lock(&ifp->lock); |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4502 | /* We try to batch several events at once. */ |
| 4503 | age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4504 | |
YOSHIFUJI Hideaki | 8f27ebb | 2006-07-28 18:12:11 +0900 | [diff] [blame] | 4505 | if (ifp->valid_lft != INFINITY_LIFE_TIME && |
| 4506 | age >= ifp->valid_lft) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4507 | spin_unlock(&ifp->lock); |
| 4508 | in6_ifa_hold(ifp); |
Taehee Yoo | aa8caa7 | 2021-04-16 14:16:06 +0000 | [diff] [blame] | 4509 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4510 | ipv6_del_addr(ifp); |
Taehee Yoo | aa8caa7 | 2021-04-16 14:16:06 +0000 | [diff] [blame] | 4511 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4512 | goto restart; |
YOSHIFUJI Hideaki | 8f27ebb | 2006-07-28 18:12:11 +0900 | [diff] [blame] | 4513 | } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) { |
| 4514 | spin_unlock(&ifp->lock); |
| 4515 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4516 | } else if (age >= ifp->prefered_lft) { |
Brian Haley | a1ed052 | 2009-07-02 07:10:52 +0000 | [diff] [blame] | 4517 | /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4518 | int deprecate = 0; |
| 4519 | |
| 4520 | if (!(ifp->flags&IFA_F_DEPRECATED)) { |
| 4521 | deprecate = 1; |
| 4522 | ifp->flags |= IFA_F_DEPRECATED; |
| 4523 | } |
| 4524 | |
Yasushi Asano | fad8da3 | 2013-12-31 12:04:19 +0900 | [diff] [blame] | 4525 | if ((ifp->valid_lft != INFINITY_LIFE_TIME) && |
| 4526 | (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4527 | next = ifp->tstamp + ifp->valid_lft * HZ; |
| 4528 | |
| 4529 | spin_unlock(&ifp->lock); |
| 4530 | |
| 4531 | if (deprecate) { |
| 4532 | in6_ifa_hold(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4533 | |
| 4534 | ipv6_ifa_notify(0, ifp); |
| 4535 | in6_ifa_put(ifp); |
| 4536 | goto restart; |
| 4537 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | } else if ((ifp->flags&IFA_F_TEMPORARY) && |
| 4539 | !(ifp->flags&IFA_F_TENTATIVE)) { |
stephen hemminger | 88949cf | 2010-03-17 20:31:17 +0000 | [diff] [blame] | 4540 | unsigned long regen_advance = ifp->idev->cnf.regen_max_retry * |
| 4541 | ifp->idev->cnf.dad_transmits * |
Hangbin Liu | 19e16d2 | 2020-04-01 14:46:20 +0800 | [diff] [blame] | 4542 | max(NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME), HZ/100) / HZ; |
stephen hemminger | 88949cf | 2010-03-17 20:31:17 +0000 | [diff] [blame] | 4543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4544 | if (age >= ifp->prefered_lft - regen_advance) { |
| 4545 | struct inet6_ifaddr *ifpub = ifp->ifpub; |
| 4546 | if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next)) |
| 4547 | next = ifp->tstamp + ifp->prefered_lft * HZ; |
| 4548 | if (!ifp->regen_count && ifpub) { |
| 4549 | ifp->regen_count++; |
| 4550 | in6_ifa_hold(ifp); |
| 4551 | in6_ifa_hold(ifpub); |
| 4552 | spin_unlock(&ifp->lock); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 4553 | |
Hiroyuki YAMAMORI | 291d809 | 2005-12-23 11:24:05 -0800 | [diff] [blame] | 4554 | spin_lock(&ifpub->lock); |
| 4555 | ifpub->regen_count = 0; |
| 4556 | spin_unlock(&ifpub->lock); |
Eric Dumazet | e64e469 | 2018-01-26 16:10:43 -0800 | [diff] [blame] | 4557 | rcu_read_unlock_bh(); |
Fernando Gont | 969c546 | 2020-05-01 00:51:47 -0300 | [diff] [blame] | 4558 | ipv6_create_tempaddr(ifpub, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4559 | in6_ifa_put(ifpub); |
| 4560 | in6_ifa_put(ifp); |
Eric Dumazet | e64e469 | 2018-01-26 16:10:43 -0800 | [diff] [blame] | 4561 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4562 | goto restart; |
| 4563 | } |
| 4564 | } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next)) |
| 4565 | next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ; |
| 4566 | spin_unlock(&ifp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4567 | } else { |
| 4568 | /* ifp->prefered_lft <= ifp->valid_lft */ |
| 4569 | if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next)) |
| 4570 | next = ifp->tstamp + ifp->prefered_lft * HZ; |
| 4571 | spin_unlock(&ifp->lock); |
| 4572 | } |
| 4573 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4574 | } |
| 4575 | |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4576 | next_sec = round_jiffies_up(next); |
| 4577 | next_sched = next; |
| 4578 | |
| 4579 | /* If rounded timeout is accurate enough, accept it. */ |
| 4580 | if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ)) |
| 4581 | next_sched = next_sec; |
| 4582 | |
| 4583 | /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */ |
| 4584 | if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX)) |
| 4585 | next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX; |
| 4586 | |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 4587 | pr_debug("now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n", |
| 4588 | now, next, next_sec, next_sched); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4589 | mod_delayed_work(addrconf_wq, &addr_chk_work, next_sched - now); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 4590 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4591 | } |
| 4592 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4593 | static void addrconf_verify_work(struct work_struct *w) |
| 4594 | { |
| 4595 | rtnl_lock(); |
| 4596 | addrconf_verify_rtnl(); |
| 4597 | rtnl_unlock(); |
| 4598 | } |
| 4599 | |
| 4600 | static void addrconf_verify(void) |
| 4601 | { |
| 4602 | mod_delayed_work(addrconf_wq, &addr_chk_work, 0); |
| 4603 | } |
| 4604 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4605 | static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local, |
| 4606 | struct in6_addr **peer_pfx) |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4607 | { |
| 4608 | struct in6_addr *pfx = NULL; |
| 4609 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4610 | *peer_pfx = NULL; |
| 4611 | |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4612 | if (addr) |
| 4613 | pfx = nla_data(addr); |
| 4614 | |
| 4615 | if (local) { |
| 4616 | if (pfx && nla_memcmp(local, pfx, sizeof(*pfx))) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4617 | *peer_pfx = pfx; |
| 4618 | pfx = nla_data(local); |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4619 | } |
| 4620 | |
| 4621 | return pfx; |
| 4622 | } |
| 4623 | |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 4624 | static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = { |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4625 | [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) }, |
| 4626 | [IFA_LOCAL] = { .len = sizeof(struct in6_addr) }, |
| 4627 | [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) }, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4628 | [IFA_FLAGS] = { .len = sizeof(u32) }, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4629 | [IFA_RT_PRIORITY] = { .len = sizeof(u32) }, |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 4630 | [IFA_TARGET_NETNSID] = { .type = NLA_S32 }, |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4631 | }; |
| 4632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4633 | static int |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4634 | inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 4635 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 4637 | struct net *net = sock_net(skb->sk); |
Thomas Graf | b933f71 | 2006-09-18 00:10:19 -0700 | [diff] [blame] | 4638 | struct ifaddrmsg *ifm; |
| 4639 | struct nlattr *tb[IFA_MAX+1]; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4640 | struct in6_addr *pfx, *peer_pfx; |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 4641 | u32 ifa_flags; |
Thomas Graf | b933f71 | 2006-09-18 00:10:19 -0700 | [diff] [blame] | 4642 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 4644 | err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX, |
| 4645 | ifa_ipv6_policy, extack); |
Thomas Graf | b933f71 | 2006-09-18 00:10:19 -0700 | [diff] [blame] | 4646 | if (err < 0) |
| 4647 | return err; |
| 4648 | |
| 4649 | ifm = nlmsg_data(nlh); |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4650 | pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4651 | if (!pfx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4652 | return -EINVAL; |
| 4653 | |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 4654 | ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags; |
| 4655 | |
| 4656 | /* We ignore other flags so far. */ |
| 4657 | ifa_flags &= IFA_F_MANAGETEMPADDR; |
| 4658 | |
| 4659 | return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx, |
| 4660 | ifm->ifa_prefixlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4661 | } |
| 4662 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4663 | static int modify_prefix_route(struct inet6_ifaddr *ifp, |
Hangbin Liu | 6179401 | 2020-03-03 14:37:34 +0800 | [diff] [blame] | 4664 | unsigned long expires, u32 flags, |
| 4665 | bool modify_peer) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4666 | { |
| 4667 | struct fib6_info *f6i; |
David Ahern | e7c7faa | 2018-06-28 13:36:55 -0700 | [diff] [blame] | 4668 | u32 prio; |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4669 | |
Hangbin Liu | 6179401 | 2020-03-03 14:37:34 +0800 | [diff] [blame] | 4670 | f6i = addrconf_get_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr, |
| 4671 | ifp->prefix_len, |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 4672 | ifp->idev->dev, 0, RTF_DEFAULT, true); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4673 | if (!f6i) |
| 4674 | return -ENOENT; |
| 4675 | |
David Ahern | e7c7faa | 2018-06-28 13:36:55 -0700 | [diff] [blame] | 4676 | prio = ifp->rt_priority ? : IP6_RT_PRIO_ADDRCONF; |
| 4677 | if (f6i->fib6_metric != prio) { |
| 4678 | /* delete old one */ |
Roopa Prabhu | 11dd74b | 2020-04-27 13:56:45 -0700 | [diff] [blame] | 4679 | ip6_del_rt(dev_net(ifp->idev->dev), f6i, false); |
David Ahern | e7c7faa | 2018-06-28 13:36:55 -0700 | [diff] [blame] | 4680 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4681 | /* add new one */ |
Hangbin Liu | 6179401 | 2020-03-03 14:37:34 +0800 | [diff] [blame] | 4682 | addrconf_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr, |
| 4683 | ifp->prefix_len, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4684 | ifp->rt_priority, ifp->idev->dev, |
| 4685 | expires, flags, GFP_KERNEL); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4686 | } else { |
| 4687 | if (!expires) |
| 4688 | fib6_clean_expires(f6i); |
| 4689 | else |
| 4690 | fib6_set_expires(f6i, expires); |
| 4691 | |
| 4692 | fib6_info_release(f6i); |
| 4693 | } |
| 4694 | |
| 4695 | return 0; |
| 4696 | } |
| 4697 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4698 | static int inet6_addr_modify(struct inet6_ifaddr *ifp, struct ifa6_config *cfg) |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4699 | { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 4700 | u32 flags; |
| 4701 | clock_t expires; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4702 | unsigned long timeout; |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4703 | bool was_managetempaddr; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4704 | bool had_prefixroute; |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 4705 | bool new_peer = false; |
YOSHIFUJI Hideaki | 46d4804 | 2007-02-07 20:36:26 +0900 | [diff] [blame] | 4706 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4707 | ASSERT_RTNL(); |
| 4708 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4709 | if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft) |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4710 | return -EINVAL; |
| 4711 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4712 | if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4713 | (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64)) |
| 4714 | return -EINVAL; |
| 4715 | |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4716 | if (!(ifp->flags & IFA_F_TENTATIVE) || ifp->flags & IFA_F_DADFAILED) |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4717 | cfg->ifa_flags &= ~IFA_F_OPTIMISTIC; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4718 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4719 | timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4720 | if (addrconf_finite_timeout(timeout)) { |
| 4721 | expires = jiffies_to_clock_t(timeout * HZ); |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4722 | cfg->valid_lft = timeout; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 4723 | flags = RTF_EXPIRES; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4724 | } else { |
| 4725 | expires = 0; |
| 4726 | flags = 0; |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4727 | cfg->ifa_flags |= IFA_F_PERMANENT; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 4728 | } |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4729 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4730 | timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4731 | if (addrconf_finite_timeout(timeout)) { |
| 4732 | if (timeout == 0) |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4733 | cfg->ifa_flags |= IFA_F_DEPRECATED; |
| 4734 | cfg->preferred_lft = timeout; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4735 | } |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4736 | |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 4737 | if (cfg->peer_pfx && |
| 4738 | memcmp(&ifp->peer_addr, cfg->peer_pfx, sizeof(struct in6_addr))) { |
| 4739 | if (!ipv6_addr_any(&ifp->peer_addr)) |
| 4740 | cleanup_prefix_route(ifp, expires, true, true); |
| 4741 | new_peer = true; |
| 4742 | } |
| 4743 | |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4744 | spin_lock_bh(&ifp->lock); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4745 | was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4746 | had_prefixroute = ifp->flags & IFA_F_PERMANENT && |
| 4747 | !(ifp->flags & IFA_F_NOPREFIXROUTE); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4748 | ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 4749 | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR | |
| 4750 | IFA_F_NOPREFIXROUTE); |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4751 | ifp->flags |= cfg->ifa_flags; |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4752 | ifp->tstamp = jiffies; |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4753 | ifp->valid_lft = cfg->valid_lft; |
| 4754 | ifp->prefered_lft = cfg->preferred_lft; |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4755 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4756 | if (cfg->rt_priority && cfg->rt_priority != ifp->rt_priority) |
| 4757 | ifp->rt_priority = cfg->rt_priority; |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4758 | |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 4759 | if (new_peer) |
| 4760 | ifp->peer_addr = *cfg->peer_pfx; |
| 4761 | |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4762 | spin_unlock_bh(&ifp->lock); |
| 4763 | if (!(ifp->flags&IFA_F_TENTATIVE)) |
| 4764 | ipv6_ifa_notify(0, ifp); |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4765 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4766 | if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) { |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4767 | int rc = -ENOENT; |
| 4768 | |
| 4769 | if (had_prefixroute) |
Hangbin Liu | 6179401 | 2020-03-03 14:37:34 +0800 | [diff] [blame] | 4770 | rc = modify_prefix_route(ifp, expires, flags, false); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4771 | |
| 4772 | /* prefix route could have been deleted; if so restore it */ |
| 4773 | if (rc == -ENOENT) { |
| 4774 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
| 4775 | ifp->rt_priority, ifp->idev->dev, |
| 4776 | expires, flags, GFP_KERNEL); |
| 4777 | } |
Hangbin Liu | 6179401 | 2020-03-03 14:37:34 +0800 | [diff] [blame] | 4778 | |
| 4779 | if (had_prefixroute && !ipv6_addr_any(&ifp->peer_addr)) |
| 4780 | rc = modify_prefix_route(ifp, expires, flags, true); |
| 4781 | |
| 4782 | if (rc == -ENOENT && !ipv6_addr_any(&ifp->peer_addr)) { |
| 4783 | addrconf_prefix_route(&ifp->peer_addr, ifp->prefix_len, |
| 4784 | ifp->rt_priority, ifp->idev->dev, |
| 4785 | expires, flags, GFP_KERNEL); |
| 4786 | } |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4787 | } else if (had_prefixroute) { |
| 4788 | enum cleanup_prefix_rt_t action; |
| 4789 | unsigned long rt_expires; |
| 4790 | |
| 4791 | write_lock_bh(&ifp->idev->lock); |
| 4792 | action = check_cleanup_prefix_route(ifp, &rt_expires); |
| 4793 | write_unlock_bh(&ifp->idev->lock); |
| 4794 | |
| 4795 | if (action != CLEANUP_PREFIX_RT_NOP) { |
| 4796 | cleanup_prefix_route(ifp, rt_expires, |
Hangbin Liu | d0098e4 | 2020-03-03 14:37:35 +0800 | [diff] [blame] | 4797 | action == CLEANUP_PREFIX_RT_DEL, false); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4798 | } |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 4799 | } |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4800 | |
| 4801 | if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) { |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4802 | if (was_managetempaddr && |
| 4803 | !(ifp->flags & IFA_F_MANAGETEMPADDR)) { |
| 4804 | cfg->valid_lft = 0; |
| 4805 | cfg->preferred_lft = 0; |
| 4806 | } |
| 4807 | manage_tempaddrs(ifp->idev, ifp, cfg->valid_lft, |
| 4808 | cfg->preferred_lft, !was_managetempaddr, |
| 4809 | jiffies); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4810 | } |
| 4811 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4812 | addrconf_verify_rtnl(); |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4813 | |
| 4814 | return 0; |
| 4815 | } |
| 4816 | |
| 4817 | static int |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4818 | inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 4819 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4820 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 4821 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4822 | struct ifaddrmsg *ifm; |
| 4823 | struct nlattr *tb[IFA_MAX+1]; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4824 | struct in6_addr *peer_pfx; |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4825 | struct inet6_ifaddr *ifa; |
| 4826 | struct net_device *dev; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4827 | struct inet6_dev *idev; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4828 | struct ifa6_config cfg; |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4829 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4830 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 4831 | err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX, |
| 4832 | ifa_ipv6_policy, extack); |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4833 | if (err < 0) |
| 4834 | return err; |
| 4835 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4836 | memset(&cfg, 0, sizeof(cfg)); |
| 4837 | |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4838 | ifm = nlmsg_data(nlh); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4839 | cfg.pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx); |
| 4840 | if (!cfg.pfx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4841 | return -EINVAL; |
| 4842 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4843 | cfg.peer_pfx = peer_pfx; |
| 4844 | cfg.plen = ifm->ifa_prefixlen; |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4845 | if (tb[IFA_RT_PRIORITY]) |
| 4846 | cfg.rt_priority = nla_get_u32(tb[IFA_RT_PRIORITY]); |
| 4847 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4848 | cfg.valid_lft = INFINITY_LIFE_TIME; |
| 4849 | cfg.preferred_lft = INFINITY_LIFE_TIME; |
| 4850 | |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4851 | if (tb[IFA_CACHEINFO]) { |
Noriaki TAKAMIYA | 0778769 | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 4852 | struct ifa_cacheinfo *ci; |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4853 | |
| 4854 | ci = nla_data(tb[IFA_CACHEINFO]); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4855 | cfg.valid_lft = ci->ifa_valid; |
| 4856 | cfg.preferred_lft = ci->ifa_prefered; |
Noriaki TAKAMIYA | 0778769 | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 4857 | } |
| 4858 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 4859 | dev = __dev_get_by_index(net, ifm->ifa_index); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4860 | if (!dev) |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4861 | return -ENODEV; |
| 4862 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4863 | if (tb[IFA_FLAGS]) |
| 4864 | cfg.ifa_flags = nla_get_u32(tb[IFA_FLAGS]); |
| 4865 | else |
| 4866 | cfg.ifa_flags = ifm->ifa_flags; |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4867 | |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 4868 | /* We ignore other flags so far. */ |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4869 | cfg.ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | |
| 4870 | IFA_F_MANAGETEMPADDR | IFA_F_NOPREFIXROUTE | |
| 4871 | IFA_F_MCAUTOJOIN | IFA_F_OPTIMISTIC; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4872 | |
| 4873 | idev = ipv6_find_idev(dev); |
Sabrina Dubroca | db0b99f | 2019-08-23 15:44:36 +0200 | [diff] [blame] | 4874 | if (IS_ERR(idev)) |
| 4875 | return PTR_ERR(idev); |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4876 | |
| 4877 | if (!ipv6_allow_optimistic_dad(net, idev)) |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4878 | cfg.ifa_flags &= ~IFA_F_OPTIMISTIC; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4879 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4880 | if (cfg.ifa_flags & IFA_F_NODAD && |
| 4881 | cfg.ifa_flags & IFA_F_OPTIMISTIC) { |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4882 | NL_SET_ERR_MSG(extack, "IFA_F_NODAD and IFA_F_OPTIMISTIC are mutually exclusive"); |
| 4883 | return -EINVAL; |
| 4884 | } |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 4885 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4886 | ifa = ipv6_get_ifaddr(net, cfg.pfx, dev, 1); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4887 | if (!ifa) { |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4888 | /* |
| 4889 | * It would be best to check for !NLM_F_CREATE here but |
stephen hemminger | db9c7c3 | 2014-01-12 11:26:32 -0800 | [diff] [blame] | 4890 | * userspace already relies on not having to provide this. |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4891 | */ |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4892 | return inet6_addr_add(net, ifm->ifa_index, &cfg, extack); |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4893 | } |
| 4894 | |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4895 | if (nlh->nlmsg_flags & NLM_F_EXCL || |
| 4896 | !(nlh->nlmsg_flags & NLM_F_REPLACE)) |
| 4897 | err = -EEXIST; |
| 4898 | else |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4899 | err = inet6_addr_modify(ifa, &cfg); |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4900 | |
| 4901 | in6_ifa_put(ifa); |
| 4902 | |
| 4903 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4904 | } |
| 4905 | |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4906 | static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags, |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4907 | u8 scope, int ifindex) |
| 4908 | { |
| 4909 | struct ifaddrmsg *ifm; |
| 4910 | |
| 4911 | ifm = nlmsg_data(nlh); |
| 4912 | ifm->ifa_family = AF_INET6; |
| 4913 | ifm->ifa_prefixlen = prefixlen; |
| 4914 | ifm->ifa_flags = flags; |
| 4915 | ifm->ifa_scope = scope; |
| 4916 | ifm->ifa_index = ifindex; |
| 4917 | } |
| 4918 | |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4919 | static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp, |
| 4920 | unsigned long tstamp, u32 preferred, u32 valid) |
| 4921 | { |
| 4922 | struct ifa_cacheinfo ci; |
| 4923 | |
Thomas Graf | 18a31e1 | 2010-11-17 04:12:02 +0000 | [diff] [blame] | 4924 | ci.cstamp = cstamp_delta(cstamp); |
| 4925 | ci.tstamp = cstamp_delta(tstamp); |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4926 | ci.ifa_prefered = preferred; |
| 4927 | ci.ifa_valid = valid; |
| 4928 | |
| 4929 | return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci); |
| 4930 | } |
| 4931 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4932 | static inline int rt_scope(int ifa_scope) |
| 4933 | { |
| 4934 | if (ifa_scope & IFA_HOST) |
| 4935 | return RT_SCOPE_HOST; |
| 4936 | else if (ifa_scope & IFA_LINK) |
| 4937 | return RT_SCOPE_LINK; |
| 4938 | else if (ifa_scope & IFA_SITE) |
| 4939 | return RT_SCOPE_SITE; |
| 4940 | else |
| 4941 | return RT_SCOPE_UNIVERSE; |
| 4942 | } |
| 4943 | |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4944 | static inline int inet6_ifaddr_msgsize(void) |
| 4945 | { |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4946 | return NLMSG_ALIGN(sizeof(struct ifaddrmsg)) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4947 | + nla_total_size(16) /* IFA_LOCAL */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4948 | + nla_total_size(16) /* IFA_ADDRESS */ |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4949 | + nla_total_size(sizeof(struct ifa_cacheinfo)) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4950 | + nla_total_size(4) /* IFA_FLAGS */ |
| 4951 | + nla_total_size(4) /* IFA_RT_PRIORITY */; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4952 | } |
YOSHIFUJI Hideaki | c5396a3 | 2006-06-17 22:48:48 -0700 | [diff] [blame] | 4953 | |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 4954 | enum addr_type_t { |
| 4955 | UNICAST_ADDR, |
| 4956 | MULTICAST_ADDR, |
| 4957 | ANYCAST_ADDR, |
| 4958 | }; |
| 4959 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 4960 | struct inet6_fill_args { |
| 4961 | u32 portid; |
| 4962 | u32 seq; |
| 4963 | int event; |
| 4964 | unsigned int flags; |
| 4965 | int netnsid; |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 4966 | int ifindex; |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 4967 | enum addr_type_t type; |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 4968 | }; |
| 4969 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4970 | static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa, |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 4971 | struct inet6_fill_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4972 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4973 | struct nlmsghdr *nlh; |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4974 | u32 preferred, valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4975 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 4976 | nlh = nlmsg_put(skb, args->portid, args->seq, args->event, |
| 4977 | sizeof(struct ifaddrmsg), args->flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4978 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4979 | return -EMSGSIZE; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4980 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4981 | put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope), |
| 4982 | ifa->idev->dev->ifindex); |
| 4983 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 4984 | if (args->netnsid >= 0 && |
| 4985 | nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 4986 | goto error; |
| 4987 | |
Yasushi Asano | fad8da3 | 2013-12-31 12:04:19 +0900 | [diff] [blame] | 4988 | if (!((ifa->flags&IFA_F_PERMANENT) && |
| 4989 | (ifa->prefered_lft == INFINITY_LIFE_TIME))) { |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4990 | preferred = ifa->prefered_lft; |
| 4991 | valid = ifa->valid_lft; |
| 4992 | if (preferred != INFINITY_LIFE_TIME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | long tval = (jiffies - ifa->tstamp)/HZ; |
Jens Rosenboom | a1faa69 | 2009-06-25 04:55:50 +0000 | [diff] [blame] | 4994 | if (preferred > tval) |
| 4995 | preferred -= tval; |
| 4996 | else |
| 4997 | preferred = 0; |
Ben Hutchings | f56619f | 2010-06-26 11:37:47 +0000 | [diff] [blame] | 4998 | if (valid != INFINITY_LIFE_TIME) { |
| 4999 | if (valid > tval) |
| 5000 | valid -= tval; |
| 5001 | else |
| 5002 | valid = 0; |
| 5003 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5004 | } |
| 5005 | } else { |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 5006 | preferred = INFINITY_LIFE_TIME; |
| 5007 | valid = INFINITY_LIFE_TIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5008 | } |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 5009 | |
Cong Wang | 7996c79 | 2013-05-22 05:41:06 +0000 | [diff] [blame] | 5010 | if (!ipv6_addr_any(&ifa->peer_addr)) { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 5011 | if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 || |
| 5012 | nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->peer_addr) < 0) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5013 | goto error; |
| 5014 | } else |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 5015 | if (nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->addr) < 0) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5016 | goto error; |
| 5017 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 5018 | if (ifa->rt_priority && |
| 5019 | nla_put_u32(skb, IFA_RT_PRIORITY, ifa->rt_priority)) |
| 5020 | goto error; |
| 5021 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5022 | if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) |
| 5023 | goto error; |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 5024 | |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 5025 | if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0) |
| 5026 | goto error; |
| 5027 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5028 | nlmsg_end(skb, nlh); |
| 5029 | return 0; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5030 | |
| 5031 | error: |
| 5032 | nlmsg_cancel(skb, nlh); |
| 5033 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5034 | } |
| 5035 | |
| 5036 | static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca, |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5037 | struct inet6_fill_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5038 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | struct nlmsghdr *nlh; |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 5040 | u8 scope = RT_SCOPE_UNIVERSE; |
| 5041 | int ifindex = ifmca->idev->dev->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5042 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 5043 | if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE) |
| 5044 | scope = RT_SCOPE_SITE; |
| 5045 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5046 | nlh = nlmsg_put(skb, args->portid, args->seq, args->event, |
| 5047 | sizeof(struct ifaddrmsg), args->flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5048 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5049 | return -EMSGSIZE; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 5050 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5051 | if (args->netnsid >= 0 && |
Zhang Qilong | ceb736e | 2020-11-12 16:09:50 +0800 | [diff] [blame] | 5052 | nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) { |
| 5053 | nlmsg_cancel(skb, nlh); |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5054 | return -EMSGSIZE; |
Zhang Qilong | ceb736e | 2020-11-12 16:09:50 +0800 | [diff] [blame] | 5055 | } |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5056 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 5057 | put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex); |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 5058 | if (nla_put_in6_addr(skb, IFA_MULTICAST, &ifmca->mca_addr) < 0 || |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 5059 | put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp, |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5060 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) { |
| 5061 | nlmsg_cancel(skb, nlh); |
| 5062 | return -EMSGSIZE; |
| 5063 | } |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 5064 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5065 | nlmsg_end(skb, nlh); |
| 5066 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5067 | } |
| 5068 | |
| 5069 | static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca, |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5070 | struct inet6_fill_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5071 | { |
David Ahern | 9ee8cbb | 2018-04-18 15:39:01 -0700 | [diff] [blame] | 5072 | struct net_device *dev = fib6_info_nh_dev(ifaca->aca_rt); |
| 5073 | int ifindex = dev ? dev->ifindex : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5074 | struct nlmsghdr *nlh; |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 5075 | u8 scope = RT_SCOPE_UNIVERSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5076 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 5077 | if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE) |
| 5078 | scope = RT_SCOPE_SITE; |
| 5079 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5080 | nlh = nlmsg_put(skb, args->portid, args->seq, args->event, |
| 5081 | sizeof(struct ifaddrmsg), args->flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5082 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5083 | return -EMSGSIZE; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 5084 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5085 | if (args->netnsid >= 0 && |
Zhang Qilong | ceb736e | 2020-11-12 16:09:50 +0800 | [diff] [blame] | 5086 | nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) { |
| 5087 | nlmsg_cancel(skb, nlh); |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5088 | return -EMSGSIZE; |
Zhang Qilong | ceb736e | 2020-11-12 16:09:50 +0800 | [diff] [blame] | 5089 | } |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5090 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 5091 | put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex); |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 5092 | if (nla_put_in6_addr(skb, IFA_ANYCAST, &ifaca->aca_addr) < 0 || |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 5093 | put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp, |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5094 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) { |
| 5095 | nlmsg_cancel(skb, nlh); |
| 5096 | return -EMSGSIZE; |
| 5097 | } |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 5098 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5099 | nlmsg_end(skb, nlh); |
| 5100 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5101 | } |
| 5102 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5103 | /* called with rcu_read_lock() */ |
| 5104 | static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb, |
David Ahern | fe884c2 | 2018-10-19 12:45:28 -0700 | [diff] [blame] | 5105 | struct netlink_callback *cb, int s_ip_idx, |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5106 | struct inet6_fill_args *fillargs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5107 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5108 | struct ifmcaddr6 *ifmca; |
| 5109 | struct ifacaddr6 *ifaca; |
David Ahern | fe884c2 | 2018-10-19 12:45:28 -0700 | [diff] [blame] | 5110 | int ip_idx = 0; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5111 | int err = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5112 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5113 | read_lock_bh(&idev->lock); |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5114 | switch (fillargs->type) { |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 5115 | case UNICAST_ADDR: { |
| 5116 | struct inet6_ifaddr *ifa; |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5117 | fillargs->event = RTM_NEWADDR; |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 5118 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5119 | /* unicast address incl. temp addr */ |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 5120 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
David Ahern | 4ba4c56 | 2018-10-19 10:00:19 -0700 | [diff] [blame] | 5121 | if (ip_idx < s_ip_idx) |
| 5122 | goto next; |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5123 | err = inet6_fill_ifaddr(skb, ifa, fillargs); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5124 | if (err < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5125 | break; |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 5126 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
David Ahern | 4ba4c56 | 2018-10-19 10:00:19 -0700 | [diff] [blame] | 5127 | next: |
| 5128 | ip_idx++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5129 | } |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5130 | break; |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 5131 | } |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5132 | case MULTICAST_ADDR: |
Taehee Yoo | 88e2ca3 | 2021-03-25 16:16:55 +0000 | [diff] [blame] | 5133 | read_unlock_bh(&idev->lock); |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5134 | fillargs->event = RTM_GETMULTICAST; |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5135 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5136 | /* multicast address */ |
Taehee Yoo | 88e2ca3 | 2021-03-25 16:16:55 +0000 | [diff] [blame] | 5137 | for (ifmca = rcu_dereference(idev->mc_list); |
| 5138 | ifmca; |
| 5139 | ifmca = rcu_dereference(ifmca->next), ip_idx++) { |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5140 | if (ip_idx < s_ip_idx) |
| 5141 | continue; |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5142 | err = inet6_fill_ifmcaddr(skb, ifmca, fillargs); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5143 | if (err < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5144 | break; |
| 5145 | } |
Taehee Yoo | 88e2ca3 | 2021-03-25 16:16:55 +0000 | [diff] [blame] | 5146 | read_lock_bh(&idev->lock); |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5147 | break; |
| 5148 | case ANYCAST_ADDR: |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5149 | fillargs->event = RTM_GETANYCAST; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5150 | /* anycast address */ |
| 5151 | for (ifaca = idev->ac_list; ifaca; |
| 5152 | ifaca = ifaca->aca_next, ip_idx++) { |
| 5153 | if (ip_idx < s_ip_idx) |
| 5154 | continue; |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5155 | err = inet6_fill_ifacaddr(skb, ifaca, fillargs); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5156 | if (err < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5157 | break; |
| 5158 | } |
| 5159 | break; |
| 5160 | default: |
| 5161 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5162 | } |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5163 | read_unlock_bh(&idev->lock); |
David Ahern | fe884c2 | 2018-10-19 12:45:28 -0700 | [diff] [blame] | 5164 | cb->args[2] = ip_idx; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5165 | return err; |
| 5166 | } |
| 5167 | |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5168 | static int inet6_valid_dump_ifaddr_req(const struct nlmsghdr *nlh, |
| 5169 | struct inet6_fill_args *fillargs, |
| 5170 | struct net **tgt_net, struct sock *sk, |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5171 | struct netlink_callback *cb) |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5172 | { |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5173 | struct netlink_ext_ack *extack = cb->extack; |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5174 | struct nlattr *tb[IFA_MAX+1]; |
| 5175 | struct ifaddrmsg *ifm; |
| 5176 | int err, i; |
| 5177 | |
| 5178 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) { |
| 5179 | NL_SET_ERR_MSG_MOD(extack, "Invalid header for address dump request"); |
| 5180 | return -EINVAL; |
| 5181 | } |
| 5182 | |
| 5183 | ifm = nlmsg_data(nlh); |
| 5184 | if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) { |
| 5185 | NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for address dump request"); |
| 5186 | return -EINVAL; |
| 5187 | } |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5188 | |
| 5189 | fillargs->ifindex = ifm->ifa_index; |
| 5190 | if (fillargs->ifindex) { |
| 5191 | cb->answer_flags |= NLM_F_DUMP_FILTERED; |
| 5192 | fillargs->flags |= NLM_F_DUMP_FILTERED; |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5193 | } |
| 5194 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 5195 | err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX, |
| 5196 | ifa_ipv6_policy, extack); |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5197 | if (err < 0) |
| 5198 | return err; |
| 5199 | |
| 5200 | for (i = 0; i <= IFA_MAX; ++i) { |
| 5201 | if (!tb[i]) |
| 5202 | continue; |
| 5203 | |
| 5204 | if (i == IFA_TARGET_NETNSID) { |
| 5205 | struct net *net; |
| 5206 | |
| 5207 | fillargs->netnsid = nla_get_s32(tb[i]); |
| 5208 | net = rtnl_get_net_ns_capable(sk, fillargs->netnsid); |
| 5209 | if (IS_ERR(net)) { |
Bjørn Mork | bf4cc40 | 2018-10-25 21:18:25 +0200 | [diff] [blame] | 5210 | fillargs->netnsid = -1; |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5211 | NL_SET_ERR_MSG_MOD(extack, "Invalid target network namespace id"); |
| 5212 | return PTR_ERR(net); |
| 5213 | } |
| 5214 | *tgt_net = net; |
| 5215 | } else { |
| 5216 | NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in dump request"); |
| 5217 | return -EINVAL; |
| 5218 | } |
| 5219 | } |
| 5220 | |
| 5221 | return 0; |
| 5222 | } |
| 5223 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5224 | static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb, |
| 5225 | enum addr_type_t type) |
| 5226 | { |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5227 | const struct nlmsghdr *nlh = cb->nlh; |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5228 | struct inet6_fill_args fillargs = { |
| 5229 | .portid = NETLINK_CB(cb->skb).portid, |
| 5230 | .seq = cb->nlh->nlmsg_seq, |
| 5231 | .flags = NLM_F_MULTI, |
| 5232 | .netnsid = -1, |
| 5233 | .type = type, |
| 5234 | }; |
Rocco Yue | 87117ba | 2021-07-15 22:26:43 +0800 | [diff] [blame] | 5235 | struct net *tgt_net = sock_net(skb->sk); |
David Ahern | fe884c2 | 2018-10-19 12:45:28 -0700 | [diff] [blame] | 5236 | int idx, s_idx, s_ip_idx; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5237 | int h, s_h; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5238 | struct net_device *dev; |
| 5239 | struct inet6_dev *idev; |
| 5240 | struct hlist_head *head; |
David Ahern | 242afaa | 2018-10-24 12:59:00 -0700 | [diff] [blame] | 5241 | int err = 0; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5242 | |
| 5243 | s_h = cb->args[0]; |
| 5244 | s_idx = idx = cb->args[1]; |
David Ahern | fe884c2 | 2018-10-19 12:45:28 -0700 | [diff] [blame] | 5245 | s_ip_idx = cb->args[2]; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5246 | |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5247 | if (cb->strict_check) { |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5248 | err = inet6_valid_dump_ifaddr_req(nlh, &fillargs, &tgt_net, |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5249 | skb->sk, cb); |
David Ahern | ed6eff1 | 2018-10-07 20:16:29 -0700 | [diff] [blame] | 5250 | if (err < 0) |
David Ahern | 242afaa | 2018-10-24 12:59:00 -0700 | [diff] [blame] | 5251 | goto put_tgt_net; |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5252 | |
David Ahern | 242afaa | 2018-10-24 12:59:00 -0700 | [diff] [blame] | 5253 | err = 0; |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5254 | if (fillargs.ifindex) { |
| 5255 | dev = __dev_get_by_index(tgt_net, fillargs.ifindex); |
David Ahern | 242afaa | 2018-10-24 12:59:00 -0700 | [diff] [blame] | 5256 | if (!dev) { |
| 5257 | err = -ENODEV; |
| 5258 | goto put_tgt_net; |
| 5259 | } |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5260 | idev = __in6_dev_get(dev); |
| 5261 | if (idev) { |
| 5262 | err = in6_dump_addrs(idev, skb, cb, s_ip_idx, |
| 5263 | &fillargs); |
Jakub Kicinski | 1518039 | 2019-01-22 14:47:19 -0800 | [diff] [blame] | 5264 | if (err > 0) |
| 5265 | err = 0; |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5266 | } |
| 5267 | goto put_tgt_net; |
| 5268 | } |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5269 | } |
| 5270 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5271 | rcu_read_lock(); |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5272 | cb->seq = atomic_read(&tgt_net->ipv6.dev_addr_genid) ^ tgt_net->dev_base_seq; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5273 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 5274 | idx = 0; |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5275 | head = &tgt_net->dev_index_head[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5276 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5277 | if (idx < s_idx) |
| 5278 | goto cont; |
Patrick McHardy | 4b97efd | 2010-03-26 20:27:49 -0700 | [diff] [blame] | 5279 | if (h > s_h || idx > s_idx) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5280 | s_ip_idx = 0; |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5281 | idev = __in6_dev_get(dev); |
| 5282 | if (!idev) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5283 | goto cont; |
| 5284 | |
David Ahern | fe884c2 | 2018-10-19 12:45:28 -0700 | [diff] [blame] | 5285 | if (in6_dump_addrs(idev, skb, cb, s_ip_idx, |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5286 | &fillargs) < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5287 | goto done; |
| 5288 | cont: |
| 5289 | idx++; |
| 5290 | } |
| 5291 | } |
| 5292 | done: |
| 5293 | rcu_read_unlock(); |
| 5294 | cb->args[0] = h; |
| 5295 | cb->args[1] = idx; |
David Ahern | 6371a71 | 2018-10-19 12:45:30 -0700 | [diff] [blame] | 5296 | put_tgt_net: |
David Ahern | 6ba1e6e | 2018-10-07 20:16:26 -0700 | [diff] [blame] | 5297 | if (fillargs.netnsid >= 0) |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5298 | put_net(tgt_net); |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5299 | |
Arthur Gautier | 7c1e8a3 | 2018-12-31 02:10:58 +0000 | [diff] [blame] | 5300 | return skb->len ? : err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5301 | } |
| 5302 | |
| 5303 | static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb) |
| 5304 | { |
| 5305 | enum addr_type_t type = UNICAST_ADDR; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 5306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5307 | return inet6_dump_addr(skb, cb, type); |
| 5308 | } |
| 5309 | |
| 5310 | static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb) |
| 5311 | { |
| 5312 | enum addr_type_t type = MULTICAST_ADDR; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 5313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5314 | return inet6_dump_addr(skb, cb, type); |
| 5315 | } |
| 5316 | |
| 5317 | |
| 5318 | static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb) |
| 5319 | { |
| 5320 | enum addr_type_t type = ANYCAST_ADDR; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 5321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5322 | return inet6_dump_addr(skb, cb, type); |
| 5323 | } |
| 5324 | |
Jakub Kicinski | 4b1373d | 2019-01-18 10:46:21 -0800 | [diff] [blame] | 5325 | static int inet6_rtm_valid_getaddr_req(struct sk_buff *skb, |
| 5326 | const struct nlmsghdr *nlh, |
| 5327 | struct nlattr **tb, |
| 5328 | struct netlink_ext_ack *extack) |
| 5329 | { |
| 5330 | struct ifaddrmsg *ifm; |
| 5331 | int i, err; |
| 5332 | |
| 5333 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) { |
| 5334 | NL_SET_ERR_MSG_MOD(extack, "Invalid header for get address request"); |
| 5335 | return -EINVAL; |
| 5336 | } |
| 5337 | |
Hangbin Liu | 2beb6d2 | 2019-12-11 22:20:16 +0800 | [diff] [blame] | 5338 | if (!netlink_strict_get_check(skb)) |
| 5339 | return nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX, |
| 5340 | ifa_ipv6_policy, extack); |
| 5341 | |
Jakub Kicinski | 4b1373d | 2019-01-18 10:46:21 -0800 | [diff] [blame] | 5342 | ifm = nlmsg_data(nlh); |
| 5343 | if (ifm->ifa_prefixlen || ifm->ifa_flags || ifm->ifa_scope) { |
| 5344 | NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get address request"); |
| 5345 | return -EINVAL; |
| 5346 | } |
| 5347 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 5348 | err = nlmsg_parse_deprecated_strict(nlh, sizeof(*ifm), tb, IFA_MAX, |
| 5349 | ifa_ipv6_policy, extack); |
Jakub Kicinski | 4b1373d | 2019-01-18 10:46:21 -0800 | [diff] [blame] | 5350 | if (err) |
| 5351 | return err; |
| 5352 | |
| 5353 | for (i = 0; i <= IFA_MAX; i++) { |
| 5354 | if (!tb[i]) |
| 5355 | continue; |
| 5356 | |
| 5357 | switch (i) { |
| 5358 | case IFA_TARGET_NETNSID: |
| 5359 | case IFA_ADDRESS: |
| 5360 | case IFA_LOCAL: |
| 5361 | break; |
| 5362 | default: |
| 5363 | NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get address request"); |
| 5364 | return -EINVAL; |
| 5365 | } |
| 5366 | } |
| 5367 | |
| 5368 | return 0; |
| 5369 | } |
| 5370 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 5371 | static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh, |
| 5372 | struct netlink_ext_ack *extack) |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5373 | { |
Rocco Yue | 87117ba | 2021-07-15 22:26:43 +0800 | [diff] [blame] | 5374 | struct net *tgt_net = sock_net(in_skb->sk); |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5375 | struct inet6_fill_args fillargs = { |
| 5376 | .portid = NETLINK_CB(in_skb).portid, |
| 5377 | .seq = nlh->nlmsg_seq, |
| 5378 | .event = RTM_NEWADDR, |
| 5379 | .flags = 0, |
| 5380 | .netnsid = -1, |
| 5381 | }; |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5382 | struct ifaddrmsg *ifm; |
| 5383 | struct nlattr *tb[IFA_MAX+1]; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5384 | struct in6_addr *addr = NULL, *peer; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5385 | struct net_device *dev = NULL; |
| 5386 | struct inet6_ifaddr *ifa; |
| 5387 | struct sk_buff *skb; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5388 | int err; |
| 5389 | |
Jakub Kicinski | 4b1373d | 2019-01-18 10:46:21 -0800 | [diff] [blame] | 5390 | err = inet6_rtm_valid_getaddr_req(in_skb, nlh, tb, extack); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5391 | if (err < 0) |
Florian Westphal | c24675f | 2017-10-11 10:28:01 +0200 | [diff] [blame] | 5392 | return err; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5393 | |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5394 | if (tb[IFA_TARGET_NETNSID]) { |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5395 | fillargs.netnsid = nla_get_s32(tb[IFA_TARGET_NETNSID]); |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5396 | |
| 5397 | tgt_net = rtnl_get_net_ns_capable(NETLINK_CB(in_skb).sk, |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5398 | fillargs.netnsid); |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5399 | if (IS_ERR(tgt_net)) |
| 5400 | return PTR_ERR(tgt_net); |
| 5401 | } |
| 5402 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5403 | addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer); |
Florian Westphal | c24675f | 2017-10-11 10:28:01 +0200 | [diff] [blame] | 5404 | if (!addr) |
| 5405 | return -EINVAL; |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5406 | |
| 5407 | ifm = nlmsg_data(nlh); |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5408 | if (ifm->ifa_index) |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5409 | dev = dev_get_by_index(tgt_net, ifm->ifa_index); |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5410 | |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5411 | ifa = ipv6_get_ifaddr(tgt_net, addr, dev, 1); |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5412 | if (!ifa) { |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5413 | err = -EADDRNOTAVAIL; |
| 5414 | goto errout; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5415 | } |
| 5416 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5417 | skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL); |
| 5418 | if (!skb) { |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5419 | err = -ENOBUFS; |
| 5420 | goto errout_ifa; |
| 5421 | } |
| 5422 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5423 | err = inet6_fill_ifaddr(skb, ifa, &fillargs); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5424 | if (err < 0) { |
| 5425 | /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */ |
| 5426 | WARN_ON(err == -EMSGSIZE); |
| 5427 | kfree_skb(skb); |
| 5428 | goto errout_ifa; |
| 5429 | } |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5430 | err = rtnl_unicast(skb, tgt_net, NETLINK_CB(in_skb).portid); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5431 | errout_ifa: |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5432 | in6_ifa_put(ifa); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5433 | errout: |
Yajun Deng | 1160dfa | 2021-08-05 19:55:27 +0800 | [diff] [blame] | 5434 | dev_put(dev); |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5435 | if (fillargs.netnsid >= 0) |
Christian Brauner | 6ecf4c3 | 2018-09-04 21:53:50 +0200 | [diff] [blame] | 5436 | put_net(tgt_net); |
| 5437 | |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5438 | return err; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5439 | } |
| 5440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5441 | static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa) |
| 5442 | { |
| 5443 | struct sk_buff *skb; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 5444 | struct net *net = dev_net(ifa->idev->dev); |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5445 | struct inet6_fill_args fillargs = { |
| 5446 | .portid = 0, |
| 5447 | .seq = 0, |
| 5448 | .event = event, |
| 5449 | .flags = 0, |
| 5450 | .netnsid = -1, |
| 5451 | }; |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 5452 | int err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5453 | |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 5454 | skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5455 | if (!skb) |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 5456 | goto errout; |
| 5457 | |
Christian Brauner | 203651b | 2018-09-04 21:53:55 +0200 | [diff] [blame] | 5458 | err = inet6_fill_ifaddr(skb, ifa, &fillargs); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5459 | if (err < 0) { |
| 5460 | /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */ |
| 5461 | WARN_ON(err == -EMSGSIZE); |
| 5462 | kfree_skb(skb); |
| 5463 | goto errout; |
| 5464 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 5465 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC); |
| 5466 | return; |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 5467 | errout: |
| 5468 | if (err < 0) |
Benjamin Thery | 6fda735 | 2008-03-05 10:47:47 -0800 | [diff] [blame] | 5469 | rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5470 | } |
| 5471 | |
Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 5472 | static inline void ipv6_store_devconf(struct ipv6_devconf *cnf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5473 | __s32 *array, int bytes) |
| 5474 | { |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5475 | BUG_ON(bytes < (DEVCONF_MAX * 4)); |
| 5476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5477 | memset(array, 0, bytes); |
| 5478 | array[DEVCONF_FORWARDING] = cnf->forwarding; |
| 5479 | array[DEVCONF_HOPLIMIT] = cnf->hop_limit; |
| 5480 | array[DEVCONF_MTU6] = cnf->mtu6; |
| 5481 | array[DEVCONF_ACCEPT_RA] = cnf->accept_ra; |
| 5482 | array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects; |
| 5483 | array[DEVCONF_AUTOCONF] = cnf->autoconf; |
| 5484 | array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits; |
| 5485 | array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits; |
Thomas Graf | 93908d1 | 2010-11-17 01:44:24 +0000 | [diff] [blame] | 5486 | array[DEVCONF_RTR_SOLICIT_INTERVAL] = |
| 5487 | jiffies_to_msecs(cnf->rtr_solicit_interval); |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5488 | array[DEVCONF_RTR_SOLICIT_MAX_INTERVAL] = |
| 5489 | jiffies_to_msecs(cnf->rtr_solicit_max_interval); |
Thomas Graf | 93908d1 | 2010-11-17 01:44:24 +0000 | [diff] [blame] | 5490 | array[DEVCONF_RTR_SOLICIT_DELAY] = |
| 5491 | jiffies_to_msecs(cnf->rtr_solicit_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5492 | array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version; |
Hannes Frederic Sowa | fc4eba5 | 2013-08-14 01:03:46 +0200 | [diff] [blame] | 5493 | array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] = |
| 5494 | jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval); |
| 5495 | array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] = |
| 5496 | jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5497 | array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr; |
| 5498 | array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft; |
| 5499 | array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft; |
| 5500 | array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry; |
| 5501 | array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5502 | array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses; |
YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 5503 | array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr; |
Praveen Chaudhary | 6b2e04b | 2021-01-25 13:44:30 -0800 | [diff] [blame] | 5504 | array[DEVCONF_RA_DEFRTR_METRIC] = cnf->ra_defrtr_metric; |
Hangbin Liu | 8013d1d | 2015-07-30 14:28:42 +0800 | [diff] [blame] | 5505 | array[DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT] = cnf->accept_ra_min_hop_limit; |
YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 5506 | array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo; |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 5507 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 5508 | array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref; |
Thomas Graf | 93908d1 | 2010-11-17 01:44:24 +0000 | [diff] [blame] | 5509 | array[DEVCONF_RTR_PROBE_INTERVAL] = |
| 5510 | jiffies_to_msecs(cnf->rtr_probe_interval); |
Neil Horman | fa03ef3 | 2007-01-30 14:30:10 -0800 | [diff] [blame] | 5511 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 5512 | array[DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN] = cnf->accept_ra_rt_info_min_plen; |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 5513 | array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen; |
| 5514 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 5515 | #endif |
YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 5516 | array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp; |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 5517 | array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 5518 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 5519 | array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 5520 | array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 5521 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 5522 | #ifdef CONFIG_IPV6_MROUTE |
| 5523 | array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding; |
| 5524 | #endif |
YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 5525 | array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6; |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 5526 | array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad; |
Cosmin Ratiu | c3faca0 | 2009-10-09 03:11:14 +0000 | [diff] [blame] | 5527 | array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao; |
Hannes Frederic Sowa | 5cb0443 | 2012-11-06 16:46:20 +0000 | [diff] [blame] | 5528 | array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify; |
Hannes Frederic Sowa | b800c3b | 2013-08-27 01:36:51 +0200 | [diff] [blame] | 5529 | array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc; |
Ben Greear | d933319 | 2014-06-25 14:44:53 -0700 | [diff] [blame] | 5530 | array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local; |
Harout Hedeshian | c2943f1 | 2015-01-20 10:06:05 -0700 | [diff] [blame] | 5531 | array[DEVCONF_ACCEPT_RA_MTU] = cnf->accept_ra_mtu; |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 5532 | array[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN] = cnf->ignore_routes_with_linkdown; |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 5533 | /* we omit DEVCONF_STABLE_SECRET for now */ |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 5534 | array[DEVCONF_USE_OIF_ADDRS_ONLY] = cnf->use_oif_addrs_only; |
Johannes Berg | abbc304 | 2016-02-04 13:31:19 +0100 | [diff] [blame] | 5535 | array[DEVCONF_DROP_UNICAST_IN_L2_MULTICAST] = cnf->drop_unicast_in_l2_multicast; |
Johannes Berg | 7a02bf8 | 2016-02-04 13:31:20 +0100 | [diff] [blame] | 5536 | array[DEVCONF_DROP_UNSOLICITED_NA] = cnf->drop_unsolicited_na; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 5537 | array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down; |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 5538 | array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled; |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 5539 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 5540 | array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac; |
| 5541 | #endif |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 5542 | array[DEVCONF_ENHANCED_DAD] = cnf->enhanced_dad; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5543 | array[DEVCONF_ADDR_GEN_MODE] = cnf->addr_gen_mode; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 5544 | array[DEVCONF_DISABLE_POLICY] = cnf->disable_policy; |
Maciej Żenczykowski | 2210d6b | 2017-11-07 21:52:09 -0800 | [diff] [blame] | 5545 | array[DEVCONF_NDISC_TCLASS] = cnf->ndisc_tclass; |
Alexander Aring | 8610c7c | 2020-03-27 18:00:20 -0400 | [diff] [blame] | 5546 | array[DEVCONF_RPL_SEG_ENABLED] = cnf->rpl_seg_enabled; |
Justin Iurman | 9ee11f0 | 2021-07-20 21:42:57 +0200 | [diff] [blame] | 5547 | array[DEVCONF_IOAM6_ENABLED] = cnf->ioam6_enabled; |
| 5548 | array[DEVCONF_IOAM6_ID] = cnf->ioam6_id; |
| 5549 | array[DEVCONF_IOAM6_ID_WIDE] = cnf->ioam6_id_wide; |
James Prestwood | 18ac597 | 2021-11-01 10:36:29 -0700 | [diff] [blame] | 5550 | array[DEVCONF_NDISC_EVICT_NOCARRIER] = cnf->ndisc_evict_nocarrier; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5551 | } |
| 5552 | |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5553 | static inline size_t inet6_ifla6_size(void) |
| 5554 | { |
| 5555 | return nla_total_size(4) /* IFLA_INET6_FLAGS */ |
| 5556 | + nla_total_size(sizeof(struct ifla_cacheinfo)) |
| 5557 | + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */ |
| 5558 | + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */ |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5559 | + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */ |
Sabrina Dubroca | bdd72f4 | 2018-07-09 12:25:16 +0200 | [diff] [blame] | 5560 | + nla_total_size(sizeof(struct in6_addr)) /* IFLA_INET6_TOKEN */ |
| 5561 | + nla_total_size(1) /* IFLA_INET6_ADDR_GEN_MODE */ |
Rocco Yue | 49b99da | 2021-08-27 23:04:12 +0800 | [diff] [blame] | 5562 | + nla_total_size(4) /* IFLA_INET6_RA_MTU */ |
Sabrina Dubroca | bdd72f4 | 2018-07-09 12:25:16 +0200 | [diff] [blame] | 5563 | + 0; |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5564 | } |
| 5565 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5566 | static inline size_t inet6_if_nlmsg_size(void) |
| 5567 | { |
| 5568 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
| 5569 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
| 5570 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 5571 | + nla_total_size(4) /* IFLA_MTU */ |
| 5572 | + nla_total_size(4) /* IFLA_LINK */ |
Andy Gospodarek | 0344338 | 2015-08-13 15:26:35 -0400 | [diff] [blame] | 5573 | + nla_total_size(1) /* IFLA_OPERSTATE */ |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5574 | + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5575 | } |
YOSHIFUJI Hideaki | c5396a3 | 2006-06-17 22:48:48 -0700 | [diff] [blame] | 5576 | |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 5577 | static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib, |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5578 | int bytes) |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5579 | { |
| 5580 | int i; |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5581 | int pad = bytes - sizeof(u64) * ICMP6_MIB_MAX; |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5582 | BUG_ON(pad < 0); |
| 5583 | |
| 5584 | /* Use put_unaligned() because stats may not be aligned for u64. */ |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5585 | put_unaligned(ICMP6_MIB_MAX, &stats[0]); |
| 5586 | for (i = 1; i < ICMP6_MIB_MAX; i++) |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 5587 | put_unaligned(atomic_long_read(&mib[i]), &stats[i]); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5588 | |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5589 | memset(&stats[ICMP6_MIB_MAX], 0, pad); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5590 | } |
| 5591 | |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 5592 | static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib, |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5593 | int bytes, size_t syncpoff) |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5594 | { |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5595 | int i, c; |
| 5596 | u64 buff[IPSTATS_MIB_MAX]; |
| 5597 | int pad = bytes - sizeof(u64) * IPSTATS_MIB_MAX; |
| 5598 | |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5599 | BUG_ON(pad < 0); |
| 5600 | |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5601 | memset(buff, 0, sizeof(buff)); |
| 5602 | buff[0] = IPSTATS_MIB_MAX; |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5603 | |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5604 | for_each_possible_cpu(c) { |
| 5605 | for (i = 1; i < IPSTATS_MIB_MAX; i++) |
| 5606 | buff[i] += snmp_get_cpu_field64(mib, c, i, syncpoff); |
| 5607 | } |
| 5608 | |
| 5609 | memcpy(stats, buff, IPSTATS_MIB_MAX * sizeof(u64)); |
| 5610 | memset(&stats[IPSTATS_MIB_MAX], 0, pad); |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5611 | } |
| 5612 | |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5613 | static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype, |
| 5614 | int bytes) |
| 5615 | { |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5616 | switch (attrtype) { |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5617 | case IFLA_INET6_STATS: |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5618 | __snmp6_fill_stats64(stats, idev->stats.ipv6, bytes, |
| 5619 | offsetof(struct ipstats_mib, syncp)); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5620 | break; |
| 5621 | case IFLA_INET6_ICMP6STATS: |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5622 | __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, bytes); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5623 | break; |
| 5624 | } |
| 5625 | } |
| 5626 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5627 | static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev, |
| 5628 | u32 ext_filter_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5629 | { |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5630 | struct nlattr *nla; |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5631 | struct ifla_cacheinfo ci; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5632 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5633 | if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags)) |
| 5634 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5635 | ci.max_reasm_len = IPV6_MAXPLEN; |
David S. Miller | 2491242 | 2010-11-19 13:13:47 -0800 | [diff] [blame] | 5636 | ci.tstamp = cstamp_delta(idev->tstamp); |
| 5637 | ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time); |
Jiri Pirko | 1f9248e | 2013-12-07 19:26:53 +0100 | [diff] [blame] | 5638 | ci.retrans_time = jiffies_to_msecs(NEIGH_VAR(idev->nd_parms, RETRANS_TIME)); |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5639 | if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci)) |
| 5640 | goto nla_put_failure; |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5641 | nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5642 | if (!nla) |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5643 | goto nla_put_failure; |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5644 | ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5645 | |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5646 | /* XXX - MC not implemented */ |
| 5647 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5648 | if (ext_filter_mask & RTEXT_FILTER_SKIP_STATS) |
| 5649 | return 0; |
| 5650 | |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5651 | nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5652 | if (!nla) |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5653 | goto nla_put_failure; |
| 5654 | snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla)); |
| 5655 | |
| 5656 | nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5657 | if (!nla) |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5658 | goto nla_put_failure; |
| 5659 | snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5660 | |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5661 | nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5662 | if (!nla) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5663 | goto nla_put_failure; |
| 5664 | read_lock_bh(&idev->lock); |
| 5665 | memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla)); |
| 5666 | read_unlock_bh(&idev->lock); |
| 5667 | |
Nicolas Dichtel | 0d7982c | 2019-09-30 14:02:16 +0200 | [diff] [blame] | 5668 | if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->cnf.addr_gen_mode)) |
| 5669 | goto nla_put_failure; |
| 5670 | |
Rocco Yue | 49b99da | 2021-08-27 23:04:12 +0800 | [diff] [blame] | 5671 | if (idev->ra_mtu && |
| 5672 | nla_put_u32(skb, IFLA_INET6_RA_MTU, idev->ra_mtu)) |
| 5673 | goto nla_put_failure; |
| 5674 | |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5675 | return 0; |
| 5676 | |
| 5677 | nla_put_failure: |
| 5678 | return -EMSGSIZE; |
| 5679 | } |
| 5680 | |
Arad, Ronen | b1974ed | 2015-10-19 09:23:28 -0700 | [diff] [blame] | 5681 | static size_t inet6_get_link_af_size(const struct net_device *dev, |
| 5682 | u32 ext_filter_mask) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5683 | { |
| 5684 | if (!__in6_dev_get(dev)) |
| 5685 | return 0; |
| 5686 | |
| 5687 | return inet6_ifla6_size(); |
| 5688 | } |
| 5689 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5690 | static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev, |
| 5691 | u32 ext_filter_mask) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5692 | { |
| 5693 | struct inet6_dev *idev = __in6_dev_get(dev); |
| 5694 | |
| 5695 | if (!idev) |
| 5696 | return -ENODATA; |
| 5697 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5698 | if (inet6_fill_ifla6_attrs(skb, idev, ext_filter_mask) < 0) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5699 | return -EMSGSIZE; |
| 5700 | |
| 5701 | return 0; |
| 5702 | } |
| 5703 | |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5704 | static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token, |
| 5705 | struct netlink_ext_ack *extack) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5706 | { |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5707 | struct inet6_ifaddr *ifp; |
| 5708 | struct net_device *dev = idev->dev; |
Daniel Borkmann | 47e27d5 | 2016-04-08 15:55:00 +0200 | [diff] [blame] | 5709 | bool clear_token, update_rs = false; |
Hannes Frederic Sowa | dc84829 | 2013-06-24 21:42:40 +0200 | [diff] [blame] | 5710 | struct in6_addr ll_addr; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5711 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 5712 | ASSERT_RTNL(); |
| 5713 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5714 | if (!token) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5715 | return -EINVAL; |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5716 | |
| 5717 | if (dev->flags & IFF_LOOPBACK) { |
| 5718 | NL_SET_ERR_MSG_MOD(extack, "Device is loopback"); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5719 | return -EINVAL; |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5720 | } |
| 5721 | |
| 5722 | if (dev->flags & IFF_NOARP) { |
| 5723 | NL_SET_ERR_MSG_MOD(extack, |
| 5724 | "Device does not do neighbour discovery"); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5725 | return -EINVAL; |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5726 | } |
| 5727 | |
| 5728 | if (!ipv6_accept_ra(idev)) { |
| 5729 | NL_SET_ERR_MSG_MOD(extack, |
| 5730 | "Router advertisement is disabled on device"); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5731 | return -EINVAL; |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5732 | } |
| 5733 | |
| 5734 | if (idev->cnf.rtr_solicits == 0) { |
| 5735 | NL_SET_ERR_MSG(extack, |
| 5736 | "Router solicitation is disabled on device"); |
| 5737 | return -EINVAL; |
| 5738 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5739 | |
| 5740 | write_lock_bh(&idev->lock); |
| 5741 | |
| 5742 | BUILD_BUG_ON(sizeof(token->s6_addr) != 16); |
| 5743 | memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8); |
| 5744 | |
| 5745 | write_unlock_bh(&idev->lock); |
| 5746 | |
Daniel Borkmann | 47e27d5 | 2016-04-08 15:55:00 +0200 | [diff] [blame] | 5747 | clear_token = ipv6_addr_any(token); |
| 5748 | if (clear_token) |
| 5749 | goto update_lft; |
| 5750 | |
Hannes Frederic Sowa | dc84829 | 2013-06-24 21:42:40 +0200 | [diff] [blame] | 5751 | if (!idev->dead && (idev->if_flags & IF_READY) && |
| 5752 | !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE | |
| 5753 | IFA_F_OPTIMISTIC)) { |
Daniel Borkmann | fc40383 | 2013-04-09 03:47:15 +0000 | [diff] [blame] | 5754 | /* If we're not ready, then normal ifup will take care |
| 5755 | * of this. Otherwise, we need to request our rs here. |
| 5756 | */ |
| 5757 | ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters); |
| 5758 | update_rs = true; |
| 5759 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5760 | |
Daniel Borkmann | 47e27d5 | 2016-04-08 15:55:00 +0200 | [diff] [blame] | 5761 | update_lft: |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5762 | write_lock_bh(&idev->lock); |
Daniel Borkmann | fc40383 | 2013-04-09 03:47:15 +0000 | [diff] [blame] | 5763 | |
Hannes Frederic Sowa | 77ecaac | 2013-06-26 03:41:49 +0200 | [diff] [blame] | 5764 | if (update_rs) { |
Daniel Borkmann | fc40383 | 2013-04-09 03:47:15 +0000 | [diff] [blame] | 5765 | idev->if_flags |= IF_RS_SENT; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5766 | idev->rs_interval = rfc3315_s14_backoff_init( |
| 5767 | idev->cnf.rtr_solicit_interval); |
Hannes Frederic Sowa | 77ecaac | 2013-06-26 03:41:49 +0200 | [diff] [blame] | 5768 | idev->rs_probes = 1; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5769 | addrconf_mod_rs_timer(idev, idev->rs_interval); |
Hannes Frederic Sowa | 77ecaac | 2013-06-26 03:41:49 +0200 | [diff] [blame] | 5770 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5771 | |
| 5772 | /* Well, that's kinda nasty ... */ |
| 5773 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
| 5774 | spin_lock(&ifp->lock); |
Daniel Borkmann | 617fe29 | 2013-04-09 03:47:16 +0000 | [diff] [blame] | 5775 | if (ifp->tokenized) { |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5776 | ifp->valid_lft = 0; |
| 5777 | ifp->prefered_lft = 0; |
| 5778 | } |
| 5779 | spin_unlock(&ifp->lock); |
| 5780 | } |
| 5781 | |
| 5782 | write_unlock_bh(&idev->lock); |
Lubomir Rintel | b2ed64a | 2014-10-27 17:39:16 +0100 | [diff] [blame] | 5783 | inet6_ifinfo_notify(RTM_NEWLINK, idev); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 5784 | addrconf_verify_rtnl(); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5785 | return 0; |
| 5786 | } |
| 5787 | |
Daniel Borkmann | 11b1f82 | 2015-02-05 14:39:11 +0100 | [diff] [blame] | 5788 | static const struct nla_policy inet6_af_policy[IFLA_INET6_MAX + 1] = { |
| 5789 | [IFLA_INET6_ADDR_GEN_MODE] = { .type = NLA_U8 }, |
| 5790 | [IFLA_INET6_TOKEN] = { .len = sizeof(struct in6_addr) }, |
Rocco Yue | 49b99da | 2021-08-27 23:04:12 +0800 | [diff] [blame] | 5791 | [IFLA_INET6_RA_MTU] = { .type = NLA_REJECT, |
| 5792 | .reject_message = |
| 5793 | "IFLA_INET6_RA_MTU can not be set" }, |
Daniel Borkmann | 11b1f82 | 2015-02-05 14:39:11 +0100 | [diff] [blame] | 5794 | }; |
| 5795 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5796 | static int check_addr_gen_mode(int mode) |
| 5797 | { |
| 5798 | if (mode != IN6_ADDR_GEN_MODE_EUI64 && |
| 5799 | mode != IN6_ADDR_GEN_MODE_NONE && |
| 5800 | mode != IN6_ADDR_GEN_MODE_STABLE_PRIVACY && |
| 5801 | mode != IN6_ADDR_GEN_MODE_RANDOM) |
| 5802 | return -EINVAL; |
| 5803 | return 1; |
| 5804 | } |
| 5805 | |
| 5806 | static int check_stable_privacy(struct inet6_dev *idev, struct net *net, |
| 5807 | int mode) |
| 5808 | { |
| 5809 | if (mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY && |
| 5810 | !idev->cnf.stable_secret.initialized && |
| 5811 | !net->ipv6.devconf_dflt->stable_secret.initialized) |
| 5812 | return -EINVAL; |
| 5813 | return 1; |
| 5814 | } |
| 5815 | |
Maxim Mikityanskiy | 7dc2bcc | 2019-05-21 06:40:04 +0000 | [diff] [blame] | 5816 | static int inet6_validate_link_af(const struct net_device *dev, |
Rocco Yue | 8679c31 | 2021-08-03 20:02:50 +0800 | [diff] [blame] | 5817 | const struct nlattr *nla, |
| 5818 | struct netlink_ext_ack *extack) |
Maxim Mikityanskiy | 7dc2bcc | 2019-05-21 06:40:04 +0000 | [diff] [blame] | 5819 | { |
| 5820 | struct nlattr *tb[IFLA_INET6_MAX + 1]; |
| 5821 | struct inet6_dev *idev = NULL; |
| 5822 | int err; |
| 5823 | |
| 5824 | if (dev) { |
| 5825 | idev = __in6_dev_get(dev); |
| 5826 | if (!idev) |
| 5827 | return -EAFNOSUPPORT; |
| 5828 | } |
| 5829 | |
| 5830 | err = nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla, |
Rocco Yue | 8679c31 | 2021-08-03 20:02:50 +0800 | [diff] [blame] | 5831 | inet6_af_policy, extack); |
Maxim Mikityanskiy | 7dc2bcc | 2019-05-21 06:40:04 +0000 | [diff] [blame] | 5832 | if (err) |
| 5833 | return err; |
| 5834 | |
| 5835 | if (!tb[IFLA_INET6_TOKEN] && !tb[IFLA_INET6_ADDR_GEN_MODE]) |
| 5836 | return -EINVAL; |
| 5837 | |
| 5838 | if (tb[IFLA_INET6_ADDR_GEN_MODE]) { |
| 5839 | u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]); |
| 5840 | |
| 5841 | if (check_addr_gen_mode(mode) < 0) |
| 5842 | return -EINVAL; |
| 5843 | if (dev && check_stable_privacy(idev, dev_net(dev), mode) < 0) |
| 5844 | return -EINVAL; |
| 5845 | } |
| 5846 | |
| 5847 | return 0; |
| 5848 | } |
| 5849 | |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5850 | static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla, |
| 5851 | struct netlink_ext_ack *extack) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5852 | { |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5853 | struct inet6_dev *idev = __in6_dev_get(dev); |
| 5854 | struct nlattr *tb[IFLA_INET6_MAX + 1]; |
Maxim Mikityanskiy | 7dc2bcc | 2019-05-21 06:40:04 +0000 | [diff] [blame] | 5855 | int err; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5856 | |
Eric Dumazet | db3fa27 | 2020-02-07 07:16:37 -0800 | [diff] [blame] | 5857 | if (!idev) |
| 5858 | return -EAFNOSUPPORT; |
| 5859 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 5860 | if (nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0) |
Zheng Yongjun | 5ac6b19 | 2021-06-08 09:53:15 +0800 | [diff] [blame] | 5861 | return -EINVAL; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5862 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5863 | if (tb[IFLA_INET6_TOKEN]) { |
Stephen Hemminger | 3583a4e | 2021-04-07 08:59:12 -0700 | [diff] [blame] | 5864 | err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]), |
| 5865 | extack); |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5866 | if (err) |
| 5867 | return err; |
| 5868 | } |
| 5869 | |
| 5870 | if (tb[IFLA_INET6_ADDR_GEN_MODE]) { |
| 5871 | u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]); |
| 5872 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5873 | idev->cnf.addr_gen_mode = mode; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5874 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5875 | |
Maxim Mikityanskiy | 7dc2bcc | 2019-05-21 06:40:04 +0000 | [diff] [blame] | 5876 | return 0; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5877 | } |
| 5878 | |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5879 | static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5880 | u32 portid, u32 seq, int event, unsigned int flags) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5881 | { |
| 5882 | struct net_device *dev = idev->dev; |
| 5883 | struct ifinfomsg *hdr; |
| 5884 | struct nlmsghdr *nlh; |
| 5885 | void *protoinfo; |
| 5886 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5887 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5888 | if (!nlh) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5889 | return -EMSGSIZE; |
| 5890 | |
| 5891 | hdr = nlmsg_data(nlh); |
| 5892 | hdr->ifi_family = AF_INET6; |
| 5893 | hdr->__ifi_pad = 0; |
| 5894 | hdr->ifi_type = dev->type; |
| 5895 | hdr->ifi_index = dev->ifindex; |
| 5896 | hdr->ifi_flags = dev_get_flags(dev); |
| 5897 | hdr->ifi_change = 0; |
| 5898 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5899 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 5900 | (dev->addr_len && |
| 5901 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || |
| 5902 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
Nicolas Dichtel | a54acb3 | 2015-04-02 17:07:00 +0200 | [diff] [blame] | 5903 | (dev->ifindex != dev_get_iflink(dev) && |
Andy Gospodarek | 0344338 | 2015-08-13 15:26:35 -0400 | [diff] [blame] | 5904 | nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) || |
| 5905 | nla_put_u8(skb, IFLA_OPERSTATE, |
| 5906 | netif_running(dev) ? dev->operstate : IF_OPER_DOWN)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5907 | goto nla_put_failure; |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 5908 | protoinfo = nla_nest_start_noflag(skb, IFLA_PROTINFO); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5909 | if (!protoinfo) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5910 | goto nla_put_failure; |
| 5911 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5912 | if (inet6_fill_ifla6_attrs(skb, idev, 0) < 0) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5913 | goto nla_put_failure; |
| 5914 | |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5915 | nla_nest_end(skb, protoinfo); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5916 | nlmsg_end(skb, nlh); |
| 5917 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5918 | |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5919 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5920 | nlmsg_cancel(skb, nlh); |
| 5921 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5922 | } |
| 5923 | |
David Ahern | 786e000 | 2018-10-07 20:16:33 -0700 | [diff] [blame] | 5924 | static int inet6_valid_dump_ifinfo(const struct nlmsghdr *nlh, |
| 5925 | struct netlink_ext_ack *extack) |
| 5926 | { |
| 5927 | struct ifinfomsg *ifm; |
| 5928 | |
| 5929 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ifm))) { |
| 5930 | NL_SET_ERR_MSG_MOD(extack, "Invalid header for link dump request"); |
| 5931 | return -EINVAL; |
| 5932 | } |
| 5933 | |
| 5934 | if (nlmsg_attrlen(nlh, sizeof(*ifm))) { |
| 5935 | NL_SET_ERR_MSG_MOD(extack, "Invalid data after header"); |
| 5936 | return -EINVAL; |
| 5937 | } |
| 5938 | |
| 5939 | ifm = nlmsg_data(nlh); |
| 5940 | if (ifm->__ifi_pad || ifm->ifi_type || ifm->ifi_flags || |
| 5941 | ifm->ifi_change || ifm->ifi_index) { |
| 5942 | NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for dump request"); |
| 5943 | return -EINVAL; |
| 5944 | } |
| 5945 | |
| 5946 | return 0; |
| 5947 | } |
| 5948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5949 | static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) |
| 5950 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 5951 | struct net *net = sock_net(skb->sk); |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5952 | int h, s_h; |
David S. Miller | 434a8a5 | 2009-11-11 18:53:00 -0800 | [diff] [blame] | 5953 | int idx = 0, s_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5954 | struct net_device *dev; |
| 5955 | struct inet6_dev *idev; |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5956 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5957 | |
David Ahern | 786e000 | 2018-10-07 20:16:33 -0700 | [diff] [blame] | 5958 | /* only requests using strict checking can pass data to |
| 5959 | * influence the dump |
| 5960 | */ |
| 5961 | if (cb->strict_check) { |
| 5962 | int err = inet6_valid_dump_ifinfo(cb->nlh, cb->extack); |
| 5963 | |
| 5964 | if (err < 0) |
| 5965 | return err; |
| 5966 | } |
| 5967 | |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5968 | s_h = cb->args[0]; |
| 5969 | s_idx = cb->args[1]; |
| 5970 | |
| 5971 | rcu_read_lock(); |
| 5972 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 5973 | idx = 0; |
| 5974 | head = &net->dev_index_head[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5975 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5976 | if (idx < s_idx) |
| 5977 | goto cont; |
| 5978 | idev = __in6_dev_get(dev); |
| 5979 | if (!idev) |
| 5980 | goto cont; |
| 5981 | if (inet6_fill_ifinfo(skb, idev, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5982 | NETLINK_CB(cb->skb).portid, |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5983 | cb->nlh->nlmsg_seq, |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5984 | RTM_NEWLINK, NLM_F_MULTI) < 0) |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5985 | goto out; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 5986 | cont: |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5987 | idx++; |
| 5988 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5989 | } |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5990 | out: |
| 5991 | rcu_read_unlock(); |
| 5992 | cb->args[1] = idx; |
| 5993 | cb->args[0] = h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5994 | |
| 5995 | return skb->len; |
| 5996 | } |
| 5997 | |
| 5998 | void inet6_ifinfo_notify(int event, struct inet6_dev *idev) |
| 5999 | { |
| 6000 | struct sk_buff *skb; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 6001 | struct net *net = dev_net(idev->dev); |
Thomas Graf | 8d7a76c | 2006-08-15 00:35:47 -0700 | [diff] [blame] | 6002 | int err = -ENOBUFS; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6003 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 6004 | skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 6005 | if (!skb) |
Thomas Graf | 8d7a76c | 2006-08-15 00:35:47 -0700 | [diff] [blame] | 6006 | goto errout; |
| 6007 | |
| 6008 | err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 6009 | if (err < 0) { |
| 6010 | /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */ |
| 6011 | WARN_ON(err == -EMSGSIZE); |
| 6012 | kfree_skb(skb); |
| 6013 | goto errout; |
| 6014 | } |
Nicolas Dichtel | 5f75a10 | 2010-12-07 23:38:31 +0000 | [diff] [blame] | 6015 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC); |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 6016 | return; |
Thomas Graf | 8d7a76c | 2006-08-15 00:35:47 -0700 | [diff] [blame] | 6017 | errout: |
| 6018 | if (err < 0) |
Nicolas Dichtel | 5f75a10 | 2010-12-07 23:38:31 +0000 | [diff] [blame] | 6019 | rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6020 | } |
| 6021 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 6022 | static inline size_t inet6_prefix_nlmsg_size(void) |
| 6023 | { |
| 6024 | return NLMSG_ALIGN(sizeof(struct prefixmsg)) |
| 6025 | + nla_total_size(sizeof(struct in6_addr)) |
| 6026 | + nla_total_size(sizeof(struct prefix_cacheinfo)); |
| 6027 | } |
YOSHIFUJI Hideaki | c5396a3 | 2006-06-17 22:48:48 -0700 | [diff] [blame] | 6028 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6029 | static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 6030 | struct prefix_info *pinfo, u32 portid, u32 seq, |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 6031 | int event, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6032 | { |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 6033 | struct prefixmsg *pmsg; |
| 6034 | struct nlmsghdr *nlh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6035 | struct prefix_cacheinfo ci; |
| 6036 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 6037 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 6038 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 6039 | return -EMSGSIZE; |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 6040 | |
| 6041 | pmsg = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6042 | pmsg->prefix_family = AF_INET6; |
Patrick McHardy | 8a47077 | 2005-06-28 12:56:45 -0700 | [diff] [blame] | 6043 | pmsg->prefix_pad1 = 0; |
| 6044 | pmsg->prefix_pad2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6045 | pmsg->prefix_ifindex = idev->dev->ifindex; |
| 6046 | pmsg->prefix_len = pinfo->prefix_len; |
| 6047 | pmsg->prefix_type = pinfo->type; |
Patrick McHardy | 8a47077 | 2005-06-28 12:56:45 -0700 | [diff] [blame] | 6048 | pmsg->prefix_pad3 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6049 | pmsg->prefix_flags = 0; |
| 6050 | if (pinfo->onlink) |
| 6051 | pmsg->prefix_flags |= IF_PREFIX_ONLINK; |
| 6052 | if (pinfo->autoconf) |
| 6053 | pmsg->prefix_flags |= IF_PREFIX_AUTOCONF; |
| 6054 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 6055 | if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix)) |
| 6056 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6057 | ci.preferred_time = ntohl(pinfo->prefered); |
| 6058 | ci.valid_time = ntohl(pinfo->valid); |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 6059 | if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci)) |
| 6060 | goto nla_put_failure; |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 6061 | nlmsg_end(skb, nlh); |
| 6062 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6063 | |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 6064 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 6065 | nlmsg_cancel(skb, nlh); |
| 6066 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6067 | } |
| 6068 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6069 | static void inet6_prefix_notify(int event, struct inet6_dev *idev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6070 | struct prefix_info *pinfo) |
| 6071 | { |
| 6072 | struct sk_buff *skb; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 6073 | struct net *net = dev_net(idev->dev); |
Thomas Graf | 8c384bfa | 2006-08-15 00:36:07 -0700 | [diff] [blame] | 6074 | int err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6075 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 6076 | skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 6077 | if (!skb) |
Thomas Graf | 8c384bfa | 2006-08-15 00:36:07 -0700 | [diff] [blame] | 6078 | goto errout; |
| 6079 | |
| 6080 | err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 6081 | if (err < 0) { |
| 6082 | /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */ |
| 6083 | WARN_ON(err == -EMSGSIZE); |
| 6084 | kfree_skb(skb); |
| 6085 | goto errout; |
| 6086 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 6087 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC); |
| 6088 | return; |
Thomas Graf | 8c384bfa | 2006-08-15 00:36:07 -0700 | [diff] [blame] | 6089 | errout: |
| 6090 | if (err < 0) |
Benjamin Thery | 6fda735 | 2008-03-05 10:47:47 -0800 | [diff] [blame] | 6091 | rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6092 | } |
| 6093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6094 | static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) |
| 6095 | { |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 6096 | struct net *net = dev_net(ifp->idev->dev); |
| 6097 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 6098 | if (event) |
| 6099 | ASSERT_RTNL(); |
| 6100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6101 | inet6_ifa_notify(event ? : RTM_NEWADDR, ifp); |
| 6102 | |
| 6103 | switch (event) { |
| 6104 | case RTM_NEWADDR: |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 6105 | /* |
David Ahern | 2d819d25 | 2019-10-04 08:03:09 -0700 | [diff] [blame] | 6106 | * If the address was optimistic we inserted the route at the |
| 6107 | * start of our DAD process, so we don't need to do it again. |
| 6108 | * If the device was taken down in the middle of the DAD |
| 6109 | * cycle there is a race where we could get here without a |
| 6110 | * host route, so nothing to insert. That will be fixed when |
| 6111 | * the device is brought up. |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 6112 | */ |
David Ahern | 2d819d25 | 2019-10-04 08:03:09 -0700 | [diff] [blame] | 6113 | if (ifp->rt && !rcu_access_pointer(ifp->rt->fib6_node)) { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 6114 | ip6_ins_rt(net, ifp->rt); |
David Ahern | 2d819d25 | 2019-10-04 08:03:09 -0700 | [diff] [blame] | 6115 | } else if (!ifp->rt && (ifp->idev->dev->flags & IFF_UP)) { |
| 6116 | pr_warn("BUG: Address %pI6c on device %s is missing its host route.\n", |
| 6117 | &ifp->addr, ifp->idev->dev->name); |
| 6118 | } |
| 6119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6120 | if (ifp->idev->cnf.forwarding) |
| 6121 | addrconf_join_anycast(ifp); |
Cong Wang | 7996c79 | 2013-05-22 05:41:06 +0000 | [diff] [blame] | 6122 | if (!ipv6_addr_any(&ifp->peer_addr)) |
Hangbin Liu | 07758eb | 2020-02-29 17:27:13 +0800 | [diff] [blame] | 6123 | addrconf_prefix_route(&ifp->peer_addr, 128, |
| 6124 | ifp->rt_priority, ifp->idev->dev, |
| 6125 | 0, 0, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6126 | break; |
| 6127 | case RTM_DELADDR: |
| 6128 | if (ifp->idev->cnf.forwarding) |
| 6129 | addrconf_leave_anycast(ifp); |
| 6130 | addrconf_leave_solict(ifp->idev, &ifp->addr); |
Cong Wang | 7996c79 | 2013-05-22 05:41:06 +0000 | [diff] [blame] | 6131 | if (!ipv6_addr_any(&ifp->peer_addr)) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 6132 | struct fib6_info *rt; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 6133 | |
Nicolas Dichtel | e7478df | 2014-09-03 23:59:22 +0200 | [diff] [blame] | 6134 | rt = addrconf_get_prefix_route(&ifp->peer_addr, 128, |
David Ahern | 2b2450c | 2019-03-27 20:53:52 -0700 | [diff] [blame] | 6135 | ifp->idev->dev, 0, 0, |
| 6136 | false); |
Martin KaFai Lau | 8e3d5be | 2015-09-15 14:30:08 -0700 | [diff] [blame] | 6137 | if (rt) |
Roopa Prabhu | 11dd74b | 2020-04-27 13:56:45 -0700 | [diff] [blame] | 6138 | ip6_del_rt(net, rt, false); |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 6139 | } |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 6140 | if (ifp->rt) { |
Roopa Prabhu | 11dd74b | 2020-04-27 13:56:45 -0700 | [diff] [blame] | 6141 | ip6_del_rt(net, ifp->rt, false); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 6142 | ifp->rt = NULL; |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 6143 | } |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 6144 | rt_genid_bump_ipv6(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6145 | break; |
| 6146 | } |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 6147 | atomic_inc(&net->ipv6.dev_addr_genid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6148 | } |
| 6149 | |
| 6150 | static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) |
| 6151 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6152 | if (likely(ifp->idev->dead == 0)) |
| 6153 | __ipv6_ifa_notify(event, ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6154 | } |
| 6155 | |
| 6156 | #ifdef CONFIG_SYSCTL |
| 6157 | |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6158 | static int addrconf_sysctl_forward(struct ctl_table *ctl, int write, |
| 6159 | void *buffer, size_t *lenp, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6160 | { |
| 6161 | int *valp = ctl->data; |
| 6162 | int val = *valp; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 6163 | loff_t pos = *ppos; |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 6164 | struct ctl_table lctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6165 | int ret; |
| 6166 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6167 | /* |
| 6168 | * ctl->data points to idev->cnf.forwarding, we should |
| 6169 | * not modify it until we get the rtnl lock. |
| 6170 | */ |
| 6171 | lctl = *ctl; |
| 6172 | lctl.data = &val; |
| 6173 | |
| 6174 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6175 | |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 6176 | if (write) |
Stephen Hemminger | b325fdd | 2009-02-26 06:55:31 +0000 | [diff] [blame] | 6177 | ret = addrconf_fixup_forwarding(ctl, valp, val); |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 6178 | if (ret) |
| 6179 | *ppos = pos; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6180 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6181 | } |
| 6182 | |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6183 | static int addrconf_sysctl_mtu(struct ctl_table *ctl, int write, |
| 6184 | void *buffer, size_t *lenp, loff_t *ppos) |
Marcelo Leitner | 7775142 | 2015-02-23 11:17:13 -0300 | [diff] [blame] | 6185 | { |
| 6186 | struct inet6_dev *idev = ctl->extra1; |
| 6187 | int min_mtu = IPV6_MIN_MTU; |
| 6188 | struct ctl_table lctl; |
| 6189 | |
| 6190 | lctl = *ctl; |
| 6191 | lctl.extra1 = &min_mtu; |
| 6192 | lctl.extra2 = idev ? &idev->dev->mtu : NULL; |
| 6193 | |
| 6194 | return proc_dointvec_minmax(&lctl, write, buffer, lenp, ppos); |
| 6195 | } |
| 6196 | |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6197 | static void dev_disable_change(struct inet6_dev *idev) |
| 6198 | { |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 6199 | struct netdev_notifier_info info; |
| 6200 | |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6201 | if (!idev || !idev->dev) |
| 6202 | return; |
| 6203 | |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 6204 | netdev_notifier_info_init(&info, idev->dev); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6205 | if (idev->cnf.disable_ipv6) |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 6206 | addrconf_notify(NULL, NETDEV_DOWN, &info); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6207 | else |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 6208 | addrconf_notify(NULL, NETDEV_UP, &info); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6209 | } |
| 6210 | |
| 6211 | static void addrconf_disable_change(struct net *net, __s32 newf) |
| 6212 | { |
| 6213 | struct net_device *dev; |
| 6214 | struct inet6_dev *idev; |
| 6215 | |
Kefeng Wang | 03e4def | 2017-01-19 16:26:21 +0800 | [diff] [blame] | 6216 | for_each_netdev(net, dev) { |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6217 | idev = __in6_dev_get(dev); |
| 6218 | if (idev) { |
| 6219 | int changed = (!idev->cnf.disable_ipv6) ^ (!newf); |
| 6220 | idev->cnf.disable_ipv6 = newf; |
| 6221 | if (changed) |
| 6222 | dev_disable_change(idev); |
| 6223 | } |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6224 | } |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6225 | } |
| 6226 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6227 | static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf) |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6228 | { |
| 6229 | struct net *net; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6230 | int old; |
| 6231 | |
| 6232 | if (!rtnl_trylock()) |
| 6233 | return restart_syscall(); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6234 | |
| 6235 | net = (struct net *)table->extra2; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6236 | old = *p; |
| 6237 | *p = newf; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6238 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6239 | if (p == &net->ipv6.devconf_dflt->disable_ipv6) { |
| 6240 | rtnl_unlock(); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6241 | return 0; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 6242 | } |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6243 | |
| 6244 | if (p == &net->ipv6.devconf_all->disable_ipv6) { |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6245 | net->ipv6.devconf_dflt->disable_ipv6 = newf; |
| 6246 | addrconf_disable_change(net, newf); |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6247 | } else if ((!newf) ^ (!old)) |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6248 | dev_disable_change((struct inet6_dev *)table->extra1); |
| 6249 | |
| 6250 | rtnl_unlock(); |
| 6251 | return 0; |
| 6252 | } |
| 6253 | |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6254 | static int addrconf_sysctl_disable(struct ctl_table *ctl, int write, |
| 6255 | void *buffer, size_t *lenp, loff_t *ppos) |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6256 | { |
| 6257 | int *valp = ctl->data; |
| 6258 | int val = *valp; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 6259 | loff_t pos = *ppos; |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 6260 | struct ctl_table lctl; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6261 | int ret; |
| 6262 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 6263 | /* |
| 6264 | * ctl->data points to idev->cnf.disable_ipv6, we should |
| 6265 | * not modify it until we get the rtnl lock. |
| 6266 | */ |
| 6267 | lctl = *ctl; |
| 6268 | lctl.data = &val; |
| 6269 | |
| 6270 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6271 | |
| 6272 | if (write) |
| 6273 | ret = addrconf_disable_ipv6(ctl, valp, val); |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 6274 | if (ret) |
| 6275 | *ppos = pos; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 6276 | return ret; |
| 6277 | } |
| 6278 | |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6279 | static int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write, |
| 6280 | void *buffer, size_t *lenp, loff_t *ppos) |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 6281 | { |
| 6282 | int *valp = ctl->data; |
| 6283 | int ret; |
| 6284 | int old, new; |
| 6285 | |
| 6286 | old = *valp; |
| 6287 | ret = proc_dointvec(ctl, write, buffer, lenp, ppos); |
| 6288 | new = *valp; |
| 6289 | |
| 6290 | if (write && old != new) { |
| 6291 | struct net *net = ctl->extra2; |
| 6292 | |
| 6293 | if (!rtnl_trylock()) |
| 6294 | return restart_syscall(); |
| 6295 | |
| 6296 | if (valp == &net->ipv6.devconf_dflt->proxy_ndp) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 6297 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 6298 | NETCONFA_PROXY_NEIGH, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 6299 | NETCONFA_IFINDEX_DEFAULT, |
| 6300 | net->ipv6.devconf_dflt); |
| 6301 | else if (valp == &net->ipv6.devconf_all->proxy_ndp) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 6302 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 6303 | NETCONFA_PROXY_NEIGH, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 6304 | NETCONFA_IFINDEX_ALL, |
| 6305 | net->ipv6.devconf_all); |
| 6306 | else { |
| 6307 | struct inet6_dev *idev = ctl->extra1; |
| 6308 | |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 6309 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 6310 | NETCONFA_PROXY_NEIGH, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 6311 | idev->dev->ifindex, |
| 6312 | &idev->cnf); |
| 6313 | } |
| 6314 | rtnl_unlock(); |
| 6315 | } |
| 6316 | |
| 6317 | return ret; |
| 6318 | } |
| 6319 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6320 | static int addrconf_sysctl_addr_gen_mode(struct ctl_table *ctl, int write, |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6321 | void *buffer, size_t *lenp, |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6322 | loff_t *ppos) |
| 6323 | { |
| 6324 | int ret = 0; |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame] | 6325 | u32 new_val; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6326 | struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1; |
| 6327 | struct net *net = (struct net *)ctl->extra2; |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame] | 6328 | struct ctl_table tmp = { |
| 6329 | .data = &new_val, |
| 6330 | .maxlen = sizeof(new_val), |
| 6331 | .mode = ctl->mode, |
| 6332 | }; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6333 | |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 6334 | if (!rtnl_trylock()) |
| 6335 | return restart_syscall(); |
| 6336 | |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame] | 6337 | new_val = *((u32 *)ctl->data); |
| 6338 | |
| 6339 | ret = proc_douintvec(&tmp, write, buffer, lenp, ppos); |
| 6340 | if (ret != 0) |
| 6341 | goto out; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6342 | |
| 6343 | if (write) { |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 6344 | if (check_addr_gen_mode(new_val) < 0) { |
| 6345 | ret = -EINVAL; |
| 6346 | goto out; |
| 6347 | } |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6348 | |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame] | 6349 | if (idev) { |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 6350 | if (check_stable_privacy(idev, net, new_val) < 0) { |
| 6351 | ret = -EINVAL; |
| 6352 | goto out; |
| 6353 | } |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6354 | |
| 6355 | if (idev->cnf.addr_gen_mode != new_val) { |
| 6356 | idev->cnf.addr_gen_mode = new_val; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6357 | addrconf_dev_config(idev->dev); |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6358 | } |
Sabrina Dubroca | f24c598 | 2018-07-09 12:25:17 +0200 | [diff] [blame] | 6359 | } else if (&net->ipv6.devconf_all->addr_gen_mode == ctl->data) { |
| 6360 | struct net_device *dev; |
| 6361 | |
| 6362 | net->ipv6.devconf_dflt->addr_gen_mode = new_val; |
| 6363 | for_each_netdev(net, dev) { |
| 6364 | idev = __in6_dev_get(dev); |
| 6365 | if (idev && |
| 6366 | idev->cnf.addr_gen_mode != new_val) { |
| 6367 | idev->cnf.addr_gen_mode = new_val; |
| 6368 | addrconf_dev_config(idev->dev); |
| 6369 | } |
| 6370 | } |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6371 | } |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame] | 6372 | |
| 6373 | *((u32 *)ctl->data) = new_val; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6374 | } |
| 6375 | |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 6376 | out: |
| 6377 | rtnl_unlock(); |
| 6378 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6379 | return ret; |
| 6380 | } |
| 6381 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6382 | static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write, |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6383 | void *buffer, size_t *lenp, |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6384 | loff_t *ppos) |
| 6385 | { |
| 6386 | int err; |
| 6387 | struct in6_addr addr; |
| 6388 | char str[IPV6_MAX_STRLEN]; |
| 6389 | struct ctl_table lctl = *ctl; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 6390 | struct net *net = ctl->extra2; |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6391 | struct ipv6_stable_secret *secret = ctl->data; |
| 6392 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 6393 | if (&net->ipv6.devconf_all->stable_secret == ctl->data) |
| 6394 | return -EIO; |
| 6395 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6396 | lctl.maxlen = IPV6_MAX_STRLEN; |
| 6397 | lctl.data = str; |
| 6398 | |
| 6399 | if (!rtnl_trylock()) |
| 6400 | return restart_syscall(); |
| 6401 | |
| 6402 | if (!write && !secret->initialized) { |
| 6403 | err = -EIO; |
| 6404 | goto out; |
| 6405 | } |
| 6406 | |
WANG Cong | 5449a5c | 2015-12-21 10:55:45 -0800 | [diff] [blame] | 6407 | err = snprintf(str, sizeof(str), "%pI6", &secret->secret); |
| 6408 | if (err >= sizeof(str)) { |
| 6409 | err = -EIO; |
| 6410 | goto out; |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6411 | } |
| 6412 | |
| 6413 | err = proc_dostring(&lctl, write, buffer, lenp, ppos); |
| 6414 | if (err || !write) |
| 6415 | goto out; |
| 6416 | |
| 6417 | if (in6_pton(str, -1, addr.in6_u.u6_addr8, -1, NULL) != 1) { |
| 6418 | err = -EIO; |
| 6419 | goto out; |
| 6420 | } |
| 6421 | |
| 6422 | secret->initialized = true; |
| 6423 | secret->secret = addr; |
| 6424 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 6425 | if (&net->ipv6.devconf_dflt->stable_secret == ctl->data) { |
| 6426 | struct net_device *dev; |
| 6427 | |
| 6428 | for_each_netdev(net, dev) { |
| 6429 | struct inet6_dev *idev = __in6_dev_get(dev); |
| 6430 | |
| 6431 | if (idev) { |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6432 | idev->cnf.addr_gen_mode = |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 6433 | IN6_ADDR_GEN_MODE_STABLE_PRIVACY; |
| 6434 | } |
| 6435 | } |
| 6436 | } else { |
| 6437 | struct inet6_dev *idev = ctl->extra1; |
| 6438 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6439 | idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 6440 | } |
| 6441 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6442 | out: |
| 6443 | rtnl_unlock(); |
| 6444 | |
| 6445 | return err; |
| 6446 | } |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 6447 | |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 6448 | static |
| 6449 | int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl, |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6450 | int write, void *buffer, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 6451 | size_t *lenp, |
| 6452 | loff_t *ppos) |
| 6453 | { |
| 6454 | int *valp = ctl->data; |
| 6455 | int val = *valp; |
| 6456 | loff_t pos = *ppos; |
| 6457 | struct ctl_table lctl; |
| 6458 | int ret; |
| 6459 | |
| 6460 | /* ctl->data points to idev->cnf.ignore_routes_when_linkdown |
| 6461 | * we should not modify it until we get the rtnl lock. |
| 6462 | */ |
| 6463 | lctl = *ctl; |
| 6464 | lctl.data = &val; |
| 6465 | |
| 6466 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
| 6467 | |
| 6468 | if (write) |
| 6469 | ret = addrconf_fixup_linkdown(ctl, valp, val); |
| 6470 | if (ret) |
| 6471 | *ppos = pos; |
| 6472 | return ret; |
| 6473 | } |
| 6474 | |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6475 | static |
| 6476 | void addrconf_set_nopolicy(struct rt6_info *rt, int action) |
| 6477 | { |
| 6478 | if (rt) { |
| 6479 | if (action) |
| 6480 | rt->dst.flags |= DST_NOPOLICY; |
| 6481 | else |
| 6482 | rt->dst.flags &= ~DST_NOPOLICY; |
| 6483 | } |
| 6484 | } |
| 6485 | |
| 6486 | static |
| 6487 | void addrconf_disable_policy_idev(struct inet6_dev *idev, int val) |
| 6488 | { |
| 6489 | struct inet6_ifaddr *ifa; |
| 6490 | |
| 6491 | read_lock_bh(&idev->lock); |
| 6492 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
| 6493 | spin_lock(&ifa->lock); |
| 6494 | if (ifa->rt) { |
David Ahern | f88d8ea | 2019-06-03 20:19:52 -0700 | [diff] [blame] | 6495 | /* host routes only use builtin fib6_nh */ |
David Ahern | 1cf844c | 2019-05-22 20:27:59 -0700 | [diff] [blame] | 6496 | struct fib6_nh *nh = ifa->rt->fib6_nh; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6497 | int cpu; |
| 6498 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 6499 | rcu_read_lock(); |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 6500 | ifa->rt->dst_nopolicy = val ? true : false; |
David Ahern | f40b6ae | 2019-05-22 20:27:55 -0700 | [diff] [blame] | 6501 | if (nh->rt6i_pcpu) { |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6502 | for_each_possible_cpu(cpu) { |
| 6503 | struct rt6_info **rtp; |
| 6504 | |
David Ahern | f40b6ae | 2019-05-22 20:27:55 -0700 | [diff] [blame] | 6505 | rtp = per_cpu_ptr(nh->rt6i_pcpu, cpu); |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6506 | addrconf_set_nopolicy(*rtp, val); |
| 6507 | } |
| 6508 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 6509 | rcu_read_unlock(); |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6510 | } |
| 6511 | spin_unlock(&ifa->lock); |
| 6512 | } |
| 6513 | read_unlock_bh(&idev->lock); |
| 6514 | } |
| 6515 | |
| 6516 | static |
| 6517 | int addrconf_disable_policy(struct ctl_table *ctl, int *valp, int val) |
| 6518 | { |
| 6519 | struct inet6_dev *idev; |
| 6520 | struct net *net; |
| 6521 | |
| 6522 | if (!rtnl_trylock()) |
| 6523 | return restart_syscall(); |
| 6524 | |
| 6525 | *valp = val; |
| 6526 | |
| 6527 | net = (struct net *)ctl->extra2; |
| 6528 | if (valp == &net->ipv6.devconf_dflt->disable_policy) { |
| 6529 | rtnl_unlock(); |
| 6530 | return 0; |
| 6531 | } |
| 6532 | |
| 6533 | if (valp == &net->ipv6.devconf_all->disable_policy) { |
| 6534 | struct net_device *dev; |
| 6535 | |
| 6536 | for_each_netdev(net, dev) { |
| 6537 | idev = __in6_dev_get(dev); |
| 6538 | if (idev) |
| 6539 | addrconf_disable_policy_idev(idev, val); |
| 6540 | } |
| 6541 | } else { |
| 6542 | idev = (struct inet6_dev *)ctl->extra1; |
| 6543 | addrconf_disable_policy_idev(idev, val); |
| 6544 | } |
| 6545 | |
| 6546 | rtnl_unlock(); |
| 6547 | return 0; |
| 6548 | } |
| 6549 | |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 6550 | static int addrconf_sysctl_disable_policy(struct ctl_table *ctl, int write, |
| 6551 | void *buffer, size_t *lenp, loff_t *ppos) |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6552 | { |
| 6553 | int *valp = ctl->data; |
| 6554 | int val = *valp; |
| 6555 | loff_t pos = *ppos; |
| 6556 | struct ctl_table lctl; |
| 6557 | int ret; |
| 6558 | |
| 6559 | lctl = *ctl; |
| 6560 | lctl.data = &val; |
| 6561 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
| 6562 | |
| 6563 | if (write && (*valp != val)) |
| 6564 | ret = addrconf_disable_policy(ctl, valp, val); |
| 6565 | |
| 6566 | if (ret) |
| 6567 | *ppos = pos; |
| 6568 | |
| 6569 | return ret; |
| 6570 | } |
| 6571 | |
Maciej Żenczykowski | cb4a4c6 | 2016-10-07 01:00:49 -0700 | [diff] [blame] | 6572 | static int minus_one = -1; |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6573 | static const int two_five_five = 255; |
Matthieu Baerts | 176f716 | 2021-07-22 09:55:04 +0200 | [diff] [blame] | 6574 | static u32 ioam6_if_id_max = U16_MAX; |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6575 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6576 | static const struct ctl_table addrconf_sysctl[] = { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6577 | { |
| 6578 | .procname = "forwarding", |
| 6579 | .data = &ipv6_devconf.forwarding, |
| 6580 | .maxlen = sizeof(int), |
| 6581 | .mode = 0644, |
| 6582 | .proc_handler = addrconf_sysctl_forward, |
| 6583 | }, |
| 6584 | { |
| 6585 | .procname = "hop_limit", |
| 6586 | .data = &ipv6_devconf.hop_limit, |
| 6587 | .maxlen = sizeof(int), |
| 6588 | .mode = 0644, |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6589 | .proc_handler = proc_dointvec_minmax, |
Matteo Croce | eec4844 | 2019-07-18 15:58:50 -0700 | [diff] [blame] | 6590 | .extra1 = (void *)SYSCTL_ONE, |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6591 | .extra2 = (void *)&two_five_five, |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6592 | }, |
| 6593 | { |
| 6594 | .procname = "mtu", |
| 6595 | .data = &ipv6_devconf.mtu6, |
| 6596 | .maxlen = sizeof(int), |
| 6597 | .mode = 0644, |
| 6598 | .proc_handler = addrconf_sysctl_mtu, |
| 6599 | }, |
| 6600 | { |
| 6601 | .procname = "accept_ra", |
| 6602 | .data = &ipv6_devconf.accept_ra, |
| 6603 | .maxlen = sizeof(int), |
| 6604 | .mode = 0644, |
| 6605 | .proc_handler = proc_dointvec, |
| 6606 | }, |
| 6607 | { |
| 6608 | .procname = "accept_redirects", |
| 6609 | .data = &ipv6_devconf.accept_redirects, |
| 6610 | .maxlen = sizeof(int), |
| 6611 | .mode = 0644, |
| 6612 | .proc_handler = proc_dointvec, |
| 6613 | }, |
| 6614 | { |
| 6615 | .procname = "autoconf", |
| 6616 | .data = &ipv6_devconf.autoconf, |
| 6617 | .maxlen = sizeof(int), |
| 6618 | .mode = 0644, |
| 6619 | .proc_handler = proc_dointvec, |
| 6620 | }, |
| 6621 | { |
| 6622 | .procname = "dad_transmits", |
| 6623 | .data = &ipv6_devconf.dad_transmits, |
| 6624 | .maxlen = sizeof(int), |
| 6625 | .mode = 0644, |
| 6626 | .proc_handler = proc_dointvec, |
| 6627 | }, |
| 6628 | { |
| 6629 | .procname = "router_solicitations", |
| 6630 | .data = &ipv6_devconf.rtr_solicits, |
| 6631 | .maxlen = sizeof(int), |
| 6632 | .mode = 0644, |
Maciej Żenczykowski | cb4a4c6 | 2016-10-07 01:00:49 -0700 | [diff] [blame] | 6633 | .proc_handler = proc_dointvec_minmax, |
| 6634 | .extra1 = &minus_one, |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6635 | }, |
| 6636 | { |
| 6637 | .procname = "router_solicitation_interval", |
| 6638 | .data = &ipv6_devconf.rtr_solicit_interval, |
| 6639 | .maxlen = sizeof(int), |
| 6640 | .mode = 0644, |
| 6641 | .proc_handler = proc_dointvec_jiffies, |
| 6642 | }, |
| 6643 | { |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 6644 | .procname = "router_solicitation_max_interval", |
| 6645 | .data = &ipv6_devconf.rtr_solicit_max_interval, |
| 6646 | .maxlen = sizeof(int), |
| 6647 | .mode = 0644, |
| 6648 | .proc_handler = proc_dointvec_jiffies, |
| 6649 | }, |
| 6650 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6651 | .procname = "router_solicitation_delay", |
| 6652 | .data = &ipv6_devconf.rtr_solicit_delay, |
| 6653 | .maxlen = sizeof(int), |
| 6654 | .mode = 0644, |
| 6655 | .proc_handler = proc_dointvec_jiffies, |
| 6656 | }, |
| 6657 | { |
| 6658 | .procname = "force_mld_version", |
| 6659 | .data = &ipv6_devconf.force_mld_version, |
| 6660 | .maxlen = sizeof(int), |
| 6661 | .mode = 0644, |
| 6662 | .proc_handler = proc_dointvec, |
| 6663 | }, |
| 6664 | { |
| 6665 | .procname = "mldv1_unsolicited_report_interval", |
| 6666 | .data = |
| 6667 | &ipv6_devconf.mldv1_unsolicited_report_interval, |
| 6668 | .maxlen = sizeof(int), |
| 6669 | .mode = 0644, |
| 6670 | .proc_handler = proc_dointvec_ms_jiffies, |
| 6671 | }, |
| 6672 | { |
| 6673 | .procname = "mldv2_unsolicited_report_interval", |
| 6674 | .data = |
| 6675 | &ipv6_devconf.mldv2_unsolicited_report_interval, |
| 6676 | .maxlen = sizeof(int), |
| 6677 | .mode = 0644, |
| 6678 | .proc_handler = proc_dointvec_ms_jiffies, |
| 6679 | }, |
| 6680 | { |
| 6681 | .procname = "use_tempaddr", |
| 6682 | .data = &ipv6_devconf.use_tempaddr, |
| 6683 | .maxlen = sizeof(int), |
| 6684 | .mode = 0644, |
| 6685 | .proc_handler = proc_dointvec, |
| 6686 | }, |
| 6687 | { |
| 6688 | .procname = "temp_valid_lft", |
| 6689 | .data = &ipv6_devconf.temp_valid_lft, |
| 6690 | .maxlen = sizeof(int), |
| 6691 | .mode = 0644, |
| 6692 | .proc_handler = proc_dointvec, |
| 6693 | }, |
| 6694 | { |
| 6695 | .procname = "temp_prefered_lft", |
| 6696 | .data = &ipv6_devconf.temp_prefered_lft, |
| 6697 | .maxlen = sizeof(int), |
| 6698 | .mode = 0644, |
| 6699 | .proc_handler = proc_dointvec, |
| 6700 | }, |
| 6701 | { |
| 6702 | .procname = "regen_max_retry", |
| 6703 | .data = &ipv6_devconf.regen_max_retry, |
| 6704 | .maxlen = sizeof(int), |
| 6705 | .mode = 0644, |
| 6706 | .proc_handler = proc_dointvec, |
| 6707 | }, |
| 6708 | { |
| 6709 | .procname = "max_desync_factor", |
| 6710 | .data = &ipv6_devconf.max_desync_factor, |
| 6711 | .maxlen = sizeof(int), |
| 6712 | .mode = 0644, |
| 6713 | .proc_handler = proc_dointvec, |
| 6714 | }, |
| 6715 | { |
| 6716 | .procname = "max_addresses", |
| 6717 | .data = &ipv6_devconf.max_addresses, |
| 6718 | .maxlen = sizeof(int), |
| 6719 | .mode = 0644, |
| 6720 | .proc_handler = proc_dointvec, |
| 6721 | }, |
| 6722 | { |
| 6723 | .procname = "accept_ra_defrtr", |
| 6724 | .data = &ipv6_devconf.accept_ra_defrtr, |
| 6725 | .maxlen = sizeof(int), |
| 6726 | .mode = 0644, |
| 6727 | .proc_handler = proc_dointvec, |
| 6728 | }, |
| 6729 | { |
Praveen Chaudhary | 6b2e04b | 2021-01-25 13:44:30 -0800 | [diff] [blame] | 6730 | .procname = "ra_defrtr_metric", |
| 6731 | .data = &ipv6_devconf.ra_defrtr_metric, |
| 6732 | .maxlen = sizeof(u32), |
| 6733 | .mode = 0644, |
| 6734 | .proc_handler = proc_douintvec_minmax, |
| 6735 | .extra1 = (void *)SYSCTL_ONE, |
| 6736 | }, |
| 6737 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6738 | .procname = "accept_ra_min_hop_limit", |
| 6739 | .data = &ipv6_devconf.accept_ra_min_hop_limit, |
| 6740 | .maxlen = sizeof(int), |
| 6741 | .mode = 0644, |
| 6742 | .proc_handler = proc_dointvec, |
| 6743 | }, |
| 6744 | { |
| 6745 | .procname = "accept_ra_pinfo", |
| 6746 | .data = &ipv6_devconf.accept_ra_pinfo, |
| 6747 | .maxlen = sizeof(int), |
| 6748 | .mode = 0644, |
| 6749 | .proc_handler = proc_dointvec, |
| 6750 | }, |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 6751 | #ifdef CONFIG_IPV6_ROUTER_PREF |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6752 | { |
| 6753 | .procname = "accept_ra_rtr_pref", |
| 6754 | .data = &ipv6_devconf.accept_ra_rtr_pref, |
| 6755 | .maxlen = sizeof(int), |
| 6756 | .mode = 0644, |
| 6757 | .proc_handler = proc_dointvec, |
| 6758 | }, |
| 6759 | { |
| 6760 | .procname = "router_probe_interval", |
| 6761 | .data = &ipv6_devconf.rtr_probe_interval, |
| 6762 | .maxlen = sizeof(int), |
| 6763 | .mode = 0644, |
| 6764 | .proc_handler = proc_dointvec_jiffies, |
| 6765 | }, |
Neil Horman | fa03ef3 | 2007-01-30 14:30:10 -0800 | [diff] [blame] | 6766 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6767 | { |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 6768 | .procname = "accept_ra_rt_info_min_plen", |
| 6769 | .data = &ipv6_devconf.accept_ra_rt_info_min_plen, |
| 6770 | .maxlen = sizeof(int), |
| 6771 | .mode = 0644, |
| 6772 | .proc_handler = proc_dointvec, |
| 6773 | }, |
| 6774 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6775 | .procname = "accept_ra_rt_info_max_plen", |
| 6776 | .data = &ipv6_devconf.accept_ra_rt_info_max_plen, |
| 6777 | .maxlen = sizeof(int), |
| 6778 | .mode = 0644, |
| 6779 | .proc_handler = proc_dointvec, |
| 6780 | }, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 6781 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 6782 | #endif |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6783 | { |
| 6784 | .procname = "proxy_ndp", |
| 6785 | .data = &ipv6_devconf.proxy_ndp, |
| 6786 | .maxlen = sizeof(int), |
| 6787 | .mode = 0644, |
| 6788 | .proc_handler = addrconf_sysctl_proxy_ndp, |
| 6789 | }, |
| 6790 | { |
| 6791 | .procname = "accept_source_route", |
| 6792 | .data = &ipv6_devconf.accept_source_route, |
| 6793 | .maxlen = sizeof(int), |
| 6794 | .mode = 0644, |
| 6795 | .proc_handler = proc_dointvec, |
| 6796 | }, |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 6797 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6798 | { |
| 6799 | .procname = "optimistic_dad", |
| 6800 | .data = &ipv6_devconf.optimistic_dad, |
| 6801 | .maxlen = sizeof(int), |
| 6802 | .mode = 0644, |
| 6803 | .proc_handler = proc_dointvec, |
| 6804 | }, |
| 6805 | { |
| 6806 | .procname = "use_optimistic", |
| 6807 | .data = &ipv6_devconf.use_optimistic, |
| 6808 | .maxlen = sizeof(int), |
| 6809 | .mode = 0644, |
| 6810 | .proc_handler = proc_dointvec, |
| 6811 | }, |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 6812 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 6813 | #ifdef CONFIG_IPV6_MROUTE |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6814 | { |
| 6815 | .procname = "mc_forwarding", |
| 6816 | .data = &ipv6_devconf.mc_forwarding, |
| 6817 | .maxlen = sizeof(int), |
| 6818 | .mode = 0444, |
| 6819 | .proc_handler = proc_dointvec, |
| 6820 | }, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 6821 | #endif |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6822 | { |
| 6823 | .procname = "disable_ipv6", |
| 6824 | .data = &ipv6_devconf.disable_ipv6, |
| 6825 | .maxlen = sizeof(int), |
| 6826 | .mode = 0644, |
| 6827 | .proc_handler = addrconf_sysctl_disable, |
| 6828 | }, |
| 6829 | { |
| 6830 | .procname = "accept_dad", |
| 6831 | .data = &ipv6_devconf.accept_dad, |
| 6832 | .maxlen = sizeof(int), |
| 6833 | .mode = 0644, |
| 6834 | .proc_handler = proc_dointvec, |
| 6835 | }, |
| 6836 | { |
| 6837 | .procname = "force_tllao", |
| 6838 | .data = &ipv6_devconf.force_tllao, |
| 6839 | .maxlen = sizeof(int), |
| 6840 | .mode = 0644, |
| 6841 | .proc_handler = proc_dointvec |
| 6842 | }, |
| 6843 | { |
| 6844 | .procname = "ndisc_notify", |
| 6845 | .data = &ipv6_devconf.ndisc_notify, |
| 6846 | .maxlen = sizeof(int), |
| 6847 | .mode = 0644, |
| 6848 | .proc_handler = proc_dointvec |
| 6849 | }, |
| 6850 | { |
| 6851 | .procname = "suppress_frag_ndisc", |
| 6852 | .data = &ipv6_devconf.suppress_frag_ndisc, |
| 6853 | .maxlen = sizeof(int), |
| 6854 | .mode = 0644, |
| 6855 | .proc_handler = proc_dointvec |
| 6856 | }, |
| 6857 | { |
| 6858 | .procname = "accept_ra_from_local", |
| 6859 | .data = &ipv6_devconf.accept_ra_from_local, |
| 6860 | .maxlen = sizeof(int), |
| 6861 | .mode = 0644, |
| 6862 | .proc_handler = proc_dointvec, |
| 6863 | }, |
| 6864 | { |
| 6865 | .procname = "accept_ra_mtu", |
| 6866 | .data = &ipv6_devconf.accept_ra_mtu, |
| 6867 | .maxlen = sizeof(int), |
| 6868 | .mode = 0644, |
| 6869 | .proc_handler = proc_dointvec, |
| 6870 | }, |
| 6871 | { |
| 6872 | .procname = "stable_secret", |
| 6873 | .data = &ipv6_devconf.stable_secret, |
| 6874 | .maxlen = IPV6_MAX_STRLEN, |
| 6875 | .mode = 0600, |
| 6876 | .proc_handler = addrconf_sysctl_stable_secret, |
| 6877 | }, |
| 6878 | { |
| 6879 | .procname = "use_oif_addrs_only", |
| 6880 | .data = &ipv6_devconf.use_oif_addrs_only, |
| 6881 | .maxlen = sizeof(int), |
| 6882 | .mode = 0644, |
| 6883 | .proc_handler = proc_dointvec, |
| 6884 | }, |
| 6885 | { |
| 6886 | .procname = "ignore_routes_with_linkdown", |
| 6887 | .data = &ipv6_devconf.ignore_routes_with_linkdown, |
| 6888 | .maxlen = sizeof(int), |
| 6889 | .mode = 0644, |
| 6890 | .proc_handler = addrconf_sysctl_ignore_routes_with_linkdown, |
| 6891 | }, |
| 6892 | { |
| 6893 | .procname = "drop_unicast_in_l2_multicast", |
| 6894 | .data = &ipv6_devconf.drop_unicast_in_l2_multicast, |
| 6895 | .maxlen = sizeof(int), |
| 6896 | .mode = 0644, |
| 6897 | .proc_handler = proc_dointvec, |
| 6898 | }, |
| 6899 | { |
| 6900 | .procname = "drop_unsolicited_na", |
| 6901 | .data = &ipv6_devconf.drop_unsolicited_na, |
| 6902 | .maxlen = sizeof(int), |
| 6903 | .mode = 0644, |
| 6904 | .proc_handler = proc_dointvec, |
| 6905 | }, |
| 6906 | { |
| 6907 | .procname = "keep_addr_on_down", |
| 6908 | .data = &ipv6_devconf.keep_addr_on_down, |
| 6909 | .maxlen = sizeof(int), |
| 6910 | .mode = 0644, |
| 6911 | .proc_handler = proc_dointvec, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 6912 | |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6913 | }, |
| 6914 | { |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 6915 | .procname = "seg6_enabled", |
| 6916 | .data = &ipv6_devconf.seg6_enabled, |
| 6917 | .maxlen = sizeof(int), |
| 6918 | .mode = 0644, |
| 6919 | .proc_handler = proc_dointvec, |
| 6920 | }, |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 6921 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 6922 | { |
| 6923 | .procname = "seg6_require_hmac", |
| 6924 | .data = &ipv6_devconf.seg6_require_hmac, |
| 6925 | .maxlen = sizeof(int), |
| 6926 | .mode = 0644, |
| 6927 | .proc_handler = proc_dointvec, |
| 6928 | }, |
| 6929 | #endif |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 6930 | { |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 6931 | .procname = "enhanced_dad", |
| 6932 | .data = &ipv6_devconf.enhanced_dad, |
| 6933 | .maxlen = sizeof(int), |
| 6934 | .mode = 0644, |
| 6935 | .proc_handler = proc_dointvec, |
| 6936 | }, |
| 6937 | { |
Rocco Yue | 12e64b3 | 2021-05-30 19:38:11 +0800 | [diff] [blame] | 6938 | .procname = "addr_gen_mode", |
| 6939 | .data = &ipv6_devconf.addr_gen_mode, |
| 6940 | .maxlen = sizeof(int), |
| 6941 | .mode = 0644, |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6942 | .proc_handler = addrconf_sysctl_addr_gen_mode, |
| 6943 | }, |
| 6944 | { |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6945 | .procname = "disable_policy", |
| 6946 | .data = &ipv6_devconf.disable_policy, |
| 6947 | .maxlen = sizeof(int), |
| 6948 | .mode = 0644, |
| 6949 | .proc_handler = addrconf_sysctl_disable_policy, |
| 6950 | }, |
| 6951 | { |
Maciej Żenczykowski | 2210d6b | 2017-11-07 21:52:09 -0800 | [diff] [blame] | 6952 | .procname = "ndisc_tclass", |
| 6953 | .data = &ipv6_devconf.ndisc_tclass, |
| 6954 | .maxlen = sizeof(int), |
| 6955 | .mode = 0644, |
| 6956 | .proc_handler = proc_dointvec_minmax, |
Matteo Croce | eec4844 | 2019-07-18 15:58:50 -0700 | [diff] [blame] | 6957 | .extra1 = (void *)SYSCTL_ZERO, |
Maciej Żenczykowski | 2210d6b | 2017-11-07 21:52:09 -0800 | [diff] [blame] | 6958 | .extra2 = (void *)&two_five_five, |
| 6959 | }, |
| 6960 | { |
Alexander Aring | 8610c7c | 2020-03-27 18:00:20 -0400 | [diff] [blame] | 6961 | .procname = "rpl_seg_enabled", |
| 6962 | .data = &ipv6_devconf.rpl_seg_enabled, |
| 6963 | .maxlen = sizeof(int), |
| 6964 | .mode = 0644, |
| 6965 | .proc_handler = proc_dointvec, |
| 6966 | }, |
| 6967 | { |
Justin Iurman | 9ee11f0 | 2021-07-20 21:42:57 +0200 | [diff] [blame] | 6968 | .procname = "ioam6_enabled", |
| 6969 | .data = &ipv6_devconf.ioam6_enabled, |
| 6970 | .maxlen = sizeof(u8), |
| 6971 | .mode = 0644, |
| 6972 | .proc_handler = proc_dou8vec_minmax, |
| 6973 | .extra1 = (void *)SYSCTL_ZERO, |
| 6974 | .extra2 = (void *)SYSCTL_ONE, |
| 6975 | }, |
| 6976 | { |
| 6977 | .procname = "ioam6_id", |
| 6978 | .data = &ipv6_devconf.ioam6_id, |
| 6979 | .maxlen = sizeof(u32), |
| 6980 | .mode = 0644, |
| 6981 | .proc_handler = proc_douintvec_minmax, |
| 6982 | .extra1 = (void *)SYSCTL_ZERO, |
| 6983 | .extra2 = (void *)&ioam6_if_id_max, |
| 6984 | }, |
| 6985 | { |
| 6986 | .procname = "ioam6_id_wide", |
| 6987 | .data = &ipv6_devconf.ioam6_id_wide, |
| 6988 | .maxlen = sizeof(u32), |
| 6989 | .mode = 0644, |
| 6990 | .proc_handler = proc_douintvec, |
| 6991 | }, |
| 6992 | { |
James Prestwood | 18ac597 | 2021-11-01 10:36:29 -0700 | [diff] [blame] | 6993 | .procname = "ndisc_evict_nocarrier", |
| 6994 | .data = &ipv6_devconf.ndisc_evict_nocarrier, |
| 6995 | .maxlen = sizeof(u8), |
| 6996 | .mode = 0644, |
| 6997 | .proc_handler = proc_dou8vec_minmax, |
| 6998 | .extra1 = (void *)SYSCTL_ZERO, |
| 6999 | .extra2 = (void *)SYSCTL_ONE, |
| 7000 | }, |
| 7001 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 7002 | /* sentinel */ |
| 7003 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7004 | }; |
| 7005 | |
Pavel Emelyanov | bff16c2 | 2008-01-10 17:42:13 -0800 | [diff] [blame] | 7006 | static int __addrconf_sysctl_register(struct net *net, char *dev_name, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 7007 | struct inet6_dev *idev, struct ipv6_devconf *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7008 | { |
Nicolas Dichtel | 29c994e | 2016-08-30 10:09:22 +0200 | [diff] [blame] | 7009 | int i, ifindex; |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7010 | struct ctl_table *table; |
Eric W. Biederman | 6105e29 | 2012-04-19 13:41:24 +0000 | [diff] [blame] | 7011 | char path[sizeof("net/ipv6/conf/") + IFNAMSIZ]; |
Pavel Emelyanov | 1dab622 | 2007-12-02 00:59:38 +1100 | [diff] [blame] | 7012 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7013 | table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL); |
| 7014 | if (!table) |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 7015 | goto out; |
| 7016 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7017 | for (i = 0; table[i].data; i++) { |
| 7018 | table[i].data += (char *)p - (char *)&ipv6_devconf; |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 7019 | /* If one of these is already set, then it is not safe to |
| 7020 | * overwrite either of them: this makes proc_dointvec_minmax |
| 7021 | * usable. |
| 7022 | */ |
| 7023 | if (!table[i].extra1 && !table[i].extra2) { |
| 7024 | table[i].extra1 = idev; /* embedded; no ref */ |
| 7025 | table[i].extra2 = net; |
| 7026 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7027 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7028 | |
Eric W. Biederman | 6105e29 | 2012-04-19 13:41:24 +0000 | [diff] [blame] | 7029 | snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7030 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7031 | p->sysctl_header = register_net_sysctl(net, path, table); |
| 7032 | if (!p->sysctl_header) |
Eric W. Biederman | 6105e29 | 2012-04-19 13:41:24 +0000 | [diff] [blame] | 7033 | goto free; |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 7034 | |
Nicolas Dichtel | 29c994e | 2016-08-30 10:09:22 +0200 | [diff] [blame] | 7035 | if (!strcmp(dev_name, "all")) |
| 7036 | ifindex = NETCONFA_IFINDEX_ALL; |
| 7037 | else if (!strcmp(dev_name, "default")) |
| 7038 | ifindex = NETCONFA_IFINDEX_DEFAULT; |
| 7039 | else |
| 7040 | ifindex = idev->dev->ifindex; |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 7041 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL, |
| 7042 | ifindex, p); |
Pavel Emelyanov | 9589731 | 2008-01-10 17:41:45 -0800 | [diff] [blame] | 7043 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7044 | |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 7045 | free: |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7046 | kfree(table); |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 7047 | out: |
Pavel Emelyanov | 9589731 | 2008-01-10 17:41:45 -0800 | [diff] [blame] | 7048 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7049 | } |
| 7050 | |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 7051 | static void __addrconf_sysctl_unregister(struct net *net, |
| 7052 | struct ipv6_devconf *p, int ifindex) |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 7053 | { |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7054 | struct ctl_table *table; |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 7055 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7056 | if (!p->sysctl_header) |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 7057 | return; |
| 7058 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 7059 | table = p->sysctl_header->ctl_table_arg; |
| 7060 | unregister_net_sysctl_table(p->sysctl_header); |
| 7061 | p->sysctl_header = NULL; |
| 7062 | kfree(table); |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 7063 | |
| 7064 | inet6_netconf_notify_devconf(net, RTM_DELNETCONF, 0, ifindex, NULL); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 7065 | } |
| 7066 | |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 7067 | static int addrconf_sysctl_register(struct inet6_dev *idev) |
Pavel Emelyanov | f52295a | 2007-12-02 00:58:37 +1100 | [diff] [blame] | 7068 | { |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 7069 | int err; |
| 7070 | |
| 7071 | if (!sysctl_dev_name_is_allowed(idev->dev->name)) |
| 7072 | return -EINVAL; |
| 7073 | |
| 7074 | err = neigh_sysctl_register(idev->dev, idev->nd_parms, |
| 7075 | &ndisc_ifinfo_sysctl_change); |
| 7076 | if (err) |
| 7077 | return err; |
| 7078 | err = __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name, |
| 7079 | idev, &idev->cnf); |
| 7080 | if (err) |
| 7081 | neigh_sysctl_unregister(idev->nd_parms); |
| 7082 | |
| 7083 | return err; |
Pavel Emelyanov | f52295a | 2007-12-02 00:58:37 +1100 | [diff] [blame] | 7084 | } |
| 7085 | |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 7086 | static void addrconf_sysctl_unregister(struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7087 | { |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 7088 | __addrconf_sysctl_unregister(dev_net(idev->dev), &idev->cnf, |
| 7089 | idev->dev->ifindex); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 7090 | neigh_sysctl_unregister(idev->nd_parms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7091 | } |
| 7092 | |
| 7093 | |
| 7094 | #endif |
| 7095 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 7096 | static int __net_init addrconf_init_net(struct net *net) |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7097 | { |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 7098 | int err = -ENOMEM; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7099 | struct ipv6_devconf *all, *dflt; |
| 7100 | |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 7101 | all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 7102 | if (!all) |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 7103 | goto err_alloc_all; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7104 | |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 7105 | dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 7106 | if (!dflt) |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 7107 | goto err_alloc_dflt; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7108 | |
Arnd Bergmann | a154d5d | 2019-03-04 21:38:03 +0100 | [diff] [blame] | 7109 | if (IS_ENABLED(CONFIG_SYSCTL) && |
Nicolas Dichtel | 9efd6a3 | 2020-05-13 15:58:43 +0200 | [diff] [blame] | 7110 | !net_eq(net, &init_net)) { |
| 7111 | switch (sysctl_devconf_inherit_init_net) { |
| 7112 | case 1: /* copy from init_net */ |
| 7113 | memcpy(all, init_net.ipv6.devconf_all, |
| 7114 | sizeof(ipv6_devconf)); |
| 7115 | memcpy(dflt, init_net.ipv6.devconf_dflt, |
| 7116 | sizeof(ipv6_devconf_dflt)); |
| 7117 | break; |
| 7118 | case 3: /* copy from the current netns */ |
| 7119 | memcpy(all, current->nsproxy->net_ns->ipv6.devconf_all, |
| 7120 | sizeof(ipv6_devconf)); |
| 7121 | memcpy(dflt, |
| 7122 | current->nsproxy->net_ns->ipv6.devconf_dflt, |
| 7123 | sizeof(ipv6_devconf_dflt)); |
| 7124 | break; |
| 7125 | case 0: |
| 7126 | case 2: |
| 7127 | /* use compiled values */ |
| 7128 | break; |
| 7129 | } |
Cong Wang | 856c395 | 2019-01-17 23:27:11 -0800 | [diff] [blame] | 7130 | } |
| 7131 | |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 7132 | /* these will be inherited by all namespaces */ |
| 7133 | dflt->autoconf = ipv6_defaults.autoconf; |
| 7134 | dflt->disable_ipv6 = ipv6_defaults.disable_ipv6; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7135 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 7136 | dflt->stable_secret.initialized = false; |
| 7137 | all->stable_secret.initialized = false; |
| 7138 | |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7139 | net->ipv6.devconf_all = all; |
| 7140 | net->ipv6.devconf_dflt = dflt; |
| 7141 | |
| 7142 | #ifdef CONFIG_SYSCTL |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 7143 | err = __addrconf_sysctl_register(net, "all", NULL, all); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7144 | if (err < 0) |
| 7145 | goto err_reg_all; |
| 7146 | |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 7147 | err = __addrconf_sysctl_register(net, "default", NULL, dflt); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7148 | if (err < 0) |
| 7149 | goto err_reg_dflt; |
| 7150 | #endif |
| 7151 | return 0; |
| 7152 | |
| 7153 | #ifdef CONFIG_SYSCTL |
| 7154 | err_reg_dflt: |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 7155 | __addrconf_sysctl_unregister(net, all, NETCONFA_IFINDEX_ALL); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7156 | err_reg_all: |
| 7157 | kfree(dflt); |
| 7158 | #endif |
| 7159 | err_alloc_dflt: |
| 7160 | kfree(all); |
| 7161 | err_alloc_all: |
| 7162 | return err; |
| 7163 | } |
| 7164 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 7165 | static void __net_exit addrconf_exit_net(struct net *net) |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7166 | { |
| 7167 | #ifdef CONFIG_SYSCTL |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 7168 | __addrconf_sysctl_unregister(net, net->ipv6.devconf_dflt, |
| 7169 | NETCONFA_IFINDEX_DEFAULT); |
| 7170 | __addrconf_sysctl_unregister(net, net->ipv6.devconf_all, |
| 7171 | NETCONFA_IFINDEX_ALL); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7172 | #endif |
zhuyj | 73cf0e92 | 2014-11-26 10:25:58 +0800 | [diff] [blame] | 7173 | kfree(net->ipv6.devconf_dflt); |
| 7174 | kfree(net->ipv6.devconf_all); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7175 | } |
| 7176 | |
| 7177 | static struct pernet_operations addrconf_ops = { |
| 7178 | .init = addrconf_init_net, |
| 7179 | .exit = addrconf_exit_net, |
| 7180 | }; |
| 7181 | |
Daniel Borkmann | 207895fd3 | 2015-01-29 12:15:03 +0100 | [diff] [blame] | 7182 | static struct rtnl_af_ops inet6_ops __read_mostly = { |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 7183 | .family = AF_INET6, |
| 7184 | .fill_link_af = inet6_fill_link_af, |
| 7185 | .get_link_af_size = inet6_get_link_af_size, |
Daniel Borkmann | 11b1f82 | 2015-02-05 14:39:11 +0100 | [diff] [blame] | 7186 | .validate_link_af = inet6_validate_link_af, |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 7187 | .set_link_af = inet6_set_link_af, |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 7188 | }; |
| 7189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7190 | /* |
| 7191 | * Init / cleanup code |
| 7192 | */ |
| 7193 | |
| 7194 | int __init addrconf_init(void) |
| 7195 | { |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 7196 | struct inet6_dev *idev; |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 7197 | int i, err; |
YOSHIFUJI Hideaki | 2a8cc6c | 2007-11-14 15:56:23 +0900 | [diff] [blame] | 7198 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 7199 | err = ipv6_addr_label_init(); |
| 7200 | if (err < 0) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 7201 | pr_crit("%s: cannot initialize default policy table: %d\n", |
| 7202 | __func__, err); |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 7203 | goto out; |
YOSHIFUJI Hideaki | 2a8cc6c | 2007-11-14 15:56:23 +0900 | [diff] [blame] | 7204 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7205 | |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 7206 | err = register_pernet_subsys(&addrconf_ops); |
| 7207 | if (err < 0) |
| 7208 | goto out_addrlabel; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7209 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 7210 | addrconf_wq = create_workqueue("ipv6_addrconf"); |
| 7211 | if (!addrconf_wq) { |
| 7212 | err = -ENOMEM; |
| 7213 | goto out_nowq; |
| 7214 | } |
| 7215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7216 | /* The addrconf netdev notifier requires that loopback_dev |
| 7217 | * has it's ipv6 private information allocated and setup |
| 7218 | * before it can bring up and give link-local addresses |
| 7219 | * to other devices which are up. |
| 7220 | * |
| 7221 | * Unfortunately, loopback_dev is not necessarily the first |
| 7222 | * entry in the global dev_base list of net devices. In fact, |
| 7223 | * it is likely to be the very last entry on that list. |
| 7224 | * So this causes the notifier registry below to try and |
| 7225 | * give link-local addresses to all devices besides loopback_dev |
| 7226 | * first, then loopback_dev, which cases all the non-loopback_dev |
| 7227 | * devices to fail to get a link-local address. |
| 7228 | * |
| 7229 | * So, as a temporary fix, allocate the ipv6 structure for |
| 7230 | * loopback_dev first by hand. |
| 7231 | * Longer term, all of the dependencies ipv6 has upon the loopback |
| 7232 | * device and it being up should be removed. |
| 7233 | */ |
| 7234 | rtnl_lock(); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 7235 | idev = ipv6_add_dev(init_net.loopback_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7236 | rtnl_unlock(); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 7237 | if (IS_ERR(idev)) { |
| 7238 | err = PTR_ERR(idev); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7239 | goto errlo; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 7240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7241 | |
WANG Cong | 2f46093 | 2017-05-03 22:07:31 -0700 | [diff] [blame] | 7242 | ip6_route_init_special_entries(); |
| 7243 | |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 7244 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
| 7245 | INIT_HLIST_HEAD(&inet6_addr_lst[i]); |
| 7246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7247 | register_netdevice_notifier(&ipv6_dev_notf); |
| 7248 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 7249 | addrconf_verify(); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 7250 | |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 7251 | rtnl_af_register(&inet6_ops); |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 7252 | |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 7253 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETLINK, |
| 7254 | NULL, inet6_dump_ifinfo, 0); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 7255 | if (err < 0) |
| 7256 | goto errout; |
| 7257 | |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 7258 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWADDR, |
| 7259 | inet6_rtm_newaddr, NULL, 0); |
| 7260 | if (err < 0) |
| 7261 | goto errout; |
| 7262 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELADDR, |
| 7263 | inet6_rtm_deladdr, NULL, 0); |
| 7264 | if (err < 0) |
| 7265 | goto errout; |
| 7266 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETADDR, |
| 7267 | inet6_rtm_getaddr, inet6_dump_ifaddr, |
| 7268 | RTNL_FLAG_DOIT_UNLOCKED); |
| 7269 | if (err < 0) |
| 7270 | goto errout; |
| 7271 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETMULTICAST, |
| 7272 | NULL, inet6_dump_ifmcaddr, 0); |
| 7273 | if (err < 0) |
| 7274 | goto errout; |
| 7275 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETANYCAST, |
| 7276 | NULL, inet6_dump_ifacaddr, 0); |
| 7277 | if (err < 0) |
| 7278 | goto errout; |
| 7279 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETNETCONF, |
| 7280 | inet6_netconf_get_devconf, |
| 7281 | inet6_netconf_dump_devconf, |
| 7282 | RTNL_FLAG_DOIT_UNLOCKED); |
| 7283 | if (err < 0) |
| 7284 | goto errout; |
Florian Westphal | a3fde2a | 2017-12-04 19:19:18 +0100 | [diff] [blame] | 7285 | err = ipv6_addr_label_rtnl_register(); |
| 7286 | if (err < 0) |
| 7287 | goto errout; |
YOSHIFUJI Hideaki | 2a8cc6c | 2007-11-14 15:56:23 +0900 | [diff] [blame] | 7288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7289 | return 0; |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 7290 | errout: |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 7291 | rtnl_unregister_all(PF_INET6); |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 7292 | rtnl_af_unregister(&inet6_ops); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 7293 | unregister_netdevice_notifier(&ipv6_dev_notf); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7294 | errlo: |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 7295 | destroy_workqueue(addrconf_wq); |
| 7296 | out_nowq: |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7297 | unregister_pernet_subsys(&addrconf_ops); |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 7298 | out_addrlabel: |
| 7299 | ipv6_addr_label_cleanup(); |
| 7300 | out: |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 7301 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7302 | } |
| 7303 | |
Daniel Lezcano | 09f7709 | 2007-12-13 05:34:58 -0800 | [diff] [blame] | 7304 | void addrconf_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7305 | { |
Daniel Lezcano | 176c39a | 2009-03-03 01:06:45 -0800 | [diff] [blame] | 7306 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7307 | int i; |
| 7308 | |
| 7309 | unregister_netdevice_notifier(&ipv6_dev_notf); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 7310 | unregister_pernet_subsys(&addrconf_ops); |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 7311 | ipv6_addr_label_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7312 | |
Florian Westphal | 5c45121 | 2017-10-04 15:58:49 +0200 | [diff] [blame] | 7313 | rtnl_af_unregister(&inet6_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7314 | |
Florian Westphal | 5c45121 | 2017-10-04 15:58:49 +0200 | [diff] [blame] | 7315 | rtnl_lock(); |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 7316 | |
Daniel Lezcano | 176c39a | 2009-03-03 01:06:45 -0800 | [diff] [blame] | 7317 | /* clean dev list */ |
| 7318 | for_each_netdev(&init_net, dev) { |
| 7319 | if (__in6_dev_get(dev) == NULL) |
| 7320 | continue; |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 7321 | addrconf_ifdown(dev, true); |
Daniel Lezcano | 176c39a | 2009-03-03 01:06:45 -0800 | [diff] [blame] | 7322 | } |
Florent Fourcot | ae79dbf | 2020-07-31 15:32:07 +0200 | [diff] [blame] | 7323 | addrconf_ifdown(init_net.loopback_dev, true); |
Daniel Lezcano | 176c39a | 2009-03-03 01:06:45 -0800 | [diff] [blame] | 7324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7325 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7326 | * Check hash table. |
| 7327 | */ |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 7328 | spin_lock_bh(&addrconf_hash_lock); |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 7329 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
| 7330 | WARN_ON(!hlist_empty(&inet6_addr_lst[i])); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 7331 | spin_unlock_bh(&addrconf_hash_lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 7332 | cancel_delayed_work(&addr_chk_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7333 | rtnl_unlock(); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 7334 | |
| 7335 | destroy_workqueue(addrconf_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7336 | } |