Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * IPv6 Address [auto]configuration |
| 3 | * Linux INET6 implementation |
| 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License |
| 11 | * as published by the Free Software Foundation; either version |
| 12 | * 2 of the License, or (at your option) any later version. |
| 13 | */ |
| 14 | |
| 15 | /* |
| 16 | * Changes: |
| 17 | * |
| 18 | * Janos Farkas : delete timer on ifdown |
| 19 | * <chexum@bankinf.banki.hu> |
| 20 | * Andi Kleen : kill double kfree on module |
| 21 | * unload. |
| 22 | * Maciej W. Rozycki : FDDI support |
| 23 | * sekiya@USAGI : Don't send too many RS |
| 24 | * packets. |
| 25 | * yoshfuji@USAGI : Fixed interval between DAD |
| 26 | * packets. |
| 27 | * YOSHIFUJI Hideaki @USAGI : improved accuracy of |
| 28 | * address validation timer. |
| 29 | * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041) |
| 30 | * support. |
| 31 | * Yuji SEKIYA @USAGI : Don't assign a same IPv6 |
| 32 | * address on a same interface. |
| 33 | * YOSHIFUJI Hideaki @USAGI : ARCnet support |
| 34 | * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to |
| 35 | * seq_file. |
YOSHIFUJI Hideaki | b1cacb6 | 2005-11-08 09:38:12 -0800 | [diff] [blame] | 36 | * YOSHIFUJI Hideaki @USAGI : improved source address |
| 37 | * selection; consider scope, |
| 38 | * status etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | */ |
| 40 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 41 | #define pr_fmt(fmt) "IPv6: " fmt |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/errno.h> |
| 44 | #include <linux/types.h> |
Ilpo Järvinen | a0bffff | 2009-03-21 13:36:17 -0700 | [diff] [blame] | 45 | #include <linux/kernel.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 46 | #include <linux/sched/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/socket.h> |
| 48 | #include <linux/sockios.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/net.h> |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 50 | #include <linux/inet.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/in6.h> |
| 52 | #include <linux/netdevice.h> |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 53 | #include <linux/if_addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include <linux/if_arp.h> |
| 55 | #include <linux/if_arcnet.h> |
| 56 | #include <linux/if_infiniband.h> |
| 57 | #include <linux/route.h> |
| 58 | #include <linux/inetdevice.h> |
| 59 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 60 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #ifdef CONFIG_SYSCTL |
| 62 | #include <linux/sysctl.h> |
| 63 | #endif |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 64 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <linux/delay.h> |
| 66 | #include <linux/notifier.h> |
Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 67 | #include <linux/string.h> |
Eric Dumazet | ddbe503 | 2012-07-18 08:11:12 +0000 | [diff] [blame] | 68 | #include <linux/hash.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 70 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #include <net/sock.h> |
| 72 | #include <net/snmp.h> |
| 73 | |
Alexander Aring | 5241c2d | 2015-12-14 20:55:22 +0100 | [diff] [blame] | 74 | #include <net/6lowpan.h> |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 75 | #include <net/firewire.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include <net/ipv6.h> |
| 77 | #include <net/protocol.h> |
| 78 | #include <net/ndisc.h> |
| 79 | #include <net/ip6_route.h> |
| 80 | #include <net/addrconf.h> |
| 81 | #include <net/tcp.h> |
| 82 | #include <net/ip.h> |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 83 | #include <net/netlink.h> |
Mitsuru Chinen | f24e3d6 | 2007-10-10 02:53:43 -0700 | [diff] [blame] | 84 | #include <net/pkt_sched.h> |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 85 | #include <net/l3mdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #include <linux/if_tunnel.h> |
| 87 | #include <linux/rtnetlink.h> |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 88 | #include <linux/netconf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | #include <linux/random.h> |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 90 | #include <linux/uaccess.h> |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 91 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
| 93 | #include <linux/proc_fs.h> |
| 94 | #include <linux/seq_file.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 95 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | #define INFINITY_LIFE_TIME 0xFFFFFFFF |
Thomas Graf | 18a31e1 | 2010-11-17 04:12:02 +0000 | [diff] [blame] | 98 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 99 | #define IPV6_MAX_STRLEN \ |
| 100 | sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") |
| 101 | |
Thomas Graf | 18a31e1 | 2010-11-17 04:12:02 +0000 | [diff] [blame] | 102 | static inline u32 cstamp_delta(unsigned long cstamp) |
| 103 | { |
| 104 | return (cstamp - INITIAL_JIFFIES) * 100UL / HZ; |
| 105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 107 | static inline s32 rfc3315_s14_backoff_init(s32 irt) |
| 108 | { |
| 109 | /* multiply 'initial retransmission time' by 0.9 .. 1.1 */ |
| 110 | u64 tmp = (900000 + prandom_u32() % 200001) * (u64)irt; |
| 111 | do_div(tmp, 1000000); |
| 112 | return (s32)tmp; |
| 113 | } |
| 114 | |
| 115 | static inline s32 rfc3315_s14_backoff_update(s32 rt, s32 mrt) |
| 116 | { |
| 117 | /* multiply 'retransmission timeout' by 1.9 .. 2.1 */ |
| 118 | u64 tmp = (1900000 + prandom_u32() % 200001) * (u64)rt; |
| 119 | do_div(tmp, 1000000); |
| 120 | if ((s32)tmp > mrt) { |
| 121 | /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */ |
| 122 | tmp = (900000 + prandom_u32() % 200001) * (u64)mrt; |
| 123 | do_div(tmp, 1000000); |
| 124 | } |
| 125 | return (s32)tmp; |
| 126 | } |
| 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | #ifdef CONFIG_SYSCTL |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 129 | static int addrconf_sysctl_register(struct inet6_dev *idev); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 130 | static void addrconf_sysctl_unregister(struct inet6_dev *idev); |
| 131 | #else |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 132 | static inline int addrconf_sysctl_register(struct inet6_dev *idev) |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 133 | { |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 134 | return 0; |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static inline void addrconf_sysctl_unregister(struct inet6_dev *idev) |
| 138 | { |
| 139 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | #endif |
| 141 | |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 142 | static void ipv6_regen_rndid(struct inet6_dev *idev); |
| 143 | static void ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 145 | static int ipv6_generate_eui64(u8 *eui, struct net_device *dev); |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 146 | static int ipv6_count_addresses(const struct inet6_dev *idev); |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 147 | static int ipv6_generate_stable_address(struct in6_addr *addr, |
| 148 | u8 dad_count, |
| 149 | const struct inet6_dev *idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Eric Dumazet | 27c565a | 2017-11-04 08:53:27 -0700 | [diff] [blame] | 151 | #define IN6_ADDR_HSIZE_SHIFT 8 |
| 152 | #define IN6_ADDR_HSIZE (1 << IN6_ADDR_HSIZE_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | /* |
| 154 | * Configured unicast address hash table |
| 155 | */ |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 156 | static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE]; |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 157 | static DEFINE_SPINLOCK(addrconf_hash_lock); |
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 void addrconf_verify(void); |
| 160 | static void addrconf_verify_rtnl(void); |
| 161 | static void addrconf_verify_work(struct work_struct *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 163 | static struct workqueue_struct *addrconf_wq; |
| 164 | static DECLARE_DELAYED_WORK(addr_chk_work, addrconf_verify_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | static void addrconf_join_anycast(struct inet6_ifaddr *ifp); |
| 167 | static void addrconf_leave_anycast(struct inet6_ifaddr *ifp); |
| 168 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 169 | static void addrconf_type_change(struct net_device *dev, |
| 170 | unsigned long event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | static int addrconf_ifdown(struct net_device *dev, int how); |
| 172 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 173 | 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] | 174 | int plen, |
| 175 | const struct net_device *dev, |
| 176 | u32 flags, u32 noflags); |
| 177 | |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 178 | static void addrconf_dad_start(struct inet6_ifaddr *ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 179 | static void addrconf_dad_work(struct work_struct *w); |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 180 | static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id, |
| 181 | bool send_na); |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 182 | static void addrconf_dad_run(struct inet6_dev *idev); |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 183 | static void addrconf_rs_timer(struct timer_list *t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); |
| 185 | static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); |
| 186 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 187 | static void inet6_prefix_notify(int event, struct inet6_dev *idev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | struct prefix_info *pinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Adrian Bunk | 888c848 | 2008-07-22 14:21:58 -0700 | [diff] [blame] | 190 | static struct ipv6_devconf ipv6_devconf __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | .forwarding = 0, |
| 192 | .hop_limit = IPV6_DEFAULT_HOPLIMIT, |
| 193 | .mtu6 = IPV6_MIN_MTU, |
| 194 | .accept_ra = 1, |
| 195 | .accept_redirects = 1, |
| 196 | .autoconf = 1, |
| 197 | .force_mld_version = 0, |
Hannes Frederic Sowa | fc4eba5 | 2013-08-14 01:03:46 +0200 | [diff] [blame] | 198 | .mldv1_unsolicited_report_interval = 10 * HZ, |
| 199 | .mldv2_unsolicited_report_interval = HZ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | .dad_transmits = 1, |
| 201 | .rtr_solicits = MAX_RTR_SOLICITATIONS, |
| 202 | .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL, |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 203 | .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY, |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 205 | .use_tempaddr = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | .temp_valid_lft = TEMP_VALID_LIFETIME, |
| 207 | .temp_prefered_lft = TEMP_PREFERRED_LIFETIME, |
| 208 | .regen_max_retry = REGEN_MAX_RETRY, |
| 209 | .max_desync_factor = MAX_DESYNC_FACTOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | .max_addresses = IPV6_MAX_ADDRESSES, |
YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 211 | .accept_ra_defrtr = 1, |
Ben Greear | d933319 | 2014-06-25 14:44:53 -0700 | [diff] [blame] | 212 | .accept_ra_from_local = 0, |
Hangbin Liu | 8013d1d7 | 2015-07-30 14:28:42 +0800 | [diff] [blame] | 213 | .accept_ra_min_hop_limit= 1, |
YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 214 | .accept_ra_pinfo = 1, |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 215 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 216 | .accept_ra_rtr_pref = 1, |
YOSHIFUJI Hideaki | 52e16356 | 2006-03-20 17:05:47 -0800 | [diff] [blame] | 217 | .rtr_probe_interval = 60 * HZ, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 218 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 219 | .accept_ra_rt_info_min_plen = 0, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 220 | .accept_ra_rt_info_max_plen = 0, |
| 221 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 222 | #endif |
YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 223 | .proxy_ndp = 0, |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 224 | .accept_source_route = 0, /* we do not accept RH0 by default. */ |
YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 225 | .disable_ipv6 = 0, |
Nicolas Dichtel | 0940095 | 2017-11-14 14:21:32 +0100 | [diff] [blame] | 226 | .accept_dad = 0, |
Hannes Frederic Sowa | b800c3b | 2013-08-27 01:36:51 +0200 | [diff] [blame] | 227 | .suppress_frag_ndisc = 1, |
Harout Hedeshian | c2943f1 | 2015-01-20 10:06:05 -0700 | [diff] [blame] | 228 | .accept_ra_mtu = 1, |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 229 | .stable_secret = { |
| 230 | .initialized = false, |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 231 | }, |
| 232 | .use_oif_addrs_only = 0, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 233 | .ignore_routes_with_linkdown = 0, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 234 | .keep_addr_on_down = 0, |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 235 | .seg6_enabled = 0, |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 236 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 237 | .seg6_require_hmac = 0, |
| 238 | #endif |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 239 | .enhanced_dad = 1, |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 240 | .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64, |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 241 | .disable_policy = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | }; |
| 243 | |
Brian Haley | ab32ea5 | 2006-09-22 14:15:41 -0700 | [diff] [blame] | 244 | static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | .forwarding = 0, |
| 246 | .hop_limit = IPV6_DEFAULT_HOPLIMIT, |
| 247 | .mtu6 = IPV6_MIN_MTU, |
| 248 | .accept_ra = 1, |
| 249 | .accept_redirects = 1, |
| 250 | .autoconf = 1, |
Hannes Frederic Sowa | fc4eba5 | 2013-08-14 01:03:46 +0200 | [diff] [blame] | 251 | .force_mld_version = 0, |
| 252 | .mldv1_unsolicited_report_interval = 10 * HZ, |
| 253 | .mldv2_unsolicited_report_interval = HZ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | .dad_transmits = 1, |
| 255 | .rtr_solicits = MAX_RTR_SOLICITATIONS, |
| 256 | .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL, |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 257 | .rtr_solicit_max_interval = RTR_SOLICITATION_MAX_INTERVAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | .use_tempaddr = 0, |
| 260 | .temp_valid_lft = TEMP_VALID_LIFETIME, |
| 261 | .temp_prefered_lft = TEMP_PREFERRED_LIFETIME, |
| 262 | .regen_max_retry = REGEN_MAX_RETRY, |
| 263 | .max_desync_factor = MAX_DESYNC_FACTOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | .max_addresses = IPV6_MAX_ADDRESSES, |
YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 265 | .accept_ra_defrtr = 1, |
Ben Greear | d933319 | 2014-06-25 14:44:53 -0700 | [diff] [blame] | 266 | .accept_ra_from_local = 0, |
Hangbin Liu | 8013d1d7 | 2015-07-30 14:28:42 +0800 | [diff] [blame] | 267 | .accept_ra_min_hop_limit= 1, |
YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 268 | .accept_ra_pinfo = 1, |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 269 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 270 | .accept_ra_rtr_pref = 1, |
YOSHIFUJI Hideaki | 52e16356 | 2006-03-20 17:05:47 -0800 | [diff] [blame] | 271 | .rtr_probe_interval = 60 * HZ, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 272 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 273 | .accept_ra_rt_info_min_plen = 0, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 274 | .accept_ra_rt_info_max_plen = 0, |
| 275 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 276 | #endif |
YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 277 | .proxy_ndp = 0, |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 278 | .accept_source_route = 0, /* we do not accept RH0 by default. */ |
YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 279 | .disable_ipv6 = 0, |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 280 | .accept_dad = 1, |
Hannes Frederic Sowa | b800c3b | 2013-08-27 01:36:51 +0200 | [diff] [blame] | 281 | .suppress_frag_ndisc = 1, |
Harout Hedeshian | c2943f1 | 2015-01-20 10:06:05 -0700 | [diff] [blame] | 282 | .accept_ra_mtu = 1, |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 283 | .stable_secret = { |
| 284 | .initialized = false, |
| 285 | }, |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 286 | .use_oif_addrs_only = 0, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 287 | .ignore_routes_with_linkdown = 0, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 288 | .keep_addr_on_down = 0, |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 289 | .seg6_enabled = 0, |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 290 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 291 | .seg6_require_hmac = 0, |
| 292 | #endif |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 293 | .enhanced_dad = 1, |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 294 | .addr_gen_mode = IN6_ADDR_GEN_MODE_EUI64, |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 295 | .disable_policy = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | }; |
| 297 | |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 298 | /* Check if link is ready: is it up and is a valid qdisc available */ |
| 299 | static inline bool addrconf_link_ready(const struct net_device *dev) |
Mitsuru Chinen | f24e3d6 | 2007-10-10 02:53:43 -0700 | [diff] [blame] | 300 | { |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 301 | return netif_oper_up(dev) && !qdisc_tx_is_noop(dev); |
Mitsuru Chinen | f24e3d6 | 2007-10-10 02:53:43 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 304 | static void addrconf_del_rs_timer(struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | { |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 306 | if (del_timer(&idev->rs_timer)) |
| 307 | __in6_dev_put(idev); |
| 308 | } |
| 309 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 310 | static void addrconf_del_dad_work(struct inet6_ifaddr *ifp) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 311 | { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 312 | if (cancel_delayed_work(&ifp->dad_work)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | __in6_ifa_put(ifp); |
| 314 | } |
| 315 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 316 | static void addrconf_mod_rs_timer(struct inet6_dev *idev, |
| 317 | unsigned long when) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 319 | if (!timer_pending(&idev->rs_timer)) |
| 320 | in6_dev_hold(idev); |
| 321 | mod_timer(&idev->rs_timer, jiffies + when); |
| 322 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 324 | static void addrconf_mod_dad_work(struct inet6_ifaddr *ifp, |
| 325 | unsigned long delay) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 326 | { |
Xin Long | f8a894b | 2017-06-15 16:33:58 +0800 | [diff] [blame] | 327 | in6_ifa_hold(ifp); |
| 328 | if (mod_delayed_work(addrconf_wq, &ifp->dad_work, delay)) |
| 329 | in6_ifa_put(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
| 331 | |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 332 | static int snmp6_alloc_dev(struct inet6_dev *idev) |
| 333 | { |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 334 | int i; |
| 335 | |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 336 | idev->stats.ipv6 = alloc_percpu(struct ipstats_mib); |
| 337 | if (!idev->stats.ipv6) |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 338 | goto err_ip; |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 339 | |
| 340 | for_each_possible_cpu(i) { |
| 341 | struct ipstats_mib *addrconf_stats; |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 342 | addrconf_stats = per_cpu_ptr(idev->stats.ipv6, i); |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 343 | u64_stats_init(&addrconf_stats->syncp); |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 347 | idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device), |
| 348 | GFP_KERNEL); |
| 349 | if (!idev->stats.icmpv6dev) |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 350 | goto err_icmp; |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 351 | idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device), |
| 352 | GFP_KERNEL); |
| 353 | if (!idev->stats.icmpv6msgdev) |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 354 | goto err_icmpmsg; |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 355 | |
| 356 | return 0; |
| 357 | |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 358 | err_icmpmsg: |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 359 | kfree(idev->stats.icmpv6dev); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 360 | err_icmp: |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 361 | free_percpu(idev->stats.ipv6); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 362 | err_ip: |
Pavel Emelyanov | aaf70ec | 2007-10-17 21:25:32 -0700 | [diff] [blame] | 363 | return -ENOMEM; |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 366 | static struct inet6_dev *ipv6_add_dev(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { |
| 368 | struct inet6_dev *ndev; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 369 | int err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | ASSERT_RTNL(); |
| 372 | |
| 373 | if (dev->mtu < IPV6_MIN_MTU) |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 374 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 376 | ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 377 | if (!ndev) |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 378 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 380 | rwlock_init(&ndev->lock); |
| 381 | ndev->dev = dev; |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 382 | INIT_LIST_HEAD(&ndev->addr_list); |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 383 | timer_setup(&ndev->rs_timer, addrconf_rs_timer, 0); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 384 | 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] | 385 | |
| 386 | if (ndev->cnf.stable_secret.initialized) |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 387 | ndev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY; |
Hannes Frederic Sowa | 9b29c69 | 2015-12-15 22:59:12 +0100 | [diff] [blame] | 388 | else |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 389 | ndev->cnf.addr_gen_mode = ipv6_devconf_dflt.addr_gen_mode; |
Hannes Frederic Sowa | 9b29c69 | 2015-12-15 22:59:12 +0100 | [diff] [blame] | 390 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 391 | ndev->cnf.mtu6 = dev->mtu; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 392 | ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 393 | if (!ndev->nd_parms) { |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 394 | kfree(ndev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 395 | return ERR_PTR(err); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 396 | } |
Ben Hutchings | 0187bdf | 2008-06-19 16:15:47 -0700 | [diff] [blame] | 397 | if (ndev->cnf.forwarding) |
| 398 | dev_disable_lro(dev); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 399 | /* We refer to the device */ |
| 400 | dev_hold(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 402 | if (snmp6_alloc_dev(ndev) < 0) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 403 | netdev_dbg(dev, "%s: cannot allocate memory for statistics\n", |
| 404 | __func__); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 405 | neigh_parms_release(&nd_tbl, ndev->nd_parms); |
Roy Li | 8603e33 | 2011-09-20 15:10:16 -0400 | [diff] [blame] | 406 | dev_put(dev); |
| 407 | kfree(ndev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 408 | return ERR_PTR(err); |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 411 | if (snmp6_register_dev(ndev) < 0) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 412 | netdev_dbg(dev, "%s: cannot create /proc/net/dev_snmp6/%s\n", |
| 413 | __func__, dev->name); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 414 | goto err_release; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 415 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 417 | /* One reference from device. */ |
Reshetova, Elena | 1be9246 | 2017-07-04 09:34:55 +0300 | [diff] [blame] | 418 | refcount_set(&ndev->refcnt, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 420 | if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) |
| 421 | ndev->cnf.accept_dad = -1; |
| 422 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 423 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
YOSHIFUJI Hideaki | b077d7a | 2008-04-13 23:42:18 -0700 | [diff] [blame] | 424 | if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 425 | pr_info("%s: Disabled Multicast RS\n", dev->name); |
YOSHIFUJI Hideaki | b077d7a | 2008-04-13 23:42:18 -0700 | [diff] [blame] | 426 | ndev->cnf.rtr_solicits = 0; |
| 427 | } |
| 428 | #endif |
| 429 | |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 430 | INIT_LIST_HEAD(&ndev->tempaddr_list); |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 431 | ndev->desync_factor = U32_MAX; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 432 | if ((dev->flags&IFF_LOOPBACK) || |
| 433 | dev->type == ARPHRD_TUNNEL || |
YOSHIFUJI Hideaki | 9625ed7 | 2008-04-13 23:47:11 -0700 | [diff] [blame] | 434 | dev->type == ARPHRD_TUNNEL6 || |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 435 | dev->type == ARPHRD_SIT || |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 436 | dev->type == ARPHRD_NONE) { |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 437 | ndev->cnf.use_tempaddr = -1; |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 438 | } else |
| 439 | ipv6_regen_rndid(ndev); |
David S. Miller | 5d9efa7 | 2013-10-28 20:07:50 -0400 | [diff] [blame] | 440 | |
Daniel Borkmann | 914faa1 | 2013-04-09 03:47:14 +0000 | [diff] [blame] | 441 | ndev->token = in6addr_any; |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 442 | |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 443 | if (netif_running(dev) && addrconf_link_ready(dev)) |
Herbert Xu | 53aadcc | 2007-03-27 14:31:52 -0700 | [diff] [blame] | 444 | ndev->if_flags |= IF_READY; |
| 445 | |
Ingo Oeser | 322f74a | 2006-03-20 23:01:47 -0800 | [diff] [blame] | 446 | ipv6_mc_init_dev(ndev); |
| 447 | ndev->tstamp = jiffies; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 448 | err = addrconf_sysctl_register(ndev); |
| 449 | if (err) { |
| 450 | ipv6_mc_destroy_dev(ndev); |
Sabrina Dubroca | 2a189f9e | 2015-11-04 14:47:53 +0100 | [diff] [blame] | 451 | snmp6_unregister_dev(ndev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 452 | goto err_release; |
| 453 | } |
David L Stevens | 30c4cf5 | 2007-01-04 12:31:14 -0800 | [diff] [blame] | 454 | /* protected by rtnl_lock */ |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 455 | rcu_assign_pointer(dev->ip6_ptr, ndev); |
YOSHIFUJI Hideaki | d88ae4c | 2007-01-14 21:48:40 -0800 | [diff] [blame] | 456 | |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 457 | /* Join interface-local all-node multicast group */ |
| 458 | ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes); |
| 459 | |
YOSHIFUJI Hideaki | d88ae4c | 2007-01-14 21:48:40 -0800 | [diff] [blame] | 460 | /* Join all-node multicast group */ |
YOSHIFUJI Hideaki | f3ee401 | 2008-04-10 15:42:11 +0900 | [diff] [blame] | 461 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes); |
YOSHIFUJI Hideaki | d88ae4c | 2007-01-14 21:48:40 -0800 | [diff] [blame] | 462 | |
Li Wei | d6ddef9 | 2012-03-05 14:45:17 +0000 | [diff] [blame] | 463 | /* Join all-router multicast group if forwarding is set */ |
Li Wei | 8b2aaed | 2012-03-07 14:58:07 +0000 | [diff] [blame] | 464 | if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST)) |
Li Wei | d6ddef9 | 2012-03-05 14:45:17 +0000 | [diff] [blame] | 465 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters); |
| 466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | return ndev; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 468 | |
| 469 | err_release: |
| 470 | neigh_parms_release(&nd_tbl, ndev->nd_parms); |
| 471 | ndev->dead = 1; |
| 472 | in6_dev_finish_destroy(ndev); |
| 473 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 476 | static struct inet6_dev *ipv6_find_idev(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { |
| 478 | struct inet6_dev *idev; |
| 479 | |
| 480 | ASSERT_RTNL(); |
| 481 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 482 | idev = __in6_dev_get(dev); |
| 483 | if (!idev) { |
| 484 | idev = ipv6_add_dev(dev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 485 | if (IS_ERR(idev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return NULL; |
| 487 | } |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | if (dev->flags&IFF_UP) |
| 490 | ipv6_mc_up(idev); |
| 491 | return idev; |
| 492 | } |
| 493 | |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 494 | static int inet6_netconf_msgsize_devconf(int type) |
| 495 | { |
| 496 | int size = NLMSG_ALIGN(sizeof(struct netconfmsg)) |
| 497 | + nla_total_size(4); /* NETCONFA_IFINDEX */ |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 498 | bool all = false; |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 499 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 500 | if (type == NETCONFA_ALL) |
| 501 | all = true; |
| 502 | |
| 503 | if (all || type == NETCONFA_FORWARDING) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 504 | size += nla_total_size(4); |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 505 | #ifdef CONFIG_IPV6_MROUTE |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 506 | if (all || type == NETCONFA_MC_FORWARDING) |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 507 | size += nla_total_size(4); |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 508 | #endif |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 509 | if (all || type == NETCONFA_PROXY_NEIGH) |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 510 | size += nla_total_size(4); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 511 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 512 | if (all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 513 | size += nla_total_size(4); |
| 514 | |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 515 | return size; |
| 516 | } |
| 517 | |
| 518 | static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex, |
| 519 | struct ipv6_devconf *devconf, u32 portid, |
| 520 | u32 seq, int event, unsigned int flags, |
| 521 | int type) |
| 522 | { |
| 523 | struct nlmsghdr *nlh; |
| 524 | struct netconfmsg *ncm; |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 525 | bool all = false; |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 526 | |
| 527 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg), |
| 528 | flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 529 | if (!nlh) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 530 | return -EMSGSIZE; |
| 531 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 532 | if (type == NETCONFA_ALL) |
| 533 | all = true; |
| 534 | |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 535 | ncm = nlmsg_data(nlh); |
| 536 | ncm->ncm_family = AF_INET6; |
| 537 | |
| 538 | if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0) |
| 539 | goto nla_put_failure; |
| 540 | |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 541 | if (!devconf) |
| 542 | goto out; |
| 543 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 544 | if ((all || type == NETCONFA_FORWARDING) && |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 545 | nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0) |
| 546 | goto nla_put_failure; |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 547 | #ifdef CONFIG_IPV6_MROUTE |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 548 | if ((all || type == NETCONFA_MC_FORWARDING) && |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 549 | nla_put_s32(skb, NETCONFA_MC_FORWARDING, |
| 550 | devconf->mc_forwarding) < 0) |
| 551 | goto nla_put_failure; |
David S. Miller | b1afce9 | 2012-12-04 14:46:34 -0500 | [diff] [blame] | 552 | #endif |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 553 | if ((all || type == NETCONFA_PROXY_NEIGH) && |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 554 | nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0) |
| 555 | goto nla_put_failure; |
| 556 | |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 557 | if ((all || type == NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN) && |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 558 | nla_put_s32(skb, NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 559 | devconf->ignore_routes_with_linkdown) < 0) |
| 560 | goto nla_put_failure; |
| 561 | |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 562 | out: |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 563 | nlmsg_end(skb, nlh); |
| 564 | return 0; |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 565 | |
| 566 | nla_put_failure: |
| 567 | nlmsg_cancel(skb, nlh); |
| 568 | return -EMSGSIZE; |
| 569 | } |
| 570 | |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 571 | void inet6_netconf_notify_devconf(struct net *net, int event, int type, |
| 572 | int ifindex, struct ipv6_devconf *devconf) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 573 | { |
| 574 | struct sk_buff *skb; |
| 575 | int err = -ENOBUFS; |
| 576 | |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 577 | skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 578 | if (!skb) |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 579 | goto errout; |
| 580 | |
| 581 | err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0, |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 582 | event, 0, type); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 583 | if (err < 0) { |
| 584 | /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */ |
| 585 | WARN_ON(err == -EMSGSIZE); |
| 586 | kfree_skb(skb); |
| 587 | goto errout; |
| 588 | } |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 589 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_KERNEL); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 590 | return; |
| 591 | errout: |
Cong Ding | bd77902 | 2012-12-18 12:08:56 +0000 | [diff] [blame] | 592 | rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 593 | } |
| 594 | |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 595 | static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = { |
| 596 | [NETCONFA_IFINDEX] = { .len = sizeof(int) }, |
| 597 | [NETCONFA_FORWARDING] = { .len = sizeof(int) }, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 598 | [NETCONFA_PROXY_NEIGH] = { .len = sizeof(int) }, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 599 | [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN] = { .len = sizeof(int) }, |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 600 | }; |
| 601 | |
| 602 | static int inet6_netconf_get_devconf(struct sk_buff *in_skb, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 603 | struct nlmsghdr *nlh, |
| 604 | struct netlink_ext_ack *extack) |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 605 | { |
| 606 | struct net *net = sock_net(in_skb->sk); |
| 607 | struct nlattr *tb[NETCONFA_MAX+1]; |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 608 | struct inet6_dev *in6_dev = NULL; |
| 609 | struct net_device *dev = NULL; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 610 | struct netconfmsg *ncm; |
| 611 | struct sk_buff *skb; |
| 612 | struct ipv6_devconf *devconf; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 613 | int ifindex; |
| 614 | int err; |
| 615 | |
| 616 | err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 617 | devconf_ipv6_policy, extack); |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 618 | if (err < 0) |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 619 | return err; |
| 620 | |
| 621 | if (!tb[NETCONFA_IFINDEX]) |
| 622 | return -EINVAL; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 623 | |
Anton Protopopov | a97eb33 | 2016-02-16 21:43:16 -0500 | [diff] [blame] | 624 | err = -EINVAL; |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 625 | ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]); |
| 626 | switch (ifindex) { |
| 627 | case NETCONFA_IFINDEX_ALL: |
| 628 | devconf = net->ipv6.devconf_all; |
| 629 | break; |
| 630 | case NETCONFA_IFINDEX_DEFAULT: |
| 631 | devconf = net->ipv6.devconf_dflt; |
| 632 | break; |
| 633 | default: |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 634 | dev = dev_get_by_index(net, ifindex); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 635 | if (!dev) |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 636 | return -EINVAL; |
| 637 | in6_dev = in6_dev_get(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 638 | if (!in6_dev) |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 639 | goto errout; |
| 640 | devconf = &in6_dev->cnf; |
| 641 | break; |
| 642 | } |
| 643 | |
| 644 | err = -ENOBUFS; |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 645 | skb = nlmsg_new(inet6_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 646 | if (!skb) |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 647 | goto errout; |
| 648 | |
| 649 | err = inet6_netconf_fill_devconf(skb, ifindex, devconf, |
| 650 | NETLINK_CB(in_skb).portid, |
| 651 | nlh->nlmsg_seq, RTM_NEWNETCONF, 0, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 652 | NETCONFA_ALL); |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 653 | if (err < 0) { |
| 654 | /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */ |
| 655 | WARN_ON(err == -EMSGSIZE); |
| 656 | kfree_skb(skb); |
| 657 | goto errout; |
| 658 | } |
| 659 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); |
| 660 | errout: |
Florian Westphal | 4ea2607 | 2017-10-11 10:28:00 +0200 | [diff] [blame] | 661 | if (in6_dev) |
| 662 | in6_dev_put(in6_dev); |
| 663 | if (dev) |
| 664 | dev_put(dev); |
Nicolas Dichtel | 76f8f6c | 2012-10-25 22:28:51 +0000 | [diff] [blame] | 665 | return err; |
| 666 | } |
| 667 | |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 668 | static int inet6_netconf_dump_devconf(struct sk_buff *skb, |
| 669 | struct netlink_callback *cb) |
| 670 | { |
| 671 | struct net *net = sock_net(skb->sk); |
| 672 | int h, s_h; |
| 673 | int idx, s_idx; |
| 674 | struct net_device *dev; |
| 675 | struct inet6_dev *idev; |
| 676 | struct hlist_head *head; |
| 677 | |
| 678 | s_h = cb->args[0]; |
| 679 | s_idx = idx = cb->args[1]; |
| 680 | |
| 681 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 682 | idx = 0; |
| 683 | head = &net->dev_index_head[h]; |
| 684 | rcu_read_lock(); |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 685 | cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ |
| 686 | net->dev_base_seq; |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 687 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
| 688 | if (idx < s_idx) |
| 689 | goto cont; |
| 690 | idev = __in6_dev_get(dev); |
| 691 | if (!idev) |
| 692 | goto cont; |
| 693 | |
| 694 | if (inet6_netconf_fill_devconf(skb, dev->ifindex, |
| 695 | &idev->cnf, |
| 696 | NETLINK_CB(cb->skb).portid, |
| 697 | cb->nlh->nlmsg_seq, |
| 698 | RTM_NEWNETCONF, |
| 699 | NLM_F_MULTI, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 700 | NETCONFA_ALL) < 0) { |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 701 | rcu_read_unlock(); |
| 702 | goto done; |
| 703 | } |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 704 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 705 | cont: |
| 706 | idx++; |
| 707 | } |
| 708 | rcu_read_unlock(); |
| 709 | } |
| 710 | if (h == NETDEV_HASHENTRIES) { |
| 711 | if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL, |
| 712 | net->ipv6.devconf_all, |
| 713 | NETLINK_CB(cb->skb).portid, |
| 714 | cb->nlh->nlmsg_seq, |
| 715 | RTM_NEWNETCONF, NLM_F_MULTI, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 716 | NETCONFA_ALL) < 0) |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 717 | goto done; |
| 718 | else |
| 719 | h++; |
| 720 | } |
| 721 | if (h == NETDEV_HASHENTRIES + 1) { |
| 722 | if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT, |
| 723 | net->ipv6.devconf_dflt, |
| 724 | NETLINK_CB(cb->skb).portid, |
| 725 | cb->nlh->nlmsg_seq, |
| 726 | RTM_NEWNETCONF, NLM_F_MULTI, |
Zhang Shengju | 136ba62 | 2016-03-10 08:55:50 +0000 | [diff] [blame] | 727 | NETCONFA_ALL) < 0) |
Nicolas Dichtel | 7a67420 | 2013-03-05 23:42:06 +0000 | [diff] [blame] | 728 | goto done; |
| 729 | else |
| 730 | h++; |
| 731 | } |
| 732 | done: |
| 733 | cb->args[0] = h; |
| 734 | cb->args[1] = idx; |
| 735 | |
| 736 | return skb->len; |
| 737 | } |
| 738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | #ifdef CONFIG_SYSCTL |
| 740 | static void dev_forward_change(struct inet6_dev *idev) |
| 741 | { |
| 742 | struct net_device *dev; |
| 743 | struct inet6_ifaddr *ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
| 745 | if (!idev) |
| 746 | return; |
| 747 | dev = idev->dev; |
Ben Hutchings | 0187bdf | 2008-06-19 16:15:47 -0700 | [diff] [blame] | 748 | if (idev->cnf.forwarding) |
| 749 | dev_disable_lro(dev); |
Amerigo Wang | 1a94083 | 2012-10-28 17:43:53 +0000 | [diff] [blame] | 750 | if (dev->flags & IFF_MULTICAST) { |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 751 | if (idev->cnf.forwarding) { |
YOSHIFUJI Hideaki | f3ee401 | 2008-04-10 15:42:11 +0900 | [diff] [blame] | 752 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters); |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 753 | ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters); |
| 754 | ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters); |
| 755 | } else { |
YOSHIFUJI Hideaki | f3ee401 | 2008-04-10 15:42:11 +0900 | [diff] [blame] | 756 | ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters); |
Hannes Frederic Sowa | 2c5e893 | 2013-02-10 03:50:18 +0000 | [diff] [blame] | 757 | ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters); |
| 758 | ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters); |
| 759 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 761 | |
| 762 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
Michal Wrobel | 2c12a74 | 2007-02-26 15:36:10 -0800 | [diff] [blame] | 763 | if (ifa->flags&IFA_F_TENTATIVE) |
| 764 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | if (idev->cnf.forwarding) |
| 766 | addrconf_join_anycast(ifa); |
| 767 | else |
| 768 | addrconf_leave_anycast(ifa); |
| 769 | } |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 770 | inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, |
| 771 | NETCONFA_FORWARDING, |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 772 | dev->ifindex, &idev->cnf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 776 | static void addrconf_forward_change(struct net *net, __s32 newf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | { |
| 778 | struct net_device *dev; |
| 779 | struct inet6_dev *idev; |
| 780 | |
Ben Hutchings | 4acd494 | 2012-08-14 08:54:51 +0000 | [diff] [blame] | 781 | for_each_netdev(net, dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | idev = __in6_dev_get(dev); |
| 783 | if (idev) { |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 784 | int changed = (!idev->cnf.forwarding) ^ (!newf); |
| 785 | idev->cnf.forwarding = newf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | if (changed) |
| 787 | dev_forward_change(idev); |
| 788 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 791 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 792 | 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] | 793 | { |
Pavel Emelyanov | bff16c2 | 2008-01-10 17:42:13 -0800 | [diff] [blame] | 794 | struct net *net; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 795 | int old; |
| 796 | |
| 797 | if (!rtnl_trylock()) |
| 798 | return restart_syscall(); |
Pavel Emelyanov | bff16c2 | 2008-01-10 17:42:13 -0800 | [diff] [blame] | 799 | |
| 800 | net = (struct net *)table->extra2; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 801 | old = *p; |
| 802 | *p = newf; |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 803 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 804 | if (p == &net->ipv6.devconf_dflt->forwarding) { |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 805 | if ((!newf) ^ (!old)) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 806 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 807 | NETCONFA_FORWARDING, |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 808 | NETCONFA_IFINDEX_DEFAULT, |
| 809 | net->ipv6.devconf_dflt); |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 810 | rtnl_unlock(); |
| 811 | return 0; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 812 | } |
Stephen Hemminger | b325fdd | 2009-02-26 06:55:31 +0000 | [diff] [blame] | 813 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 814 | if (p == &net->ipv6.devconf_all->forwarding) { |
Nicolas Dichtel | d26c638 | 2016-08-30 10:09:21 +0200 | [diff] [blame] | 815 | int old_dflt = net->ipv6.devconf_dflt->forwarding; |
| 816 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 817 | net->ipv6.devconf_dflt->forwarding = newf; |
Nicolas Dichtel | d26c638 | 2016-08-30 10:09:21 +0200 | [diff] [blame] | 818 | if ((!newf) ^ (!old_dflt)) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 819 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 820 | NETCONFA_FORWARDING, |
Nicolas Dichtel | d26c638 | 2016-08-30 10:09:21 +0200 | [diff] [blame] | 821 | NETCONFA_IFINDEX_DEFAULT, |
| 822 | net->ipv6.devconf_dflt); |
| 823 | |
Pavel Emelyanov | e186932 | 2008-01-10 17:43:50 -0800 | [diff] [blame] | 824 | addrconf_forward_change(net, newf); |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 825 | if ((!newf) ^ (!old)) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 826 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 827 | NETCONFA_FORWARDING, |
Nicolas Dichtel | f3a1bfb | 2012-10-25 22:28:50 +0000 | [diff] [blame] | 828 | NETCONFA_IFINDEX_ALL, |
| 829 | net->ipv6.devconf_all); |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 830 | } else if ((!newf) ^ (!old)) |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 831 | dev_forward_change((struct inet6_dev *)table->extra1); |
Ben Hutchings | 0187bdf | 2008-06-19 16:15:47 -0700 | [diff] [blame] | 832 | rtnl_unlock(); |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 833 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 834 | if (newf) |
Daniel Lezcano | 7b4da53 | 2008-03-04 13:47:14 -0800 | [diff] [blame] | 835 | rt6_purge_dflt_routers(net); |
Stephen Hemminger | b325fdd | 2009-02-26 06:55:31 +0000 | [diff] [blame] | 836 | return 1; |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 837 | } |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 838 | |
| 839 | static void addrconf_linkdown_change(struct net *net, __s32 newf) |
| 840 | { |
| 841 | struct net_device *dev; |
| 842 | struct inet6_dev *idev; |
| 843 | |
| 844 | for_each_netdev(net, dev) { |
| 845 | idev = __in6_dev_get(dev); |
| 846 | if (idev) { |
| 847 | int changed = (!idev->cnf.ignore_routes_with_linkdown) ^ (!newf); |
| 848 | |
| 849 | idev->cnf.ignore_routes_with_linkdown = newf; |
| 850 | if (changed) |
| 851 | inet6_netconf_notify_devconf(dev_net(dev), |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 852 | RTM_NEWNETCONF, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 853 | NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 854 | dev->ifindex, |
| 855 | &idev->cnf); |
| 856 | } |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | static int addrconf_fixup_linkdown(struct ctl_table *table, int *p, int newf) |
| 861 | { |
| 862 | struct net *net; |
| 863 | int old; |
| 864 | |
| 865 | if (!rtnl_trylock()) |
| 866 | return restart_syscall(); |
| 867 | |
| 868 | net = (struct net *)table->extra2; |
| 869 | old = *p; |
| 870 | *p = newf; |
| 871 | |
| 872 | if (p == &net->ipv6.devconf_dflt->ignore_routes_with_linkdown) { |
| 873 | if ((!newf) ^ (!old)) |
| 874 | inet6_netconf_notify_devconf(net, |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 875 | RTM_NEWNETCONF, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 876 | NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 877 | NETCONFA_IFINDEX_DEFAULT, |
| 878 | net->ipv6.devconf_dflt); |
| 879 | rtnl_unlock(); |
| 880 | return 0; |
| 881 | } |
| 882 | |
| 883 | if (p == &net->ipv6.devconf_all->ignore_routes_with_linkdown) { |
| 884 | net->ipv6.devconf_dflt->ignore_routes_with_linkdown = newf; |
| 885 | addrconf_linkdown_change(net, newf); |
| 886 | if ((!newf) ^ (!old)) |
| 887 | inet6_netconf_notify_devconf(net, |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 888 | RTM_NEWNETCONF, |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 889 | NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN, |
| 890 | NETCONFA_IFINDEX_ALL, |
| 891 | net->ipv6.devconf_all); |
| 892 | } |
| 893 | rtnl_unlock(); |
| 894 | |
| 895 | return 1; |
| 896 | } |
| 897 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | #endif |
| 899 | |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 900 | /* Nobody refers to this ifaddr, destroy it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp) |
| 902 | { |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 903 | WARN_ON(!hlist_unhashed(&ifp->addr_lst)); |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | #ifdef NET_REFCNT_DEBUG |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 906 | pr_debug("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | #endif |
| 908 | |
| 909 | in6_dev_put(ifp->idev); |
| 910 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 911 | if (cancel_delayed_work(&ifp->dad_work)) |
| 912 | pr_notice("delayed DAD work was pending while freeing ifa=%p\n", |
| 913 | ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | |
Herbert Xu | e9d3e08 | 2010-05-18 15:36:06 -0700 | [diff] [blame] | 915 | if (ifp->state != INET6_IFADDR_STATE_DEAD) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 916 | pr_warn("Freeing alive inet6 address %p\n", ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | return; |
| 918 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Lai Jiangshan | e578598 | 2011-03-15 18:00:14 +0800 | [diff] [blame] | 920 | kfree_rcu(ifp, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 923 | static void |
| 924 | ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp) |
| 925 | { |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 926 | struct list_head *p; |
YOSHIFUJI Hideaki | 8a6ce0c | 2006-07-11 13:05:30 -0700 | [diff] [blame] | 927 | int ifp_scope = ipv6_addr_src_scope(&ifp->addr); |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 928 | |
| 929 | /* |
| 930 | * Each device address list is sorted in order of scope - |
| 931 | * global before linklocal. |
| 932 | */ |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 933 | list_for_each(p, &idev->addr_list) { |
| 934 | struct inet6_ifaddr *ifa |
| 935 | = list_entry(p, struct inet6_ifaddr, if_list); |
YOSHIFUJI Hideaki | 8a6ce0c | 2006-07-11 13:05:30 -0700 | [diff] [blame] | 936 | if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr)) |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 937 | break; |
| 938 | } |
| 939 | |
Eric Dumazet | 8ef802a | 2017-10-07 19:30:23 -0700 | [diff] [blame] | 940 | list_add_tail_rcu(&ifp->if_list, p); |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 941 | } |
| 942 | |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 943 | 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] | 944 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 945 | u32 val = ipv6_addr_hash(addr) ^ net_hash_mix(net); |
| 946 | |
| 947 | return hash_32(val, IN6_ADDR_HSIZE_SHIFT); |
YOSHIFUJI Hideaki | 3eb84f4 | 2008-04-10 15:42:08 +0900 | [diff] [blame] | 948 | } |
| 949 | |
Eric Dumazet | 56fc709 | 2017-10-23 16:17:45 -0700 | [diff] [blame] | 950 | 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] | 951 | struct net_device *dev, unsigned int hash) |
Eric Dumazet | 56fc709 | 2017-10-23 16:17:45 -0700 | [diff] [blame] | 952 | { |
Eric Dumazet | 56fc709 | 2017-10-23 16:17:45 -0700 | [diff] [blame] | 953 | struct inet6_ifaddr *ifp; |
| 954 | |
| 955 | hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) { |
| 956 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
| 957 | continue; |
| 958 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
| 959 | if (!dev || ifp->idev->dev == dev) |
| 960 | return true; |
| 961 | } |
| 962 | } |
| 963 | return false; |
| 964 | } |
| 965 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 966 | static int ipv6_add_addr_hash(struct net_device *dev, struct inet6_ifaddr *ifa) |
| 967 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 968 | unsigned int hash = inet6_addr_hash(dev_net(dev), &ifa->addr); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 969 | int err = 0; |
| 970 | |
| 971 | spin_lock(&addrconf_hash_lock); |
| 972 | |
| 973 | /* Ignore adding duplicate addresses on an interface */ |
Eric Dumazet | 752a929 | 2017-10-23 16:17:46 -0700 | [diff] [blame] | 974 | if (ipv6_chk_same_addr(dev_net(dev), &ifa->addr, dev, hash)) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 975 | netdev_dbg(dev, "ipv6_add_addr: already assigned\n"); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 976 | err = -EEXIST; |
Eric Dumazet | 752a929 | 2017-10-23 16:17:46 -0700 | [diff] [blame] | 977 | } else { |
| 978 | hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 979 | } |
| 980 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 981 | spin_unlock(&addrconf_hash_lock); |
| 982 | |
| 983 | return err; |
| 984 | } |
| 985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | /* On success it returns ifp with increased reference count */ |
| 987 | |
| 988 | static struct inet6_ifaddr * |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 989 | ipv6_add_addr(struct inet6_dev *idev, struct ifa6_config *cfg, |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 990 | bool can_block, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | { |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 992 | gfp_t gfp_flags = can_block ? GFP_KERNEL : GFP_ATOMIC; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 993 | int addr_type = ipv6_addr_type(cfg->pfx); |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 994 | struct net *net = dev_net(idev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | struct inet6_ifaddr *ifa = NULL; |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 996 | struct fib6_info *f6i = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | int err = 0; |
YOSHIFUJI Hideaki | d68b827 | 2008-06-25 16:26:47 +0900 | [diff] [blame] | 998 | |
| 999 | if (addr_type == IPV6_ADDR_ANY || |
| 1000 | addr_type & IPV6_ADDR_MULTICAST || |
| 1001 | (!(idev->dev->flags & IFF_LOOPBACK) && |
| 1002 | addr_type & IPV6_ADDR_LOOPBACK)) |
| 1003 | return ERR_PTR(-EADDRNOTAVAIL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | if (idev->dead) { |
| 1006 | err = -ENODEV; /*XXX*/ |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1007 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 1010 | if (idev->cnf.disable_ipv6) { |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 1011 | err = -EACCES; |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1012 | goto out; |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 1013 | } |
| 1014 | |
David Ahern | ff7883e | 2017-10-18 09:56:53 -0700 | [diff] [blame] | 1015 | /* validator notifier needs to be blocking; |
| 1016 | * do not call in atomic context |
| 1017 | */ |
| 1018 | if (can_block) { |
| 1019 | struct in6_validator_info i6vi = { |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1020 | .i6vi_addr = *cfg->pfx, |
David Ahern | ff7883e | 2017-10-18 09:56:53 -0700 | [diff] [blame] | 1021 | .i6vi_dev = idev, |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 1022 | .extack = extack, |
David Ahern | ff7883e | 2017-10-18 09:56:53 -0700 | [diff] [blame] | 1023 | }; |
| 1024 | |
| 1025 | err = inet6addr_validator_notifier_call_chain(NETDEV_UP, &i6vi); |
| 1026 | err = notifier_to_errno(err); |
| 1027 | if (err < 0) |
| 1028 | goto out; |
| 1029 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1031 | ifa = kzalloc(sizeof(*ifa), gfp_flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1032 | if (!ifa) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | err = -ENOBUFS; |
| 1034 | goto out; |
| 1035 | } |
| 1036 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1037 | f6i = addrconf_f6i_alloc(net, idev, cfg->pfx, false, gfp_flags); |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1038 | if (IS_ERR(f6i)) { |
| 1039 | err = PTR_ERR(f6i); |
| 1040 | f6i = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | goto out; |
| 1042 | } |
| 1043 | |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 1044 | if (net->ipv6.devconf_all->disable_policy || |
| 1045 | idev->cnf.disable_policy) |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1046 | f6i->dst_nopolicy = true; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 1047 | |
Jiri Pirko | bba2489 | 2013-12-07 19:26:57 +0100 | [diff] [blame] | 1048 | neigh_parms_data_state_setall(idev->nd_parms); |
| 1049 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1050 | ifa->addr = *cfg->pfx; |
| 1051 | if (cfg->peer_pfx) |
| 1052 | ifa->peer_addr = *cfg->peer_pfx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
| 1054 | spin_lock_init(&ifa->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1055 | INIT_DELAYED_WORK(&ifa->dad_work, addrconf_dad_work); |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 1056 | INIT_HLIST_NODE(&ifa->addr_lst); |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1057 | ifa->scope = cfg->scope; |
| 1058 | ifa->prefix_len = cfg->plen; |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 1059 | ifa->rt_priority = cfg->rt_priority; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1060 | ifa->flags = cfg->ifa_flags; |
Mahesh Bandewar | 66eb9f8 | 2017-05-12 17:03:39 -0700 | [diff] [blame] | 1061 | /* No need to add the TENTATIVE flag for addresses with NODAD */ |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1062 | if (!(cfg->ifa_flags & IFA_F_NODAD)) |
Mahesh Bandewar | 66eb9f8 | 2017-05-12 17:03:39 -0700 | [diff] [blame] | 1063 | ifa->flags |= IFA_F_TENTATIVE; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1064 | ifa->valid_lft = cfg->valid_lft; |
| 1065 | ifa->prefered_lft = cfg->preferred_lft; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | ifa->cstamp = ifa->tstamp = jiffies; |
Daniel Borkmann | 617fe29 | 2013-04-09 03:47:16 +0000 | [diff] [blame] | 1067 | ifa->tokenized = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1069 | ifa->rt = f6i; |
Keir Fraser | 57f5f54 | 2006-08-29 02:43:49 -0700 | [diff] [blame] | 1070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | ifa->idev = idev; |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1072 | in6_dev_hold(idev); |
| 1073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | /* For caller */ |
Reshetova, Elena | 271201c | 2017-07-04 09:34:56 +0300 | [diff] [blame] | 1075 | refcount_set(&ifa->refcnt, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1077 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1079 | err = ipv6_add_addr_hash(idev->dev, ifa); |
| 1080 | if (err < 0) { |
| 1081 | rcu_read_unlock_bh(); |
| 1082 | goto out; |
| 1083 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
| 1085 | write_lock(&idev->lock); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | /* Add to inet6_dev unicast addr list. */ |
Brian Haley | e55ffac | 2006-07-10 15:25:51 -0700 | [diff] [blame] | 1088 | ipv6_link_dev_addr(idev, ifa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | if (ifa->flags&IFA_F_TEMPORARY) { |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 1091 | list_add(&ifa->tmp_list, &idev->tempaddr_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | in6_ifa_hold(ifa); |
| 1093 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | in6_ifa_hold(ifa); |
| 1096 | write_unlock(&idev->lock); |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1097 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1098 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1100 | inet6addr_notifier_call_chain(NETDEV_UP, ifa); |
| 1101 | out: |
| 1102 | if (unlikely(err < 0)) { |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 1103 | fib6_info_release(f6i); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1104 | |
David Ahern | f3d9832 | 2017-10-18 09:56:52 -0700 | [diff] [blame] | 1105 | if (ifa) { |
| 1106 | if (ifa->idev) |
| 1107 | in6_dev_put(ifa->idev); |
| 1108 | kfree(ifa); |
| 1109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | ifa = ERR_PTR(err); |
| 1111 | } |
| 1112 | |
| 1113 | return ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | } |
| 1115 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1116 | enum cleanup_prefix_rt_t { |
| 1117 | CLEANUP_PREFIX_RT_NOP, /* no cleanup action for prefix route */ |
| 1118 | CLEANUP_PREFIX_RT_DEL, /* delete the prefix route */ |
| 1119 | CLEANUP_PREFIX_RT_EXPIRE, /* update the lifetime of the prefix route */ |
| 1120 | }; |
| 1121 | |
| 1122 | /* |
| 1123 | * Check, whether the prefix for ifp would still need a prefix route |
| 1124 | * after deleting ifp. The function returns one of the CLEANUP_PREFIX_RT_* |
| 1125 | * constants. |
| 1126 | * |
| 1127 | * 1) we don't purge prefix if address was not permanent. |
| 1128 | * prefix is managed by its own lifetime. |
| 1129 | * 2) we also don't purge, if the address was IFA_F_NOPREFIXROUTE. |
| 1130 | * 3) if there are no addresses, delete prefix. |
| 1131 | * 4) if there are still other permanent address(es), |
| 1132 | * corresponding prefix is still permanent. |
| 1133 | * 5) if there are still other addresses with IFA_F_NOPREFIXROUTE, |
| 1134 | * don't purge the prefix, assume user space is managing it. |
| 1135 | * 6) otherwise, update prefix lifetime to the |
| 1136 | * longest valid lifetime among the corresponding |
| 1137 | * addresses on the device. |
| 1138 | * Note: subsequent RA will update lifetime. |
| 1139 | **/ |
| 1140 | static enum cleanup_prefix_rt_t |
| 1141 | check_cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long *expires) |
| 1142 | { |
| 1143 | struct inet6_ifaddr *ifa; |
| 1144 | struct inet6_dev *idev = ifp->idev; |
| 1145 | unsigned long lifetime; |
| 1146 | enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_DEL; |
| 1147 | |
| 1148 | *expires = jiffies; |
| 1149 | |
| 1150 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
| 1151 | if (ifa == ifp) |
| 1152 | continue; |
| 1153 | if (!ipv6_prefix_equal(&ifa->addr, &ifp->addr, |
| 1154 | ifp->prefix_len)) |
| 1155 | continue; |
| 1156 | if (ifa->flags & (IFA_F_PERMANENT | IFA_F_NOPREFIXROUTE)) |
| 1157 | return CLEANUP_PREFIX_RT_NOP; |
| 1158 | |
| 1159 | action = CLEANUP_PREFIX_RT_EXPIRE; |
| 1160 | |
| 1161 | spin_lock(&ifa->lock); |
| 1162 | |
| 1163 | lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ); |
| 1164 | /* |
| 1165 | * Note: Because this address is |
| 1166 | * not permanent, lifetime < |
| 1167 | * LONG_MAX / HZ here. |
| 1168 | */ |
| 1169 | if (time_before(*expires, ifa->tstamp + lifetime * HZ)) |
| 1170 | *expires = ifa->tstamp + lifetime * HZ; |
| 1171 | spin_unlock(&ifa->lock); |
| 1172 | } |
| 1173 | |
| 1174 | return action; |
| 1175 | } |
| 1176 | |
| 1177 | static void |
| 1178 | cleanup_prefix_route(struct inet6_ifaddr *ifp, unsigned long expires, bool del_rt) |
| 1179 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1180 | struct fib6_info *f6i; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1181 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1182 | f6i = addrconf_get_prefix_route(&ifp->addr, |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1183 | ifp->prefix_len, |
| 1184 | ifp->idev->dev, |
| 1185 | 0, RTF_GATEWAY | RTF_DEFAULT); |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1186 | if (f6i) { |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1187 | if (del_rt) |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1188 | ip6_del_rt(dev_net(ifp->idev->dev), f6i); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1189 | else { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1190 | if (!(f6i->fib6_flags & RTF_EXPIRES)) |
| 1191 | fib6_set_expires(f6i, expires); |
| 1192 | fib6_info_release(f6i); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1193 | } |
| 1194 | } |
| 1195 | } |
| 1196 | |
| 1197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | /* This function wants to get referenced ifp and releases it before return */ |
| 1199 | |
| 1200 | static void ipv6_del_addr(struct inet6_ifaddr *ifp) |
| 1201 | { |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1202 | int state; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1203 | enum cleanup_prefix_rt_t action = CLEANUP_PREFIX_RT_NOP; |
| 1204 | unsigned long expires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1206 | ASSERT_RTNL(); |
| 1207 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 1208 | spin_lock_bh(&ifp->lock); |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1209 | state = ifp->state; |
Herbert Xu | e9d3e08 | 2010-05-18 15:36:06 -0700 | [diff] [blame] | 1210 | ifp->state = INET6_IFADDR_STATE_DEAD; |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 1211 | spin_unlock_bh(&ifp->lock); |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1212 | |
| 1213 | if (state == INET6_IFADDR_STATE_DEAD) |
| 1214 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 1216 | spin_lock_bh(&addrconf_hash_lock); |
| 1217 | hlist_del_init_rcu(&ifp->addr_lst); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 1218 | spin_unlock_bh(&addrconf_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1220 | write_lock_bh(&ifp->idev->lock); |
David S. Miller | 5d9efa7 | 2013-10-28 20:07:50 -0400 | [diff] [blame] | 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | if (ifp->flags&IFA_F_TEMPORARY) { |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 1223 | list_del(&ifp->tmp_list); |
| 1224 | if (ifp->ifpub) { |
| 1225 | in6_ifa_put(ifp->ifpub); |
| 1226 | ifp->ifpub = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | } |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 1228 | __in6_ifa_put(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1231 | if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE)) |
| 1232 | action = check_cleanup_prefix_route(ifp, &expires); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 1233 | |
Eric Dumazet | 8ef802a | 2017-10-07 19:30:23 -0700 | [diff] [blame] | 1234 | list_del_rcu(&ifp->if_list); |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1235 | __in6_ifa_put(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1237 | write_unlock_bh(&ifp->idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1239 | addrconf_del_dad_work(ifp); |
Andrey Vagin | b223856 | 2008-07-08 15:13:31 -0700 | [diff] [blame] | 1240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | ipv6_ifa_notify(RTM_DELADDR, ifp); |
| 1242 | |
Cong Wang | f88c91d | 2013-04-14 23:18:43 +0800 | [diff] [blame] | 1243 | inet6addr_notifier_call_chain(NETDEV_DOWN, ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 1245 | if (action != CLEANUP_PREFIX_RT_NOP) { |
| 1246 | cleanup_prefix_route(ifp, expires, |
| 1247 | action == CLEANUP_PREFIX_RT_DEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | } |
| 1249 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 1250 | /* clean up prefsrc entries */ |
| 1251 | rt6_remove_prefsrc(ifp); |
Herbert Xu | 4c5ff6a | 2010-05-18 15:54:18 -0700 | [diff] [blame] | 1252 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | in6_ifa_put(ifp); |
| 1254 | } |
| 1255 | |
Eric Dumazet | fffcefe | 2017-11-06 14:13:29 -0800 | [diff] [blame] | 1256 | static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, |
| 1257 | struct inet6_ifaddr *ift, |
| 1258 | bool block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | { |
| 1260 | struct inet6_dev *idev = ifp->idev; |
| 1261 | struct in6_addr addr, *tmpaddr; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1262 | unsigned long tmp_tstamp, age; |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1263 | unsigned long regen_advance; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1264 | struct ifa6_config cfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | int ret = 0; |
Lorenzo Colitti | 76f793e | 2011-07-26 13:50:49 +0000 | [diff] [blame] | 1266 | unsigned long now = jiffies; |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1267 | long max_desync_factor; |
Jiri Bohac | 7aa8e63 | 2016-10-20 12:29:26 +0200 | [diff] [blame] | 1268 | s32 cnf_temp_preferred_lft; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1270 | write_lock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | if (ift) { |
| 1272 | spin_lock_bh(&ift->lock); |
| 1273 | memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8); |
| 1274 | spin_unlock_bh(&ift->lock); |
| 1275 | tmpaddr = &addr; |
| 1276 | } else { |
| 1277 | tmpaddr = NULL; |
| 1278 | } |
| 1279 | retry: |
| 1280 | in6_dev_hold(idev); |
| 1281 | if (idev->cnf.use_tempaddr <= 0) { |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1282 | write_unlock_bh(&idev->lock); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1283 | pr_info("%s: use_tempaddr is disabled\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | in6_dev_put(idev); |
| 1285 | ret = -1; |
| 1286 | goto out; |
| 1287 | } |
| 1288 | spin_lock_bh(&ifp->lock); |
| 1289 | if (ifp->regen_count++ >= idev->cnf.regen_max_retry) { |
| 1290 | idev->cnf.use_tempaddr = -1; /*XXX*/ |
| 1291 | spin_unlock_bh(&ifp->lock); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1292 | write_unlock_bh(&idev->lock); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1293 | pr_warn("%s: regeneration time exceeded - disabled temporary address support\n", |
| 1294 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | in6_dev_put(idev); |
| 1296 | ret = -1; |
| 1297 | goto out; |
| 1298 | } |
| 1299 | in6_ifa_hold(ifp); |
| 1300 | memcpy(addr.s6_addr, ifp->addr.s6_addr, 8); |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 1301 | ipv6_try_regen_rndid(idev, tmpaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | memcpy(&addr.s6_addr[8], idev->rndid, 8); |
Lorenzo Colitti | 76f793e | 2011-07-26 13:50:49 +0000 | [diff] [blame] | 1303 | age = (now - ifp->tstamp) / HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1305 | regen_advance = idev->cnf.regen_max_retry * |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1306 | idev->cnf.dad_transmits * |
| 1307 | NEIGH_VAR(idev->nd_parms, RETRANS_TIME) / HZ; |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1308 | |
| 1309 | /* recalculate max_desync_factor each time and update |
| 1310 | * idev->desync_factor if it's larger |
| 1311 | */ |
Jiri Bohac | 7aa8e63 | 2016-10-20 12:29:26 +0200 | [diff] [blame] | 1312 | cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft); |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1313 | max_desync_factor = min_t(__u32, |
| 1314 | idev->cnf.max_desync_factor, |
Jiri Bohac | 7aa8e63 | 2016-10-20 12:29:26 +0200 | [diff] [blame] | 1315 | cnf_temp_preferred_lft - regen_advance); |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1316 | |
| 1317 | if (unlikely(idev->desync_factor > max_desync_factor)) { |
| 1318 | if (max_desync_factor > 0) { |
| 1319 | get_random_bytes(&idev->desync_factor, |
| 1320 | sizeof(idev->desync_factor)); |
| 1321 | idev->desync_factor %= max_desync_factor; |
| 1322 | } else { |
| 1323 | idev->desync_factor = 0; |
| 1324 | } |
| 1325 | } |
| 1326 | |
David Ahern | 3f2d67b | 2018-06-11 07:12:12 -0700 | [diff] [blame] | 1327 | memset(&cfg, 0, sizeof(cfg)); |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1328 | cfg.valid_lft = min_t(__u32, ifp->valid_lft, |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1329 | idev->cnf.temp_valid_lft + age); |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1330 | cfg.preferred_lft = cnf_temp_preferred_lft + age - idev->desync_factor; |
| 1331 | cfg.preferred_lft = min_t(__u32, ifp->prefered_lft, cfg.preferred_lft); |
| 1332 | |
| 1333 | cfg.plen = ifp->prefix_len; |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 1334 | tmp_tstamp = ifp->tstamp; |
| 1335 | spin_unlock_bh(&ifp->lock); |
| 1336 | |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1337 | write_unlock_bh(&idev->lock); |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1338 | |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1339 | /* A temporary address is created only if this calculated Preferred |
| 1340 | * Lifetime is greater than REGEN_ADVANCE time units. In particular, |
| 1341 | * an implementation must not create a temporary address with a zero |
| 1342 | * Preferred Lifetime. |
Heiner Kallweit | ecab670 | 2014-03-12 22:13:19 +0100 | [diff] [blame] | 1343 | * Use age calculation as in addrconf_verify to avoid unnecessary |
| 1344 | * temporary addresses being generated. |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1345 | */ |
Heiner Kallweit | ecab670 | 2014-03-12 22:13:19 +0100 | [diff] [blame] | 1346 | age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1347 | if (cfg.preferred_lft <= regen_advance + age) { |
Benoit Boissinot | eac55bf | 2008-04-02 00:01:35 -0700 | [diff] [blame] | 1348 | in6_ifa_put(ifp); |
| 1349 | in6_dev_put(idev); |
| 1350 | ret = -1; |
| 1351 | goto out; |
| 1352 | } |
| 1353 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1354 | cfg.ifa_flags = IFA_F_TEMPORARY; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1355 | /* set in addrconf_prefix_rcv() */ |
| 1356 | if (ifp->flags & IFA_F_OPTIMISTIC) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1357 | cfg.ifa_flags |= IFA_F_OPTIMISTIC; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1358 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 1359 | cfg.pfx = &addr; |
| 1360 | cfg.scope = ipv6_addr_scope(cfg.pfx); |
| 1361 | |
| 1362 | ift = ipv6_add_addr(idev, &cfg, block, NULL); |
Hannes Frederic Sowa | 4b08a8f | 2013-08-16 13:02:27 +0200 | [diff] [blame] | 1363 | if (IS_ERR(ift)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | in6_ifa_put(ifp); |
| 1365 | in6_dev_put(idev); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1366 | pr_info("%s: retry temporary address regeneration\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | tmpaddr = &addr; |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 1368 | write_lock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | goto retry; |
| 1370 | } |
| 1371 | |
| 1372 | spin_lock_bh(&ift->lock); |
| 1373 | ift->ifpub = ifp; |
Lorenzo Colitti | 76f793e | 2011-07-26 13:50:49 +0000 | [diff] [blame] | 1374 | ift->cstamp = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | ift->tstamp = tmp_tstamp; |
| 1376 | spin_unlock_bh(&ift->lock); |
| 1377 | |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 1378 | addrconf_dad_start(ift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | in6_ifa_put(ift); |
| 1380 | in6_dev_put(idev); |
| 1381 | out: |
| 1382 | return ret; |
| 1383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | |
| 1385 | /* |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1386 | * Choose an appropriate source address (RFC3484) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | */ |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1388 | enum { |
| 1389 | IPV6_SADDR_RULE_INIT = 0, |
| 1390 | IPV6_SADDR_RULE_LOCAL, |
| 1391 | IPV6_SADDR_RULE_SCOPE, |
| 1392 | IPV6_SADDR_RULE_PREFERRED, |
| 1393 | #ifdef CONFIG_IPV6_MIP6 |
| 1394 | IPV6_SADDR_RULE_HOA, |
| 1395 | #endif |
| 1396 | IPV6_SADDR_RULE_OIF, |
| 1397 | IPV6_SADDR_RULE_LABEL, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1398 | IPV6_SADDR_RULE_PRIVACY, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1399 | IPV6_SADDR_RULE_ORCHID, |
| 1400 | IPV6_SADDR_RULE_PREFIX, |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1401 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 1402 | IPV6_SADDR_RULE_NOT_OPTIMISTIC, |
| 1403 | #endif |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1404 | IPV6_SADDR_RULE_MAX |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1405 | }; |
| 1406 | |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1407 | struct ipv6_saddr_score { |
| 1408 | int rule; |
| 1409 | int addr_type; |
| 1410 | struct inet6_ifaddr *ifa; |
| 1411 | DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX); |
| 1412 | int scopedist; |
| 1413 | int matchlen; |
| 1414 | }; |
| 1415 | |
| 1416 | struct ipv6_saddr_dst { |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 1417 | const struct in6_addr *addr; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1418 | int ifindex; |
| 1419 | int scope; |
| 1420 | int label; |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1421 | unsigned int prefs; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1422 | }; |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1423 | |
Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 1424 | static inline int ipv6_saddr_preferred(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | { |
Ulrich Weber | 45bb006 | 2010-02-25 23:28:58 +0000 | [diff] [blame] | 1426 | if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK)) |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1427 | return 1; |
| 1428 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | } |
| 1430 | |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 1431 | static bool ipv6_use_optimistic_addr(struct net *net, |
| 1432 | struct inet6_dev *idev) |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1433 | { |
| 1434 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 1435 | if (!idev) |
| 1436 | return false; |
| 1437 | if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad) |
| 1438 | return false; |
| 1439 | if (!net->ipv6.devconf_all->use_optimistic && !idev->cnf.use_optimistic) |
| 1440 | return false; |
| 1441 | |
| 1442 | return true; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1443 | #else |
| 1444 | return false; |
| 1445 | #endif |
| 1446 | } |
| 1447 | |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 1448 | static bool ipv6_allow_optimistic_dad(struct net *net, |
| 1449 | struct inet6_dev *idev) |
| 1450 | { |
| 1451 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 1452 | if (!idev) |
| 1453 | return false; |
| 1454 | if (!net->ipv6.devconf_all->optimistic_dad && !idev->cnf.optimistic_dad) |
| 1455 | return false; |
| 1456 | |
| 1457 | return true; |
| 1458 | #else |
| 1459 | return false; |
| 1460 | #endif |
| 1461 | } |
| 1462 | |
Benjamin Thery | 3de2325 | 2008-05-28 14:51:24 +0200 | [diff] [blame] | 1463 | static int ipv6_get_saddr_eval(struct net *net, |
| 1464 | struct ipv6_saddr_score *score, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1465 | struct ipv6_saddr_dst *dst, |
| 1466 | int i) |
| 1467 | { |
| 1468 | int ret; |
| 1469 | |
| 1470 | if (i <= score->rule) { |
| 1471 | switch (i) { |
| 1472 | case IPV6_SADDR_RULE_SCOPE: |
| 1473 | ret = score->scopedist; |
| 1474 | break; |
| 1475 | case IPV6_SADDR_RULE_PREFIX: |
| 1476 | ret = score->matchlen; |
| 1477 | break; |
| 1478 | default: |
| 1479 | ret = !!test_bit(i, score->scorebits); |
| 1480 | } |
| 1481 | goto out; |
| 1482 | } |
| 1483 | |
| 1484 | switch (i) { |
| 1485 | case IPV6_SADDR_RULE_INIT: |
| 1486 | /* Rule 0: remember if hiscore is not ready yet */ |
| 1487 | ret = !!score->ifa; |
| 1488 | break; |
| 1489 | case IPV6_SADDR_RULE_LOCAL: |
| 1490 | /* Rule 1: Prefer same address */ |
| 1491 | ret = ipv6_addr_equal(&score->ifa->addr, dst->addr); |
| 1492 | break; |
| 1493 | case IPV6_SADDR_RULE_SCOPE: |
| 1494 | /* Rule 2: Prefer appropriate scope |
| 1495 | * |
| 1496 | * ret |
| 1497 | * ^ |
| 1498 | * -1 | d 15 |
| 1499 | * ---+--+-+---> scope |
| 1500 | * | |
| 1501 | * | d is scope of the destination. |
| 1502 | * B-d | \ |
| 1503 | * | \ <- smaller scope is better if |
stephen hemminger | db9c7c3 | 2014-01-12 11:26:32 -0800 | [diff] [blame] | 1504 | * B-15 | \ if scope is enough for destination. |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1505 | * | ret = B - scope (-1 <= scope >= d <= 15). |
| 1506 | * d-C-1 | / |
| 1507 | * |/ <- greater is better |
| 1508 | * -C / if scope is not enough for destination. |
| 1509 | * /| ret = scope - C (-1 <= d < scope <= 15). |
| 1510 | * |
| 1511 | * d - C - 1 < B -15 (for all -1 <= d <= 15). |
| 1512 | * C > d + 14 - B >= 15 + 14 - B = 29 - B. |
| 1513 | * Assume B = 0 and we get C > 29. |
| 1514 | */ |
| 1515 | ret = __ipv6_addr_src_scope(score->addr_type); |
| 1516 | if (ret >= dst->scope) |
| 1517 | ret = -ret; |
| 1518 | else |
| 1519 | ret -= 128; /* 30 is enough */ |
| 1520 | score->scopedist = ret; |
| 1521 | break; |
| 1522 | case IPV6_SADDR_RULE_PREFERRED: |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1523 | { |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1524 | /* Rule 3: Avoid deprecated and optimistic addresses */ |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1525 | u8 avoid = IFA_F_DEPRECATED; |
| 1526 | |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 1527 | if (!ipv6_use_optimistic_addr(net, score->ifa->idev)) |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1528 | avoid |= IFA_F_OPTIMISTIC; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1529 | ret = ipv6_saddr_preferred(score->addr_type) || |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1530 | !(score->ifa->flags & avoid); |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1531 | break; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1532 | } |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1533 | #ifdef CONFIG_IPV6_MIP6 |
| 1534 | case IPV6_SADDR_RULE_HOA: |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1535 | { |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1536 | /* Rule 4: Prefer home address */ |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1537 | int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA); |
| 1538 | ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1539 | break; |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1540 | } |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1541 | #endif |
| 1542 | case IPV6_SADDR_RULE_OIF: |
| 1543 | /* Rule 5: Prefer outgoing interface */ |
| 1544 | ret = (!dst->ifindex || |
| 1545 | dst->ifindex == score->ifa->idev->dev->ifindex); |
| 1546 | break; |
| 1547 | case IPV6_SADDR_RULE_LABEL: |
| 1548 | /* Rule 6: Prefer matching label */ |
Benjamin Thery | 3de2325 | 2008-05-28 14:51:24 +0200 | [diff] [blame] | 1549 | ret = ipv6_addr_label(net, |
| 1550 | &score->ifa->addr, score->addr_type, |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1551 | score->ifa->idev->dev->ifindex) == dst->label; |
| 1552 | break; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1553 | case IPV6_SADDR_RULE_PRIVACY: |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1554 | { |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1555 | /* Rule 7: Prefer public address |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1556 | * Note: prefer temporary address if use_tempaddr >= 2 |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1557 | */ |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1558 | int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ? |
| 1559 | !!(dst->prefs & IPV6_PREFER_SRC_TMP) : |
| 1560 | score->ifa->idev->cnf.use_tempaddr >= 2; |
| 1561 | ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1562 | break; |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1563 | } |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1564 | case IPV6_SADDR_RULE_ORCHID: |
| 1565 | /* Rule 8-: Prefer ORCHID vs ORCHID or |
| 1566 | * non-ORCHID vs non-ORCHID |
| 1567 | */ |
| 1568 | ret = !(ipv6_addr_orchid(&score->ifa->addr) ^ |
| 1569 | ipv6_addr_orchid(dst->addr)); |
| 1570 | break; |
| 1571 | case IPV6_SADDR_RULE_PREFIX: |
| 1572 | /* Rule 8: Use longest matching prefix */ |
YOSHIFUJI Hideaki / 吉藤英明 | 91b4b04 | 2012-09-10 18:41:07 +0000 | [diff] [blame] | 1573 | ret = ipv6_addr_diff(&score->ifa->addr, dst->addr); |
| 1574 | if (ret > score->ifa->prefix_len) |
| 1575 | ret = score->ifa->prefix_len; |
| 1576 | score->matchlen = ret; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1577 | break; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 1578 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 1579 | case IPV6_SADDR_RULE_NOT_OPTIMISTIC: |
| 1580 | /* Optimistic addresses still have lower precedence than other |
| 1581 | * preferred addresses. |
| 1582 | */ |
| 1583 | ret = !(score->ifa->flags & IFA_F_OPTIMISTIC); |
| 1584 | break; |
| 1585 | #endif |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1586 | default: |
| 1587 | ret = 0; |
| 1588 | } |
| 1589 | |
| 1590 | if (ret) |
| 1591 | __set_bit(i, score->scorebits); |
| 1592 | score->rule = i; |
| 1593 | out: |
| 1594 | return ret; |
| 1595 | } |
| 1596 | |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1597 | static int __ipv6_dev_get_saddr(struct net *net, |
| 1598 | struct ipv6_saddr_dst *dst, |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1599 | struct inet6_dev *idev, |
| 1600 | struct ipv6_saddr_score *scores, |
| 1601 | int hiscore_idx) |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1602 | { |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1603 | 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] | 1604 | |
Eric Dumazet | f59c031 | 2017-10-07 19:30:27 -0700 | [diff] [blame] | 1605 | list_for_each_entry_rcu(score->ifa, &idev->addr_list, if_list) { |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1606 | int i; |
| 1607 | |
| 1608 | /* |
| 1609 | * - Tentative Address (RFC2462 section 5.4) |
| 1610 | * - A tentative address is not considered |
| 1611 | * "assigned to an interface" in the traditional |
| 1612 | * sense, unless it is also flagged as optimistic. |
| 1613 | * - Candidate Source Address (section 4) |
| 1614 | * - In any case, anycast addresses, multicast |
| 1615 | * addresses, and the unspecified address MUST |
| 1616 | * NOT be included in a candidate set. |
| 1617 | */ |
| 1618 | if ((score->ifa->flags & IFA_F_TENTATIVE) && |
| 1619 | (!(score->ifa->flags & IFA_F_OPTIMISTIC))) |
| 1620 | continue; |
| 1621 | |
| 1622 | score->addr_type = __ipv6_addr_type(&score->ifa->addr); |
| 1623 | |
| 1624 | if (unlikely(score->addr_type == IPV6_ADDR_ANY || |
| 1625 | score->addr_type & IPV6_ADDR_MULTICAST)) { |
| 1626 | net_dbg_ratelimited("ADDRCONF: unspecified / multicast address assigned as unicast address on %s", |
| 1627 | idev->dev->name); |
| 1628 | continue; |
| 1629 | } |
| 1630 | |
| 1631 | score->rule = -1; |
| 1632 | bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX); |
| 1633 | |
| 1634 | for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) { |
| 1635 | int minihiscore, miniscore; |
| 1636 | |
| 1637 | minihiscore = ipv6_get_saddr_eval(net, hiscore, dst, i); |
| 1638 | miniscore = ipv6_get_saddr_eval(net, score, dst, i); |
| 1639 | |
| 1640 | if (minihiscore > miniscore) { |
| 1641 | if (i == IPV6_SADDR_RULE_SCOPE && |
| 1642 | score->scopedist > 0) { |
| 1643 | /* |
| 1644 | * special case: |
| 1645 | * each remaining entry |
| 1646 | * has too small (not enough) |
| 1647 | * scope, because ifa entries |
| 1648 | * are sorted by their scope |
| 1649 | * values. |
| 1650 | */ |
| 1651 | goto out; |
| 1652 | } |
| 1653 | break; |
| 1654 | } else if (minihiscore < miniscore) { |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1655 | swap(hiscore, score); |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1656 | hiscore_idx = 1 - hiscore_idx; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1657 | |
| 1658 | /* restore our iterator */ |
| 1659 | score->ifa = hiscore->ifa; |
| 1660 | |
| 1661 | break; |
| 1662 | } |
| 1663 | } |
| 1664 | } |
| 1665 | out: |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1666 | return hiscore_idx; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1667 | } |
| 1668 | |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1669 | static int ipv6_get_saddr_master(struct net *net, |
| 1670 | const struct net_device *dst_dev, |
| 1671 | const struct net_device *master, |
| 1672 | struct ipv6_saddr_dst *dst, |
| 1673 | struct ipv6_saddr_score *scores, |
| 1674 | int hiscore_idx) |
| 1675 | { |
| 1676 | struct inet6_dev *idev; |
| 1677 | |
| 1678 | idev = __in6_dev_get(dst_dev); |
| 1679 | if (idev) |
| 1680 | hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev, |
| 1681 | scores, hiscore_idx); |
| 1682 | |
| 1683 | idev = __in6_dev_get(master); |
| 1684 | if (idev) |
| 1685 | hiscore_idx = __ipv6_dev_get_saddr(net, dst, idev, |
| 1686 | scores, hiscore_idx); |
| 1687 | |
| 1688 | return hiscore_idx; |
| 1689 | } |
| 1690 | |
Patrick McHardy | b3f644f | 2012-08-26 19:14:14 +0200 | [diff] [blame] | 1691 | 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] | 1692 | const struct in6_addr *daddr, unsigned int prefs, |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1693 | struct in6_addr *saddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | { |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1695 | struct ipv6_saddr_score scores[2], *hiscore; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1696 | struct ipv6_saddr_dst dst; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1697 | struct inet6_dev *idev; |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1698 | struct net_device *dev; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1699 | int dst_type; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1700 | bool use_oif_addr = false; |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1701 | int hiscore_idx = 0; |
Eric Dumazet | cc429c8 | 2017-10-07 19:30:28 -0700 | [diff] [blame] | 1702 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1704 | dst_type = __ipv6_addr_type(daddr); |
| 1705 | dst.addr = daddr; |
| 1706 | dst.ifindex = dst_dev ? dst_dev->ifindex : 0; |
| 1707 | dst.scope = __ipv6_addr_src_scope(dst_type); |
Benjamin Thery | 3de2325 | 2008-05-28 14:51:24 +0200 | [diff] [blame] | 1708 | dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex); |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 1709 | dst.prefs = prefs; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1710 | |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1711 | scores[hiscore_idx].rule = -1; |
| 1712 | scores[hiscore_idx].ifa = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1714 | rcu_read_lock(); |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1715 | |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1716 | /* Candidate Source Address (section 4) |
| 1717 | * - multicast and link-local destination address, |
| 1718 | * the set of candidate source address MUST only |
| 1719 | * include addresses assigned to interfaces |
| 1720 | * belonging to the same link as the outgoing |
| 1721 | * interface. |
| 1722 | * (- For site-local destination addresses, the |
| 1723 | * set of candidate source addresses MUST only |
| 1724 | * include addresses assigned to interfaces |
| 1725 | * belonging to the same site as the outgoing |
| 1726 | * interface.) |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 1727 | * - "It is RECOMMENDED that the candidate source addresses |
| 1728 | * be the set of unicast addresses assigned to the |
| 1729 | * interface that will be used to send to the destination |
| 1730 | * (the 'outgoing' interface)." (RFC 6724) |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1731 | */ |
| 1732 | if (dst_dev) { |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 1733 | idev = __in6_dev_get(dst_dev); |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1734 | if ((dst_type & IPV6_ADDR_MULTICAST) || |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 1735 | dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL || |
| 1736 | (idev && idev->cnf.use_oif_addrs_only)) { |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1737 | use_oif_addr = true; |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1738 | } |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1739 | } |
| 1740 | |
| 1741 | if (use_oif_addr) { |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1742 | if (idev) |
YOSHIFUJI Hideaki | c15df30 | 2015-07-16 16:51:30 +0900 | [diff] [blame] | 1743 | hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx); |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1744 | } else { |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1745 | const struct net_device *master; |
| 1746 | int master_idx = 0; |
| 1747 | |
| 1748 | /* if dst_dev exists and is enslaved to an L3 device, then |
| 1749 | * prefer addresses from dst_dev and then the master over |
| 1750 | * any other enslaved devices in the L3 domain. |
| 1751 | */ |
| 1752 | master = l3mdev_master_dev_rcu(dst_dev); |
| 1753 | if (master) { |
| 1754 | master_idx = master->ifindex; |
| 1755 | |
| 1756 | hiscore_idx = ipv6_get_saddr_master(net, dst_dev, |
| 1757 | master, &dst, |
| 1758 | scores, hiscore_idx); |
| 1759 | |
| 1760 | if (scores[hiscore_idx].ifa) |
| 1761 | goto out; |
| 1762 | } |
| 1763 | |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1764 | for_each_netdev_rcu(net, dev) { |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1765 | /* only consider addresses on devices in the |
| 1766 | * same L3 domain |
| 1767 | */ |
| 1768 | if (l3mdev_master_ifindex_rcu(dev) != master_idx) |
| 1769 | continue; |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1770 | idev = __in6_dev_get(dev); |
| 1771 | if (!idev) |
| 1772 | continue; |
YOSHIFUJI Hideaki | c15df30 | 2015-07-16 16:51:30 +0900 | [diff] [blame] | 1773 | hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx); |
YOSHIFUJI Hideaki/吉藤英明 | 9131f3d | 2015-07-10 16:58:31 +0900 | [diff] [blame] | 1774 | } |
YOSHIFUJI Hideaki | 072047e4 | 2005-11-08 09:38:30 -0800 | [diff] [blame] | 1775 | } |
David Ahern | afbac601 | 2016-06-16 16:24:26 -0700 | [diff] [blame] | 1776 | |
| 1777 | out: |
YOSHIFUJI Hideaki/吉藤英明 | c0b8da1 | 2015-07-13 23:28:10 +0900 | [diff] [blame] | 1778 | hiscore = &scores[hiscore_idx]; |
YOSHIFUJI Hideaki | a9b0572 | 2008-03-02 10:48:21 +0900 | [diff] [blame] | 1779 | if (!hiscore->ifa) |
Eric Dumazet | cc429c8 | 2017-10-07 19:30:28 -0700 | [diff] [blame] | 1780 | ret = -EADDRNOTAVAIL; |
| 1781 | else |
| 1782 | *saddr = hiscore->ifa->addr; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1783 | |
Eric Dumazet | cc429c8 | 2017-10-07 19:30:28 -0700 | [diff] [blame] | 1784 | rcu_read_unlock(); |
| 1785 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | } |
YOSHIFUJI Hideaki | 5e5f3f0 | 2008-03-03 21:44:34 +0900 | [diff] [blame] | 1787 | EXPORT_SYMBOL(ipv6_dev_get_saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | |
Amerigo Wang | 8965779 | 2013-06-29 21:30:49 +0800 | [diff] [blame] | 1789 | int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 1790 | u32 banned_flags) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 1791 | { |
| 1792 | struct inet6_ifaddr *ifp; |
| 1793 | int err = -EADDRNOTAVAIL; |
| 1794 | |
Hannes Frederic Sowa | 602582c | 2014-01-19 21:58:19 +0100 | [diff] [blame] | 1795 | list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) { |
| 1796 | if (ifp->scope > IFA_LINK) |
| 1797 | break; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 1798 | if (ifp->scope == IFA_LINK && |
| 1799 | !(ifp->flags & banned_flags)) { |
| 1800 | *addr = ifp->addr; |
| 1801 | err = 0; |
| 1802 | break; |
| 1803 | } |
| 1804 | } |
| 1805 | return err; |
| 1806 | } |
| 1807 | |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 1808 | int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 1809 | u32 banned_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | { |
| 1811 | struct inet6_dev *idev; |
| 1812 | int err = -EADDRNOTAVAIL; |
| 1813 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1814 | rcu_read_lock(); |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 1815 | idev = __in6_dev_get(dev); |
| 1816 | if (idev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | read_lock_bh(&idev->lock); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 1818 | err = __ipv6_get_lladdr(idev, addr, banned_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | read_unlock_bh(&idev->lock); |
| 1820 | } |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 1821 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | return err; |
| 1823 | } |
| 1824 | |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1825 | static int ipv6_count_addresses(const struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | { |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1827 | const struct inet6_ifaddr *ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | int cnt = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1830 | rcu_read_lock(); |
| 1831 | list_for_each_entry_rcu(ifp, &idev->addr_list, if_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | cnt++; |
Eric Dumazet | d9bf82c | 2017-10-07 19:30:24 -0700 | [diff] [blame] | 1833 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | return cnt; |
| 1835 | } |
| 1836 | |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1837 | int ipv6_chk_addr(struct net *net, const struct in6_addr *addr, |
Florian Westphal | 2a7851b | 2013-05-17 03:56:10 +0000 | [diff] [blame] | 1838 | const struct net_device *dev, int strict) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | { |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1840 | return ipv6_chk_addr_and_flags(net, addr, dev, !dev, |
| 1841 | strict, IFA_F_TENTATIVE); |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1842 | } |
| 1843 | EXPORT_SYMBOL(ipv6_chk_addr); |
| 1844 | |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1845 | /* device argument is used to find the L3 domain of interest. If |
| 1846 | * skip_dev_check is set, then the ifp device is not checked against |
| 1847 | * the passed in dev argument. So the 2 cases for addresses checks are: |
| 1848 | * 1. does the address exist in the L3 domain that dev is part of |
| 1849 | * (skip_dev_check = true), or |
| 1850 | * |
| 1851 | * 2. does the address exist on the specific device |
| 1852 | * (skip_dev_check = false) |
| 1853 | */ |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1854 | int ipv6_chk_addr_and_flags(struct net *net, const struct in6_addr *addr, |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1855 | const struct net_device *dev, bool skip_dev_check, |
| 1856 | int strict, u32 banned_flags) |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1857 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 1858 | unsigned int hash = inet6_addr_hash(net, addr); |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1859 | const struct net_device *l3mdev; |
Stephen Hemminger | eedf042 | 2010-05-17 22:27:12 -0700 | [diff] [blame] | 1860 | struct inet6_ifaddr *ifp; |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1861 | u32 ifp_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | |
Eric Dumazet | 480318a | 2017-10-23 16:17:48 -0700 | [diff] [blame] | 1863 | rcu_read_lock(); |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1864 | |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1865 | l3mdev = l3mdev_master_dev_rcu(dev); |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 1866 | if (skip_dev_check) |
| 1867 | dev = NULL; |
| 1868 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1869 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 1870 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
Daniel Lezcano | bfeade0 | 2008-01-10 22:43:18 -0800 | [diff] [blame] | 1871 | continue; |
David Ahern | 1893ff2 | 2018-03-13 08:29:38 -0700 | [diff] [blame] | 1872 | |
| 1873 | if (l3mdev_master_dev_rcu(ifp->idev->dev) != l3mdev) |
| 1874 | continue; |
| 1875 | |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1876 | /* Decouple optimistic from tentative for evaluation here. |
| 1877 | * Ban optimistic addresses explicitly, when required. |
| 1878 | */ |
| 1879 | ifp_flags = (ifp->flags&IFA_F_OPTIMISTIC) |
| 1880 | ? (ifp->flags&~IFA_F_TENTATIVE) |
| 1881 | : ifp->flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | if (ipv6_addr_equal(&ifp->addr, addr) && |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1883 | !(ifp_flags&banned_flags) && |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1884 | (!dev || ifp->idev->dev == dev || |
Stephen Hemminger | eedf042 | 2010-05-17 22:27:12 -0700 | [diff] [blame] | 1885 | !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) { |
Eric Dumazet | 480318a | 2017-10-23 16:17:48 -0700 | [diff] [blame] | 1886 | rcu_read_unlock(); |
Stephen Hemminger | eedf042 | 2010-05-17 22:27:12 -0700 | [diff] [blame] | 1887 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | } |
| 1889 | } |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 1890 | |
Eric Dumazet | 480318a | 2017-10-23 16:17:48 -0700 | [diff] [blame] | 1891 | rcu_read_unlock(); |
Stephen Hemminger | eedf042 | 2010-05-17 22:27:12 -0700 | [diff] [blame] | 1892 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | } |
Erik Kline | c58da4c | 2015-02-04 20:01:23 +0900 | [diff] [blame] | 1894 | EXPORT_SYMBOL(ipv6_chk_addr_and_flags); |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 1895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1897 | /* Compares an address/prefix_len with addresses on device @dev. |
| 1898 | * If one is found it returns true. |
| 1899 | */ |
| 1900 | bool ipv6_chk_custom_prefix(const struct in6_addr *addr, |
| 1901 | const unsigned int prefix_len, struct net_device *dev) |
| 1902 | { |
Eric Dumazet | 47e2694 | 2017-10-07 19:30:25 -0700 | [diff] [blame] | 1903 | const struct inet6_ifaddr *ifa; |
| 1904 | const struct inet6_dev *idev; |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1905 | bool ret = false; |
| 1906 | |
| 1907 | rcu_read_lock(); |
| 1908 | idev = __in6_dev_get(dev); |
| 1909 | if (idev) { |
Eric Dumazet | 47e2694 | 2017-10-07 19:30:25 -0700 | [diff] [blame] | 1910 | 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] | 1911 | ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len); |
| 1912 | if (ret) |
| 1913 | break; |
| 1914 | } |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 1915 | } |
| 1916 | rcu_read_unlock(); |
| 1917 | |
| 1918 | return ret; |
| 1919 | } |
| 1920 | EXPORT_SYMBOL(ipv6_chk_custom_prefix); |
| 1921 | |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1922 | 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] | 1923 | { |
Eric Dumazet | 24ba333 | 2017-10-07 19:30:26 -0700 | [diff] [blame] | 1924 | const struct inet6_ifaddr *ifa; |
| 1925 | const struct inet6_dev *idev; |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1926 | int onlink; |
| 1927 | |
| 1928 | onlink = 0; |
| 1929 | rcu_read_lock(); |
| 1930 | idev = __in6_dev_get(dev); |
| 1931 | if (idev) { |
Eric Dumazet | 24ba333 | 2017-10-07 19:30:26 -0700 | [diff] [blame] | 1932 | list_for_each_entry_rcu(ifa, &idev->addr_list, if_list) { |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1933 | onlink = ipv6_prefix_equal(addr, &ifa->addr, |
| 1934 | ifa->prefix_len); |
| 1935 | if (onlink) |
| 1936 | break; |
| 1937 | } |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1938 | } |
| 1939 | rcu_read_unlock(); |
| 1940 | return onlink; |
| 1941 | } |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 1942 | EXPORT_SYMBOL(ipv6_chk_prefix); |
| 1943 | |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 1944 | 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] | 1945 | struct net_device *dev, int strict) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 1947 | unsigned int hash = inet6_addr_hash(net, addr); |
David S. Miller | b79d1d5 | 2010-03-25 21:39:21 -0700 | [diff] [blame] | 1948 | struct inet6_ifaddr *ifp, *result = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | |
Eric Dumazet | 24f226d | 2017-10-23 16:17:49 -0700 | [diff] [blame] | 1950 | rcu_read_lock(); |
| 1951 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 1952 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
Daniel Lezcano | 1cab3da | 2008-01-10 22:44:09 -0800 | [diff] [blame] | 1953 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1955 | if (!dev || ifp->idev->dev == dev || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) { |
David S. Miller | b79d1d5 | 2010-03-25 21:39:21 -0700 | [diff] [blame] | 1957 | result = ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | in6_ifa_hold(ifp); |
| 1959 | break; |
| 1960 | } |
| 1961 | } |
| 1962 | } |
Eric Dumazet | 24f226d | 2017-10-23 16:17:49 -0700 | [diff] [blame] | 1963 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | |
David S. Miller | b79d1d5 | 2010-03-25 21:39:21 -0700 | [diff] [blame] | 1965 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | } |
| 1967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | /* Gets referenced address, destroys ifaddr */ |
| 1969 | |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 1970 | static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | { |
Lubomir Rintel | 3d171f3 | 2016-01-08 13:47:23 +0100 | [diff] [blame] | 1972 | if (dad_failed) |
| 1973 | ifp->flags |= IFA_F_DADFAILED; |
| 1974 | |
Sabrina Dubroca | ec8add2 | 2017-06-29 16:56:54 +0200 | [diff] [blame] | 1975 | if (ifp->flags&IFA_F_TEMPORARY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | struct inet6_ifaddr *ifpub; |
| 1977 | spin_lock_bh(&ifp->lock); |
| 1978 | ifpub = ifp->ifpub; |
| 1979 | if (ifpub) { |
| 1980 | in6_ifa_hold(ifpub); |
| 1981 | spin_unlock_bh(&ifp->lock); |
Eric Dumazet | fffcefe | 2017-11-06 14:13:29 -0800 | [diff] [blame] | 1982 | ipv6_create_tempaddr(ifpub, ifp, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | in6_ifa_put(ifpub); |
| 1984 | } else { |
| 1985 | spin_unlock_bh(&ifp->lock); |
| 1986 | } |
| 1987 | ipv6_del_addr(ifp); |
Sabrina Dubroca | ec8add2 | 2017-06-29 16:56:54 +0200 | [diff] [blame] | 1988 | } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) { |
| 1989 | spin_lock_bh(&ifp->lock); |
| 1990 | addrconf_del_dad_work(ifp); |
| 1991 | ifp->flags |= IFA_F_TENTATIVE; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 1992 | if (dad_failed) |
| 1993 | ifp->flags &= ~IFA_F_OPTIMISTIC; |
Sabrina Dubroca | ec8add2 | 2017-06-29 16:56:54 +0200 | [diff] [blame] | 1994 | spin_unlock_bh(&ifp->lock); |
| 1995 | if (dad_failed) |
| 1996 | ipv6_ifa_notify(0, ifp); |
| 1997 | in6_ifa_put(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 1998 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | ipv6_del_addr(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2000 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | } |
| 2002 | |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2003 | static int addrconf_dad_end(struct inet6_ifaddr *ifp) |
| 2004 | { |
| 2005 | int err = -ENOENT; |
| 2006 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 2007 | spin_lock_bh(&ifp->lock); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2008 | if (ifp->state == INET6_IFADDR_STATE_DAD) { |
| 2009 | ifp->state = INET6_IFADDR_STATE_POSTDAD; |
| 2010 | err = 0; |
| 2011 | } |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 2012 | spin_unlock_bh(&ifp->lock); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2013 | |
| 2014 | return err; |
| 2015 | } |
| 2016 | |
Vishwanath Pai | da13c59 | 2017-10-30 19:38:52 -0400 | [diff] [blame] | 2017 | void addrconf_dad_failure(struct sk_buff *skb, struct inet6_ifaddr *ifp) |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 2018 | { |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 2019 | struct inet6_dev *idev = ifp->idev; |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 2020 | struct net *net = dev_net(ifp->idev->dev); |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 2021 | |
Ursula Braun | 853dc2e | 2010-10-24 23:06:43 +0000 | [diff] [blame] | 2022 | if (addrconf_dad_end(ifp)) { |
| 2023 | in6_ifa_put(ifp); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2024 | return; |
Ursula Braun | 853dc2e | 2010-10-24 23:06:43 +0000 | [diff] [blame] | 2025 | } |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 2026 | |
Vishwanath Pai | da13c59 | 2017-10-30 19:38:52 -0400 | [diff] [blame] | 2027 | net_info_ratelimited("%s: IPv6 duplicate address %pI6c used by %pM detected!\n", |
| 2028 | ifp->idev->dev->name, &ifp->addr, eth_hdr(skb)->h_source); |
Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 2029 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2030 | spin_lock_bh(&ifp->lock); |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 2031 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2032 | if (ifp->flags & IFA_F_STABLE_PRIVACY) { |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2033 | struct in6_addr new_addr; |
| 2034 | struct inet6_ifaddr *ifp2; |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2035 | int retries = ifp->stable_privacy_retry + 1; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2036 | struct ifa6_config cfg = { |
| 2037 | .pfx = &new_addr, |
| 2038 | .plen = ifp->prefix_len, |
| 2039 | .ifa_flags = ifp->flags, |
| 2040 | .valid_lft = ifp->valid_lft, |
| 2041 | .preferred_lft = ifp->prefered_lft, |
| 2042 | .scope = ifp->scope, |
| 2043 | }; |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2044 | |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 2045 | if (retries > net->ipv6.sysctl.idgen_retries) { |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2046 | net_info_ratelimited("%s: privacy stable address generation failed because of DAD conflicts!\n", |
| 2047 | ifp->idev->dev->name); |
| 2048 | goto errdad; |
| 2049 | } |
| 2050 | |
| 2051 | new_addr = ifp->addr; |
| 2052 | if (ipv6_generate_stable_address(&new_addr, retries, |
| 2053 | idev)) |
| 2054 | goto errdad; |
| 2055 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2056 | spin_unlock_bh(&ifp->lock); |
| 2057 | |
| 2058 | if (idev->cnf.max_addresses && |
| 2059 | ipv6_count_addresses(idev) >= |
| 2060 | idev->cnf.max_addresses) |
| 2061 | goto lock_errdad; |
| 2062 | |
| 2063 | net_info_ratelimited("%s: generating new stable privacy address because of DAD conflict\n", |
| 2064 | ifp->idev->dev->name); |
| 2065 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2066 | ifp2 = ipv6_add_addr(idev, &cfg, false, NULL); |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2067 | if (IS_ERR(ifp2)) |
| 2068 | goto lock_errdad; |
| 2069 | |
| 2070 | spin_lock_bh(&ifp2->lock); |
| 2071 | ifp2->stable_privacy_retry = retries; |
| 2072 | ifp2->state = INET6_IFADDR_STATE_PREDAD; |
| 2073 | spin_unlock_bh(&ifp2->lock); |
| 2074 | |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 2075 | addrconf_mod_dad_work(ifp2, net->ipv6.sysctl.idgen_delay); |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2076 | in6_ifa_put(ifp2); |
| 2077 | lock_errdad: |
| 2078 | spin_lock_bh(&ifp->lock); |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 2079 | } |
| 2080 | |
Hannes Frederic Sowa | 5f40ef7 | 2015-03-23 23:36:04 +0100 | [diff] [blame] | 2081 | errdad: |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2082 | /* transition from _POSTDAD to _ERRDAD */ |
| 2083 | ifp->state = INET6_IFADDR_STATE_ERRDAD; |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 2084 | spin_unlock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2085 | |
| 2086 | addrconf_mod_dad_work(ifp, 0); |
Wei Yongjun | 751eb6b | 2016-09-05 16:06:31 +0800 | [diff] [blame] | 2087 | in6_ifa_put(ifp); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 2088 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2090 | /* Join to solicited addr multicast group. |
| 2091 | * caller must hold RTNL */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2092 | 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] | 2093 | { |
| 2094 | struct in6_addr maddr; |
| 2095 | |
| 2096 | if (dev->flags&(IFF_LOOPBACK|IFF_NOARP)) |
| 2097 | return; |
| 2098 | |
| 2099 | addrconf_addr_solict_mult(addr, &maddr); |
| 2100 | ipv6_dev_mc_inc(dev, &maddr); |
| 2101 | } |
| 2102 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2103 | /* caller must hold RTNL */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2104 | 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] | 2105 | { |
| 2106 | struct in6_addr maddr; |
| 2107 | |
| 2108 | if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP)) |
| 2109 | return; |
| 2110 | |
| 2111 | addrconf_addr_solict_mult(addr, &maddr); |
| 2112 | __ipv6_dev_mc_dec(idev, &maddr); |
| 2113 | } |
| 2114 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2115 | /* caller must hold RTNL */ |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 2116 | static void addrconf_join_anycast(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | { |
| 2118 | struct in6_addr addr; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2119 | |
Hannes Frederic Sowa | 88ad314 | 2014-01-06 17:53:14 +0100 | [diff] [blame] | 2120 | if (ifp->prefix_len >= 127) /* RFC 6164 */ |
Bjørn Mork | 2bda8a0 | 2011-07-05 23:04:13 +0000 | [diff] [blame] | 2121 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len); |
| 2123 | if (ipv6_addr_any(&addr)) |
| 2124 | return; |
WANG Cong | 013b4d9 | 2014-09-11 15:35:11 -0700 | [diff] [blame] | 2125 | __ipv6_dev_ac_inc(ifp->idev, &addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | } |
| 2127 | |
Sabrina Dubroca | a9ed4a2 | 2014-09-02 10:29:29 +0200 | [diff] [blame] | 2128 | /* caller must hold RTNL */ |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 2129 | static void addrconf_leave_anycast(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | { |
| 2131 | struct in6_addr addr; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2132 | |
Hannes Frederic Sowa | 88ad314 | 2014-01-06 17:53:14 +0100 | [diff] [blame] | 2133 | if (ifp->prefix_len >= 127) /* RFC 6164 */ |
YOSHIFUJI Hideaki | 32019e6 | 2011-07-24 11:44:34 +0000 | [diff] [blame] | 2134 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len); |
| 2136 | if (ipv6_addr_any(&addr)) |
| 2137 | return; |
| 2138 | __ipv6_dev_ac_dec(ifp->idev, &addr); |
| 2139 | } |
| 2140 | |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2141 | 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] | 2142 | { |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2143 | switch (dev->addr_len) { |
| 2144 | case ETH_ALEN: |
Luiz Augusto von Dentz | 9dae2e0 | 2017-03-12 10:19:38 +0200 | [diff] [blame] | 2145 | memcpy(eui, dev->dev_addr, 3); |
| 2146 | eui[3] = 0xFF; |
| 2147 | eui[4] = 0xFE; |
| 2148 | memcpy(eui + 5, dev->dev_addr + 3, 3); |
| 2149 | break; |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2150 | case EUI64_ADDR_LEN: |
| 2151 | memcpy(eui, dev->dev_addr, EUI64_ADDR_LEN); |
| 2152 | eui[0] ^= 2; |
| 2153 | break; |
| 2154 | default: |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 2155 | return -1; |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2156 | } |
| 2157 | |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 2158 | return 0; |
| 2159 | } |
| 2160 | |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 2161 | static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev) |
| 2162 | { |
| 2163 | union fwnet_hwaddr *ha; |
| 2164 | |
| 2165 | if (dev->addr_len != FWNET_ALEN) |
| 2166 | return -1; |
| 2167 | |
| 2168 | ha = (union fwnet_hwaddr *)dev->dev_addr; |
| 2169 | |
| 2170 | memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id)); |
| 2171 | eui[0] ^= 2; |
| 2172 | return 0; |
| 2173 | } |
| 2174 | |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2175 | static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev) |
| 2176 | { |
| 2177 | /* XXX: inherit EUI-64 from other interface -- yoshfuji */ |
| 2178 | if (dev->addr_len != ARCNET_ALEN) |
| 2179 | return -1; |
| 2180 | memset(eui, 0, 7); |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 2181 | eui[7] = *(u8 *)dev->dev_addr; |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2182 | return 0; |
| 2183 | } |
| 2184 | |
| 2185 | static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev) |
| 2186 | { |
| 2187 | if (dev->addr_len != INFINIBAND_ALEN) |
| 2188 | return -1; |
| 2189 | memcpy(eui, dev->dev_addr + 12, 8); |
| 2190 | eui[0] |= 2; |
| 2191 | return 0; |
| 2192 | } |
| 2193 | |
stephen hemminger | c61393e | 2010-10-04 20:17:53 +0000 | [diff] [blame] | 2194 | static int __ipv6_isatap_ifid(u8 *eui, __be32 addr) |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2195 | { |
Sascha Hlusiak | 9af2851 | 2009-05-19 12:56:51 +0000 | [diff] [blame] | 2196 | if (addr == 0) |
| 2197 | return -1; |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2198 | eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) || |
| 2199 | ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) || |
| 2200 | ipv4_is_private_172(addr) || ipv4_is_test_192(addr) || |
| 2201 | ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) || |
| 2202 | ipv4_is_test_198(addr) || ipv4_is_multicast(addr) || |
| 2203 | ipv4_is_lbcast(addr)) ? 0x00 : 0x02; |
| 2204 | eui[1] = 0; |
| 2205 | eui[2] = 0x5E; |
| 2206 | eui[3] = 0xFE; |
| 2207 | memcpy(eui + 4, &addr, 4); |
| 2208 | return 0; |
| 2209 | } |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2210 | |
| 2211 | static int addrconf_ifid_sit(u8 *eui, struct net_device *dev) |
| 2212 | { |
| 2213 | if (dev->priv_flags & IFF_ISATAP) |
| 2214 | return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr); |
| 2215 | return -1; |
| 2216 | } |
| 2217 | |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 2218 | static int addrconf_ifid_gre(u8 *eui, struct net_device *dev) |
| 2219 | { |
| 2220 | return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr); |
| 2221 | } |
| 2222 | |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 2223 | static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev) |
| 2224 | { |
| 2225 | memcpy(eui, dev->perm_addr, 3); |
| 2226 | memcpy(eui + 5, dev->perm_addr + 3, 3); |
| 2227 | eui[3] = 0xFF; |
| 2228 | eui[4] = 0xFE; |
| 2229 | eui[0] ^= 2; |
| 2230 | return 0; |
| 2231 | } |
| 2232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | static int ipv6_generate_eui64(u8 *eui, struct net_device *dev) |
| 2234 | { |
| 2235 | switch (dev->type) { |
| 2236 | case ARPHRD_ETHER: |
| 2237 | case ARPHRD_FDDI: |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2238 | return addrconf_ifid_eui48(eui, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | case ARPHRD_ARCNET: |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2240 | return addrconf_ifid_arcnet(eui, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | case ARPHRD_INFINIBAND: |
YOSHIFUJI Hideaki | 073a8e0 | 2006-03-20 16:54:49 -0800 | [diff] [blame] | 2242 | return addrconf_ifid_infiniband(eui, dev); |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 2243 | case ARPHRD_SIT: |
YOSHIFUJI Hideaki | dfd982b | 2008-04-10 15:42:09 +0900 | [diff] [blame] | 2244 | return addrconf_ifid_sit(eui, dev); |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 2245 | case ARPHRD_IPGRE: |
Felix Jia | 45ce0fd | 2017-01-26 16:59:18 +1300 | [diff] [blame] | 2246 | case ARPHRD_TUNNEL: |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 2247 | return addrconf_ifid_gre(eui, dev); |
Jukka Rissanen | e74bccb8 | 2013-12-11 17:05:36 +0200 | [diff] [blame] | 2248 | case ARPHRD_6LOWPAN: |
Alexander Aring | 8a7a4b4 | 2017-03-12 10:19:36 +0200 | [diff] [blame] | 2249 | return addrconf_ifid_6lowpan(eui, dev); |
YOSHIFUJI Hideaki / 吉藤英明 | cb6bf35 | 2013-03-25 08:26:24 +0000 | [diff] [blame] | 2250 | case ARPHRD_IEEE1394: |
| 2251 | return addrconf_ifid_ieee1394(eui, dev); |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 2252 | case ARPHRD_TUNNEL6: |
Felix Jia | 45ce0fd | 2017-01-26 16:59:18 +1300 | [diff] [blame] | 2253 | case ARPHRD_IP6GRE: |
Subash Abhinov Kasiviswanathan | 9deb441 | 2018-06-04 19:26:07 -0600 | [diff] [blame] | 2254 | case ARPHRD_RAWIP: |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 2255 | return addrconf_ifid_ip6tnl(eui, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | } |
| 2257 | return -1; |
| 2258 | } |
| 2259 | |
| 2260 | static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev) |
| 2261 | { |
| 2262 | int err = -1; |
| 2263 | struct inet6_ifaddr *ifp; |
| 2264 | |
| 2265 | read_lock_bh(&idev->lock); |
Hannes Frederic Sowa | 602582c | 2014-01-19 21:58:19 +0100 | [diff] [blame] | 2266 | list_for_each_entry_reverse(ifp, &idev->addr_list, if_list) { |
| 2267 | if (ifp->scope > IFA_LINK) |
| 2268 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) { |
| 2270 | memcpy(eui, ifp->addr.s6_addr+8, 8); |
| 2271 | err = 0; |
| 2272 | break; |
| 2273 | } |
| 2274 | } |
| 2275 | read_unlock_bh(&idev->lock); |
| 2276 | return err; |
| 2277 | } |
| 2278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */ |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 2280 | static void ipv6_regen_rndid(struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | regen: |
YOSHIFUJI Hideaki | 955189e | 2006-03-20 16:54:09 -0800 | [diff] [blame] | 2283 | get_random_bytes(idev->rndid, sizeof(idev->rndid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | idev->rndid[0] &= ~0x02; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | |
| 2286 | /* |
| 2287 | * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>: |
| 2288 | * check if generated address is not inappropriate |
| 2289 | * |
| 2290 | * - Reserved subnet anycast (RFC 2526) |
| 2291 | * 11111101 11....11 1xxxxxxx |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 2292 | * - ISATAP (RFC4214) 6.1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | * 00-00-5E-FE-xx-xx-xx-xx |
| 2294 | * - value 0 |
| 2295 | * - XXX: already assigned to an address on the device |
| 2296 | */ |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2297 | if (idev->rndid[0] == 0xfd && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff && |
| 2299 | (idev->rndid[7]&0x80)) |
| 2300 | goto regen; |
| 2301 | if ((idev->rndid[0]|idev->rndid[1]) == 0) { |
| 2302 | if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe) |
| 2303 | goto regen; |
| 2304 | if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00) |
| 2305 | goto regen; |
| 2306 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | } |
| 2308 | |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 2309 | static void ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 2310 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0) |
Jiri Bohac | 9d6280d | 2016-10-13 18:50:02 +0200 | [diff] [blame] | 2312 | ipv6_regen_rndid(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2313 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | |
| 2315 | /* |
| 2316 | * Add prefix route. |
| 2317 | */ |
| 2318 | |
| 2319 | static void |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2320 | addrconf_prefix_route(struct in6_addr *pfx, int plen, u32 metric, |
| 2321 | struct net_device *dev, unsigned long expires, |
| 2322 | u32 flags, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2324 | struct fib6_config cfg = { |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2325 | .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2326 | .fc_metric = metric ? : IP6_RT_PRIO_ADDRCONF, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2327 | .fc_ifindex = dev->ifindex, |
| 2328 | .fc_expires = expires, |
| 2329 | .fc_dst_len = plen, |
| 2330 | .fc_flags = RTF_UP | flags, |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2331 | .fc_nlinfo.nl_net = dev_net(dev), |
Stephen Hemminger | f410a1f | 2008-08-23 05:16:46 -0700 | [diff] [blame] | 2332 | .fc_protocol = RTPROT_KERNEL, |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 2333 | .fc_type = RTN_UNICAST, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2334 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2336 | cfg.fc_dst = *pfx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | |
| 2338 | /* Prevent useless cloning on PtP SIT. |
| 2339 | This thing is done here expecting that the whole |
| 2340 | class of non-broadcast devices need not cloning. |
| 2341 | */ |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 2342 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2343 | if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT)) |
| 2344 | cfg.fc_flags |= RTF_NONEXTHOP; |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 2345 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 2347 | ip6_route_add(&cfg, gfp_flags, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2348 | } |
| 2349 | |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2350 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2351 | 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] | 2352 | int plen, |
| 2353 | const struct net_device *dev, |
| 2354 | u32 flags, u32 noflags) |
| 2355 | { |
| 2356 | struct fib6_node *fn; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2357 | struct fib6_info *rt = NULL; |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2358 | struct fib6_table *table; |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2359 | u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_PREFIX; |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2360 | |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2361 | table = fib6_get_table(dev_net(dev), tb_id); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2362 | if (!table) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2363 | return NULL; |
| 2364 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2365 | rcu_read_lock(); |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 2366 | fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0, true); |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2367 | if (!fn) |
| 2368 | goto out; |
Martin KaFai Lau | 1f56a01f | 2015-04-28 13:03:03 -0700 | [diff] [blame] | 2369 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2370 | for_each_fib6_node_rt_rcu(fn) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2371 | if (rt->fib6_nh.nh_dev->ifindex != dev->ifindex) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2372 | continue; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2373 | if ((rt->fib6_flags & flags) != flags) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2374 | continue; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2375 | if ((rt->fib6_flags & noflags) != 0) |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2376 | continue; |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2377 | fib6_info_hold(rt); |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2378 | break; |
| 2379 | } |
| 2380 | out: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2381 | rcu_read_unlock(); |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2382 | return rt; |
| 2383 | } |
| 2384 | |
| 2385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | /* Create "default" multicast route to the interface */ |
| 2387 | |
| 2388 | static void addrconf_add_mroute(struct net_device *dev) |
| 2389 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2390 | struct fib6_config cfg = { |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2391 | .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_LOCAL, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2392 | .fc_metric = IP6_RT_PRIO_ADDRCONF, |
| 2393 | .fc_ifindex = dev->ifindex, |
| 2394 | .fc_dst_len = 8, |
| 2395 | .fc_flags = RTF_UP, |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 2396 | .fc_type = RTN_UNICAST, |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2397 | .fc_nlinfo.nl_net = dev_net(dev), |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2398 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2400 | ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0); |
| 2401 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 2402 | ip6_route_add(&cfg, GFP_ATOMIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | } |
| 2404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | static struct inet6_dev *addrconf_add_dev(struct net_device *dev) |
| 2406 | { |
| 2407 | struct inet6_dev *idev; |
| 2408 | |
| 2409 | ASSERT_RTNL(); |
| 2410 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 2411 | idev = ipv6_find_idev(dev); |
| 2412 | if (!idev) |
Brian Haley | 64e724f | 2010-07-20 10:34:30 +0000 | [diff] [blame] | 2413 | return ERR_PTR(-ENOBUFS); |
| 2414 | |
| 2415 | if (idev->cnf.disable_ipv6) |
| 2416 | return ERR_PTR(-EACCES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | |
| 2418 | /* Add default multicast route */ |
David Ahern | ba46ee4 | 2016-06-13 13:44:18 -0700 | [diff] [blame] | 2419 | if (!(dev->flags & IFF_LOOPBACK) && !netif_is_l3_master(dev)) |
Li Wei | 4af04ab | 2011-12-06 21:23:45 +0000 | [diff] [blame] | 2420 | addrconf_add_mroute(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | return idev; |
| 2423 | } |
| 2424 | |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2425 | static void manage_tempaddrs(struct inet6_dev *idev, |
| 2426 | struct inet6_ifaddr *ifp, |
| 2427 | __u32 valid_lft, __u32 prefered_lft, |
| 2428 | bool create, unsigned long now) |
| 2429 | { |
| 2430 | u32 flags; |
| 2431 | struct inet6_ifaddr *ift; |
| 2432 | |
| 2433 | read_lock_bh(&idev->lock); |
| 2434 | /* update all temporary addresses in the list */ |
| 2435 | list_for_each_entry(ift, &idev->tempaddr_list, tmp_list) { |
| 2436 | int age, max_valid, max_prefered; |
| 2437 | |
| 2438 | if (ifp != ift->ifpub) |
| 2439 | continue; |
| 2440 | |
| 2441 | /* RFC 4941 section 3.3: |
| 2442 | * If a received option will extend the lifetime of a public |
| 2443 | * address, the lifetimes of temporary addresses should |
| 2444 | * be extended, subject to the overall constraint that no |
| 2445 | * temporary addresses should ever remain "valid" or "preferred" |
| 2446 | * for a time longer than (TEMP_VALID_LIFETIME) or |
| 2447 | * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), respectively. |
| 2448 | */ |
| 2449 | age = (now - ift->cstamp) / HZ; |
| 2450 | max_valid = idev->cnf.temp_valid_lft - age; |
| 2451 | if (max_valid < 0) |
| 2452 | max_valid = 0; |
| 2453 | |
| 2454 | max_prefered = idev->cnf.temp_prefered_lft - |
Jiri Bohac | 76506a9 | 2016-10-13 18:52:15 +0200 | [diff] [blame] | 2455 | idev->desync_factor - age; |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2456 | if (max_prefered < 0) |
| 2457 | max_prefered = 0; |
| 2458 | |
| 2459 | if (valid_lft > max_valid) |
| 2460 | valid_lft = max_valid; |
| 2461 | |
| 2462 | if (prefered_lft > max_prefered) |
| 2463 | prefered_lft = max_prefered; |
| 2464 | |
| 2465 | spin_lock(&ift->lock); |
| 2466 | flags = ift->flags; |
| 2467 | ift->valid_lft = valid_lft; |
| 2468 | ift->prefered_lft = prefered_lft; |
| 2469 | ift->tstamp = now; |
| 2470 | if (prefered_lft > 0) |
| 2471 | ift->flags &= ~IFA_F_DEPRECATED; |
| 2472 | |
| 2473 | spin_unlock(&ift->lock); |
| 2474 | if (!(flags&IFA_F_TENTATIVE)) |
| 2475 | ipv6_ifa_notify(0, ift); |
| 2476 | } |
| 2477 | |
| 2478 | if ((create || list_empty(&idev->tempaddr_list)) && |
| 2479 | idev->cnf.use_tempaddr > 0) { |
| 2480 | /* When a new public address is created as described |
| 2481 | * in [ADDRCONF], also create a new temporary address. |
| 2482 | * Also create a temporary address if it's enabled but |
| 2483 | * no temporary address currently exists. |
| 2484 | */ |
| 2485 | read_unlock_bh(&idev->lock); |
Eric Dumazet | fffcefe | 2017-11-06 14:13:29 -0800 | [diff] [blame] | 2486 | ipv6_create_tempaddr(ifp, NULL, false); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2487 | } else { |
| 2488 | read_unlock_bh(&idev->lock); |
| 2489 | } |
| 2490 | } |
| 2491 | |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 2492 | static bool is_addr_mode_generate_stable(struct inet6_dev *idev) |
| 2493 | { |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 2494 | return idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY || |
| 2495 | idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_RANDOM; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 2496 | } |
| 2497 | |
Alexander Aring | cc84b3c | 2016-06-15 21:20:24 +0200 | [diff] [blame] | 2498 | int addrconf_prefix_rcv_add_addr(struct net *net, struct net_device *dev, |
| 2499 | const struct prefix_info *pinfo, |
| 2500 | struct inet6_dev *in6_dev, |
| 2501 | const struct in6_addr *addr, int addr_type, |
| 2502 | u32 addr_flags, bool sllao, bool tokenized, |
| 2503 | __u32 valid_lft, u32 prefered_lft) |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2504 | { |
| 2505 | struct inet6_ifaddr *ifp = ipv6_get_ifaddr(net, addr, dev, 1); |
| 2506 | int create = 0, update_lft = 0; |
| 2507 | |
| 2508 | if (!ifp && valid_lft) { |
| 2509 | int max_addresses = in6_dev->cnf.max_addresses; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2510 | struct ifa6_config cfg = { |
| 2511 | .pfx = addr, |
| 2512 | .plen = pinfo->prefix_len, |
| 2513 | .ifa_flags = addr_flags, |
| 2514 | .valid_lft = valid_lft, |
| 2515 | .preferred_lft = prefered_lft, |
| 2516 | .scope = addr_type & IPV6_ADDR_SCOPE_MASK, |
| 2517 | }; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2518 | |
| 2519 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 2520 | if ((net->ipv6.devconf_all->optimistic_dad || |
| 2521 | in6_dev->cnf.optimistic_dad) && |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2522 | !net->ipv6.devconf_all->forwarding && sllao) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2523 | cfg.ifa_flags |= IFA_F_OPTIMISTIC; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2524 | #endif |
| 2525 | |
| 2526 | /* Do not allow to create too much of autoconfigured |
| 2527 | * addresses; this would be too easy way to crash kernel. |
| 2528 | */ |
| 2529 | if (!max_addresses || |
| 2530 | ipv6_count_addresses(in6_dev) < max_addresses) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 2531 | ifp = ipv6_add_addr(in6_dev, &cfg, false, NULL); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2532 | |
| 2533 | if (IS_ERR_OR_NULL(ifp)) |
| 2534 | return -1; |
| 2535 | |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2536 | create = 1; |
| 2537 | spin_lock_bh(&ifp->lock); |
| 2538 | ifp->flags |= IFA_F_MANAGETEMPADDR; |
| 2539 | ifp->cstamp = jiffies; |
| 2540 | ifp->tokenized = tokenized; |
| 2541 | spin_unlock_bh(&ifp->lock); |
| 2542 | addrconf_dad_start(ifp); |
| 2543 | } |
| 2544 | |
| 2545 | if (ifp) { |
| 2546 | u32 flags; |
| 2547 | unsigned long now; |
| 2548 | u32 stored_lft; |
| 2549 | |
| 2550 | /* update lifetime (RFC2462 5.5.3 e) */ |
| 2551 | spin_lock_bh(&ifp->lock); |
| 2552 | now = jiffies; |
| 2553 | if (ifp->valid_lft > (now - ifp->tstamp) / HZ) |
| 2554 | stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ; |
| 2555 | else |
| 2556 | stored_lft = 0; |
Lorenzo Bianconi | f85f94b | 2018-04-16 17:52:59 +0200 | [diff] [blame] | 2557 | if (!create && stored_lft) { |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2558 | const u32 minimum_lft = min_t(u32, |
| 2559 | stored_lft, MIN_VALID_LIFETIME); |
| 2560 | valid_lft = max(valid_lft, minimum_lft); |
| 2561 | |
| 2562 | /* RFC4862 Section 5.5.3e: |
| 2563 | * "Note that the preferred lifetime of the |
| 2564 | * corresponding address is always reset to |
| 2565 | * the Preferred Lifetime in the received |
| 2566 | * Prefix Information option, regardless of |
| 2567 | * whether the valid lifetime is also reset or |
| 2568 | * ignored." |
| 2569 | * |
| 2570 | * So we should always update prefered_lft here. |
| 2571 | */ |
| 2572 | update_lft = 1; |
| 2573 | } |
| 2574 | |
| 2575 | if (update_lft) { |
| 2576 | ifp->valid_lft = valid_lft; |
| 2577 | ifp->prefered_lft = prefered_lft; |
| 2578 | ifp->tstamp = now; |
| 2579 | flags = ifp->flags; |
| 2580 | ifp->flags &= ~IFA_F_DEPRECATED; |
| 2581 | spin_unlock_bh(&ifp->lock); |
| 2582 | |
| 2583 | if (!(flags&IFA_F_TENTATIVE)) |
| 2584 | ipv6_ifa_notify(0, ifp); |
| 2585 | } else |
| 2586 | spin_unlock_bh(&ifp->lock); |
| 2587 | |
| 2588 | manage_tempaddrs(in6_dev, ifp, valid_lft, prefered_lft, |
| 2589 | create, now); |
| 2590 | |
| 2591 | in6_ifa_put(ifp); |
| 2592 | addrconf_verify(); |
| 2593 | } |
| 2594 | |
| 2595 | return 0; |
| 2596 | } |
Alexander Aring | cc84b3c | 2016-06-15 21:20:24 +0200 | [diff] [blame] | 2597 | EXPORT_SYMBOL_GPL(addrconf_prefix_rcv_add_addr); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2598 | |
Neil Horman | e6bff99 | 2012-01-04 10:49:15 +0000 | [diff] [blame] | 2599 | 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] | 2600 | { |
| 2601 | struct prefix_info *pinfo; |
| 2602 | __u32 valid_lft; |
| 2603 | __u32 prefered_lft; |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2604 | int addr_type, err; |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 2605 | u32 addr_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | struct inet6_dev *in6_dev; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 2607 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | |
| 2609 | pinfo = (struct prefix_info *) opt; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | if (len < sizeof(struct prefix_info)) { |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 2612 | netdev_dbg(dev, "addrconf: prefix option too short\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | return; |
| 2614 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2616 | /* |
| 2617 | * Validation checks ([ADDRCONF], page 19) |
| 2618 | */ |
| 2619 | |
| 2620 | addr_type = ipv6_addr_type(&pinfo->prefix); |
| 2621 | |
| 2622 | if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL)) |
| 2623 | return; |
| 2624 | |
| 2625 | valid_lft = ntohl(pinfo->valid); |
| 2626 | prefered_lft = ntohl(pinfo->prefered); |
| 2627 | |
| 2628 | if (prefered_lft > valid_lft) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2629 | net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | return; |
| 2631 | } |
| 2632 | |
| 2633 | in6_dev = in6_dev_get(dev); |
| 2634 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2635 | if (!in6_dev) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2636 | net_dbg_ratelimited("addrconf: device %s not configured\n", |
| 2637 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | return; |
| 2639 | } |
| 2640 | |
| 2641 | /* |
| 2642 | * Two things going on here: |
| 2643 | * 1) Add routes for on-link prefixes |
| 2644 | * 2) Configure prefixes with the auto flag set |
| 2645 | */ |
| 2646 | |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2647 | if (pinfo->onlink) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2648 | struct fib6_info *rt; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2649 | unsigned long rt_expires; |
| 2650 | |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2651 | /* Avoid arithmetic overflow. Really, we could |
| 2652 | * save rt_expires in seconds, likely valid_lft, |
| 2653 | * but it would require division in fib gc, that it |
| 2654 | * not good. |
| 2655 | */ |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2656 | if (HZ > USER_HZ) |
| 2657 | rt_expires = addrconf_timeout_fixup(valid_lft, HZ); |
| 2658 | else |
| 2659 | rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ); |
YOSHIFUJI Hideaki | 3dd4bc6 | 2005-12-19 14:02:45 -0800 | [diff] [blame] | 2660 | |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2661 | if (addrconf_finite_timeout(rt_expires)) |
| 2662 | rt_expires *= HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2664 | rt = addrconf_get_prefix_route(&pinfo->prefix, |
| 2665 | pinfo->prefix_len, |
| 2666 | dev, |
| 2667 | RTF_ADDRCONF | RTF_PREFIX_RT, |
| 2668 | RTF_GATEWAY | RTF_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | |
Andreas Hofmeister | 14ef37b | 2011-10-26 03:24:29 +0000 | [diff] [blame] | 2670 | if (rt) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2671 | /* Autoconf prefix route */ |
| 2672 | if (valid_lft == 0) { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 2673 | ip6_del_rt(net, rt); |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2674 | rt = NULL; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2675 | } else if (addrconf_finite_timeout(rt_expires)) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2676 | /* not infinity */ |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2677 | fib6_set_expires(rt, jiffies + rt_expires); |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2678 | } else { |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2679 | fib6_clean_expires(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2680 | } |
| 2681 | } else if (valid_lft) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2682 | clock_t expires = 0; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2683 | int flags = RTF_ADDRCONF | RTF_PREFIX_RT; |
| 2684 | if (addrconf_finite_timeout(rt_expires)) { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2685 | /* not infinity */ |
| 2686 | flags |= RTF_EXPIRES; |
| 2687 | expires = jiffies_to_clock_t(rt_expires); |
| 2688 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2689 | addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2690 | 0, dev, expires, flags, |
| 2691 | GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | } |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2693 | fib6_info_release(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | } |
| 2695 | |
| 2696 | /* Try to figure out our local address for this prefix */ |
| 2697 | |
| 2698 | if (pinfo->autoconf && in6_dev->cnf.autoconf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | struct in6_addr addr; |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 2700 | bool tokenized = false, dev_addr_generated = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | |
| 2702 | if (pinfo->prefix_len == 64) { |
| 2703 | memcpy(&addr, &pinfo->prefix, 8); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 2704 | |
| 2705 | if (!ipv6_addr_any(&in6_dev->token)) { |
| 2706 | read_lock_bh(&in6_dev->lock); |
| 2707 | memcpy(addr.s6_addr + 8, |
| 2708 | in6_dev->token.s6_addr + 8, 8); |
| 2709 | read_unlock_bh(&in6_dev->lock); |
Daniel Borkmann | 617fe29 | 2013-04-09 03:47:16 +0000 | [diff] [blame] | 2710 | tokenized = true; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 2711 | } else if (is_addr_mode_generate_stable(in6_dev) && |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 2712 | !ipv6_generate_stable_address(&addr, 0, |
| 2713 | in6_dev)) { |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 2714 | addr_flags |= IFA_F_STABLE_PRIVACY; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 2715 | goto ok; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 2716 | } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) && |
| 2717 | ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) { |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2718 | goto put; |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 2719 | } else { |
| 2720 | dev_addr_generated = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | } |
| 2722 | goto ok; |
| 2723 | } |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2724 | net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n", |
| 2725 | pinfo->prefix_len); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2726 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | |
| 2728 | ok: |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2729 | err = addrconf_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, |
| 2730 | &addr, addr_type, |
| 2731 | addr_flags, sllao, |
| 2732 | tokenized, valid_lft, |
| 2733 | prefered_lft); |
| 2734 | if (err) |
| 2735 | goto put; |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 2736 | |
| 2737 | /* Ignore error case here because previous prefix add addr was |
| 2738 | * successful which will be notified. |
| 2739 | */ |
| 2740 | ndisc_ops_prefix_rcv_add_addr(net, dev, pinfo, in6_dev, &addr, |
| 2741 | addr_type, addr_flags, sllao, |
| 2742 | tokenized, valid_lft, |
| 2743 | prefered_lft, |
| 2744 | dev_addr_generated); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | } |
| 2746 | inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo); |
Alexander Aring | 4f67223 | 2016-06-15 21:20:22 +0200 | [diff] [blame] | 2747 | put: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | in6_dev_put(in6_dev); |
| 2749 | } |
| 2750 | |
| 2751 | /* |
| 2752 | * Set destination address. |
| 2753 | * Special case for SIT interfaces where we create a new "virtual" |
| 2754 | * device. |
| 2755 | */ |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2756 | int addrconf_set_dstaddr(struct net *net, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | { |
| 2758 | struct in6_ifreq ireq; |
| 2759 | struct net_device *dev; |
| 2760 | int err = -EINVAL; |
| 2761 | |
| 2762 | rtnl_lock(); |
| 2763 | |
| 2764 | err = -EFAULT; |
| 2765 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
| 2766 | goto err_exit; |
| 2767 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2768 | dev = __dev_get_by_index(net, ireq.ifr6_ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | |
| 2770 | err = -ENODEV; |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2771 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | goto err_exit; |
| 2773 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 2774 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | if (dev->type == ARPHRD_SIT) { |
Stephen Hemminger | 5bc3eb7 | 2008-11-19 21:52:05 -0800 | [diff] [blame] | 2776 | const struct net_device_ops *ops = dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | struct ifreq ifr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2778 | struct ip_tunnel_parm p; |
| 2779 | |
| 2780 | err = -EADDRNOTAVAIL; |
| 2781 | if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4)) |
| 2782 | goto err_exit; |
| 2783 | |
| 2784 | memset(&p, 0, sizeof(p)); |
| 2785 | p.iph.daddr = ireq.ifr6_addr.s6_addr32[3]; |
| 2786 | p.iph.saddr = 0; |
| 2787 | p.iph.version = 4; |
| 2788 | p.iph.ihl = 5; |
| 2789 | p.iph.protocol = IPPROTO_IPV6; |
| 2790 | p.iph.ttl = 64; |
Stephen Hemminger | d20b310 | 2008-01-21 00:48:43 -0800 | [diff] [blame] | 2791 | ifr.ifr_ifru.ifru_data = (__force void __user *)&p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | |
Stephen Hemminger | 5bc3eb7 | 2008-11-19 21:52:05 -0800 | [diff] [blame] | 2793 | if (ops->ndo_do_ioctl) { |
| 2794 | mm_segment_t oldfs = get_fs(); |
| 2795 | |
| 2796 | set_fs(KERNEL_DS); |
| 2797 | err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL); |
| 2798 | set_fs(oldfs); |
| 2799 | } else |
| 2800 | err = -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | |
| 2802 | if (err == 0) { |
| 2803 | err = -ENOBUFS; |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2804 | dev = __dev_get_by_name(net, p.name); |
| 2805 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | goto err_exit; |
| 2807 | err = dev_open(dev); |
| 2808 | } |
| 2809 | } |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 2810 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | |
| 2812 | err_exit: |
| 2813 | rtnl_unlock(); |
| 2814 | return err; |
| 2815 | } |
| 2816 | |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2817 | static int ipv6_mc_config(struct sock *sk, bool join, |
| 2818 | const struct in6_addr *addr, int ifindex) |
| 2819 | { |
| 2820 | int ret; |
| 2821 | |
| 2822 | ASSERT_RTNL(); |
| 2823 | |
| 2824 | lock_sock(sk); |
| 2825 | if (join) |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2826 | ret = ipv6_sock_mc_join(sk, ifindex, addr); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2827 | else |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2828 | ret = ipv6_sock_mc_drop(sk, ifindex, addr); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2829 | release_sock(sk); |
| 2830 | |
| 2831 | return ret; |
| 2832 | } |
| 2833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | /* |
| 2835 | * Manual configuration of address on an interface |
| 2836 | */ |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 2837 | static int inet6_addr_add(struct net *net, int ifindex, |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2838 | struct ifa6_config *cfg, |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 2839 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | { |
| 2841 | struct inet6_ifaddr *ifp; |
| 2842 | struct inet6_dev *idev; |
| 2843 | struct net_device *dev; |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2844 | unsigned long timeout; |
| 2845 | clock_t expires; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2846 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | |
| 2848 | ASSERT_RTNL(); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2849 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2850 | if (cfg->plen > 128) |
Thomas Graf | 24ef0da | 2008-05-28 16:54:22 +0200 | [diff] [blame] | 2851 | return -EINVAL; |
| 2852 | |
Noriaki TAKAMIYA | 0778769d | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2853 | /* check the lifetime */ |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2854 | if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft) |
Noriaki TAKAMIYA | 0778769d | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2855 | return -EINVAL; |
| 2856 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2857 | if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && cfg->plen != 64) |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 2858 | return -EINVAL; |
| 2859 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2860 | dev = __dev_get_by_index(net, ifindex); |
| 2861 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | return -ENODEV; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2863 | |
Brian Haley | 64e724f | 2010-07-20 10:34:30 +0000 | [diff] [blame] | 2864 | idev = addrconf_add_dev(dev); |
| 2865 | if (IS_ERR(idev)) |
| 2866 | return PTR_ERR(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2868 | if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) { |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2869 | int ret = ipv6_mc_config(net->ipv6.mc_autojoin_sk, |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2870 | true, cfg->pfx, ifindex); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2871 | |
| 2872 | if (ret < 0) |
| 2873 | return ret; |
| 2874 | } |
| 2875 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2876 | cfg->scope = ipv6_addr_scope(cfg->pfx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2878 | timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2879 | if (addrconf_finite_timeout(timeout)) { |
| 2880 | expires = jiffies_to_clock_t(timeout * HZ); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2881 | cfg->valid_lft = timeout; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2882 | flags = RTF_EXPIRES; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2883 | } else { |
| 2884 | expires = 0; |
| 2885 | flags = 0; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2886 | cfg->ifa_flags |= IFA_F_PERMANENT; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 2887 | } |
Noriaki TAKAMIYA | 0778769d | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2888 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2889 | timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2890 | if (addrconf_finite_timeout(timeout)) { |
| 2891 | if (timeout == 0) |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2892 | cfg->ifa_flags |= IFA_F_DEPRECATED; |
| 2893 | cfg->preferred_lft = timeout; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 2894 | } |
Noriaki TAKAMIYA | 0778769d | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 2895 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2896 | ifp = ipv6_add_addr(idev, cfg, true, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | if (!IS_ERR(ifp)) { |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2898 | if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) { |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 2899 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
| 2900 | ifp->rt_priority, dev, expires, |
| 2901 | flags, GFP_KERNEL); |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 2902 | } |
| 2903 | |
Lorenzo Bianconi | a2d481b | 2018-04-17 11:54:39 +0200 | [diff] [blame] | 2904 | /* Send a netlink notification if DAD is enabled and |
| 2905 | * optimistic flag is not set |
| 2906 | */ |
| 2907 | if (!(ifp->flags & (IFA_F_OPTIMISTIC | IFA_F_NODAD))) |
| 2908 | ipv6_ifa_notify(0, ifp); |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 2909 | /* |
| 2910 | * Note that section 3.1 of RFC 4429 indicates |
| 2911 | * that the Optimistic flag should not be set for |
| 2912 | * manually configured addresses |
| 2913 | */ |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 2914 | addrconf_dad_start(ifp); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2915 | if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR) |
| 2916 | manage_tempaddrs(idev, ifp, cfg->valid_lft, |
| 2917 | cfg->preferred_lft, true, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2918 | in6_ifa_put(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 2919 | addrconf_verify_rtnl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | return 0; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2921 | } else if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) { |
| 2922 | ipv6_mc_config(net->ipv6.mc_autojoin_sk, false, |
| 2923 | cfg->pfx, ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | } |
| 2925 | |
| 2926 | return PTR_ERR(ifp); |
| 2927 | } |
| 2928 | |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 2929 | static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags, |
| 2930 | const struct in6_addr *pfx, unsigned int plen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | { |
| 2932 | struct inet6_ifaddr *ifp; |
| 2933 | struct inet6_dev *idev; |
| 2934 | struct net_device *dev; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2935 | |
Thomas Graf | 24ef0da | 2008-05-28 16:54:22 +0200 | [diff] [blame] | 2936 | if (plen > 128) |
| 2937 | return -EINVAL; |
| 2938 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2939 | dev = __dev_get_by_index(net, ifindex); |
| 2940 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | return -ENODEV; |
| 2942 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 2943 | idev = __in6_dev_get(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2944 | if (!idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | return -ENXIO; |
| 2946 | |
| 2947 | read_lock_bh(&idev->lock); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 2948 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 | if (ifp->prefix_len == plen && |
| 2950 | ipv6_addr_equal(pfx, &ifp->addr)) { |
| 2951 | in6_ifa_hold(ifp); |
| 2952 | read_unlock_bh(&idev->lock); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2953 | |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 2954 | if (!(ifp->flags & IFA_F_TEMPORARY) && |
| 2955 | (ifa_flags & IFA_F_MANAGETEMPADDR)) |
| 2956 | manage_tempaddrs(idev, ifp, 0, 0, false, |
| 2957 | jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | ipv6_del_addr(ifp); |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 2959 | addrconf_verify_rtnl(); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2960 | if (ipv6_addr_is_multicast(pfx)) { |
| 2961 | ipv6_mc_config(net->ipv6.mc_autojoin_sk, |
| 2962 | false, pfx, dev->ifindex); |
| 2963 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | return 0; |
| 2965 | } |
| 2966 | } |
| 2967 | read_unlock_bh(&idev->lock); |
| 2968 | return -EADDRNOTAVAIL; |
| 2969 | } |
| 2970 | |
| 2971 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2972 | int addrconf_add_ifaddr(struct net *net, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | { |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2974 | struct ifa6_config cfg = { |
| 2975 | .ifa_flags = IFA_F_PERMANENT, |
| 2976 | .preferred_lft = INFINITY_LIFE_TIME, |
| 2977 | .valid_lft = INFINITY_LIFE_TIME, |
| 2978 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | struct in6_ifreq ireq; |
| 2980 | int err; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2981 | |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 2982 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | return -EPERM; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2984 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
| 2986 | return -EFAULT; |
| 2987 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2988 | cfg.pfx = &ireq.ifr6_addr; |
| 2989 | cfg.plen = ireq.ifr6_prefixlen; |
| 2990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | rtnl_lock(); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 2992 | err = inet6_addr_add(net, ireq.ifr6_ifindex, &cfg, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | rtnl_unlock(); |
| 2994 | return err; |
| 2995 | } |
| 2996 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 2997 | int addrconf_del_ifaddr(struct net *net, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2998 | { |
| 2999 | struct in6_ifreq ireq; |
| 3000 | int err; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3001 | |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 3002 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | return -EPERM; |
| 3004 | |
| 3005 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
| 3006 | return -EFAULT; |
| 3007 | |
| 3008 | rtnl_lock(); |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 3009 | err = inet6_addr_del(net, ireq.ifr6_ifindex, 0, &ireq.ifr6_addr, |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 3010 | ireq.ifr6_prefixlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | rtnl_unlock(); |
| 3012 | return err; |
| 3013 | } |
| 3014 | |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3015 | static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr, |
| 3016 | int plen, int scope) |
| 3017 | { |
| 3018 | struct inet6_ifaddr *ifp; |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3019 | struct ifa6_config cfg = { |
| 3020 | .pfx = addr, |
| 3021 | .plen = plen, |
| 3022 | .ifa_flags = IFA_F_PERMANENT, |
| 3023 | .valid_lft = INFINITY_LIFE_TIME, |
| 3024 | .preferred_lft = INFINITY_LIFE_TIME, |
| 3025 | .scope = scope |
| 3026 | }; |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3027 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3028 | ifp = ipv6_add_addr(idev, &cfg, true, NULL); |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3029 | if (!IS_ERR(ifp)) { |
| 3030 | spin_lock_bh(&ifp->lock); |
| 3031 | ifp->flags &= ~IFA_F_TENTATIVE; |
| 3032 | spin_unlock_bh(&ifp->lock); |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3033 | rt_genid_bump_ipv6(dev_net(idev->dev)); |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3034 | ipv6_ifa_notify(RTM_NEWADDR, ifp); |
| 3035 | in6_ifa_put(ifp); |
| 3036 | } |
| 3037 | } |
| 3038 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3039 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | static void sit_add_v4_addrs(struct inet6_dev *idev) |
| 3041 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | struct in6_addr addr; |
| 3043 | struct net_device *dev; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 3044 | struct net *net = dev_net(idev->dev); |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3045 | int scope, plen; |
Nicolas Dichtel | f0e2acf | 2013-11-14 13:51:06 +0100 | [diff] [blame] | 3046 | u32 pflags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | |
| 3048 | ASSERT_RTNL(); |
| 3049 | |
| 3050 | memset(&addr, 0, sizeof(struct in6_addr)); |
| 3051 | memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4); |
| 3052 | |
| 3053 | if (idev->dev->flags&IFF_POINTOPOINT) { |
| 3054 | addr.s6_addr32[0] = htonl(0xfe800000); |
| 3055 | scope = IFA_LINK; |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3056 | plen = 64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3057 | } else { |
| 3058 | scope = IPV6_ADDR_COMPATv4; |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3059 | plen = 96; |
Nicolas Dichtel | f0e2acf | 2013-11-14 13:51:06 +0100 | [diff] [blame] | 3060 | pflags |= RTF_NONEXTHOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | } |
| 3062 | |
| 3063 | if (addr.s6_addr32[3]) { |
Nicolas Dichtel | 929c9cf | 2013-11-14 13:51:05 +0100 | [diff] [blame] | 3064 | add_addr(idev, &addr, plen, scope); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3065 | addrconf_prefix_route(&addr, plen, 0, idev->dev, 0, pflags, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3066 | GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | return; |
| 3068 | } |
| 3069 | |
Benjamin Thery | 6fda735 | 2008-03-05 10:47:47 -0800 | [diff] [blame] | 3070 | for_each_netdev(net, dev) { |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3071 | struct in_device *in_dev = __in_dev_get_rtnl(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3072 | if (in_dev && (dev->flags & IFF_UP)) { |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3073 | struct in_ifaddr *ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | |
| 3075 | int flag = scope; |
| 3076 | |
| 3077 | for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | |
| 3079 | addr.s6_addr32[3] = ifa->ifa_local; |
| 3080 | |
| 3081 | if (ifa->ifa_scope == RT_SCOPE_LINK) |
| 3082 | continue; |
| 3083 | if (ifa->ifa_scope >= RT_SCOPE_HOST) { |
| 3084 | if (idev->dev->flags&IFF_POINTOPOINT) |
| 3085 | continue; |
| 3086 | flag |= IFA_HOST; |
| 3087 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3089 | add_addr(idev, &addr, plen, flag); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3090 | addrconf_prefix_route(&addr, plen, 0, idev->dev, |
| 3091 | 0, pflags, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | } |
| 3093 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3094 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | } |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 3096 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3097 | |
| 3098 | static void init_loopback(struct net_device *dev) |
| 3099 | { |
| 3100 | struct inet6_dev *idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | |
| 3102 | /* ::1 */ |
| 3103 | |
| 3104 | ASSERT_RTNL(); |
| 3105 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3106 | idev = ipv6_find_idev(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 3107 | if (!idev) { |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3108 | pr_debug("%s: add_dev failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | return; |
| 3110 | } |
| 3111 | |
Ilpo Järvinen | b5f348e | 2009-02-06 23:48:01 -0800 | [diff] [blame] | 3112 | add_addr(idev, &in6addr_loopback, 128, IFA_HOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | } |
| 3114 | |
Alexander Aring | 2ad3ed5 | 2016-06-15 21:20:17 +0200 | [diff] [blame] | 3115 | void addrconf_add_linklocal(struct inet6_dev *idev, |
| 3116 | const struct in6_addr *addr, u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3117 | { |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3118 | struct ifa6_config cfg = { |
| 3119 | .pfx = addr, |
| 3120 | .plen = 64, |
| 3121 | .ifa_flags = flags | IFA_F_PERMANENT, |
| 3122 | .valid_lft = INFINITY_LIFE_TIME, |
| 3123 | .preferred_lft = INFINITY_LIFE_TIME, |
| 3124 | .scope = IFA_LINK |
| 3125 | }; |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3126 | struct inet6_ifaddr *ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3128 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 3129 | if ((dev_net(idev->dev)->ipv6.devconf_all->optimistic_dad || |
| 3130 | idev->cnf.optimistic_dad) && |
David Miller | 702beb8 | 2008-07-20 18:17:02 -0700 | [diff] [blame] | 3131 | !dev_net(idev->dev)->ipv6.devconf_all->forwarding) |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3132 | cfg.ifa_flags |= IFA_F_OPTIMISTIC; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3133 | #endif |
| 3134 | |
David Ahern | e6464b8 | 2018-05-27 08:09:53 -0700 | [diff] [blame] | 3135 | ifp = ipv6_add_addr(idev, &cfg, true, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | if (!IS_ERR(ifp)) { |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3137 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, 0, idev->dev, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3138 | 0, 0, GFP_ATOMIC); |
David S. Miller | cf22f9a | 2012-04-14 21:37:40 -0400 | [diff] [blame] | 3139 | addrconf_dad_start(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | in6_ifa_put(ifp); |
| 3141 | } |
| 3142 | } |
Alexander Aring | 2ad3ed5 | 2016-06-15 21:20:17 +0200 | [diff] [blame] | 3143 | EXPORT_SYMBOL_GPL(addrconf_add_linklocal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3145 | static bool ipv6_reserved_interfaceid(struct in6_addr address) |
| 3146 | { |
| 3147 | if ((address.s6_addr32[2] | address.s6_addr32[3]) == 0) |
| 3148 | return true; |
| 3149 | |
| 3150 | if (address.s6_addr32[2] == htonl(0x02005eff) && |
| 3151 | ((address.s6_addr32[3] & htonl(0xfe000000)) == htonl(0xfe000000))) |
| 3152 | return true; |
| 3153 | |
| 3154 | if (address.s6_addr32[2] == htonl(0xfdffffff) && |
| 3155 | ((address.s6_addr32[3] & htonl(0xffffff80)) == htonl(0xffffff80))) |
| 3156 | return true; |
| 3157 | |
| 3158 | return false; |
| 3159 | } |
| 3160 | |
| 3161 | static int ipv6_generate_stable_address(struct in6_addr *address, |
| 3162 | u8 dad_count, |
| 3163 | const struct inet6_dev *idev) |
| 3164 | { |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3165 | static DEFINE_SPINLOCK(lock); |
| 3166 | static __u32 digest[SHA_DIGEST_WORDS]; |
| 3167 | static __u32 workspace[SHA_WORKSPACE_WORDS]; |
| 3168 | |
| 3169 | static union { |
| 3170 | char __data[SHA_MESSAGE_BYTES]; |
| 3171 | struct { |
| 3172 | struct in6_addr secret; |
Hannes Frederic Sowa | ff40217 | 2015-03-24 11:05:28 +0100 | [diff] [blame] | 3173 | __be32 prefix[2]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3174 | unsigned char hwaddr[MAX_ADDR_LEN]; |
| 3175 | u8 dad_count; |
| 3176 | } __packed; |
| 3177 | } data; |
| 3178 | |
| 3179 | struct in6_addr secret; |
| 3180 | struct in6_addr temp; |
| 3181 | struct net *net = dev_net(idev->dev); |
| 3182 | |
| 3183 | BUILD_BUG_ON(sizeof(data.__data) != sizeof(data)); |
| 3184 | |
| 3185 | if (idev->cnf.stable_secret.initialized) |
| 3186 | secret = idev->cnf.stable_secret.secret; |
| 3187 | else if (net->ipv6.devconf_dflt->stable_secret.initialized) |
| 3188 | secret = net->ipv6.devconf_dflt->stable_secret.secret; |
| 3189 | else |
| 3190 | return -1; |
| 3191 | |
| 3192 | retry: |
| 3193 | spin_lock_bh(&lock); |
| 3194 | |
| 3195 | sha_init(digest); |
| 3196 | memset(&data, 0, sizeof(data)); |
| 3197 | memset(workspace, 0, sizeof(workspace)); |
| 3198 | memcpy(data.hwaddr, idev->dev->perm_addr, idev->dev->addr_len); |
Hannes Frederic Sowa | ff40217 | 2015-03-24 11:05:28 +0100 | [diff] [blame] | 3199 | data.prefix[0] = address->s6_addr32[0]; |
| 3200 | data.prefix[1] = address->s6_addr32[1]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3201 | data.secret = secret; |
| 3202 | data.dad_count = dad_count; |
| 3203 | |
| 3204 | sha_transform(digest, data.__data, workspace); |
| 3205 | |
| 3206 | temp = *address; |
Hannes Frederic Sowa | ff40217 | 2015-03-24 11:05:28 +0100 | [diff] [blame] | 3207 | temp.s6_addr32[2] = (__force __be32)digest[0]; |
| 3208 | temp.s6_addr32[3] = (__force __be32)digest[1]; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3209 | |
| 3210 | spin_unlock_bh(&lock); |
| 3211 | |
| 3212 | if (ipv6_reserved_interfaceid(temp)) { |
| 3213 | dad_count++; |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 3214 | if (dad_count > dev_net(idev->dev)->ipv6.sysctl.idgen_retries) |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3215 | return -1; |
| 3216 | goto retry; |
| 3217 | } |
| 3218 | |
| 3219 | *address = temp; |
| 3220 | return 0; |
| 3221 | } |
| 3222 | |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3223 | static void ipv6_gen_mode_random_init(struct inet6_dev *idev) |
| 3224 | { |
| 3225 | struct ipv6_stable_secret *s = &idev->cnf.stable_secret; |
| 3226 | |
| 3227 | if (s->initialized) |
| 3228 | return; |
| 3229 | s = &idev->cnf.stable_secret; |
| 3230 | get_random_bytes(&s->secret, sizeof(s->secret)); |
| 3231 | s->initialized = true; |
| 3232 | } |
| 3233 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3234 | static void addrconf_addr_gen(struct inet6_dev *idev, bool prefix_route) |
| 3235 | { |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3236 | struct in6_addr addr; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3237 | |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 3238 | /* no link local addresses on L3 master devices */ |
| 3239 | if (netif_is_l3_master(idev->dev)) |
| 3240 | return; |
| 3241 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3242 | ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0); |
| 3243 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 3244 | switch (idev->cnf.addr_gen_mode) { |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3245 | case IN6_ADDR_GEN_MODE_RANDOM: |
| 3246 | ipv6_gen_mode_random_init(idev); |
| 3247 | /* fallthrough */ |
| 3248 | case IN6_ADDR_GEN_MODE_STABLE_PRIVACY: |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3249 | if (!ipv6_generate_stable_address(&addr, 0, idev)) |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 3250 | addrconf_add_linklocal(idev, &addr, |
| 3251 | IFA_F_STABLE_PRIVACY); |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 3252 | else if (prefix_route) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3253 | addrconf_prefix_route(&addr, 64, 0, idev->dev, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3254 | 0, 0, GFP_KERNEL); |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3255 | break; |
| 3256 | case IN6_ADDR_GEN_MODE_EUI64: |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3257 | /* addrconf_add_linklocal also adds a prefix_route and we |
| 3258 | * only need to care about prefix routes if ipv6_generate_eui64 |
| 3259 | * couldn't generate one. |
| 3260 | */ |
| 3261 | if (ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) == 0) |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 3262 | addrconf_add_linklocal(idev, &addr, 0); |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3263 | else if (prefix_route) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3264 | addrconf_prefix_route(&addr, 64, 0, idev->dev, |
David Ahern | 27b1060 | 2018-04-18 15:39:06 -0700 | [diff] [blame] | 3265 | 0, 0, GFP_KERNEL); |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3266 | break; |
| 3267 | case IN6_ADDR_GEN_MODE_NONE: |
| 3268 | default: |
| 3269 | /* will not add any link local address */ |
| 3270 | break; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3271 | } |
| 3272 | } |
| 3273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | static void addrconf_dev_config(struct net_device *dev) |
| 3275 | { |
Eldad Zack | 8e5e8f3 | 2012-04-01 07:49:08 +0000 | [diff] [blame] | 3276 | struct inet6_dev *idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3277 | |
| 3278 | ASSERT_RTNL(); |
| 3279 | |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3280 | if ((dev->type != ARPHRD_ETHER) && |
| 3281 | (dev->type != ARPHRD_FDDI) && |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3282 | (dev->type != ARPHRD_ARCNET) && |
alex.bluesman.smirnov@gmail.com | 06a4c1c | 2012-05-10 03:25:52 +0000 | [diff] [blame] | 3283 | (dev->type != ARPHRD_INFINIBAND) && |
Nicolas Dichtel | e837735 | 2013-08-20 12:16:06 +0200 | [diff] [blame] | 3284 | (dev->type != ARPHRD_IEEE1394) && |
Jukka Rissanen | e74bccb8 | 2013-12-11 17:05:36 +0200 | [diff] [blame] | 3285 | (dev->type != ARPHRD_TUNNEL6) && |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3286 | (dev->type != ARPHRD_6LOWPAN) && |
Felix Jia | 45ce0fd | 2017-01-26 16:59:18 +1300 | [diff] [blame] | 3287 | (dev->type != ARPHRD_IP6GRE) && |
| 3288 | (dev->type != ARPHRD_IPGRE) && |
| 3289 | (dev->type != ARPHRD_TUNNEL) && |
Subash Abhinov Kasiviswanathan | 9deb441 | 2018-06-04 19:26:07 -0600 | [diff] [blame] | 3290 | (dev->type != ARPHRD_NONE) && |
| 3291 | (dev->type != ARPHRD_RAWIP)) { |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3292 | /* Alas, we support only Ethernet autoconfiguration. */ |
| 3293 | return; |
| 3294 | } |
| 3295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3296 | idev = addrconf_add_dev(dev); |
Brian Haley | 64e724f | 2010-07-20 10:34:30 +0000 | [diff] [blame] | 3297 | if (IS_ERR(idev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | return; |
| 3299 | |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3300 | /* this device type has no EUI support */ |
| 3301 | if (dev->type == ARPHRD_NONE && |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 3302 | idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_EUI64) |
| 3303 | idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_RANDOM; |
Bjørn Mork | cc9da6c | 2015-12-16 16:44:38 +0100 | [diff] [blame] | 3304 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3305 | addrconf_addr_gen(idev, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | } |
| 3307 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3308 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3309 | static void addrconf_sit_config(struct net_device *dev) |
| 3310 | { |
| 3311 | struct inet6_dev *idev; |
| 3312 | |
| 3313 | ASSERT_RTNL(); |
| 3314 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3315 | /* |
| 3316 | * Configure the tunnel with one of our IPv4 |
| 3317 | * addresses... we should configure all of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3318 | * our v4 addrs in the tunnel |
| 3319 | */ |
| 3320 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3321 | idev = ipv6_find_idev(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 3322 | if (!idev) { |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3323 | pr_debug("%s: add_dev failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | return; |
| 3325 | } |
| 3326 | |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 3327 | if (dev->priv_flags & IFF_ISATAP) { |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3328 | addrconf_addr_gen(idev, false); |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 3329 | return; |
| 3330 | } |
| 3331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | sit_add_v4_addrs(idev); |
| 3333 | |
Nicolas Dichtel | 62b54dd | 2012-10-01 23:19:14 +0000 | [diff] [blame] | 3334 | if (dev->flags&IFF_POINTOPOINT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3335 | addrconf_add_mroute(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3336 | } |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 3337 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3338 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3339 | #if IS_ENABLED(CONFIG_NET_IPGRE) |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3340 | static void addrconf_gre_config(struct net_device *dev) |
| 3341 | { |
| 3342 | struct inet6_dev *idev; |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3343 | |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3344 | ASSERT_RTNL(); |
| 3345 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 3346 | idev = ipv6_find_idev(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 3347 | if (!idev) { |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3348 | pr_debug("%s: add_dev failed\n", __func__); |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3349 | return; |
| 3350 | } |
| 3351 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 3352 | addrconf_addr_gen(idev, true); |
Hannes Frederic Sowa | d9e4ce6 | 2015-10-08 18:19:39 +0200 | [diff] [blame] | 3353 | if (dev->flags & IFF_POINTOPOINT) |
| 3354 | addrconf_add_mroute(dev); |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3355 | } |
| 3356 | #endif |
| 3357 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3358 | static int fixup_permanent_addr(struct net *net, |
| 3359 | struct inet6_dev *idev, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3360 | struct inet6_ifaddr *ifp) |
| 3361 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 3362 | /* !fib6_node means the host route was removed from the |
David Ahern | 8048ced | 2017-04-25 09:17:29 -0700 | [diff] [blame] | 3363 | * FIB, for example, if 'lo' device is taken down. In that |
| 3364 | * case regenerate the host route. |
| 3365 | */ |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 3366 | if (!ifp->rt || !ifp->rt->fib6_node) { |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 3367 | struct fib6_info *f6i, *prev; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3368 | |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 3369 | f6i = addrconf_f6i_alloc(net, idev, &ifp->addr, false, |
| 3370 | GFP_ATOMIC); |
| 3371 | if (IS_ERR(f6i)) |
| 3372 | return PTR_ERR(f6i); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3373 | |
David Ahern | 8048ced | 2017-04-25 09:17:29 -0700 | [diff] [blame] | 3374 | /* ifp->rt can be accessed outside of rtnl */ |
| 3375 | spin_lock(&ifp->lock); |
| 3376 | prev = ifp->rt; |
David Ahern | 360a988 | 2018-04-18 15:39:00 -0700 | [diff] [blame] | 3377 | ifp->rt = f6i; |
David Ahern | 8048ced | 2017-04-25 09:17:29 -0700 | [diff] [blame] | 3378 | spin_unlock(&ifp->lock); |
| 3379 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3380 | fib6_info_release(prev); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3381 | } |
| 3382 | |
| 3383 | if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) { |
| 3384 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 3385 | ifp->rt_priority, idev->dev, 0, 0, |
| 3386 | GFP_ATOMIC); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3387 | } |
| 3388 | |
David Ahern | 6d71713 | 2017-05-02 14:43:44 -0700 | [diff] [blame] | 3389 | if (ifp->state == INET6_IFADDR_STATE_PREDAD) |
| 3390 | addrconf_dad_start(ifp); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3391 | |
| 3392 | return 0; |
| 3393 | } |
| 3394 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3395 | static void addrconf_permanent_addr(struct net *net, struct net_device *dev) |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3396 | { |
| 3397 | struct inet6_ifaddr *ifp, *tmp; |
| 3398 | struct inet6_dev *idev; |
| 3399 | |
| 3400 | idev = __in6_dev_get(dev); |
| 3401 | if (!idev) |
| 3402 | return; |
| 3403 | |
| 3404 | write_lock_bh(&idev->lock); |
| 3405 | |
| 3406 | list_for_each_entry_safe(ifp, tmp, &idev->addr_list, if_list) { |
| 3407 | if ((ifp->flags & IFA_F_PERMANENT) && |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3408 | fixup_permanent_addr(net, idev, ifp) < 0) { |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3409 | write_unlock_bh(&idev->lock); |
Eric Dumazet | e669b86 | 2017-10-30 22:47:09 -0700 | [diff] [blame] | 3410 | in6_ifa_hold(ifp); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3411 | ipv6_del_addr(ifp); |
| 3412 | write_lock_bh(&idev->lock); |
| 3413 | |
| 3414 | net_info_ratelimited("%s: Failed to add prefix route for address %pI6c; dropping\n", |
| 3415 | idev->dev->name, &ifp->addr); |
| 3416 | } |
| 3417 | } |
| 3418 | |
| 3419 | write_unlock_bh(&idev->lock); |
| 3420 | } |
| 3421 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3422 | static int addrconf_notify(struct notifier_block *this, unsigned long event, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 3423 | void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3424 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 3425 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
David Ahern | 4f7f34e | 2016-04-07 11:10:41 -0700 | [diff] [blame] | 3426 | struct netdev_notifier_changeupper_info *info; |
Eric Dumazet | 748e2d9 | 2012-08-22 21:50:59 +0000 | [diff] [blame] | 3427 | struct inet6_dev *idev = __in6_dev_get(dev); |
WANG Cong | 60abc0b | 2017-06-21 14:34:58 -0700 | [diff] [blame] | 3428 | struct net *net = dev_net(dev); |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3429 | int run_pending = 0; |
Herbert Xu | b217d61 | 2007-07-30 17:04:52 -0700 | [diff] [blame] | 3430 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3431 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 3432 | switch (event) { |
YOSHIFUJI Hideaki | 45ba9dd | 2007-02-15 02:07:27 +0900 | [diff] [blame] | 3433 | case NETDEV_REGISTER: |
Herbert Xu | 74235a2 | 2007-06-14 13:02:55 -0700 | [diff] [blame] | 3434 | if (!idev && dev->mtu >= IPV6_MIN_MTU) { |
YOSHIFUJI Hideaki | 45ba9dd | 2007-02-15 02:07:27 +0900 | [diff] [blame] | 3435 | idev = ipv6_add_dev(dev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3436 | if (IS_ERR(idev)) |
| 3437 | return notifier_from_errno(PTR_ERR(idev)); |
YOSHIFUJI Hideaki | 45ba9dd | 2007-02-15 02:07:27 +0900 | [diff] [blame] | 3438 | } |
| 3439 | break; |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3440 | |
Alexander Duyck | b7b0b1d | 2015-10-26 11:06:33 -0700 | [diff] [blame] | 3441 | case NETDEV_CHANGEMTU: |
| 3442 | /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */ |
| 3443 | if (dev->mtu < IPV6_MIN_MTU) { |
WANG Cong | 60abc0b | 2017-06-21 14:34:58 -0700 | [diff] [blame] | 3444 | addrconf_ifdown(dev, dev != net->loopback_dev); |
Alexander Duyck | b7b0b1d | 2015-10-26 11:06:33 -0700 | [diff] [blame] | 3445 | break; |
| 3446 | } |
| 3447 | |
| 3448 | if (idev) { |
| 3449 | rt6_mtu_change(dev, dev->mtu); |
| 3450 | idev->cnf.mtu6 = dev->mtu; |
| 3451 | break; |
| 3452 | } |
| 3453 | |
| 3454 | /* allocate new idev */ |
| 3455 | idev = ipv6_add_dev(dev); |
| 3456 | if (IS_ERR(idev)) |
| 3457 | break; |
| 3458 | |
| 3459 | /* device is still not ready */ |
| 3460 | if (!(idev->if_flags & IF_READY)) |
| 3461 | break; |
| 3462 | |
| 3463 | run_pending = 1; |
| 3464 | |
| 3465 | /* fall through */ |
| 3466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3467 | case NETDEV_UP: |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3468 | case NETDEV_CHANGE: |
Jay Vosburgh | c2edacf | 2007-07-09 10:42:47 -0700 | [diff] [blame] | 3469 | if (dev->flags & IFF_SLAVE) |
| 3470 | break; |
| 3471 | |
WANG Cong | 3ce62a8 | 2014-09-11 15:07:16 -0700 | [diff] [blame] | 3472 | if (idev && idev->cnf.disable_ipv6) |
| 3473 | break; |
| 3474 | |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3475 | if (event == NETDEV_UP) { |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3476 | /* restore routes for permanent addresses */ |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3477 | addrconf_permanent_addr(net, dev); |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3478 | |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 3479 | if (!addrconf_link_ready(dev)) { |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3480 | /* device is not ready yet. */ |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 3481 | pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n", |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3482 | dev->name); |
| 3483 | break; |
| 3484 | } |
Kristian Slavov | 9908104 | 2006-02-08 16:10:53 -0800 | [diff] [blame] | 3485 | |
Evgeniy Polyakov | d31c7b8 | 2007-11-30 23:36:08 +1100 | [diff] [blame] | 3486 | if (!idev && dev->mtu >= IPV6_MIN_MTU) |
| 3487 | idev = ipv6_add_dev(dev); |
| 3488 | |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3489 | if (!IS_ERR_OR_NULL(idev)) { |
Kristian Slavov | 9908104 | 2006-02-08 16:10:53 -0800 | [diff] [blame] | 3490 | idev->if_flags |= IF_READY; |
Benjamin Thery | e3ec6cf | 2008-11-05 01:43:57 -0800 | [diff] [blame] | 3491 | run_pending = 1; |
| 3492 | } |
Alexander Duyck | b7b0b1d | 2015-10-26 11:06:33 -0700 | [diff] [blame] | 3493 | } else if (event == NETDEV_CHANGE) { |
Mike Manning | 1f372c7 | 2017-09-25 22:01:36 +0100 | [diff] [blame] | 3494 | if (!addrconf_link_ready(dev)) { |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3495 | /* device is still not ready. */ |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3496 | rt6_sync_down_dev(dev, event); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3497 | break; |
| 3498 | } |
| 3499 | |
| 3500 | if (idev) { |
Linus Lüssing | a088d1d | 2017-02-03 08:11:03 +0100 | [diff] [blame] | 3501 | if (idev->if_flags & IF_READY) { |
| 3502 | /* device is already configured - |
| 3503 | * but resend MLD reports, we might |
| 3504 | * have roamed and need to update |
| 3505 | * multicast snooping switches |
| 3506 | */ |
| 3507 | ipv6_mc_up(idev); |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3508 | rt6_sync_up(dev, RTNH_F_LINKDOWN); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3509 | break; |
Linus Lüssing | a088d1d | 2017-02-03 08:11:03 +0100 | [diff] [blame] | 3510 | } |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3511 | idev->if_flags |= IF_READY; |
| 3512 | } |
| 3513 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 3514 | pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n", |
| 3515 | dev->name); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3516 | |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3517 | run_pending = 1; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3518 | } |
| 3519 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 3520 | switch (dev->type) { |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3521 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | case ARPHRD_SIT: |
| 3523 | addrconf_sit_config(dev); |
| 3524 | break; |
Joerg Roedel | 0be669b | 2006-10-10 14:49:53 -0700 | [diff] [blame] | 3525 | #endif |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 3526 | #if IS_ENABLED(CONFIG_NET_IPGRE) |
stephen hemminger | aee80b5 | 2011-06-08 10:44:30 +0000 | [diff] [blame] | 3527 | case ARPHRD_IPGRE: |
| 3528 | addrconf_gre_config(dev); |
| 3529 | break; |
| 3530 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3531 | case ARPHRD_LOOPBACK: |
| 3532 | init_loopback(dev); |
| 3533 | break; |
| 3534 | |
| 3535 | default: |
| 3536 | addrconf_dev_config(dev); |
| 3537 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 3538 | } |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3539 | |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3540 | if (!IS_ERR_OR_NULL(idev)) { |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 3541 | if (run_pending) |
| 3542 | addrconf_dad_run(idev); |
| 3543 | |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3544 | /* Device has an address by now */ |
| 3545 | rt6_sync_up(dev, RTNH_F_DEAD); |
| 3546 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3547 | /* |
| 3548 | * If the MTU changed during the interface down, |
| 3549 | * when the interface up, the changed MTU must be |
| 3550 | * reflected in the idev as well as routers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | */ |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3552 | if (idev->cnf.mtu6 != dev->mtu && |
| 3553 | dev->mtu >= IPV6_MIN_MTU) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3554 | rt6_mtu_change(dev, dev->mtu); |
| 3555 | idev->cnf.mtu6 = dev->mtu; |
| 3556 | } |
| 3557 | idev->tstamp = jiffies; |
| 3558 | inet6_ifinfo_notify(RTM_NEWLINK, idev); |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3559 | |
| 3560 | /* |
| 3561 | * If the changed mtu during down is lower than |
| 3562 | * IPV6_MIN_MTU stop IPv6 on this interface. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3563 | */ |
| 3564 | if (dev->mtu < IPV6_MIN_MTU) |
WANG Cong | 60abc0b | 2017-06-21 14:34:58 -0700 | [diff] [blame] | 3565 | addrconf_ifdown(dev, dev != net->loopback_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3566 | } |
| 3567 | break; |
| 3568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3569 | case NETDEV_DOWN: |
| 3570 | case NETDEV_UNREGISTER: |
| 3571 | /* |
| 3572 | * Remove all addresses from this interface. |
| 3573 | */ |
| 3574 | addrconf_ifdown(dev, event != NETDEV_DOWN); |
| 3575 | break; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3577 | case NETDEV_CHANGENAME: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | if (idev) { |
Stephen Hemminger | 5632c51 | 2007-04-28 21:16:39 -0700 | [diff] [blame] | 3579 | snmp6_unregister_dev(idev); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 3580 | addrconf_sysctl_unregister(idev); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3581 | err = addrconf_sysctl_register(idev); |
Herbert Xu | b217d61 | 2007-07-30 17:04:52 -0700 | [diff] [blame] | 3582 | if (err) |
| 3583 | return notifier_from_errno(err); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 3584 | err = snmp6_register_dev(idev); |
| 3585 | if (err) { |
| 3586 | addrconf_sysctl_unregister(idev); |
| 3587 | return notifier_from_errno(err); |
| 3588 | } |
Stephen Hemminger | 5632c51 | 2007-04-28 21:16:39 -0700 | [diff] [blame] | 3589 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3590 | break; |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3591 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3592 | case NETDEV_PRE_TYPE_CHANGE: |
| 3593 | case NETDEV_POST_TYPE_CHANGE: |
Andrew Lunn | 3ef0952 | 2015-12-03 21:12:32 +0100 | [diff] [blame] | 3594 | if (idev) |
| 3595 | addrconf_type_change(dev, event); |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3596 | break; |
David Ahern | 4f7f34e | 2016-04-07 11:10:41 -0700 | [diff] [blame] | 3597 | |
| 3598 | case NETDEV_CHANGEUPPER: |
| 3599 | info = ptr; |
| 3600 | |
| 3601 | /* flush all routes if dev is linked to or unlinked from |
| 3602 | * an L3 master device (e.g., VRF) |
| 3603 | */ |
| 3604 | if (info->upper_dev && netif_is_l3_master(info->upper_dev)) |
| 3605 | addrconf_ifdown(dev, 0); |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 3606 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | |
| 3608 | return NOTIFY_OK; |
| 3609 | } |
| 3610 | |
| 3611 | /* |
| 3612 | * addrconf module should be notified of a device going up |
| 3613 | */ |
| 3614 | static struct notifier_block ipv6_dev_notf = { |
| 3615 | .notifier_call = addrconf_notify, |
WANG Cong | 242d3a4 | 2017-05-08 10:12:13 -0700 | [diff] [blame] | 3616 | .priority = ADDRCONF_NOTIFY_PRIORITY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3617 | }; |
| 3618 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3619 | static void addrconf_type_change(struct net_device *dev, unsigned long event) |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3620 | { |
| 3621 | struct inet6_dev *idev; |
| 3622 | ASSERT_RTNL(); |
| 3623 | |
| 3624 | idev = __in6_dev_get(dev); |
| 3625 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3626 | if (event == NETDEV_POST_TYPE_CHANGE) |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3627 | ipv6_mc_remap(idev); |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 3628 | else if (event == NETDEV_PRE_TYPE_CHANGE) |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 3629 | ipv6_mc_unmap(idev); |
| 3630 | } |
| 3631 | |
David Ahern | 70af921 | 2016-04-08 12:01:21 -0700 | [diff] [blame] | 3632 | static bool addr_is_local(const struct in6_addr *addr) |
| 3633 | { |
| 3634 | return ipv6_addr_type(addr) & |
| 3635 | (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK); |
| 3636 | } |
| 3637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3638 | static int addrconf_ifdown(struct net_device *dev, int how) |
| 3639 | { |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3640 | unsigned long event = how ? NETDEV_UNREGISTER : NETDEV_DOWN; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 3641 | struct net *net = dev_net(dev); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 3642 | struct inet6_dev *idev; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3643 | struct inet6_ifaddr *ifa, *tmp; |
Ivan Vecera | 0aef78a | 2018-04-24 19:51:29 +0200 | [diff] [blame] | 3644 | bool keep_addr = false; |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3645 | int state, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3646 | |
| 3647 | ASSERT_RTNL(); |
| 3648 | |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3649 | rt6_disable_ip(dev, event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | |
| 3651 | idev = __in6_dev_get(dev); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 3652 | if (!idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3653 | return -ENODEV; |
| 3654 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3655 | /* |
| 3656 | * Step 1: remove reference to ipv6 device from parent device. |
| 3657 | * Do not dev_put! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | */ |
Denis V. Lunev | 439e238 | 2008-04-03 13:30:17 -0700 | [diff] [blame] | 3659 | if (how) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3660 | idev->dead = 1; |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 3661 | |
| 3662 | /* protected by rtnl_lock */ |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 3663 | RCU_INIT_POINTER(dev->ip6_ptr, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | |
| 3665 | /* Step 1.5: remove snmp6 entry */ |
| 3666 | snmp6_unregister_dev(idev); |
| 3667 | |
| 3668 | } |
| 3669 | |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3670 | /* combine the user config with event to determine if permanent |
| 3671 | * addresses are to be removed from address hash table |
| 3672 | */ |
Ivan Vecera | 0aef78a | 2018-04-24 19:51:29 +0200 | [diff] [blame] | 3673 | if (!how && !idev->cnf.disable_ipv6) { |
| 3674 | /* aggregate the system setting and interface setting */ |
| 3675 | int _keep_addr = net->ipv6.devconf_all->keep_addr_on_down; |
| 3676 | |
| 3677 | if (!_keep_addr) |
| 3678 | _keep_addr = idev->cnf.keep_addr_on_down; |
| 3679 | |
| 3680 | keep_addr = (_keep_addr > 0); |
| 3681 | } |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3682 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3683 | /* Step 2: clear hash table */ |
| 3684 | for (i = 0; i < IN6_ADDR_HSIZE; i++) { |
| 3685 | struct hlist_head *h = &inet6_addr_lst[i]; |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3686 | |
| 3687 | spin_lock_bh(&addrconf_hash_lock); |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 3688 | restart: |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 3689 | hlist_for_each_entry_rcu(ifa, h, addr_lst) { |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3690 | if (ifa->idev == idev) { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3691 | addrconf_del_dad_work(ifa); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3692 | /* combined flag + permanent flag decide if |
| 3693 | * address is retained on a down event |
| 3694 | */ |
| 3695 | if (!keep_addr || |
David Ahern | 70af921 | 2016-04-08 12:01:21 -0700 | [diff] [blame] | 3696 | !(ifa->flags & IFA_F_PERMANENT) || |
| 3697 | addr_is_local(&ifa->addr)) { |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3698 | hlist_del_init_rcu(&ifa->addr_lst); |
| 3699 | goto restart; |
| 3700 | } |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3701 | } |
| 3702 | } |
| 3703 | spin_unlock_bh(&addrconf_hash_lock); |
| 3704 | } |
| 3705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3706 | write_lock_bh(&idev->lock); |
| 3707 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3708 | addrconf_del_rs_timer(idev); |
| 3709 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3710 | /* Step 2: clear flags for stateless addrconf */ |
Denis V. Lunev | 439e238 | 2008-04-03 13:30:17 -0700 | [diff] [blame] | 3711 | if (!how) |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3712 | idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3713 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3714 | /* Step 3: clear tempaddr list */ |
stephen hemminger | 372e6c8 | 2010-03-17 20:31:09 +0000 | [diff] [blame] | 3715 | while (!list_empty(&idev->tempaddr_list)) { |
| 3716 | ifa = list_first_entry(&idev->tempaddr_list, |
| 3717 | struct inet6_ifaddr, tmp_list); |
| 3718 | list_del(&ifa->tmp_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3719 | write_unlock_bh(&idev->lock); |
| 3720 | spin_lock_bh(&ifa->lock); |
| 3721 | |
| 3722 | if (ifa->ifpub) { |
| 3723 | in6_ifa_put(ifa->ifpub); |
| 3724 | ifa->ifpub = NULL; |
| 3725 | } |
| 3726 | spin_unlock_bh(&ifa->lock); |
| 3727 | in6_ifa_put(ifa); |
| 3728 | write_lock_bh(&idev->lock); |
| 3729 | } |
stephen hemminger | 8f37ada | 2010-03-03 08:19:59 +0000 | [diff] [blame] | 3730 | |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3731 | list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 3732 | struct fib6_info *rt = NULL; |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3733 | bool keep; |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3734 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3735 | addrconf_del_dad_work(ifa); |
stephen hemminger | 84e8b80 | 2010-03-02 13:32:46 +0000 | [diff] [blame] | 3736 | |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3737 | keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) && |
| 3738 | !addr_is_local(&ifa->addr); |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3739 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3740 | write_unlock_bh(&idev->lock); |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3741 | spin_lock_bh(&ifa->lock); |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3742 | |
Rabin Vincent | a2d6cbb | 2017-04-10 08:36:39 +0200 | [diff] [blame] | 3743 | if (keep) { |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3744 | /* set state to skip the notifier below */ |
| 3745 | state = INET6_IFADDR_STATE_DEAD; |
David Ahern | 6d71713 | 2017-05-02 14:43:44 -0700 | [diff] [blame] | 3746 | ifa->state = INET6_IFADDR_STATE_PREDAD; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3747 | if (!(ifa->flags & IFA_F_NODAD)) |
| 3748 | ifa->flags |= IFA_F_TENTATIVE; |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3749 | |
| 3750 | rt = ifa->rt; |
| 3751 | ifa->rt = NULL; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3752 | } else { |
| 3753 | state = ifa->state; |
| 3754 | ifa->state = INET6_IFADDR_STATE_DEAD; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 3755 | } |
| 3756 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3757 | spin_unlock_bh(&ifa->lock); |
stephen hemminger | 84e8b80 | 2010-03-02 13:32:46 +0000 | [diff] [blame] | 3758 | |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3759 | if (rt) |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3760 | ip6_del_rt(net, rt); |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 3761 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3762 | if (state != INET6_IFADDR_STATE_DEAD) { |
| 3763 | __ipv6_ifa_notify(RTM_DELADDR, ifa); |
Cong Wang | f88c91d | 2013-04-14 23:18:43 +0800 | [diff] [blame] | 3764 | inet6addr_notifier_call_chain(NETDEV_DOWN, ifa); |
Mike Manning | ea06f71 | 2016-07-22 18:32:11 +0100 | [diff] [blame] | 3765 | } else { |
| 3766 | if (idev->cnf.forwarding) |
| 3767 | addrconf_leave_anycast(ifa); |
| 3768 | addrconf_leave_solict(ifa->idev, &ifa->addr); |
stephen hemminger | 27bdb2a | 2010-04-12 05:41:32 +0000 | [diff] [blame] | 3769 | } |
stephen hemminger | 8f37ada | 2010-03-03 08:19:59 +0000 | [diff] [blame] | 3770 | |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3771 | write_lock_bh(&idev->lock); |
Eric Dumazet | 8ef802a | 2017-10-07 19:30:23 -0700 | [diff] [blame] | 3772 | if (!keep) { |
| 3773 | list_del_rcu(&ifa->if_list); |
| 3774 | in6_ifa_put(ifa); |
| 3775 | } |
David S. Miller | 73a8bd7 | 2011-01-23 23:27:15 -0800 | [diff] [blame] | 3776 | } |
stephen hemminger | 8f37ada | 2010-03-03 08:19:59 +0000 | [diff] [blame] | 3777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3778 | write_unlock_bh(&idev->lock); |
| 3779 | |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3780 | /* Step 5: Discard anycast and multicast list */ |
| 3781 | if (how) { |
| 3782 | ipv6_ac_destroy_dev(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3783 | ipv6_mc_destroy_dev(idev); |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3784 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | ipv6_mc_down(idev); |
Sabrina Dubroca | 381f4dc | 2014-09-10 23:23:02 +0200 | [diff] [blame] | 3786 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3787 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3788 | idev->tstamp = jiffies; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3789 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 3790 | /* Last: Shot the device (if unregistered) */ |
Denis V. Lunev | 439e238 | 2008-04-03 13:30:17 -0700 | [diff] [blame] | 3791 | if (how) { |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 3792 | addrconf_sysctl_unregister(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3793 | neigh_parms_release(&nd_tbl, idev->nd_parms); |
| 3794 | neigh_ifdown(&nd_tbl, dev); |
| 3795 | in6_dev_put(idev); |
| 3796 | } |
| 3797 | return 0; |
| 3798 | } |
| 3799 | |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 3800 | static void addrconf_rs_timer(struct timer_list *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3801 | { |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 3802 | struct inet6_dev *idev = from_timer(idev, t, rs_timer); |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3803 | struct net_device *dev = idev->dev; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3804 | struct in6_addr lladdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3806 | write_lock(&idev->lock); |
stephen hemminger | 5b2a195 | 2010-03-02 13:32:45 +0000 | [diff] [blame] | 3807 | if (idev->dead || !(idev->if_flags & IF_READY)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | goto out; |
| 3809 | |
Shmulik Ladkani | 9ba2add | 2012-12-02 01:44:53 +0000 | [diff] [blame] | 3810 | if (!ipv6_accept_ra(idev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3811 | goto out; |
stephen hemminger | 5b2a195 | 2010-03-02 13:32:45 +0000 | [diff] [blame] | 3812 | |
| 3813 | /* Announcement received after solicitation was sent */ |
| 3814 | if (idev->if_flags & IF_RA_RCVD) |
| 3815 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 3817 | 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] | 3818 | write_unlock(&idev->lock); |
| 3819 | if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE)) |
| 3820 | ndisc_send_rs(dev, &lladdr, |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3821 | &in6addr_linklocal_allrouters); |
| 3822 | else |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3823 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3824 | |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3825 | write_lock(&idev->lock); |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 3826 | idev->rs_interval = rfc3315_s14_backoff_update( |
| 3827 | idev->rs_interval, idev->cnf.rtr_solicit_max_interval); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3828 | /* The wait after the last probe can be shorter */ |
| 3829 | addrconf_mod_rs_timer(idev, (idev->rs_probes == |
| 3830 | idev->cnf.rtr_solicits) ? |
| 3831 | idev->cnf.rtr_solicit_delay : |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 3832 | idev->rs_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3833 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3834 | /* |
| 3835 | * Note: we do not support deprecated "all on-link" |
| 3836 | * assumption any longer. |
| 3837 | */ |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 3838 | pr_debug("%s: no IPv6 routers present\n", idev->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3839 | } |
| 3840 | |
| 3841 | out: |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3842 | write_unlock(&idev->lock); |
Cong Wang | caf92bc | 2013-08-31 13:44:32 +0800 | [diff] [blame] | 3843 | put: |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3844 | in6_dev_put(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3845 | } |
| 3846 | |
| 3847 | /* |
| 3848 | * Duplicate Address Detection |
| 3849 | */ |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3850 | static void addrconf_dad_kick(struct inet6_ifaddr *ifp) |
| 3851 | { |
| 3852 | unsigned long rand_num; |
| 3853 | struct inet6_dev *idev = ifp->idev; |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 3854 | u64 nonce; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3855 | |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3856 | if (ifp->flags & IFA_F_OPTIMISTIC) |
| 3857 | rand_num = 0; |
| 3858 | else |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 3859 | rand_num = prandom_u32() % (idev->cnf.rtr_solicit_delay ? : 1); |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3860 | |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 3861 | nonce = 0; |
| 3862 | if (idev->cnf.enhanced_dad || |
| 3863 | dev_net(idev->dev)->ipv6.devconf_all->enhanced_dad) { |
| 3864 | do |
| 3865 | get_random_bytes(&nonce, 6); |
| 3866 | while (nonce == 0); |
| 3867 | } |
| 3868 | ifp->dad_nonce = nonce; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 3869 | ifp->dad_probes = idev->cnf.dad_transmits; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3870 | addrconf_mod_dad_work(ifp, rand_num); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3871 | } |
| 3872 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3873 | static void addrconf_dad_begin(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3874 | { |
| 3875 | struct inet6_dev *idev = ifp->idev; |
| 3876 | struct net_device *dev = idev->dev; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3877 | bool bump_id, notify = false; |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3878 | struct net *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3879 | |
| 3880 | addrconf_join_solict(dev, &ifp->addr); |
| 3881 | |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 3882 | prandom_seed((__force u32) ifp->addr.s6_addr32[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | |
| 3884 | read_lock_bh(&idev->lock); |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 3885 | spin_lock(&ifp->lock); |
Herbert Xu | e9d3e08 | 2010-05-18 15:36:06 -0700 | [diff] [blame] | 3886 | if (ifp->state == INET6_IFADDR_STATE_DEAD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3889 | net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3890 | if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) || |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3891 | (net->ipv6.devconf_all->accept_dad < 1 && |
Matteo Croce | a2d3f3e | 2017-10-05 19:03:05 +0200 | [diff] [blame] | 3892 | idev->cnf.accept_dad < 1) || |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 3893 | !(ifp->flags&IFA_F_TENTATIVE) || |
| 3894 | ifp->flags & IFA_F_NODAD) { |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 3895 | bool send_na = false; |
| 3896 | |
| 3897 | if (ifp->flags & IFA_F_TENTATIVE && |
| 3898 | !(ifp->flags & IFA_F_OPTIMISTIC)) |
| 3899 | send_na = true; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3900 | bump_id = ifp->flags & IFA_F_TENTATIVE; |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 3901 | ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 3902 | spin_unlock(&ifp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3903 | read_unlock_bh(&idev->lock); |
| 3904 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 3905 | addrconf_dad_completed(ifp, bump_id, send_na); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | return; |
| 3907 | } |
| 3908 | |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3909 | if (!(idev->if_flags & IF_READY)) { |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 3910 | spin_unlock(&ifp->lock); |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3911 | read_unlock_bh(&idev->lock); |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3912 | /* |
Masatake YAMATO | 590a988 | 2009-06-09 10:41:12 +0900 | [diff] [blame] | 3913 | * If the device is not ready: |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3914 | * - keep it tentative if it is a permanent address. |
| 3915 | * - otherwise, kill it. |
| 3916 | */ |
| 3917 | in6_ifa_hold(ifp); |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 3918 | addrconf_dad_stop(ifp, 0); |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3919 | return; |
YOSHIFUJI Hideaki | 3c21edb | 2005-12-21 22:57:24 +0900 | [diff] [blame] | 3920 | } |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3921 | |
| 3922 | /* |
| 3923 | * Optimistic nodes can start receiving |
| 3924 | * Frames right away |
| 3925 | */ |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 3926 | if (ifp->flags & IFA_F_OPTIMISTIC) { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3927 | ip6_ins_rt(net, ifp->rt); |
| 3928 | if (ipv6_use_optimistic_addr(net, idev)) { |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 3929 | /* Because optimistic nodes can use this address, |
| 3930 | * notify listeners. If DAD fails, RTM_DELADDR is sent. |
| 3931 | */ |
subashab@codeaurora.org | 16186a8 | 2016-02-02 02:11:10 +0000 | [diff] [blame] | 3932 | notify = true; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 3933 | } |
| 3934 | } |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 3935 | |
YOSHIFUJI Hideaki | 6732bad | 2005-12-27 13:35:15 -0800 | [diff] [blame] | 3936 | addrconf_dad_kick(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3937 | out: |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 3938 | spin_unlock(&ifp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3939 | read_unlock_bh(&idev->lock); |
subashab@codeaurora.org | 16186a8 | 2016-02-02 02:11:10 +0000 | [diff] [blame] | 3940 | if (notify) |
| 3941 | ipv6_ifa_notify(RTM_NEWADDR, ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3942 | } |
| 3943 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3944 | static void addrconf_dad_start(struct inet6_ifaddr *ifp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3945 | { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3946 | bool begin_dad = false; |
| 3947 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3948 | spin_lock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3949 | if (ifp->state != INET6_IFADDR_STATE_DEAD) { |
| 3950 | ifp->state = INET6_IFADDR_STATE_PREDAD; |
| 3951 | begin_dad = true; |
| 3952 | } |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3953 | spin_unlock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3954 | |
| 3955 | if (begin_dad) |
| 3956 | addrconf_mod_dad_work(ifp, 0); |
| 3957 | } |
| 3958 | |
| 3959 | static void addrconf_dad_work(struct work_struct *w) |
| 3960 | { |
| 3961 | struct inet6_ifaddr *ifp = container_of(to_delayed_work(w), |
| 3962 | struct inet6_ifaddr, |
| 3963 | dad_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3964 | struct inet6_dev *idev = ifp->idev; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 3965 | bool bump_id, disable_ipv6 = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3966 | struct in6_addr mcaddr; |
| 3967 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3968 | enum { |
| 3969 | DAD_PROCESS, |
| 3970 | DAD_BEGIN, |
| 3971 | DAD_ABORT, |
| 3972 | } action = DAD_PROCESS; |
| 3973 | |
| 3974 | rtnl_lock(); |
| 3975 | |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 3976 | spin_lock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 3977 | if (ifp->state == INET6_IFADDR_STATE_PREDAD) { |
| 3978 | action = DAD_BEGIN; |
| 3979 | ifp->state = INET6_IFADDR_STATE_DAD; |
| 3980 | } else if (ifp->state == INET6_IFADDR_STATE_ERRDAD) { |
| 3981 | action = DAD_ABORT; |
| 3982 | ifp->state = INET6_IFADDR_STATE_POSTDAD; |
Mike Manning | 85b51b1 | 2016-08-18 14:39:40 +0100 | [diff] [blame] | 3983 | |
Matteo Croce | 35e015e | 2017-09-12 17:46:37 +0200 | [diff] [blame] | 3984 | if ((dev_net(idev->dev)->ipv6.devconf_all->accept_dad > 1 || |
| 3985 | idev->cnf.accept_dad > 1) && |
| 3986 | !idev->cnf.disable_ipv6 && |
Mike Manning | 85b51b1 | 2016-08-18 14:39:40 +0100 | [diff] [blame] | 3987 | !(ifp->flags & IFA_F_STABLE_PRIVACY)) { |
| 3988 | struct in6_addr addr; |
| 3989 | |
| 3990 | addr.s6_addr32[0] = htonl(0xfe800000); |
| 3991 | addr.s6_addr32[1] = 0; |
| 3992 | |
| 3993 | if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) && |
| 3994 | ipv6_addr_equal(&ifp->addr, &addr)) { |
| 3995 | /* DAD failed for link-local based on MAC */ |
| 3996 | idev->cnf.disable_ipv6 = 1; |
| 3997 | |
| 3998 | pr_info("%s: IPv6 being disabled!\n", |
| 3999 | ifp->idev->dev->name); |
| 4000 | disable_ipv6 = true; |
| 4001 | } |
| 4002 | } |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4003 | } |
Hannes Frederic Sowa | 8e8e676 | 2015-03-23 23:36:03 +0100 | [diff] [blame] | 4004 | spin_unlock_bh(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4005 | |
| 4006 | if (action == DAD_BEGIN) { |
| 4007 | addrconf_dad_begin(ifp); |
| 4008 | goto out; |
| 4009 | } else if (action == DAD_ABORT) { |
Wei Yongjun | 751eb6b | 2016-09-05 16:06:31 +0800 | [diff] [blame] | 4010 | in6_ifa_hold(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4011 | addrconf_dad_stop(ifp, 1); |
Mike Manning | 85b51b1 | 2016-08-18 14:39:40 +0100 | [diff] [blame] | 4012 | if (disable_ipv6) |
| 4013 | addrconf_ifdown(idev->dev, 0); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4014 | goto out; |
| 4015 | } |
| 4016 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4017 | if (!ifp->dad_probes && addrconf_dad_end(ifp)) |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 4018 | goto out; |
| 4019 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4020 | write_lock_bh(&idev->lock); |
stephen hemminger | 122e451 | 2010-03-02 13:32:44 +0000 | [diff] [blame] | 4021 | if (idev->dead || !(idev->if_flags & IF_READY)) { |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4022 | write_unlock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | goto out; |
| 4024 | } |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4025 | |
| 4026 | spin_lock(&ifp->lock); |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 4027 | if (ifp->state == INET6_IFADDR_STATE_DEAD) { |
| 4028 | spin_unlock(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4029 | write_unlock_bh(&idev->lock); |
Herbert Xu | 622ccdf | 2010-05-18 15:56:06 -0700 | [diff] [blame] | 4030 | goto out; |
| 4031 | } |
| 4032 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4033 | if (ifp->dad_probes == 0) { |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4034 | bool send_na = false; |
| 4035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4036 | /* |
| 4037 | * DAD was successful |
| 4038 | */ |
| 4039 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4040 | if (ifp->flags & IFA_F_TENTATIVE && |
| 4041 | !(ifp->flags & IFA_F_OPTIMISTIC)) |
| 4042 | send_na = true; |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 4043 | bump_id = ifp->flags & IFA_F_TENTATIVE; |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 4044 | ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4045 | spin_unlock(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4046 | write_unlock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4048 | addrconf_dad_completed(ifp, bump_id, send_na); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4049 | |
| 4050 | goto out; |
| 4051 | } |
| 4052 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4053 | ifp->dad_probes--; |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4054 | addrconf_mod_dad_work(ifp, |
| 4055 | NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME)); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4056 | spin_unlock(&ifp->lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4057 | write_unlock_bh(&idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4058 | |
| 4059 | /* send a neighbour solicitation for our addr */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | addrconf_addr_solict_mult(&ifp->addr, &mcaddr); |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 4061 | ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any, |
| 4062 | ifp->dad_nonce); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4063 | out: |
| 4064 | in6_ifa_put(ifp); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4065 | rtnl_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4066 | } |
| 4067 | |
Hannes Frederic Sowa | 11ffff7 | 2014-01-16 20:13:04 +0100 | [diff] [blame] | 4068 | /* ifp->idev must be at least read locked */ |
| 4069 | static bool ipv6_lonely_lladdr(struct inet6_ifaddr *ifp) |
| 4070 | { |
| 4071 | struct inet6_ifaddr *ifpiter; |
| 4072 | struct inet6_dev *idev = ifp->idev; |
| 4073 | |
Hannes Frederic Sowa | 602582c | 2014-01-19 21:58:19 +0100 | [diff] [blame] | 4074 | list_for_each_entry_reverse(ifpiter, &idev->addr_list, if_list) { |
| 4075 | if (ifpiter->scope > IFA_LINK) |
| 4076 | break; |
Hannes Frederic Sowa | 11ffff7 | 2014-01-16 20:13:04 +0100 | [diff] [blame] | 4077 | if (ifp != ifpiter && ifpiter->scope == IFA_LINK && |
| 4078 | (ifpiter->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE| |
| 4079 | IFA_F_OPTIMISTIC|IFA_F_DADFAILED)) == |
| 4080 | IFA_F_PERMANENT) |
| 4081 | return false; |
| 4082 | } |
| 4083 | return true; |
| 4084 | } |
| 4085 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4086 | static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id, |
| 4087 | bool send_na) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4088 | { |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 4089 | struct net_device *dev = ifp->idev->dev; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4090 | struct in6_addr lladdr; |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4091 | bool send_rs, send_mld; |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4092 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4093 | addrconf_del_dad_work(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4094 | |
| 4095 | /* |
| 4096 | * Configure the address for reception. Now it is valid. |
| 4097 | */ |
| 4098 | |
| 4099 | ipv6_ifa_notify(RTM_NEWADDR, ifp); |
| 4100 | |
Tore Anderson | 026359b | 2011-08-28 23:47:33 +0000 | [diff] [blame] | 4101 | /* If added prefix is link local and we are prepared to process |
| 4102 | router advertisements, start sending router solicitations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4103 | */ |
| 4104 | |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4105 | read_lock_bh(&ifp->idev->lock); |
Hannes Frederic Sowa | 11ffff7 | 2014-01-16 20:13:04 +0100 | [diff] [blame] | 4106 | send_mld = ifp->scope == IFA_LINK && ipv6_lonely_lladdr(ifp); |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4107 | send_rs = send_mld && |
| 4108 | ipv6_accept_ra(ifp->idev) && |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 4109 | ifp->idev->cnf.rtr_solicits != 0 && |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4110 | (dev->flags&IFF_LOOPBACK) == 0; |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4111 | read_unlock_bh(&ifp->idev->lock); |
| 4112 | |
Hannes Frederic Sowa | b173ee4 | 2013-06-27 00:07:01 +0200 | [diff] [blame] | 4113 | /* While dad is in progress mld report's source address is in6_addrany. |
| 4114 | * Resend with proper ll now. |
| 4115 | */ |
| 4116 | if (send_mld) |
| 4117 | ipv6_mc_dad_complete(ifp->idev); |
| 4118 | |
David Ahern | c76fe2d | 2018-01-25 20:16:29 -0800 | [diff] [blame] | 4119 | /* send unsolicited NA if enabled */ |
| 4120 | if (send_na && |
| 4121 | (ifp->idev->cnf.ndisc_notify || |
| 4122 | dev_net(dev)->ipv6.devconf_all->ndisc_notify)) { |
| 4123 | ndisc_send_na(dev, &in6addr_linklocal_allnodes, &ifp->addr, |
| 4124 | /*router=*/ !!ifp->idev->cnf.forwarding, |
| 4125 | /*solicited=*/ false, /*override=*/ true, |
| 4126 | /*inc_opt=*/ true); |
| 4127 | } |
| 4128 | |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4129 | if (send_rs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4130 | /* |
| 4131 | * If a host as already performed a random delay |
| 4132 | * [...] as part of DAD [...] there is no need |
| 4133 | * to delay again before sending the first RS |
| 4134 | */ |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4135 | if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE)) |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4136 | return; |
Hannes Frederic Sowa | 1ec047e | 2013-06-27 00:06:56 +0200 | [diff] [blame] | 4137 | ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4138 | |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4139 | write_lock_bh(&ifp->idev->lock); |
| 4140 | spin_lock(&ifp->lock); |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 4141 | ifp->idev->rs_interval = rfc3315_s14_backoff_init( |
| 4142 | ifp->idev->cnf.rtr_solicit_interval); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4143 | ifp->idev->rs_probes = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | ifp->idev->if_flags |= IF_RS_SENT; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 4145 | addrconf_mod_rs_timer(ifp->idev, ifp->idev->rs_interval); |
Hannes Frederic Sowa | b7b1bfc | 2013-06-23 18:39:01 +0200 | [diff] [blame] | 4146 | spin_unlock(&ifp->lock); |
| 4147 | write_unlock_bh(&ifp->idev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4148 | } |
Paolo Abeni | 764d3be | 2016-11-22 16:57:40 +0100 | [diff] [blame] | 4149 | |
| 4150 | if (bump_id) |
| 4151 | rt_genid_bump_ipv6(dev_net(dev)); |
Marcus Huewe | a11a7f7 | 2017-02-06 18:34:56 +0100 | [diff] [blame] | 4152 | |
| 4153 | /* Make sure that a new temporary address will be created |
| 4154 | * before this temporary address becomes deprecated. |
| 4155 | */ |
| 4156 | if (ifp->flags & IFA_F_TEMPORARY) |
| 4157 | addrconf_verify_rtnl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4158 | } |
| 4159 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 4160 | static void addrconf_dad_run(struct inet6_dev *idev) |
| 4161 | { |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 4162 | struct inet6_ifaddr *ifp; |
| 4163 | |
| 4164 | read_lock_bh(&idev->lock); |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 4165 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4166 | spin_lock(&ifp->lock); |
Herbert Xu | f2344a1 | 2010-05-18 15:55:27 -0700 | [diff] [blame] | 4167 | if (ifp->flags & IFA_F_TENTATIVE && |
| 4168 | ifp->state == INET6_IFADDR_STATE_DAD) |
| 4169 | addrconf_dad_kick(ifp); |
stephen hemminger | 21809fa | 2010-02-08 19:48:52 +0000 | [diff] [blame] | 4170 | spin_unlock(&ifp->lock); |
YOSHIFUJI Hideaki | c5e33bd | 2005-12-21 22:57:44 +0900 | [diff] [blame] | 4171 | } |
| 4172 | read_unlock_bh(&idev->lock); |
| 4173 | } |
| 4174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4175 | #ifdef CONFIG_PROC_FS |
| 4176 | struct if6_iter_state { |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4177 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4178 | int bucket; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4179 | int offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4180 | }; |
| 4181 | |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4182 | 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] | 4183 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4184 | struct if6_iter_state *state = seq->private; |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 4185 | struct net *net = seq_file_net(seq); |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4186 | struct inet6_ifaddr *ifa = NULL; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4187 | int p = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4188 | |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4189 | /* initial bucket if pos is 0 */ |
| 4190 | if (pos == 0) { |
| 4191 | state->bucket = 0; |
| 4192 | state->offset = 0; |
| 4193 | } |
| 4194 | |
| 4195 | for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4196 | hlist_for_each_entry_rcu(ifa, &inet6_addr_lst[state->bucket], |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4197 | addr_lst) { |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4198 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
| 4199 | continue; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4200 | /* sync with offset */ |
| 4201 | if (p < state->offset) { |
| 4202 | p++; |
| 4203 | continue; |
| 4204 | } |
| 4205 | state->offset++; |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4206 | return ifa; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4207 | } |
| 4208 | |
| 4209 | /* prepare for next bucket */ |
| 4210 | state->offset = 0; |
| 4211 | p = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4212 | } |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4213 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4214 | } |
| 4215 | |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4216 | static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, |
| 4217 | struct inet6_ifaddr *ifa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4218 | { |
| 4219 | struct if6_iter_state *state = seq->private; |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 4220 | struct net *net = seq_file_net(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4221 | |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4222 | hlist_for_each_entry_continue_rcu(ifa, addr_lst) { |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4223 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
| 4224 | continue; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4225 | state->offset++; |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4226 | return ifa; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4227 | } |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4228 | |
| 4229 | while (++state->bucket < IN6_ADDR_HSIZE) { |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4230 | state->offset = 0; |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4231 | hlist_for_each_entry_rcu(ifa, |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4232 | &inet6_addr_lst[state->bucket], addr_lst) { |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4233 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
| 4234 | continue; |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4235 | state->offset++; |
Eric Dumazet | 9f0d3c2 | 2012-10-16 07:37:27 +0000 | [diff] [blame] | 4236 | return ifa; |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4237 | } |
| 4238 | } |
| 4239 | |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4240 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4241 | } |
| 4242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4243 | static void *if6_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4244 | __acquires(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4245 | { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4246 | rcu_read_lock(); |
Mihai Maruseac | 1d57830 | 2012-01-03 23:31:35 +0000 | [diff] [blame] | 4247 | return if6_get_first(seq, *pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4248 | } |
| 4249 | |
| 4250 | static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 4251 | { |
| 4252 | struct inet6_ifaddr *ifa; |
| 4253 | |
| 4254 | ifa = if6_get_next(seq, v); |
| 4255 | ++*pos; |
| 4256 | return ifa; |
| 4257 | } |
| 4258 | |
| 4259 | static void if6_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4260 | __releases(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4261 | { |
Eric Dumazet | a5c1d98 | 2017-10-23 16:17:50 -0700 | [diff] [blame] | 4262 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4263 | } |
| 4264 | |
| 4265 | static int if6_seq_show(struct seq_file *seq, void *v) |
| 4266 | { |
| 4267 | struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v; |
Jiri Pirko | 971a351 | 2013-12-10 13:56:29 +0100 | [diff] [blame] | 4268 | seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n", |
Harvey Harrison | b071195 | 2008-10-28 16:05:40 -0700 | [diff] [blame] | 4269 | &ifp->addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4270 | ifp->idev->dev->ifindex, |
| 4271 | ifp->prefix_len, |
| 4272 | ifp->scope, |
Jiri Pirko | 971a351 | 2013-12-10 13:56:29 +0100 | [diff] [blame] | 4273 | (u8) ifp->flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4274 | ifp->idev->dev->name); |
| 4275 | return 0; |
| 4276 | } |
| 4277 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 4278 | static const struct seq_operations if6_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | .start = if6_seq_start, |
| 4280 | .next = if6_seq_next, |
| 4281 | .show = if6_seq_show, |
| 4282 | .stop = if6_seq_stop, |
| 4283 | }; |
| 4284 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4285 | static int __net_init if6_proc_net_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4286 | { |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame] | 4287 | if (!proc_create_net("if_inet6", 0444, net->proc_net, &if6_seq_ops, |
| 4288 | sizeof(struct if6_iter_state))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4289 | return -ENOMEM; |
| 4290 | return 0; |
| 4291 | } |
| 4292 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4293 | static void __net_exit if6_proc_net_exit(struct net *net) |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4294 | { |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 4295 | remove_proc_entry("if_inet6", net->proc_net); |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4296 | } |
| 4297 | |
| 4298 | static struct pernet_operations if6_proc_net_ops = { |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 4299 | .init = if6_proc_net_init, |
| 4300 | .exit = if6_proc_net_exit, |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4301 | }; |
| 4302 | |
| 4303 | int __init if6_proc_init(void) |
| 4304 | { |
| 4305 | return register_pernet_subsys(&if6_proc_net_ops); |
| 4306 | } |
| 4307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4308 | void if6_proc_exit(void) |
| 4309 | { |
Daniel Lezcano | 3c40090 | 2008-01-10 22:42:49 -0800 | [diff] [blame] | 4310 | unregister_pernet_subsys(&if6_proc_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | } |
| 4312 | #endif /* CONFIG_PROC_FS */ |
| 4313 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 4314 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4315 | /* Check if address is a home address configured on any interface. */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 4316 | 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] | 4317 | { |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 4318 | unsigned int hash = inet6_addr_hash(net, addr); |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4319 | struct inet6_ifaddr *ifp = NULL; |
Eric Dumazet | 3f27fb2 | 2017-10-23 16:17:47 -0700 | [diff] [blame] | 4320 | int ret = 0; |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 4321 | |
Eric Dumazet | 4e5f47a | 2017-10-23 16:17:51 -0700 | [diff] [blame] | 4322 | rcu_read_lock(); |
| 4323 | hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 4324 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
Daniel Lezcano | 389f661 | 2008-01-10 22:44:40 -0800 | [diff] [blame] | 4325 | continue; |
YOSHIFUJI Hideaki | caad295 | 2008-04-10 15:42:07 +0900 | [diff] [blame] | 4326 | if (ipv6_addr_equal(&ifp->addr, addr) && |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4327 | (ifp->flags & IFA_F_HOMEADDRESS)) { |
| 4328 | ret = 1; |
| 4329 | break; |
| 4330 | } |
| 4331 | } |
Eric Dumazet | 4e5f47a | 2017-10-23 16:17:51 -0700 | [diff] [blame] | 4332 | rcu_read_unlock(); |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 4333 | return ret; |
| 4334 | } |
| 4335 | #endif |
| 4336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4337 | /* |
| 4338 | * Periodic address status verification |
| 4339 | */ |
| 4340 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4341 | static void addrconf_verify_rtnl(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4342 | { |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4343 | unsigned long now, next, next_sec, next_sched; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4344 | struct inet6_ifaddr *ifp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | int i; |
| 4346 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4347 | ASSERT_RTNL(); |
| 4348 | |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 4349 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4350 | now = jiffies; |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4351 | next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4353 | cancel_delayed_work(&addr_chk_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4354 | |
Stephen Hemminger | bcdd553 | 2010-03-20 16:08:18 -0700 | [diff] [blame] | 4355 | for (i = 0; i < IN6_ADDR_HSIZE; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4356 | restart: |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4357 | 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] | 4358 | unsigned long age; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4359 | |
Yasushi Asano | fad8da3 | 2013-12-31 12:04:19 +0900 | [diff] [blame] | 4360 | /* When setting preferred_lft to a value not zero or |
| 4361 | * infinity, while valid_lft is infinity |
| 4362 | * IFA_F_PERMANENT has a non-infinity life time. |
| 4363 | */ |
| 4364 | if ((ifp->flags & IFA_F_PERMANENT) && |
| 4365 | (ifp->prefered_lft == INFINITY_LIFE_TIME)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4366 | continue; |
| 4367 | |
| 4368 | spin_lock(&ifp->lock); |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4369 | /* We try to batch several events at once. */ |
| 4370 | age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4371 | |
YOSHIFUJI Hideaki | 8f27ebb | 2006-07-28 18:12:11 +0900 | [diff] [blame] | 4372 | if (ifp->valid_lft != INFINITY_LIFE_TIME && |
| 4373 | age >= ifp->valid_lft) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4374 | spin_unlock(&ifp->lock); |
| 4375 | in6_ifa_hold(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4376 | ipv6_del_addr(ifp); |
| 4377 | goto restart; |
YOSHIFUJI Hideaki | 8f27ebb | 2006-07-28 18:12:11 +0900 | [diff] [blame] | 4378 | } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) { |
| 4379 | spin_unlock(&ifp->lock); |
| 4380 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4381 | } else if (age >= ifp->prefered_lft) { |
Brian Haley | a1ed052 | 2009-07-02 07:10:52 +0000 | [diff] [blame] | 4382 | /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4383 | int deprecate = 0; |
| 4384 | |
| 4385 | if (!(ifp->flags&IFA_F_DEPRECATED)) { |
| 4386 | deprecate = 1; |
| 4387 | ifp->flags |= IFA_F_DEPRECATED; |
| 4388 | } |
| 4389 | |
Yasushi Asano | fad8da3 | 2013-12-31 12:04:19 +0900 | [diff] [blame] | 4390 | if ((ifp->valid_lft != INFINITY_LIFE_TIME) && |
| 4391 | (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4392 | next = ifp->tstamp + ifp->valid_lft * HZ; |
| 4393 | |
| 4394 | spin_unlock(&ifp->lock); |
| 4395 | |
| 4396 | if (deprecate) { |
| 4397 | in6_ifa_hold(ifp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | |
| 4399 | ipv6_ifa_notify(0, ifp); |
| 4400 | in6_ifa_put(ifp); |
| 4401 | goto restart; |
| 4402 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4403 | } else if ((ifp->flags&IFA_F_TEMPORARY) && |
| 4404 | !(ifp->flags&IFA_F_TENTATIVE)) { |
stephen hemminger | 88949cf | 2010-03-17 20:31:17 +0000 | [diff] [blame] | 4405 | unsigned long regen_advance = ifp->idev->cnf.regen_max_retry * |
| 4406 | ifp->idev->cnf.dad_transmits * |
Jiri Pirko | 1f9248e | 2013-12-07 19:26:53 +0100 | [diff] [blame] | 4407 | NEIGH_VAR(ifp->idev->nd_parms, RETRANS_TIME) / HZ; |
stephen hemminger | 88949cf | 2010-03-17 20:31:17 +0000 | [diff] [blame] | 4408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4409 | if (age >= ifp->prefered_lft - regen_advance) { |
| 4410 | struct inet6_ifaddr *ifpub = ifp->ifpub; |
| 4411 | if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next)) |
| 4412 | next = ifp->tstamp + ifp->prefered_lft * HZ; |
| 4413 | if (!ifp->regen_count && ifpub) { |
| 4414 | ifp->regen_count++; |
| 4415 | in6_ifa_hold(ifp); |
| 4416 | in6_ifa_hold(ifpub); |
| 4417 | spin_unlock(&ifp->lock); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 4418 | |
Hiroyuki YAMAMORI | 291d809 | 2005-12-23 11:24:05 -0800 | [diff] [blame] | 4419 | spin_lock(&ifpub->lock); |
| 4420 | ifpub->regen_count = 0; |
| 4421 | spin_unlock(&ifpub->lock); |
Eric Dumazet | e64e469 | 2018-01-26 16:10:43 -0800 | [diff] [blame] | 4422 | rcu_read_unlock_bh(); |
Eric Dumazet | fffcefe | 2017-11-06 14:13:29 -0800 | [diff] [blame] | 4423 | ipv6_create_tempaddr(ifpub, ifp, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4424 | in6_ifa_put(ifpub); |
| 4425 | in6_ifa_put(ifp); |
Eric Dumazet | e64e469 | 2018-01-26 16:10:43 -0800 | [diff] [blame] | 4426 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4427 | goto restart; |
| 4428 | } |
| 4429 | } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next)) |
| 4430 | next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ; |
| 4431 | spin_unlock(&ifp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4432 | } else { |
| 4433 | /* ifp->prefered_lft <= ifp->valid_lft */ |
| 4434 | if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next)) |
| 4435 | next = ifp->tstamp + ifp->prefered_lft * HZ; |
| 4436 | spin_unlock(&ifp->lock); |
| 4437 | } |
| 4438 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4439 | } |
| 4440 | |
YOSHIFUJI Hideaki | b2db756 | 2010-03-20 16:11:12 -0700 | [diff] [blame] | 4441 | next_sec = round_jiffies_up(next); |
| 4442 | next_sched = next; |
| 4443 | |
| 4444 | /* If rounded timeout is accurate enough, accept it. */ |
| 4445 | if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ)) |
| 4446 | next_sched = next_sec; |
| 4447 | |
| 4448 | /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */ |
| 4449 | if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX)) |
| 4450 | next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX; |
| 4451 | |
Joe Perches | e32ac25 | 2018-03-26 08:35:01 -0700 | [diff] [blame] | 4452 | pr_debug("now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n", |
| 4453 | now, next, next_sec, next_sched); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4454 | mod_delayed_work(addrconf_wq, &addr_chk_work, next_sched - now); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 4455 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4456 | } |
| 4457 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4458 | static void addrconf_verify_work(struct work_struct *w) |
| 4459 | { |
| 4460 | rtnl_lock(); |
| 4461 | addrconf_verify_rtnl(); |
| 4462 | rtnl_unlock(); |
| 4463 | } |
| 4464 | |
| 4465 | static void addrconf_verify(void) |
| 4466 | { |
| 4467 | mod_delayed_work(addrconf_wq, &addr_chk_work, 0); |
| 4468 | } |
| 4469 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4470 | static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local, |
| 4471 | struct in6_addr **peer_pfx) |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4472 | { |
| 4473 | struct in6_addr *pfx = NULL; |
| 4474 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4475 | *peer_pfx = NULL; |
| 4476 | |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4477 | if (addr) |
| 4478 | pfx = nla_data(addr); |
| 4479 | |
| 4480 | if (local) { |
| 4481 | if (pfx && nla_memcmp(local, pfx, sizeof(*pfx))) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4482 | *peer_pfx = pfx; |
| 4483 | pfx = nla_data(local); |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4484 | } |
| 4485 | |
| 4486 | return pfx; |
| 4487 | } |
| 4488 | |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 4489 | static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = { |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4490 | [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) }, |
| 4491 | [IFA_LOCAL] = { .len = sizeof(struct in6_addr) }, |
| 4492 | [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) }, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4493 | [IFA_FLAGS] = { .len = sizeof(u32) }, |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4494 | [IFA_RT_PRIORITY] = { .len = sizeof(u32) }, |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4495 | }; |
| 4496 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4497 | static int |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4498 | inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 4499 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 4501 | struct net *net = sock_net(skb->sk); |
Thomas Graf | b933f71 | 2006-09-18 00:10:19 -0700 | [diff] [blame] | 4502 | struct ifaddrmsg *ifm; |
| 4503 | struct nlattr *tb[IFA_MAX+1]; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4504 | struct in6_addr *pfx, *peer_pfx; |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 4505 | u32 ifa_flags; |
Thomas Graf | b933f71 | 2006-09-18 00:10:19 -0700 | [diff] [blame] | 4506 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4507 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 4508 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4509 | extack); |
Thomas Graf | b933f71 | 2006-09-18 00:10:19 -0700 | [diff] [blame] | 4510 | if (err < 0) |
| 4511 | return err; |
| 4512 | |
| 4513 | ifm = nlmsg_data(nlh); |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4514 | pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4515 | if (!pfx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4516 | return -EINVAL; |
| 4517 | |
Heiner Kallweit | 6046d5b | 2014-04-20 21:29:36 +0200 | [diff] [blame] | 4518 | ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : ifm->ifa_flags; |
| 4519 | |
| 4520 | /* We ignore other flags so far. */ |
| 4521 | ifa_flags &= IFA_F_MANAGETEMPADDR; |
| 4522 | |
| 4523 | return inet6_addr_del(net, ifm->ifa_index, ifa_flags, pfx, |
| 4524 | ifm->ifa_prefixlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4525 | } |
| 4526 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4527 | static int modify_prefix_route(struct inet6_ifaddr *ifp, |
| 4528 | unsigned long expires, u32 flags) |
| 4529 | { |
| 4530 | struct fib6_info *f6i; |
David Ahern | e7c7faa | 2018-06-28 13:36:55 -0700 | [diff] [blame] | 4531 | u32 prio; |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4532 | |
| 4533 | f6i = addrconf_get_prefix_route(&ifp->addr, |
| 4534 | ifp->prefix_len, |
| 4535 | ifp->idev->dev, |
| 4536 | 0, RTF_GATEWAY | RTF_DEFAULT); |
| 4537 | if (!f6i) |
| 4538 | return -ENOENT; |
| 4539 | |
David Ahern | e7c7faa | 2018-06-28 13:36:55 -0700 | [diff] [blame] | 4540 | prio = ifp->rt_priority ? : IP6_RT_PRIO_ADDRCONF; |
| 4541 | if (f6i->fib6_metric != prio) { |
| 4542 | /* delete old one */ |
| 4543 | ip6_del_rt(dev_net(ifp->idev->dev), f6i); |
| 4544 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4545 | /* add new one */ |
| 4546 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
| 4547 | ifp->rt_priority, ifp->idev->dev, |
| 4548 | expires, flags, GFP_KERNEL); |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4549 | } else { |
| 4550 | if (!expires) |
| 4551 | fib6_clean_expires(f6i); |
| 4552 | else |
| 4553 | fib6_set_expires(f6i, expires); |
| 4554 | |
| 4555 | fib6_info_release(f6i); |
| 4556 | } |
| 4557 | |
| 4558 | return 0; |
| 4559 | } |
| 4560 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4561 | 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] | 4562 | { |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 4563 | u32 flags; |
| 4564 | clock_t expires; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4565 | unsigned long timeout; |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4566 | bool was_managetempaddr; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4567 | bool had_prefixroute; |
YOSHIFUJI Hideaki | 46d4804 | 2007-02-07 20:36:26 +0900 | [diff] [blame] | 4568 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4569 | ASSERT_RTNL(); |
| 4570 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4571 | if (!cfg->valid_lft || cfg->preferred_lft > cfg->valid_lft) |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4572 | return -EINVAL; |
| 4573 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4574 | if (cfg->ifa_flags & IFA_F_MANAGETEMPADDR && |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4575 | (ifp->flags & IFA_F_TEMPORARY || ifp->prefix_len != 64)) |
| 4576 | return -EINVAL; |
| 4577 | |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4578 | if (!(ifp->flags & IFA_F_TENTATIVE) || ifp->flags & IFA_F_DADFAILED) |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4579 | cfg->ifa_flags &= ~IFA_F_OPTIMISTIC; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4580 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4581 | timeout = addrconf_timeout_fixup(cfg->valid_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4582 | if (addrconf_finite_timeout(timeout)) { |
| 4583 | expires = jiffies_to_clock_t(timeout * HZ); |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4584 | cfg->valid_lft = timeout; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 4585 | flags = RTF_EXPIRES; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4586 | } else { |
| 4587 | expires = 0; |
| 4588 | flags = 0; |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4589 | cfg->ifa_flags |= IFA_F_PERMANENT; |
YOSHIFUJI Hideaki | 6f70499 | 2008-05-19 16:56:11 -0700 | [diff] [blame] | 4590 | } |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4591 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4592 | timeout = addrconf_timeout_fixup(cfg->preferred_lft, HZ); |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4593 | if (addrconf_finite_timeout(timeout)) { |
| 4594 | if (timeout == 0) |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4595 | cfg->ifa_flags |= IFA_F_DEPRECATED; |
| 4596 | cfg->preferred_lft = timeout; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 4597 | } |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4598 | |
| 4599 | spin_lock_bh(&ifp->lock); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4600 | was_managetempaddr = ifp->flags & IFA_F_MANAGETEMPADDR; |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4601 | had_prefixroute = ifp->flags & IFA_F_PERMANENT && |
| 4602 | !(ifp->flags & IFA_F_NOPREFIXROUTE); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4603 | ifp->flags &= ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 4604 | IFA_F_HOMEADDRESS | IFA_F_MANAGETEMPADDR | |
| 4605 | IFA_F_NOPREFIXROUTE); |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4606 | ifp->flags |= cfg->ifa_flags; |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4607 | ifp->tstamp = jiffies; |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4608 | ifp->valid_lft = cfg->valid_lft; |
| 4609 | ifp->prefered_lft = cfg->preferred_lft; |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4610 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4611 | if (cfg->rt_priority && cfg->rt_priority != ifp->rt_priority) |
| 4612 | ifp->rt_priority = cfg->rt_priority; |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4613 | |
| 4614 | spin_unlock_bh(&ifp->lock); |
| 4615 | if (!(ifp->flags&IFA_F_TENTATIVE)) |
| 4616 | ipv6_ifa_notify(0, ifp); |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4617 | |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4618 | if (!(cfg->ifa_flags & IFA_F_NOPREFIXROUTE)) { |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4619 | int rc = -ENOENT; |
| 4620 | |
| 4621 | if (had_prefixroute) |
| 4622 | rc = modify_prefix_route(ifp, expires, flags); |
| 4623 | |
| 4624 | /* prefix route could have been deleted; if so restore it */ |
| 4625 | if (rc == -ENOENT) { |
| 4626 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, |
| 4627 | ifp->rt_priority, ifp->idev->dev, |
| 4628 | expires, flags, GFP_KERNEL); |
| 4629 | } |
Thomas Haller | 5b84efe | 2014-01-15 15:36:59 +0100 | [diff] [blame] | 4630 | } else if (had_prefixroute) { |
| 4631 | enum cleanup_prefix_rt_t action; |
| 4632 | unsigned long rt_expires; |
| 4633 | |
| 4634 | write_lock_bh(&ifp->idev->lock); |
| 4635 | action = check_cleanup_prefix_route(ifp, &rt_expires); |
| 4636 | write_unlock_bh(&ifp->idev->lock); |
| 4637 | |
| 4638 | if (action != CLEANUP_PREFIX_RT_NOP) { |
| 4639 | cleanup_prefix_route(ifp, rt_expires, |
| 4640 | action == CLEANUP_PREFIX_RT_DEL); |
| 4641 | } |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 4642 | } |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4643 | |
| 4644 | if (was_managetempaddr || ifp->flags & IFA_F_MANAGETEMPADDR) { |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4645 | if (was_managetempaddr && |
| 4646 | !(ifp->flags & IFA_F_MANAGETEMPADDR)) { |
| 4647 | cfg->valid_lft = 0; |
| 4648 | cfg->preferred_lft = 0; |
| 4649 | } |
| 4650 | manage_tempaddrs(ifp->idev, ifp, cfg->valid_lft, |
| 4651 | cfg->preferred_lft, !was_managetempaddr, |
| 4652 | jiffies); |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 4653 | } |
| 4654 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 4655 | addrconf_verify_rtnl(); |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4656 | |
| 4657 | return 0; |
| 4658 | } |
| 4659 | |
| 4660 | static int |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4661 | inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 4662 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4663 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 4664 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4665 | struct ifaddrmsg *ifm; |
| 4666 | struct nlattr *tb[IFA_MAX+1]; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4667 | struct in6_addr *peer_pfx; |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4668 | struct inet6_ifaddr *ifa; |
| 4669 | struct net_device *dev; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4670 | struct inet6_dev *idev; |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4671 | struct ifa6_config cfg; |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4672 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 4674 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4675 | extack); |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4676 | if (err < 0) |
| 4677 | return err; |
| 4678 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4679 | memset(&cfg, 0, sizeof(cfg)); |
| 4680 | |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4681 | ifm = nlmsg_data(nlh); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4682 | cfg.pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx); |
| 4683 | if (!cfg.pfx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | return -EINVAL; |
| 4685 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4686 | cfg.peer_pfx = peer_pfx; |
| 4687 | cfg.plen = ifm->ifa_prefixlen; |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4688 | if (tb[IFA_RT_PRIORITY]) |
| 4689 | cfg.rt_priority = nla_get_u32(tb[IFA_RT_PRIORITY]); |
| 4690 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4691 | cfg.valid_lft = INFINITY_LIFE_TIME; |
| 4692 | cfg.preferred_lft = INFINITY_LIFE_TIME; |
| 4693 | |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4694 | if (tb[IFA_CACHEINFO]) { |
Noriaki TAKAMIYA | 0778769d | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 4695 | struct ifa_cacheinfo *ci; |
Thomas Graf | 461d883 | 2006-09-18 00:09:49 -0700 | [diff] [blame] | 4696 | |
| 4697 | ci = nla_data(tb[IFA_CACHEINFO]); |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4698 | cfg.valid_lft = ci->ifa_valid; |
| 4699 | cfg.preferred_lft = ci->ifa_prefered; |
Noriaki TAKAMIYA | 0778769d | 2006-07-28 18:12:10 +0900 | [diff] [blame] | 4700 | } |
| 4701 | |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 4702 | dev = __dev_get_by_index(net, ifm->ifa_index); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4703 | if (!dev) |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4704 | return -ENODEV; |
| 4705 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4706 | if (tb[IFA_FLAGS]) |
| 4707 | cfg.ifa_flags = nla_get_u32(tb[IFA_FLAGS]); |
| 4708 | else |
| 4709 | cfg.ifa_flags = ifm->ifa_flags; |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4710 | |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 4711 | /* We ignore other flags so far. */ |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4712 | cfg.ifa_flags &= IFA_F_NODAD | IFA_F_HOMEADDRESS | |
| 4713 | IFA_F_MANAGETEMPADDR | IFA_F_NOPREFIXROUTE | |
| 4714 | IFA_F_MCAUTOJOIN | IFA_F_OPTIMISTIC; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4715 | |
| 4716 | idev = ipv6_find_idev(dev); |
| 4717 | if (IS_ERR(idev)) |
| 4718 | return PTR_ERR(idev); |
| 4719 | |
| 4720 | if (!ipv6_allow_optimistic_dad(net, idev)) |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4721 | cfg.ifa_flags &= ~IFA_F_OPTIMISTIC; |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4722 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4723 | if (cfg.ifa_flags & IFA_F_NODAD && |
| 4724 | cfg.ifa_flags & IFA_F_OPTIMISTIC) { |
Sabrina Dubroca | f1c02cf | 2018-02-28 16:40:08 +0100 | [diff] [blame] | 4725 | NL_SET_ERR_MSG(extack, "IFA_F_NODAD and IFA_F_OPTIMISTIC are mutually exclusive"); |
| 4726 | return -EINVAL; |
| 4727 | } |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 4728 | |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4729 | ifa = ipv6_get_ifaddr(net, cfg.pfx, dev, 1); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4730 | if (!ifa) { |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4731 | /* |
| 4732 | * It would be best to check for !NLM_F_CREATE here but |
stephen hemminger | db9c7c3 | 2014-01-12 11:26:32 -0800 | [diff] [blame] | 4733 | * userspace already relies on not having to provide this. |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4734 | */ |
David Ahern | 19b1518 | 2018-05-27 08:09:54 -0700 | [diff] [blame] | 4735 | return inet6_addr_add(net, ifm->ifa_index, &cfg, extack); |
Noriaki TAKAMIYA | 081bba5 | 2006-07-28 18:12:13 +0900 | [diff] [blame] | 4736 | } |
| 4737 | |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4738 | if (nlh->nlmsg_flags & NLM_F_EXCL || |
| 4739 | !(nlh->nlmsg_flags & NLM_F_REPLACE)) |
| 4740 | err = -EEXIST; |
| 4741 | else |
David Ahern | d169a1f | 2018-05-27 08:09:55 -0700 | [diff] [blame] | 4742 | err = inet6_addr_modify(ifa, &cfg); |
Thomas Graf | 7198f8c | 2006-09-18 00:13:46 -0700 | [diff] [blame] | 4743 | |
| 4744 | in6_ifa_put(ifa); |
| 4745 | |
| 4746 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | } |
| 4748 | |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4749 | static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u32 flags, |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4750 | u8 scope, int ifindex) |
| 4751 | { |
| 4752 | struct ifaddrmsg *ifm; |
| 4753 | |
| 4754 | ifm = nlmsg_data(nlh); |
| 4755 | ifm->ifa_family = AF_INET6; |
| 4756 | ifm->ifa_prefixlen = prefixlen; |
| 4757 | ifm->ifa_flags = flags; |
| 4758 | ifm->ifa_scope = scope; |
| 4759 | ifm->ifa_index = ifindex; |
| 4760 | } |
| 4761 | |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4762 | static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp, |
| 4763 | unsigned long tstamp, u32 preferred, u32 valid) |
| 4764 | { |
| 4765 | struct ifa_cacheinfo ci; |
| 4766 | |
Thomas Graf | 18a31e1 | 2010-11-17 04:12:02 +0000 | [diff] [blame] | 4767 | ci.cstamp = cstamp_delta(cstamp); |
| 4768 | ci.tstamp = cstamp_delta(tstamp); |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4769 | ci.ifa_prefered = preferred; |
| 4770 | ci.ifa_valid = valid; |
| 4771 | |
| 4772 | return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci); |
| 4773 | } |
| 4774 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4775 | static inline int rt_scope(int ifa_scope) |
| 4776 | { |
| 4777 | if (ifa_scope & IFA_HOST) |
| 4778 | return RT_SCOPE_HOST; |
| 4779 | else if (ifa_scope & IFA_LINK) |
| 4780 | return RT_SCOPE_LINK; |
| 4781 | else if (ifa_scope & IFA_SITE) |
| 4782 | return RT_SCOPE_SITE; |
| 4783 | else |
| 4784 | return RT_SCOPE_UNIVERSE; |
| 4785 | } |
| 4786 | |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4787 | static inline int inet6_ifaddr_msgsize(void) |
| 4788 | { |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4789 | return NLMSG_ALIGN(sizeof(struct ifaddrmsg)) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4790 | + nla_total_size(16) /* IFA_LOCAL */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4791 | + nla_total_size(16) /* IFA_ADDRESS */ |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4792 | + nla_total_size(sizeof(struct ifa_cacheinfo)) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4793 | + nla_total_size(4) /* IFA_FLAGS */ |
| 4794 | + nla_total_size(4) /* IFA_RT_PRIORITY */; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4795 | } |
YOSHIFUJI Hideaki | c5396a3 | 2006-06-17 22:48:48 -0700 | [diff] [blame] | 4796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4797 | static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4798 | u32 portid, u32 seq, int event, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4799 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4800 | struct nlmsghdr *nlh; |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4801 | u32 preferred, valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4802 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4803 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4804 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4805 | return -EMSGSIZE; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4806 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4807 | put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope), |
| 4808 | ifa->idev->dev->ifindex); |
| 4809 | |
Yasushi Asano | fad8da3 | 2013-12-31 12:04:19 +0900 | [diff] [blame] | 4810 | if (!((ifa->flags&IFA_F_PERMANENT) && |
| 4811 | (ifa->prefered_lft == INFINITY_LIFE_TIME))) { |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4812 | preferred = ifa->prefered_lft; |
| 4813 | valid = ifa->valid_lft; |
| 4814 | if (preferred != INFINITY_LIFE_TIME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4815 | long tval = (jiffies - ifa->tstamp)/HZ; |
Jens Rosenboom | a1faa69 | 2009-06-25 04:55:50 +0000 | [diff] [blame] | 4816 | if (preferred > tval) |
| 4817 | preferred -= tval; |
| 4818 | else |
| 4819 | preferred = 0; |
Ben Hutchings | f56619f | 2010-06-26 11:37:47 +0000 | [diff] [blame] | 4820 | if (valid != INFINITY_LIFE_TIME) { |
| 4821 | if (valid > tval) |
| 4822 | valid -= tval; |
| 4823 | else |
| 4824 | valid = 0; |
| 4825 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4826 | } |
| 4827 | } else { |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4828 | preferred = INFINITY_LIFE_TIME; |
| 4829 | valid = INFINITY_LIFE_TIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4830 | } |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4831 | |
Cong Wang | 7996c79 | 2013-05-22 05:41:06 +0000 | [diff] [blame] | 4832 | if (!ipv6_addr_any(&ifa->peer_addr)) { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4833 | if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 || |
| 4834 | nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->peer_addr) < 0) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4835 | goto error; |
| 4836 | } else |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4837 | if (nla_put_in6_addr(skb, IFA_ADDRESS, &ifa->addr) < 0) |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4838 | goto error; |
| 4839 | |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 4840 | if (ifa->rt_priority && |
| 4841 | nla_put_u32(skb, IFA_RT_PRIORITY, ifa->rt_priority)) |
| 4842 | goto error; |
| 4843 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4844 | if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) |
| 4845 | goto error; |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4846 | |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 4847 | if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0) |
| 4848 | goto error; |
| 4849 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4850 | nlmsg_end(skb, nlh); |
| 4851 | return 0; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 4852 | |
| 4853 | error: |
| 4854 | nlmsg_cancel(skb, nlh); |
| 4855 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4856 | } |
| 4857 | |
| 4858 | static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4859 | u32 portid, u32 seq, int event, u16 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4860 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4861 | struct nlmsghdr *nlh; |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4862 | u8 scope = RT_SCOPE_UNIVERSE; |
| 4863 | int ifindex = ifmca->idev->dev->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4864 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4865 | if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE) |
| 4866 | scope = RT_SCOPE_SITE; |
| 4867 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4868 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4869 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4870 | return -EMSGSIZE; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4871 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4872 | put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex); |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4873 | if (nla_put_in6_addr(skb, IFA_MULTICAST, &ifmca->mca_addr) < 0 || |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4874 | put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp, |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4875 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) { |
| 4876 | nlmsg_cancel(skb, nlh); |
| 4877 | return -EMSGSIZE; |
| 4878 | } |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4879 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4880 | nlmsg_end(skb, nlh); |
| 4881 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4882 | } |
| 4883 | |
| 4884 | static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4885 | u32 portid, u32 seq, int event, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4886 | { |
David Ahern | 9ee8cbb | 2018-04-18 15:39:01 -0700 | [diff] [blame] | 4887 | struct net_device *dev = fib6_info_nh_dev(ifaca->aca_rt); |
| 4888 | int ifindex = dev ? dev->ifindex : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4889 | struct nlmsghdr *nlh; |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4890 | u8 scope = RT_SCOPE_UNIVERSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4892 | if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE) |
| 4893 | scope = RT_SCOPE_SITE; |
| 4894 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4895 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 4896 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4897 | return -EMSGSIZE; |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4898 | |
Thomas Graf | 101bb22 | 2006-09-18 00:11:52 -0700 | [diff] [blame] | 4899 | put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex); |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4900 | if (nla_put_in6_addr(skb, IFA_ANYCAST, &ifaca->aca_addr) < 0 || |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 4901 | put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp, |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4902 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) { |
| 4903 | nlmsg_cancel(skb, nlh); |
| 4904 | return -EMSGSIZE; |
| 4905 | } |
Thomas Graf | 85486af | 2006-09-18 00:11:24 -0700 | [diff] [blame] | 4906 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4907 | nlmsg_end(skb, nlh); |
| 4908 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4909 | } |
| 4910 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 4911 | enum addr_type_t { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4912 | UNICAST_ADDR, |
| 4913 | MULTICAST_ADDR, |
| 4914 | ANYCAST_ADDR, |
| 4915 | }; |
| 4916 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4917 | /* called with rcu_read_lock() */ |
| 4918 | static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb, |
| 4919 | struct netlink_callback *cb, enum addr_type_t type, |
| 4920 | int s_ip_idx, int *p_ip_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4921 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4922 | struct ifmcaddr6 *ifmca; |
| 4923 | struct ifacaddr6 *ifaca; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4924 | int err = 1; |
| 4925 | int ip_idx = *p_ip_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4926 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4927 | read_lock_bh(&idev->lock); |
| 4928 | switch (type) { |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 4929 | case UNICAST_ADDR: { |
| 4930 | struct inet6_ifaddr *ifa; |
| 4931 | |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4932 | /* unicast address incl. temp addr */ |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 4933 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
| 4934 | if (++ip_idx < s_ip_idx) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4935 | continue; |
| 4936 | err = inet6_fill_ifaddr(skb, ifa, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4937 | NETLINK_CB(cb->skb).portid, |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4938 | cb->nlh->nlmsg_seq, |
| 4939 | RTM_NEWADDR, |
| 4940 | NLM_F_MULTI); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4941 | if (err < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4942 | break; |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 4943 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | } |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4945 | break; |
stephen hemminger | 502a2ff | 2010-03-17 20:31:13 +0000 | [diff] [blame] | 4946 | } |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4947 | case MULTICAST_ADDR: |
| 4948 | /* multicast address */ |
| 4949 | for (ifmca = idev->mc_list; ifmca; |
| 4950 | ifmca = ifmca->next, ip_idx++) { |
| 4951 | if (ip_idx < s_ip_idx) |
| 4952 | continue; |
| 4953 | err = inet6_fill_ifmcaddr(skb, ifmca, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4954 | NETLINK_CB(cb->skb).portid, |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4955 | cb->nlh->nlmsg_seq, |
| 4956 | RTM_GETMULTICAST, |
| 4957 | NLM_F_MULTI); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4958 | if (err < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4959 | break; |
| 4960 | } |
| 4961 | break; |
| 4962 | case ANYCAST_ADDR: |
| 4963 | /* anycast address */ |
| 4964 | for (ifaca = idev->ac_list; ifaca; |
| 4965 | ifaca = ifaca->aca_next, ip_idx++) { |
| 4966 | if (ip_idx < s_ip_idx) |
| 4967 | continue; |
| 4968 | err = inet6_fill_ifacaddr(skb, ifaca, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4969 | NETLINK_CB(cb->skb).portid, |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4970 | cb->nlh->nlmsg_seq, |
| 4971 | RTM_GETANYCAST, |
| 4972 | NLM_F_MULTI); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4973 | if (err < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4974 | break; |
| 4975 | } |
| 4976 | break; |
| 4977 | default: |
| 4978 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4979 | } |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4980 | read_unlock_bh(&idev->lock); |
| 4981 | *p_ip_idx = ip_idx; |
| 4982 | return err; |
| 4983 | } |
| 4984 | |
| 4985 | static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb, |
| 4986 | enum addr_type_t type) |
| 4987 | { |
| 4988 | struct net *net = sock_net(skb->sk); |
| 4989 | int h, s_h; |
| 4990 | int idx, ip_idx; |
| 4991 | int s_idx, s_ip_idx; |
| 4992 | struct net_device *dev; |
| 4993 | struct inet6_dev *idev; |
| 4994 | struct hlist_head *head; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 4995 | |
| 4996 | s_h = cb->args[0]; |
| 4997 | s_idx = idx = cb->args[1]; |
| 4998 | s_ip_idx = ip_idx = cb->args[2]; |
| 4999 | |
| 5000 | rcu_read_lock(); |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 5001 | cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq; |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5002 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 5003 | idx = 0; |
| 5004 | head = &net->dev_index_head[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5005 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5006 | if (idx < s_idx) |
| 5007 | goto cont; |
Patrick McHardy | 4b97efd | 2010-03-26 20:27:49 -0700 | [diff] [blame] | 5008 | if (h > s_h || idx > s_idx) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5009 | s_ip_idx = 0; |
| 5010 | ip_idx = 0; |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5011 | idev = __in6_dev_get(dev); |
| 5012 | if (!idev) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5013 | goto cont; |
| 5014 | |
| 5015 | if (in6_dump_addrs(idev, skb, cb, type, |
David S. Miller | 7b46a64 | 2015-01-18 23:36:08 -0500 | [diff] [blame] | 5016 | s_ip_idx, &ip_idx) < 0) |
Eric Dumazet | 234b27c | 2009-11-12 04:11:50 +0000 | [diff] [blame] | 5017 | goto done; |
| 5018 | cont: |
| 5019 | idx++; |
| 5020 | } |
| 5021 | } |
| 5022 | done: |
| 5023 | rcu_read_unlock(); |
| 5024 | cb->args[0] = h; |
| 5025 | cb->args[1] = idx; |
| 5026 | cb->args[2] = ip_idx; |
| 5027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | return skb->len; |
| 5029 | } |
| 5030 | |
| 5031 | static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb) |
| 5032 | { |
| 5033 | enum addr_type_t type = UNICAST_ADDR; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 5034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5035 | return inet6_dump_addr(skb, cb, type); |
| 5036 | } |
| 5037 | |
| 5038 | static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb) |
| 5039 | { |
| 5040 | enum addr_type_t type = MULTICAST_ADDR; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 5041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5042 | return inet6_dump_addr(skb, cb, type); |
| 5043 | } |
| 5044 | |
| 5045 | |
| 5046 | static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb) |
| 5047 | { |
| 5048 | enum addr_type_t type = ANYCAST_ADDR; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 5049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5050 | return inet6_dump_addr(skb, cb, type); |
| 5051 | } |
| 5052 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 5053 | static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh, |
| 5054 | struct netlink_ext_ack *extack) |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5055 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 5056 | struct net *net = sock_net(in_skb->sk); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5057 | struct ifaddrmsg *ifm; |
| 5058 | struct nlattr *tb[IFA_MAX+1]; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5059 | struct in6_addr *addr = NULL, *peer; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5060 | struct net_device *dev = NULL; |
| 5061 | struct inet6_ifaddr *ifa; |
| 5062 | struct sk_buff *skb; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5063 | int err; |
| 5064 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 5065 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 5066 | extack); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5067 | if (err < 0) |
Florian Westphal | c24675f | 2017-10-11 10:28:01 +0200 | [diff] [blame] | 5068 | return err; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5069 | |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5070 | addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer); |
Florian Westphal | c24675f | 2017-10-11 10:28:01 +0200 | [diff] [blame] | 5071 | if (!addr) |
| 5072 | return -EINVAL; |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5073 | |
| 5074 | ifm = nlmsg_data(nlh); |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5075 | if (ifm->ifa_index) |
Florian Westphal | c24675f | 2017-10-11 10:28:01 +0200 | [diff] [blame] | 5076 | dev = dev_get_by_index(net, ifm->ifa_index); |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5077 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5078 | ifa = ipv6_get_ifaddr(net, addr, dev, 1); |
| 5079 | if (!ifa) { |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5080 | err = -EADDRNOTAVAIL; |
| 5081 | goto errout; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5082 | } |
| 5083 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5084 | skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL); |
| 5085 | if (!skb) { |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5086 | err = -ENOBUFS; |
| 5087 | goto errout_ifa; |
| 5088 | } |
| 5089 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5090 | err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid, |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5091 | nlh->nlmsg_seq, RTM_NEWADDR, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5092 | if (err < 0) { |
| 5093 | /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */ |
| 5094 | WARN_ON(err == -EMSGSIZE); |
| 5095 | kfree_skb(skb); |
| 5096 | goto errout_ifa; |
| 5097 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5098 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5099 | errout_ifa: |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5100 | in6_ifa_put(ifa); |
Thomas Graf | 1b29fc2 | 2006-09-18 00:10:50 -0700 | [diff] [blame] | 5101 | errout: |
Florian Westphal | c24675f | 2017-10-11 10:28:01 +0200 | [diff] [blame] | 5102 | if (dev) |
| 5103 | dev_put(dev); |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5104 | return err; |
Noriaki TAKAMIYA | 6c22382 | 2006-07-28 18:12:12 +0900 | [diff] [blame] | 5105 | } |
| 5106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5107 | static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa) |
| 5108 | { |
| 5109 | struct sk_buff *skb; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 5110 | struct net *net = dev_net(ifa->idev->dev); |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 5111 | int err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5112 | |
Thomas Graf | 0ab6803 | 2006-09-18 00:12:35 -0700 | [diff] [blame] | 5113 | skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5114 | if (!skb) |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 5115 | goto errout; |
| 5116 | |
| 5117 | err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5118 | if (err < 0) { |
| 5119 | /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */ |
| 5120 | WARN_ON(err == -EMSGSIZE); |
| 5121 | kfree_skb(skb); |
| 5122 | goto errout; |
| 5123 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 5124 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC); |
| 5125 | return; |
Thomas Graf | 5d62026 | 2006-08-15 00:35:02 -0700 | [diff] [blame] | 5126 | errout: |
| 5127 | if (err < 0) |
Benjamin Thery | 6fda735 | 2008-03-05 10:47:47 -0800 | [diff] [blame] | 5128 | rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5129 | } |
| 5130 | |
Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 5131 | static inline void ipv6_store_devconf(struct ipv6_devconf *cnf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5132 | __s32 *array, int bytes) |
| 5133 | { |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5134 | BUG_ON(bytes < (DEVCONF_MAX * 4)); |
| 5135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5136 | memset(array, 0, bytes); |
| 5137 | array[DEVCONF_FORWARDING] = cnf->forwarding; |
| 5138 | array[DEVCONF_HOPLIMIT] = cnf->hop_limit; |
| 5139 | array[DEVCONF_MTU6] = cnf->mtu6; |
| 5140 | array[DEVCONF_ACCEPT_RA] = cnf->accept_ra; |
| 5141 | array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects; |
| 5142 | array[DEVCONF_AUTOCONF] = cnf->autoconf; |
| 5143 | array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits; |
| 5144 | array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits; |
Thomas Graf | 93908d1 | 2010-11-17 01:44:24 +0000 | [diff] [blame] | 5145 | array[DEVCONF_RTR_SOLICIT_INTERVAL] = |
| 5146 | jiffies_to_msecs(cnf->rtr_solicit_interval); |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5147 | array[DEVCONF_RTR_SOLICIT_MAX_INTERVAL] = |
| 5148 | jiffies_to_msecs(cnf->rtr_solicit_max_interval); |
Thomas Graf | 93908d1 | 2010-11-17 01:44:24 +0000 | [diff] [blame] | 5149 | array[DEVCONF_RTR_SOLICIT_DELAY] = |
| 5150 | jiffies_to_msecs(cnf->rtr_solicit_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5151 | array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version; |
Hannes Frederic Sowa | fc4eba5 | 2013-08-14 01:03:46 +0200 | [diff] [blame] | 5152 | array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] = |
| 5153 | jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval); |
| 5154 | array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] = |
| 5155 | jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5156 | array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr; |
| 5157 | array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft; |
| 5158 | array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft; |
| 5159 | array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry; |
| 5160 | array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5161 | array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses; |
YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 5162 | array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr; |
Hangbin Liu | 8013d1d7 | 2015-07-30 14:28:42 +0800 | [diff] [blame] | 5163 | 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] | 5164 | array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo; |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 5165 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 5166 | array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref; |
Thomas Graf | 93908d1 | 2010-11-17 01:44:24 +0000 | [diff] [blame] | 5167 | array[DEVCONF_RTR_PROBE_INTERVAL] = |
| 5168 | jiffies_to_msecs(cnf->rtr_probe_interval); |
Neil Horman | fa03ef3 | 2007-01-30 14:30:10 -0800 | [diff] [blame] | 5169 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 5170 | 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] | 5171 | array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen; |
| 5172 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 5173 | #endif |
YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 5174 | array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp; |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 5175 | array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 5176 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
| 5177 | array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad; |
Erik Kline | 7fd2561 | 2014-10-28 18:11:14 +0900 | [diff] [blame] | 5178 | array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic; |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 5179 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 5180 | #ifdef CONFIG_IPV6_MROUTE |
| 5181 | array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding; |
| 5182 | #endif |
YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 5183 | array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6; |
YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 5184 | array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad; |
Cosmin Ratiu | c3faca0 | 2009-10-09 03:11:14 +0000 | [diff] [blame] | 5185 | array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao; |
Hannes Frederic Sowa | 5cb0443 | 2012-11-06 16:46:20 +0000 | [diff] [blame] | 5186 | array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify; |
Hannes Frederic Sowa | b800c3b | 2013-08-27 01:36:51 +0200 | [diff] [blame] | 5187 | array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc; |
Ben Greear | d933319 | 2014-06-25 14:44:53 -0700 | [diff] [blame] | 5188 | array[DEVCONF_ACCEPT_RA_FROM_LOCAL] = cnf->accept_ra_from_local; |
Harout Hedeshian | c2943f1 | 2015-01-20 10:06:05 -0700 | [diff] [blame] | 5189 | array[DEVCONF_ACCEPT_RA_MTU] = cnf->accept_ra_mtu; |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 5190 | array[DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN] = cnf->ignore_routes_with_linkdown; |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 5191 | /* we omit DEVCONF_STABLE_SECRET for now */ |
Erik Kline | 3985e8a | 2015-07-22 16:38:25 +0900 | [diff] [blame] | 5192 | array[DEVCONF_USE_OIF_ADDRS_ONLY] = cnf->use_oif_addrs_only; |
Johannes Berg | abbc304 | 2016-02-04 13:31:19 +0100 | [diff] [blame] | 5193 | 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] | 5194 | array[DEVCONF_DROP_UNSOLICITED_NA] = cnf->drop_unsolicited_na; |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 5195 | array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down; |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 5196 | array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled; |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 5197 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 5198 | array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac; |
| 5199 | #endif |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 5200 | array[DEVCONF_ENHANCED_DAD] = cnf->enhanced_dad; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5201 | array[DEVCONF_ADDR_GEN_MODE] = cnf->addr_gen_mode; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 5202 | array[DEVCONF_DISABLE_POLICY] = cnf->disable_policy; |
Maciej Żenczykowski | 2210d6b | 2017-11-07 21:52:09 -0800 | [diff] [blame] | 5203 | array[DEVCONF_NDISC_TCLASS] = cnf->ndisc_tclass; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5204 | } |
| 5205 | |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5206 | static inline size_t inet6_ifla6_size(void) |
| 5207 | { |
| 5208 | return nla_total_size(4) /* IFLA_INET6_FLAGS */ |
| 5209 | + nla_total_size(sizeof(struct ifla_cacheinfo)) |
| 5210 | + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */ |
| 5211 | + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */ |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5212 | + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */ |
| 5213 | + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */ |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5214 | } |
| 5215 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5216 | static inline size_t inet6_if_nlmsg_size(void) |
| 5217 | { |
| 5218 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
| 5219 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
| 5220 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 5221 | + nla_total_size(4) /* IFLA_MTU */ |
| 5222 | + nla_total_size(4) /* IFLA_LINK */ |
Andy Gospodarek | 0344338 | 2015-08-13 15:26:35 -0400 | [diff] [blame] | 5223 | + nla_total_size(1) /* IFLA_OPERSTATE */ |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5224 | + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5225 | } |
YOSHIFUJI Hideaki | c5396a3 | 2006-06-17 22:48:48 -0700 | [diff] [blame] | 5226 | |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 5227 | static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib, |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5228 | int bytes) |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5229 | { |
| 5230 | int i; |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5231 | int pad = bytes - sizeof(u64) * ICMP6_MIB_MAX; |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5232 | BUG_ON(pad < 0); |
| 5233 | |
| 5234 | /* Use put_unaligned() because stats may not be aligned for u64. */ |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5235 | put_unaligned(ICMP6_MIB_MAX, &stats[0]); |
| 5236 | for (i = 1; i < ICMP6_MIB_MAX; i++) |
Eric Dumazet | be281e5 | 2011-05-19 01:14:23 +0000 | [diff] [blame] | 5237 | put_unaligned(atomic_long_read(&mib[i]), &stats[i]); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5238 | |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5239 | memset(&stats[ICMP6_MIB_MAX], 0, pad); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5240 | } |
| 5241 | |
WANG Cong | 698365f | 2014-05-05 15:55:55 -0700 | [diff] [blame] | 5242 | static inline void __snmp6_fill_stats64(u64 *stats, void __percpu *mib, |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5243 | int bytes, size_t syncpoff) |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5244 | { |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5245 | int i, c; |
| 5246 | u64 buff[IPSTATS_MIB_MAX]; |
| 5247 | int pad = bytes - sizeof(u64) * IPSTATS_MIB_MAX; |
| 5248 | |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5249 | BUG_ON(pad < 0); |
| 5250 | |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5251 | memset(buff, 0, sizeof(buff)); |
| 5252 | buff[0] = IPSTATS_MIB_MAX; |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5253 | |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5254 | for_each_possible_cpu(c) { |
| 5255 | for (i = 1; i < IPSTATS_MIB_MAX; i++) |
| 5256 | buff[i] += snmp_get_cpu_field64(mib, c, i, syncpoff); |
| 5257 | } |
| 5258 | |
| 5259 | memcpy(stats, buff, IPSTATS_MIB_MAX * sizeof(u64)); |
| 5260 | memset(&stats[IPSTATS_MIB_MAX], 0, pad); |
Eric Dumazet | 4ce3c18 | 2010-06-30 13:31:19 -0700 | [diff] [blame] | 5261 | } |
| 5262 | |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5263 | static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype, |
| 5264 | int bytes) |
| 5265 | { |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 5266 | switch (attrtype) { |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5267 | case IFLA_INET6_STATS: |
Raghavendra K T | a3a7737 | 2015-08-30 11:29:42 +0530 | [diff] [blame] | 5268 | __snmp6_fill_stats64(stats, idev->stats.ipv6, bytes, |
| 5269 | offsetof(struct ipstats_mib, syncp)); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5270 | break; |
| 5271 | case IFLA_INET6_ICMP6STATS: |
Jia He | aca0567 | 2016-09-30 11:29:03 +0800 | [diff] [blame] | 5272 | __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, bytes); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 5273 | break; |
| 5274 | } |
| 5275 | } |
| 5276 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5277 | static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev, |
| 5278 | u32 ext_filter_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5279 | { |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5280 | struct nlattr *nla; |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5281 | struct ifla_cacheinfo ci; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5282 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5283 | if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags)) |
| 5284 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5285 | ci.max_reasm_len = IPV6_MAXPLEN; |
David S. Miller | 2491242 | 2010-11-19 13:13:47 -0800 | [diff] [blame] | 5286 | ci.tstamp = cstamp_delta(idev->tstamp); |
| 5287 | ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time); |
Jiri Pirko | 1f9248e | 2013-12-07 19:26:53 +0100 | [diff] [blame] | 5288 | 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] | 5289 | if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci)) |
| 5290 | goto nla_put_failure; |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5291 | nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5292 | if (!nla) |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5293 | goto nla_put_failure; |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5294 | ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5295 | |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5296 | /* XXX - MC not implemented */ |
| 5297 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5298 | if (ext_filter_mask & RTEXT_FILTER_SKIP_STATS) |
| 5299 | return 0; |
| 5300 | |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5301 | nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5302 | if (!nla) |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5303 | goto nla_put_failure; |
| 5304 | snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla)); |
| 5305 | |
| 5306 | nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5307 | if (!nla) |
YOSHIFUJI Hideaki | bf99f1b | 2007-04-20 15:56:20 -0700 | [diff] [blame] | 5308 | goto nla_put_failure; |
| 5309 | 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] | 5310 | |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5311 | nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr)); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5312 | if (!nla) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5313 | goto nla_put_failure; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5314 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5315 | if (nla_put_u8(skb, IFLA_INET6_ADDR_GEN_MODE, idev->cnf.addr_gen_mode)) |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5316 | goto nla_put_failure; |
| 5317 | |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5318 | read_lock_bh(&idev->lock); |
| 5319 | memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla)); |
| 5320 | read_unlock_bh(&idev->lock); |
| 5321 | |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5322 | return 0; |
| 5323 | |
| 5324 | nla_put_failure: |
| 5325 | return -EMSGSIZE; |
| 5326 | } |
| 5327 | |
Arad, Ronen | b1974ed | 2015-10-19 09:23:28 -0700 | [diff] [blame] | 5328 | static size_t inet6_get_link_af_size(const struct net_device *dev, |
| 5329 | u32 ext_filter_mask) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5330 | { |
| 5331 | if (!__in6_dev_get(dev)) |
| 5332 | return 0; |
| 5333 | |
| 5334 | return inet6_ifla6_size(); |
| 5335 | } |
| 5336 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5337 | static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev, |
| 5338 | u32 ext_filter_mask) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5339 | { |
| 5340 | struct inet6_dev *idev = __in6_dev_get(dev); |
| 5341 | |
| 5342 | if (!idev) |
| 5343 | return -ENODATA; |
| 5344 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5345 | if (inet6_fill_ifla6_attrs(skb, idev, ext_filter_mask) < 0) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5346 | return -EMSGSIZE; |
| 5347 | |
| 5348 | return 0; |
| 5349 | } |
| 5350 | |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5351 | static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token) |
| 5352 | { |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5353 | struct inet6_ifaddr *ifp; |
| 5354 | struct net_device *dev = idev->dev; |
Daniel Borkmann | 47e27d5 | 2016-04-08 15:55:00 +0200 | [diff] [blame] | 5355 | bool clear_token, update_rs = false; |
Hannes Frederic Sowa | dc84829 | 2013-06-24 21:42:40 +0200 | [diff] [blame] | 5356 | struct in6_addr ll_addr; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5357 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 5358 | ASSERT_RTNL(); |
| 5359 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5360 | if (!token) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5361 | return -EINVAL; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5362 | if (dev->flags & (IFF_LOOPBACK | IFF_NOARP)) |
| 5363 | return -EINVAL; |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5364 | if (!ipv6_accept_ra(idev)) |
| 5365 | return -EINVAL; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5366 | if (idev->cnf.rtr_solicits == 0) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5367 | return -EINVAL; |
| 5368 | |
| 5369 | write_lock_bh(&idev->lock); |
| 5370 | |
| 5371 | BUILD_BUG_ON(sizeof(token->s6_addr) != 16); |
| 5372 | memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8); |
| 5373 | |
| 5374 | write_unlock_bh(&idev->lock); |
| 5375 | |
Daniel Borkmann | 47e27d5 | 2016-04-08 15:55:00 +0200 | [diff] [blame] | 5376 | clear_token = ipv6_addr_any(token); |
| 5377 | if (clear_token) |
| 5378 | goto update_lft; |
| 5379 | |
Hannes Frederic Sowa | dc84829 | 2013-06-24 21:42:40 +0200 | [diff] [blame] | 5380 | if (!idev->dead && (idev->if_flags & IF_READY) && |
| 5381 | !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE | |
| 5382 | IFA_F_OPTIMISTIC)) { |
Daniel Borkmann | fc40383 | 2013-04-09 03:47:15 +0000 | [diff] [blame] | 5383 | /* If we're not ready, then normal ifup will take care |
| 5384 | * of this. Otherwise, we need to request our rs here. |
| 5385 | */ |
| 5386 | ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters); |
| 5387 | update_rs = true; |
| 5388 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5389 | |
Daniel Borkmann | 47e27d5 | 2016-04-08 15:55:00 +0200 | [diff] [blame] | 5390 | update_lft: |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5391 | write_lock_bh(&idev->lock); |
Daniel Borkmann | fc40383 | 2013-04-09 03:47:15 +0000 | [diff] [blame] | 5392 | |
Hannes Frederic Sowa | 77ecaac | 2013-06-26 03:41:49 +0200 | [diff] [blame] | 5393 | if (update_rs) { |
Daniel Borkmann | fc40383 | 2013-04-09 03:47:15 +0000 | [diff] [blame] | 5394 | idev->if_flags |= IF_RS_SENT; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5395 | idev->rs_interval = rfc3315_s14_backoff_init( |
| 5396 | idev->cnf.rtr_solicit_interval); |
Hannes Frederic Sowa | 77ecaac | 2013-06-26 03:41:49 +0200 | [diff] [blame] | 5397 | idev->rs_probes = 1; |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 5398 | addrconf_mod_rs_timer(idev, idev->rs_interval); |
Hannes Frederic Sowa | 77ecaac | 2013-06-26 03:41:49 +0200 | [diff] [blame] | 5399 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5400 | |
| 5401 | /* Well, that's kinda nasty ... */ |
| 5402 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
| 5403 | spin_lock(&ifp->lock); |
Daniel Borkmann | 617fe29 | 2013-04-09 03:47:16 +0000 | [diff] [blame] | 5404 | if (ifp->tokenized) { |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5405 | ifp->valid_lft = 0; |
| 5406 | ifp->prefered_lft = 0; |
| 5407 | } |
| 5408 | spin_unlock(&ifp->lock); |
| 5409 | } |
| 5410 | |
| 5411 | write_unlock_bh(&idev->lock); |
Lubomir Rintel | b2ed64a | 2014-10-27 17:39:16 +0100 | [diff] [blame] | 5412 | inet6_ifinfo_notify(RTM_NEWLINK, idev); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 5413 | addrconf_verify_rtnl(); |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5414 | return 0; |
| 5415 | } |
| 5416 | |
Daniel Borkmann | 11b1f82 | 2015-02-05 14:39:11 +0100 | [diff] [blame] | 5417 | static const struct nla_policy inet6_af_policy[IFLA_INET6_MAX + 1] = { |
| 5418 | [IFLA_INET6_ADDR_GEN_MODE] = { .type = NLA_U8 }, |
| 5419 | [IFLA_INET6_TOKEN] = { .len = sizeof(struct in6_addr) }, |
| 5420 | }; |
| 5421 | |
| 5422 | static int inet6_validate_link_af(const struct net_device *dev, |
| 5423 | const struct nlattr *nla) |
| 5424 | { |
| 5425 | struct nlattr *tb[IFLA_INET6_MAX + 1]; |
| 5426 | |
| 5427 | if (dev && !__in6_dev_get(dev)) |
| 5428 | return -EAFNOSUPPORT; |
| 5429 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 5430 | return nla_parse_nested(tb, IFLA_INET6_MAX, nla, inet6_af_policy, |
| 5431 | NULL); |
Daniel Borkmann | 11b1f82 | 2015-02-05 14:39:11 +0100 | [diff] [blame] | 5432 | } |
| 5433 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5434 | static int check_addr_gen_mode(int mode) |
| 5435 | { |
| 5436 | if (mode != IN6_ADDR_GEN_MODE_EUI64 && |
| 5437 | mode != IN6_ADDR_GEN_MODE_NONE && |
| 5438 | mode != IN6_ADDR_GEN_MODE_STABLE_PRIVACY && |
| 5439 | mode != IN6_ADDR_GEN_MODE_RANDOM) |
| 5440 | return -EINVAL; |
| 5441 | return 1; |
| 5442 | } |
| 5443 | |
| 5444 | static int check_stable_privacy(struct inet6_dev *idev, struct net *net, |
| 5445 | int mode) |
| 5446 | { |
| 5447 | if (mode == IN6_ADDR_GEN_MODE_STABLE_PRIVACY && |
| 5448 | !idev->cnf.stable_secret.initialized && |
| 5449 | !net->ipv6.devconf_dflt->stable_secret.initialized) |
| 5450 | return -EINVAL; |
| 5451 | return 1; |
| 5452 | } |
| 5453 | |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5454 | static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla) |
| 5455 | { |
| 5456 | int err = -EINVAL; |
| 5457 | struct inet6_dev *idev = __in6_dev_get(dev); |
| 5458 | struct nlattr *tb[IFLA_INET6_MAX + 1]; |
| 5459 | |
| 5460 | if (!idev) |
| 5461 | return -EAFNOSUPPORT; |
| 5462 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 5463 | if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0) |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5464 | BUG(); |
| 5465 | |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5466 | if (tb[IFLA_INET6_TOKEN]) { |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5467 | err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN])); |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5468 | if (err) |
| 5469 | return err; |
| 5470 | } |
| 5471 | |
| 5472 | if (tb[IFLA_INET6_ADDR_GEN_MODE]) { |
| 5473 | u8 mode = nla_get_u8(tb[IFLA_INET6_ADDR_GEN_MODE]); |
| 5474 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5475 | if (check_addr_gen_mode(mode) < 0 || |
| 5476 | check_stable_privacy(idev, dev_net(dev), mode) < 0) |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5477 | return -EINVAL; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 5478 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5479 | idev->cnf.addr_gen_mode = mode; |
Jiri Pirko | bc91b0f | 2014-07-11 21:10:18 +0200 | [diff] [blame] | 5480 | err = 0; |
| 5481 | } |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 5482 | |
| 5483 | return err; |
| 5484 | } |
| 5485 | |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5486 | 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] | 5487 | u32 portid, u32 seq, int event, unsigned int flags) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5488 | { |
| 5489 | struct net_device *dev = idev->dev; |
| 5490 | struct ifinfomsg *hdr; |
| 5491 | struct nlmsghdr *nlh; |
| 5492 | void *protoinfo; |
| 5493 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5494 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5495 | if (!nlh) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5496 | return -EMSGSIZE; |
| 5497 | |
| 5498 | hdr = nlmsg_data(nlh); |
| 5499 | hdr->ifi_family = AF_INET6; |
| 5500 | hdr->__ifi_pad = 0; |
| 5501 | hdr->ifi_type = dev->type; |
| 5502 | hdr->ifi_index = dev->ifindex; |
| 5503 | hdr->ifi_flags = dev_get_flags(dev); |
| 5504 | hdr->ifi_change = 0; |
| 5505 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5506 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 5507 | (dev->addr_len && |
| 5508 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || |
| 5509 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
Nicolas Dichtel | a54acb3 | 2015-04-02 17:07:00 +0200 | [diff] [blame] | 5510 | (dev->ifindex != dev_get_iflink(dev) && |
Andy Gospodarek | 0344338 | 2015-08-13 15:26:35 -0400 | [diff] [blame] | 5511 | nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) || |
| 5512 | nla_put_u8(skb, IFLA_OPERSTATE, |
| 5513 | netif_running(dev) ? dev->operstate : IF_OPER_DOWN)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5514 | goto nla_put_failure; |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5515 | protoinfo = nla_nest_start(skb, IFLA_PROTINFO); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5516 | if (!protoinfo) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5517 | goto nla_put_failure; |
| 5518 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 5519 | if (inet6_fill_ifla6_attrs(skb, idev, 0) < 0) |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 5520 | goto nla_put_failure; |
| 5521 | |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5522 | nla_nest_end(skb, protoinfo); |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5523 | nlmsg_end(skb, nlh); |
| 5524 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5525 | |
Thomas Graf | 04561c1 | 2006-11-14 19:53:58 -0800 | [diff] [blame] | 5526 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5527 | nlmsg_cancel(skb, nlh); |
| 5528 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5529 | } |
| 5530 | |
| 5531 | static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) |
| 5532 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 5533 | struct net *net = sock_net(skb->sk); |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5534 | int h, s_h; |
David S. Miller | 434a8a5 | 2009-11-11 18:53:00 -0800 | [diff] [blame] | 5535 | int idx = 0, s_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5536 | struct net_device *dev; |
| 5537 | struct inet6_dev *idev; |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5538 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5539 | |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5540 | s_h = cb->args[0]; |
| 5541 | s_idx = cb->args[1]; |
| 5542 | |
| 5543 | rcu_read_lock(); |
| 5544 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 5545 | idx = 0; |
| 5546 | head = &net->dev_index_head[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5547 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5548 | if (idx < s_idx) |
| 5549 | goto cont; |
| 5550 | idev = __in6_dev_get(dev); |
| 5551 | if (!idev) |
| 5552 | goto cont; |
| 5553 | if (inet6_fill_ifinfo(skb, idev, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5554 | NETLINK_CB(cb->skb).portid, |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5555 | cb->nlh->nlmsg_seq, |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5556 | RTM_NEWLINK, NLM_F_MULTI) < 0) |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5557 | goto out; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 5558 | cont: |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5559 | idx++; |
| 5560 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5561 | } |
Eric Dumazet | 84d2697 | 2009-11-09 12:11:28 +0000 | [diff] [blame] | 5562 | out: |
| 5563 | rcu_read_unlock(); |
| 5564 | cb->args[1] = idx; |
| 5565 | cb->args[0] = h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5566 | |
| 5567 | return skb->len; |
| 5568 | } |
| 5569 | |
| 5570 | void inet6_ifinfo_notify(int event, struct inet6_dev *idev) |
| 5571 | { |
| 5572 | struct sk_buff *skb; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 5573 | struct net *net = dev_net(idev->dev); |
Thomas Graf | 8d7a76c | 2006-08-15 00:35:47 -0700 | [diff] [blame] | 5574 | int err = -ENOBUFS; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 5575 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5576 | skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5577 | if (!skb) |
Thomas Graf | 8d7a76c | 2006-08-15 00:35:47 -0700 | [diff] [blame] | 5578 | goto errout; |
| 5579 | |
| 5580 | err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5581 | if (err < 0) { |
| 5582 | /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */ |
| 5583 | WARN_ON(err == -EMSGSIZE); |
| 5584 | kfree_skb(skb); |
| 5585 | goto errout; |
| 5586 | } |
Nicolas Dichtel | 5f75a10 | 2010-12-07 23:38:31 +0000 | [diff] [blame] | 5587 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC); |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 5588 | return; |
Thomas Graf | 8d7a76c | 2006-08-15 00:35:47 -0700 | [diff] [blame] | 5589 | errout: |
| 5590 | if (err < 0) |
Nicolas Dichtel | 5f75a10 | 2010-12-07 23:38:31 +0000 | [diff] [blame] | 5591 | rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5592 | } |
| 5593 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5594 | static inline size_t inet6_prefix_nlmsg_size(void) |
| 5595 | { |
| 5596 | return NLMSG_ALIGN(sizeof(struct prefixmsg)) |
| 5597 | + nla_total_size(sizeof(struct in6_addr)) |
| 5598 | + nla_total_size(sizeof(struct prefix_cacheinfo)); |
| 5599 | } |
YOSHIFUJI Hideaki | c5396a3 | 2006-06-17 22:48:48 -0700 | [diff] [blame] | 5600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5601 | 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] | 5602 | struct prefix_info *pinfo, u32 portid, u32 seq, |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 5603 | int event, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5604 | { |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 5605 | struct prefixmsg *pmsg; |
| 5606 | struct nlmsghdr *nlh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5607 | struct prefix_cacheinfo ci; |
| 5608 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 5609 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5610 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5611 | return -EMSGSIZE; |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 5612 | |
| 5613 | pmsg = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5614 | pmsg->prefix_family = AF_INET6; |
Patrick McHardy | 8a47077 | 2005-06-28 12:56:45 -0700 | [diff] [blame] | 5615 | pmsg->prefix_pad1 = 0; |
| 5616 | pmsg->prefix_pad2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5617 | pmsg->prefix_ifindex = idev->dev->ifindex; |
| 5618 | pmsg->prefix_len = pinfo->prefix_len; |
| 5619 | pmsg->prefix_type = pinfo->type; |
Patrick McHardy | 8a47077 | 2005-06-28 12:56:45 -0700 | [diff] [blame] | 5620 | pmsg->prefix_pad3 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5621 | pmsg->prefix_flags = 0; |
| 5622 | if (pinfo->onlink) |
| 5623 | pmsg->prefix_flags |= IF_PREFIX_ONLINK; |
| 5624 | if (pinfo->autoconf) |
| 5625 | pmsg->prefix_flags |= IF_PREFIX_AUTOCONF; |
| 5626 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5627 | if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix)) |
| 5628 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5629 | ci.preferred_time = ntohl(pinfo->prefered); |
| 5630 | ci.valid_time = ntohl(pinfo->valid); |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 5631 | if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci)) |
| 5632 | goto nla_put_failure; |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 5633 | nlmsg_end(skb, nlh); |
| 5634 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5635 | |
Thomas Graf | 6051e2f | 2006-11-14 19:54:19 -0800 | [diff] [blame] | 5636 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5637 | nlmsg_cancel(skb, nlh); |
| 5638 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5639 | } |
| 5640 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 5641 | static void inet6_prefix_notify(int event, struct inet6_dev *idev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5642 | struct prefix_info *pinfo) |
| 5643 | { |
| 5644 | struct sk_buff *skb; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 5645 | struct net *net = dev_net(idev->dev); |
Thomas Graf | 8c384bfa | 2006-08-15 00:36:07 -0700 | [diff] [blame] | 5646 | int err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5647 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 5648 | skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 5649 | if (!skb) |
Thomas Graf | 8c384bfa | 2006-08-15 00:36:07 -0700 | [diff] [blame] | 5650 | goto errout; |
| 5651 | |
| 5652 | err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 5653 | if (err < 0) { |
| 5654 | /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */ |
| 5655 | WARN_ON(err == -EMSGSIZE); |
| 5656 | kfree_skb(skb); |
| 5657 | goto errout; |
| 5658 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 5659 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC); |
| 5660 | return; |
Thomas Graf | 8c384bfa | 2006-08-15 00:36:07 -0700 | [diff] [blame] | 5661 | errout: |
| 5662 | if (err < 0) |
Benjamin Thery | 6fda735 | 2008-03-05 10:47:47 -0800 | [diff] [blame] | 5663 | rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5664 | } |
| 5665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5666 | static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) |
| 5667 | { |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 5668 | struct net *net = dev_net(ifp->idev->dev); |
| 5669 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 5670 | if (event) |
| 5671 | ASSERT_RTNL(); |
| 5672 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5673 | inet6_ifa_notify(event ? : RTM_NEWADDR, ifp); |
| 5674 | |
| 5675 | switch (event) { |
| 5676 | case RTM_NEWADDR: |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 5677 | /* |
| 5678 | * If the address was optimistic |
| 5679 | * we inserted the route at the start of |
| 5680 | * our DAD process, so we don't need |
| 5681 | * to do it again |
| 5682 | */ |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 5683 | if (!rcu_access_pointer(ifp->rt->fib6_node)) |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 5684 | ip6_ins_rt(net, ifp->rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5685 | if (ifp->idev->cnf.forwarding) |
| 5686 | addrconf_join_anycast(ifp); |
Cong Wang | 7996c79 | 2013-05-22 05:41:06 +0000 | [diff] [blame] | 5687 | if (!ipv6_addr_any(&ifp->peer_addr)) |
David Ahern | 8308f3f | 2018-05-27 08:09:58 -0700 | [diff] [blame] | 5688 | addrconf_prefix_route(&ifp->peer_addr, 128, 0, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 5689 | ifp->idev->dev, 0, 0, |
David Ahern | 27b1060 | 2018-04-18 15:39:06 -0700 | [diff] [blame] | 5690 | GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5691 | break; |
| 5692 | case RTM_DELADDR: |
| 5693 | if (ifp->idev->cnf.forwarding) |
| 5694 | addrconf_leave_anycast(ifp); |
| 5695 | addrconf_leave_solict(ifp->idev, &ifp->addr); |
Cong Wang | 7996c79 | 2013-05-22 05:41:06 +0000 | [diff] [blame] | 5696 | if (!ipv6_addr_any(&ifp->peer_addr)) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 5697 | struct fib6_info *rt; |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5698 | |
Nicolas Dichtel | e7478df | 2014-09-03 23:59:22 +0200 | [diff] [blame] | 5699 | rt = addrconf_get_prefix_route(&ifp->peer_addr, 128, |
| 5700 | ifp->idev->dev, 0, 0); |
Martin KaFai Lau | 8e3d5be | 2015-09-15 14:30:08 -0700 | [diff] [blame] | 5701 | if (rt) |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 5702 | ip6_del_rt(net, rt); |
Nicolas Dichtel | caeaba7 | 2013-05-16 22:32:00 +0000 | [diff] [blame] | 5703 | } |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 5704 | if (ifp->rt) { |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 5705 | ip6_del_rt(net, ifp->rt); |
| 5706 | ifp->rt = NULL; |
David Ahern | 38bd10c | 2016-04-21 20:56:12 -0700 | [diff] [blame] | 5707 | } |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 5708 | rt_genid_bump_ipv6(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5709 | break; |
| 5710 | } |
Nicolas Dichtel | 63998ac | 2013-03-22 06:28:43 +0000 | [diff] [blame] | 5711 | atomic_inc(&net->ipv6.dev_addr_genid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5712 | } |
| 5713 | |
| 5714 | static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) |
| 5715 | { |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 5716 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5717 | if (likely(ifp->idev->dead == 0)) |
| 5718 | __ipv6_ifa_notify(event, ifp); |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 5719 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5720 | } |
| 5721 | |
| 5722 | #ifdef CONFIG_SYSCTL |
| 5723 | |
| 5724 | static |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 5725 | int addrconf_sysctl_forward(struct ctl_table *ctl, int write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5726 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 5727 | { |
| 5728 | int *valp = ctl->data; |
| 5729 | int val = *valp; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 5730 | loff_t pos = *ppos; |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 5731 | struct ctl_table lctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5732 | int ret; |
| 5733 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5734 | /* |
| 5735 | * ctl->data points to idev->cnf.forwarding, we should |
| 5736 | * not modify it until we get the rtnl lock. |
| 5737 | */ |
| 5738 | lctl = *ctl; |
| 5739 | lctl.data = &val; |
| 5740 | |
| 5741 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5742 | |
Pavel Emelyanov | c8fecf2 | 2007-12-05 01:50:24 -0800 | [diff] [blame] | 5743 | if (write) |
Stephen Hemminger | b325fdd | 2009-02-26 06:55:31 +0000 | [diff] [blame] | 5744 | ret = addrconf_fixup_forwarding(ctl, valp, val); |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 5745 | if (ret) |
| 5746 | *ppos = pos; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 5747 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5748 | } |
| 5749 | |
Marcelo Leitner | 7775142 | 2015-02-23 11:17:13 -0300 | [diff] [blame] | 5750 | static |
| 5751 | int addrconf_sysctl_mtu(struct ctl_table *ctl, int write, |
| 5752 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 5753 | { |
| 5754 | struct inet6_dev *idev = ctl->extra1; |
| 5755 | int min_mtu = IPV6_MIN_MTU; |
| 5756 | struct ctl_table lctl; |
| 5757 | |
| 5758 | lctl = *ctl; |
| 5759 | lctl.extra1 = &min_mtu; |
| 5760 | lctl.extra2 = idev ? &idev->dev->mtu : NULL; |
| 5761 | |
| 5762 | return proc_dointvec_minmax(&lctl, write, buffer, lenp, ppos); |
| 5763 | } |
| 5764 | |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5765 | static void dev_disable_change(struct inet6_dev *idev) |
| 5766 | { |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 5767 | struct netdev_notifier_info info; |
| 5768 | |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5769 | if (!idev || !idev->dev) |
| 5770 | return; |
| 5771 | |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 5772 | netdev_notifier_info_init(&info, idev->dev); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5773 | if (idev->cnf.disable_ipv6) |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 5774 | addrconf_notify(NULL, NETDEV_DOWN, &info); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5775 | else |
Cong Wang | 75538c2 | 2013-05-29 11:30:50 +0800 | [diff] [blame] | 5776 | addrconf_notify(NULL, NETDEV_UP, &info); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5777 | } |
| 5778 | |
| 5779 | static void addrconf_disable_change(struct net *net, __s32 newf) |
| 5780 | { |
| 5781 | struct net_device *dev; |
| 5782 | struct inet6_dev *idev; |
| 5783 | |
Kefeng Wang | 03e4def | 2017-01-19 16:26:21 +0800 | [diff] [blame] | 5784 | for_each_netdev(net, dev) { |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5785 | idev = __in6_dev_get(dev); |
| 5786 | if (idev) { |
| 5787 | int changed = (!idev->cnf.disable_ipv6) ^ (!newf); |
| 5788 | idev->cnf.disable_ipv6 = newf; |
| 5789 | if (changed) |
| 5790 | dev_disable_change(idev); |
| 5791 | } |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5792 | } |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5793 | } |
| 5794 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5795 | 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] | 5796 | { |
| 5797 | struct net *net; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5798 | int old; |
| 5799 | |
| 5800 | if (!rtnl_trylock()) |
| 5801 | return restart_syscall(); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5802 | |
| 5803 | net = (struct net *)table->extra2; |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5804 | old = *p; |
| 5805 | *p = newf; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5806 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5807 | if (p == &net->ipv6.devconf_dflt->disable_ipv6) { |
| 5808 | rtnl_unlock(); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5809 | return 0; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 5810 | } |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5811 | |
| 5812 | if (p == &net->ipv6.devconf_all->disable_ipv6) { |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5813 | net->ipv6.devconf_dflt->disable_ipv6 = newf; |
| 5814 | addrconf_disable_change(net, newf); |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5815 | } else if ((!newf) ^ (!old)) |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5816 | dev_disable_change((struct inet6_dev *)table->extra1); |
| 5817 | |
| 5818 | rtnl_unlock(); |
| 5819 | return 0; |
| 5820 | } |
| 5821 | |
| 5822 | static |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 5823 | int addrconf_sysctl_disable(struct ctl_table *ctl, int write, |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5824 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 5825 | { |
| 5826 | int *valp = ctl->data; |
| 5827 | int val = *valp; |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 5828 | loff_t pos = *ppos; |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 5829 | struct ctl_table lctl; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5830 | int ret; |
| 5831 | |
Francesco Ruggeri | 013d97e | 2012-01-16 10:40:10 +0000 | [diff] [blame] | 5832 | /* |
| 5833 | * ctl->data points to idev->cnf.disable_ipv6, we should |
| 5834 | * not modify it until we get the rtnl lock. |
| 5835 | */ |
| 5836 | lctl = *ctl; |
| 5837 | lctl.data = &val; |
| 5838 | |
| 5839 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5840 | |
| 5841 | if (write) |
| 5842 | ret = addrconf_disable_ipv6(ctl, valp, val); |
Eric W. Biederman | 88af182 | 2010-02-19 13:22:59 +0000 | [diff] [blame] | 5843 | if (ret) |
| 5844 | *ppos = pos; |
Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 5845 | return ret; |
| 5846 | } |
| 5847 | |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 5848 | static |
| 5849 | int addrconf_sysctl_proxy_ndp(struct ctl_table *ctl, int write, |
| 5850 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 5851 | { |
| 5852 | int *valp = ctl->data; |
| 5853 | int ret; |
| 5854 | int old, new; |
| 5855 | |
| 5856 | old = *valp; |
| 5857 | ret = proc_dointvec(ctl, write, buffer, lenp, ppos); |
| 5858 | new = *valp; |
| 5859 | |
| 5860 | if (write && old != new) { |
| 5861 | struct net *net = ctl->extra2; |
| 5862 | |
| 5863 | if (!rtnl_trylock()) |
| 5864 | return restart_syscall(); |
| 5865 | |
| 5866 | if (valp == &net->ipv6.devconf_dflt->proxy_ndp) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 5867 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 5868 | NETCONFA_PROXY_NEIGH, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 5869 | NETCONFA_IFINDEX_DEFAULT, |
| 5870 | net->ipv6.devconf_dflt); |
| 5871 | else if (valp == &net->ipv6.devconf_all->proxy_ndp) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 5872 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 5873 | NETCONFA_PROXY_NEIGH, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 5874 | NETCONFA_IFINDEX_ALL, |
| 5875 | net->ipv6.devconf_all); |
| 5876 | else { |
| 5877 | struct inet6_dev *idev = ctl->extra1; |
| 5878 | |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 5879 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 5880 | NETCONFA_PROXY_NEIGH, |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 5881 | idev->dev->ifindex, |
| 5882 | &idev->cnf); |
| 5883 | } |
| 5884 | rtnl_unlock(); |
| 5885 | } |
| 5886 | |
| 5887 | return ret; |
| 5888 | } |
| 5889 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5890 | static int addrconf_sysctl_addr_gen_mode(struct ctl_table *ctl, int write, |
| 5891 | void __user *buffer, size_t *lenp, |
| 5892 | loff_t *ppos) |
| 5893 | { |
| 5894 | int ret = 0; |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame^] | 5895 | u32 new_val; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5896 | struct inet6_dev *idev = (struct inet6_dev *)ctl->extra1; |
| 5897 | struct net *net = (struct net *)ctl->extra2; |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame^] | 5898 | struct ctl_table tmp = { |
| 5899 | .data = &new_val, |
| 5900 | .maxlen = sizeof(new_val), |
| 5901 | .mode = ctl->mode, |
| 5902 | }; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5903 | |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 5904 | if (!rtnl_trylock()) |
| 5905 | return restart_syscall(); |
| 5906 | |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame^] | 5907 | new_val = *((u32 *)ctl->data); |
| 5908 | |
| 5909 | ret = proc_douintvec(&tmp, write, buffer, lenp, ppos); |
| 5910 | if (ret != 0) |
| 5911 | goto out; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5912 | |
| 5913 | if (write) { |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 5914 | if (check_addr_gen_mode(new_val) < 0) { |
| 5915 | ret = -EINVAL; |
| 5916 | goto out; |
| 5917 | } |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5918 | |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame^] | 5919 | if (idev) { |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 5920 | if (check_stable_privacy(idev, net, new_val) < 0) { |
| 5921 | ret = -EINVAL; |
| 5922 | goto out; |
| 5923 | } |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5924 | |
| 5925 | if (idev->cnf.addr_gen_mode != new_val) { |
| 5926 | idev->cnf.addr_gen_mode = new_val; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5927 | addrconf_dev_config(idev->dev); |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5928 | } |
| 5929 | } |
Sabrina Dubroca | c6dbf7a | 2018-07-09 12:25:14 +0200 | [diff] [blame^] | 5930 | |
| 5931 | *((u32 *)ctl->data) = new_val; |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5932 | } |
| 5933 | |
Felix Jia | 8c171d6 | 2017-02-27 12:41:23 +1300 | [diff] [blame] | 5934 | out: |
| 5935 | rtnl_unlock(); |
| 5936 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5937 | return ret; |
| 5938 | } |
| 5939 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 5940 | static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write, |
| 5941 | void __user *buffer, size_t *lenp, |
| 5942 | loff_t *ppos) |
| 5943 | { |
| 5944 | int err; |
| 5945 | struct in6_addr addr; |
| 5946 | char str[IPV6_MAX_STRLEN]; |
| 5947 | struct ctl_table lctl = *ctl; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 5948 | struct net *net = ctl->extra2; |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 5949 | struct ipv6_stable_secret *secret = ctl->data; |
| 5950 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 5951 | if (&net->ipv6.devconf_all->stable_secret == ctl->data) |
| 5952 | return -EIO; |
| 5953 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 5954 | lctl.maxlen = IPV6_MAX_STRLEN; |
| 5955 | lctl.data = str; |
| 5956 | |
| 5957 | if (!rtnl_trylock()) |
| 5958 | return restart_syscall(); |
| 5959 | |
| 5960 | if (!write && !secret->initialized) { |
| 5961 | err = -EIO; |
| 5962 | goto out; |
| 5963 | } |
| 5964 | |
WANG Cong | 5449a5c | 2015-12-21 10:55:45 -0800 | [diff] [blame] | 5965 | err = snprintf(str, sizeof(str), "%pI6", &secret->secret); |
| 5966 | if (err >= sizeof(str)) { |
| 5967 | err = -EIO; |
| 5968 | goto out; |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 5969 | } |
| 5970 | |
| 5971 | err = proc_dostring(&lctl, write, buffer, lenp, ppos); |
| 5972 | if (err || !write) |
| 5973 | goto out; |
| 5974 | |
| 5975 | if (in6_pton(str, -1, addr.in6_u.u6_addr8, -1, NULL) != 1) { |
| 5976 | err = -EIO; |
| 5977 | goto out; |
| 5978 | } |
| 5979 | |
| 5980 | secret->initialized = true; |
| 5981 | secret->secret = addr; |
| 5982 | |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 5983 | if (&net->ipv6.devconf_dflt->stable_secret == ctl->data) { |
| 5984 | struct net_device *dev; |
| 5985 | |
| 5986 | for_each_netdev(net, dev) { |
| 5987 | struct inet6_dev *idev = __in6_dev_get(dev); |
| 5988 | |
| 5989 | if (idev) { |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5990 | idev->cnf.addr_gen_mode = |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 5991 | IN6_ADDR_GEN_MODE_STABLE_PRIVACY; |
| 5992 | } |
| 5993 | } |
| 5994 | } else { |
| 5995 | struct inet6_dev *idev = ctl->extra1; |
| 5996 | |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 5997 | idev->cnf.addr_gen_mode = IN6_ADDR_GEN_MODE_STABLE_PRIVACY; |
Hannes Frederic Sowa | 622c81d5 | 2015-03-23 23:36:01 +0100 | [diff] [blame] | 5998 | } |
| 5999 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6000 | out: |
| 6001 | rtnl_unlock(); |
| 6002 | |
| 6003 | return err; |
| 6004 | } |
stephen hemminger | c92d549 | 2013-12-17 22:37:14 -0800 | [diff] [blame] | 6005 | |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 6006 | static |
| 6007 | int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl, |
| 6008 | int write, |
| 6009 | void __user *buffer, |
| 6010 | size_t *lenp, |
| 6011 | loff_t *ppos) |
| 6012 | { |
| 6013 | int *valp = ctl->data; |
| 6014 | int val = *valp; |
| 6015 | loff_t pos = *ppos; |
| 6016 | struct ctl_table lctl; |
| 6017 | int ret; |
| 6018 | |
| 6019 | /* ctl->data points to idev->cnf.ignore_routes_when_linkdown |
| 6020 | * we should not modify it until we get the rtnl lock. |
| 6021 | */ |
| 6022 | lctl = *ctl; |
| 6023 | lctl.data = &val; |
| 6024 | |
| 6025 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
| 6026 | |
| 6027 | if (write) |
| 6028 | ret = addrconf_fixup_linkdown(ctl, valp, val); |
| 6029 | if (ret) |
| 6030 | *ppos = pos; |
| 6031 | return ret; |
| 6032 | } |
| 6033 | |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6034 | static |
| 6035 | void addrconf_set_nopolicy(struct rt6_info *rt, int action) |
| 6036 | { |
| 6037 | if (rt) { |
| 6038 | if (action) |
| 6039 | rt->dst.flags |= DST_NOPOLICY; |
| 6040 | else |
| 6041 | rt->dst.flags &= ~DST_NOPOLICY; |
| 6042 | } |
| 6043 | } |
| 6044 | |
| 6045 | static |
| 6046 | void addrconf_disable_policy_idev(struct inet6_dev *idev, int val) |
| 6047 | { |
| 6048 | struct inet6_ifaddr *ifa; |
| 6049 | |
| 6050 | read_lock_bh(&idev->lock); |
| 6051 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
| 6052 | spin_lock(&ifa->lock); |
| 6053 | if (ifa->rt) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 6054 | struct fib6_info *rt = ifa->rt; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6055 | int cpu; |
| 6056 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 6057 | rcu_read_lock(); |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 6058 | ifa->rt->dst_nopolicy = val ? true : false; |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6059 | if (rt->rt6i_pcpu) { |
| 6060 | for_each_possible_cpu(cpu) { |
| 6061 | struct rt6_info **rtp; |
| 6062 | |
| 6063 | rtp = per_cpu_ptr(rt->rt6i_pcpu, cpu); |
| 6064 | addrconf_set_nopolicy(*rtp, val); |
| 6065 | } |
| 6066 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 6067 | rcu_read_unlock(); |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6068 | } |
| 6069 | spin_unlock(&ifa->lock); |
| 6070 | } |
| 6071 | read_unlock_bh(&idev->lock); |
| 6072 | } |
| 6073 | |
| 6074 | static |
| 6075 | int addrconf_disable_policy(struct ctl_table *ctl, int *valp, int val) |
| 6076 | { |
| 6077 | struct inet6_dev *idev; |
| 6078 | struct net *net; |
| 6079 | |
| 6080 | if (!rtnl_trylock()) |
| 6081 | return restart_syscall(); |
| 6082 | |
| 6083 | *valp = val; |
| 6084 | |
| 6085 | net = (struct net *)ctl->extra2; |
| 6086 | if (valp == &net->ipv6.devconf_dflt->disable_policy) { |
| 6087 | rtnl_unlock(); |
| 6088 | return 0; |
| 6089 | } |
| 6090 | |
| 6091 | if (valp == &net->ipv6.devconf_all->disable_policy) { |
| 6092 | struct net_device *dev; |
| 6093 | |
| 6094 | for_each_netdev(net, dev) { |
| 6095 | idev = __in6_dev_get(dev); |
| 6096 | if (idev) |
| 6097 | addrconf_disable_policy_idev(idev, val); |
| 6098 | } |
| 6099 | } else { |
| 6100 | idev = (struct inet6_dev *)ctl->extra1; |
| 6101 | addrconf_disable_policy_idev(idev, val); |
| 6102 | } |
| 6103 | |
| 6104 | rtnl_unlock(); |
| 6105 | return 0; |
| 6106 | } |
| 6107 | |
| 6108 | static |
| 6109 | int addrconf_sysctl_disable_policy(struct ctl_table *ctl, int write, |
| 6110 | void __user *buffer, size_t *lenp, |
| 6111 | loff_t *ppos) |
| 6112 | { |
| 6113 | int *valp = ctl->data; |
| 6114 | int val = *valp; |
| 6115 | loff_t pos = *ppos; |
| 6116 | struct ctl_table lctl; |
| 6117 | int ret; |
| 6118 | |
| 6119 | lctl = *ctl; |
| 6120 | lctl.data = &val; |
| 6121 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); |
| 6122 | |
| 6123 | if (write && (*valp != val)) |
| 6124 | ret = addrconf_disable_policy(ctl, valp, val); |
| 6125 | |
| 6126 | if (ret) |
| 6127 | *ppos = pos; |
| 6128 | |
| 6129 | return ret; |
| 6130 | } |
| 6131 | |
Maciej Żenczykowski | cb4a4c6 | 2016-10-07 01:00:49 -0700 | [diff] [blame] | 6132 | static int minus_one = -1; |
Maciej Żenczykowski | 2210d6b | 2017-11-07 21:52:09 -0800 | [diff] [blame] | 6133 | static const int zero = 0; |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6134 | static const int one = 1; |
| 6135 | static const int two_five_five = 255; |
| 6136 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6137 | static const struct ctl_table addrconf_sysctl[] = { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6138 | { |
| 6139 | .procname = "forwarding", |
| 6140 | .data = &ipv6_devconf.forwarding, |
| 6141 | .maxlen = sizeof(int), |
| 6142 | .mode = 0644, |
| 6143 | .proc_handler = addrconf_sysctl_forward, |
| 6144 | }, |
| 6145 | { |
| 6146 | .procname = "hop_limit", |
| 6147 | .data = &ipv6_devconf.hop_limit, |
| 6148 | .maxlen = sizeof(int), |
| 6149 | .mode = 0644, |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6150 | .proc_handler = proc_dointvec_minmax, |
| 6151 | .extra1 = (void *)&one, |
| 6152 | .extra2 = (void *)&two_five_five, |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6153 | }, |
| 6154 | { |
| 6155 | .procname = "mtu", |
| 6156 | .data = &ipv6_devconf.mtu6, |
| 6157 | .maxlen = sizeof(int), |
| 6158 | .mode = 0644, |
| 6159 | .proc_handler = addrconf_sysctl_mtu, |
| 6160 | }, |
| 6161 | { |
| 6162 | .procname = "accept_ra", |
| 6163 | .data = &ipv6_devconf.accept_ra, |
| 6164 | .maxlen = sizeof(int), |
| 6165 | .mode = 0644, |
| 6166 | .proc_handler = proc_dointvec, |
| 6167 | }, |
| 6168 | { |
| 6169 | .procname = "accept_redirects", |
| 6170 | .data = &ipv6_devconf.accept_redirects, |
| 6171 | .maxlen = sizeof(int), |
| 6172 | .mode = 0644, |
| 6173 | .proc_handler = proc_dointvec, |
| 6174 | }, |
| 6175 | { |
| 6176 | .procname = "autoconf", |
| 6177 | .data = &ipv6_devconf.autoconf, |
| 6178 | .maxlen = sizeof(int), |
| 6179 | .mode = 0644, |
| 6180 | .proc_handler = proc_dointvec, |
| 6181 | }, |
| 6182 | { |
| 6183 | .procname = "dad_transmits", |
| 6184 | .data = &ipv6_devconf.dad_transmits, |
| 6185 | .maxlen = sizeof(int), |
| 6186 | .mode = 0644, |
| 6187 | .proc_handler = proc_dointvec, |
| 6188 | }, |
| 6189 | { |
| 6190 | .procname = "router_solicitations", |
| 6191 | .data = &ipv6_devconf.rtr_solicits, |
| 6192 | .maxlen = sizeof(int), |
| 6193 | .mode = 0644, |
Maciej Żenczykowski | cb4a4c6 | 2016-10-07 01:00:49 -0700 | [diff] [blame] | 6194 | .proc_handler = proc_dointvec_minmax, |
| 6195 | .extra1 = &minus_one, |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6196 | }, |
| 6197 | { |
| 6198 | .procname = "router_solicitation_interval", |
| 6199 | .data = &ipv6_devconf.rtr_solicit_interval, |
| 6200 | .maxlen = sizeof(int), |
| 6201 | .mode = 0644, |
| 6202 | .proc_handler = proc_dointvec_jiffies, |
| 6203 | }, |
| 6204 | { |
Maciej Żenczykowski | bd11f07 | 2016-09-27 23:57:58 -0700 | [diff] [blame] | 6205 | .procname = "router_solicitation_max_interval", |
| 6206 | .data = &ipv6_devconf.rtr_solicit_max_interval, |
| 6207 | .maxlen = sizeof(int), |
| 6208 | .mode = 0644, |
| 6209 | .proc_handler = proc_dointvec_jiffies, |
| 6210 | }, |
| 6211 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6212 | .procname = "router_solicitation_delay", |
| 6213 | .data = &ipv6_devconf.rtr_solicit_delay, |
| 6214 | .maxlen = sizeof(int), |
| 6215 | .mode = 0644, |
| 6216 | .proc_handler = proc_dointvec_jiffies, |
| 6217 | }, |
| 6218 | { |
| 6219 | .procname = "force_mld_version", |
| 6220 | .data = &ipv6_devconf.force_mld_version, |
| 6221 | .maxlen = sizeof(int), |
| 6222 | .mode = 0644, |
| 6223 | .proc_handler = proc_dointvec, |
| 6224 | }, |
| 6225 | { |
| 6226 | .procname = "mldv1_unsolicited_report_interval", |
| 6227 | .data = |
| 6228 | &ipv6_devconf.mldv1_unsolicited_report_interval, |
| 6229 | .maxlen = sizeof(int), |
| 6230 | .mode = 0644, |
| 6231 | .proc_handler = proc_dointvec_ms_jiffies, |
| 6232 | }, |
| 6233 | { |
| 6234 | .procname = "mldv2_unsolicited_report_interval", |
| 6235 | .data = |
| 6236 | &ipv6_devconf.mldv2_unsolicited_report_interval, |
| 6237 | .maxlen = sizeof(int), |
| 6238 | .mode = 0644, |
| 6239 | .proc_handler = proc_dointvec_ms_jiffies, |
| 6240 | }, |
| 6241 | { |
| 6242 | .procname = "use_tempaddr", |
| 6243 | .data = &ipv6_devconf.use_tempaddr, |
| 6244 | .maxlen = sizeof(int), |
| 6245 | .mode = 0644, |
| 6246 | .proc_handler = proc_dointvec, |
| 6247 | }, |
| 6248 | { |
| 6249 | .procname = "temp_valid_lft", |
| 6250 | .data = &ipv6_devconf.temp_valid_lft, |
| 6251 | .maxlen = sizeof(int), |
| 6252 | .mode = 0644, |
| 6253 | .proc_handler = proc_dointvec, |
| 6254 | }, |
| 6255 | { |
| 6256 | .procname = "temp_prefered_lft", |
| 6257 | .data = &ipv6_devconf.temp_prefered_lft, |
| 6258 | .maxlen = sizeof(int), |
| 6259 | .mode = 0644, |
| 6260 | .proc_handler = proc_dointvec, |
| 6261 | }, |
| 6262 | { |
| 6263 | .procname = "regen_max_retry", |
| 6264 | .data = &ipv6_devconf.regen_max_retry, |
| 6265 | .maxlen = sizeof(int), |
| 6266 | .mode = 0644, |
| 6267 | .proc_handler = proc_dointvec, |
| 6268 | }, |
| 6269 | { |
| 6270 | .procname = "max_desync_factor", |
| 6271 | .data = &ipv6_devconf.max_desync_factor, |
| 6272 | .maxlen = sizeof(int), |
| 6273 | .mode = 0644, |
| 6274 | .proc_handler = proc_dointvec, |
| 6275 | }, |
| 6276 | { |
| 6277 | .procname = "max_addresses", |
| 6278 | .data = &ipv6_devconf.max_addresses, |
| 6279 | .maxlen = sizeof(int), |
| 6280 | .mode = 0644, |
| 6281 | .proc_handler = proc_dointvec, |
| 6282 | }, |
| 6283 | { |
| 6284 | .procname = "accept_ra_defrtr", |
| 6285 | .data = &ipv6_devconf.accept_ra_defrtr, |
| 6286 | .maxlen = sizeof(int), |
| 6287 | .mode = 0644, |
| 6288 | .proc_handler = proc_dointvec, |
| 6289 | }, |
| 6290 | { |
| 6291 | .procname = "accept_ra_min_hop_limit", |
| 6292 | .data = &ipv6_devconf.accept_ra_min_hop_limit, |
| 6293 | .maxlen = sizeof(int), |
| 6294 | .mode = 0644, |
| 6295 | .proc_handler = proc_dointvec, |
| 6296 | }, |
| 6297 | { |
| 6298 | .procname = "accept_ra_pinfo", |
| 6299 | .data = &ipv6_devconf.accept_ra_pinfo, |
| 6300 | .maxlen = sizeof(int), |
| 6301 | .mode = 0644, |
| 6302 | .proc_handler = proc_dointvec, |
| 6303 | }, |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 6304 | #ifdef CONFIG_IPV6_ROUTER_PREF |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6305 | { |
| 6306 | .procname = "accept_ra_rtr_pref", |
| 6307 | .data = &ipv6_devconf.accept_ra_rtr_pref, |
| 6308 | .maxlen = sizeof(int), |
| 6309 | .mode = 0644, |
| 6310 | .proc_handler = proc_dointvec, |
| 6311 | }, |
| 6312 | { |
| 6313 | .procname = "router_probe_interval", |
| 6314 | .data = &ipv6_devconf.rtr_probe_interval, |
| 6315 | .maxlen = sizeof(int), |
| 6316 | .mode = 0644, |
| 6317 | .proc_handler = proc_dointvec_jiffies, |
| 6318 | }, |
Neil Horman | fa03ef3 | 2007-01-30 14:30:10 -0800 | [diff] [blame] | 6319 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6320 | { |
Joel Scherpelz | bbea124 | 2017-03-22 18:19:04 +0900 | [diff] [blame] | 6321 | .procname = "accept_ra_rt_info_min_plen", |
| 6322 | .data = &ipv6_devconf.accept_ra_rt_info_min_plen, |
| 6323 | .maxlen = sizeof(int), |
| 6324 | .mode = 0644, |
| 6325 | .proc_handler = proc_dointvec, |
| 6326 | }, |
| 6327 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6328 | .procname = "accept_ra_rt_info_max_plen", |
| 6329 | .data = &ipv6_devconf.accept_ra_rt_info_max_plen, |
| 6330 | .maxlen = sizeof(int), |
| 6331 | .mode = 0644, |
| 6332 | .proc_handler = proc_dointvec, |
| 6333 | }, |
YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 6334 | #endif |
YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 6335 | #endif |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6336 | { |
| 6337 | .procname = "proxy_ndp", |
| 6338 | .data = &ipv6_devconf.proxy_ndp, |
| 6339 | .maxlen = sizeof(int), |
| 6340 | .mode = 0644, |
| 6341 | .proc_handler = addrconf_sysctl_proxy_ndp, |
| 6342 | }, |
| 6343 | { |
| 6344 | .procname = "accept_source_route", |
| 6345 | .data = &ipv6_devconf.accept_source_route, |
| 6346 | .maxlen = sizeof(int), |
| 6347 | .mode = 0644, |
| 6348 | .proc_handler = proc_dointvec, |
| 6349 | }, |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 6350 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6351 | { |
| 6352 | .procname = "optimistic_dad", |
| 6353 | .data = &ipv6_devconf.optimistic_dad, |
| 6354 | .maxlen = sizeof(int), |
| 6355 | .mode = 0644, |
| 6356 | .proc_handler = proc_dointvec, |
| 6357 | }, |
| 6358 | { |
| 6359 | .procname = "use_optimistic", |
| 6360 | .data = &ipv6_devconf.use_optimistic, |
| 6361 | .maxlen = sizeof(int), |
| 6362 | .mode = 0644, |
| 6363 | .proc_handler = proc_dointvec, |
| 6364 | }, |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 6365 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 6366 | #ifdef CONFIG_IPV6_MROUTE |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6367 | { |
| 6368 | .procname = "mc_forwarding", |
| 6369 | .data = &ipv6_devconf.mc_forwarding, |
| 6370 | .maxlen = sizeof(int), |
| 6371 | .mode = 0444, |
| 6372 | .proc_handler = proc_dointvec, |
| 6373 | }, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 6374 | #endif |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6375 | { |
| 6376 | .procname = "disable_ipv6", |
| 6377 | .data = &ipv6_devconf.disable_ipv6, |
| 6378 | .maxlen = sizeof(int), |
| 6379 | .mode = 0644, |
| 6380 | .proc_handler = addrconf_sysctl_disable, |
| 6381 | }, |
| 6382 | { |
| 6383 | .procname = "accept_dad", |
| 6384 | .data = &ipv6_devconf.accept_dad, |
| 6385 | .maxlen = sizeof(int), |
| 6386 | .mode = 0644, |
| 6387 | .proc_handler = proc_dointvec, |
| 6388 | }, |
| 6389 | { |
| 6390 | .procname = "force_tllao", |
| 6391 | .data = &ipv6_devconf.force_tllao, |
| 6392 | .maxlen = sizeof(int), |
| 6393 | .mode = 0644, |
| 6394 | .proc_handler = proc_dointvec |
| 6395 | }, |
| 6396 | { |
| 6397 | .procname = "ndisc_notify", |
| 6398 | .data = &ipv6_devconf.ndisc_notify, |
| 6399 | .maxlen = sizeof(int), |
| 6400 | .mode = 0644, |
| 6401 | .proc_handler = proc_dointvec |
| 6402 | }, |
| 6403 | { |
| 6404 | .procname = "suppress_frag_ndisc", |
| 6405 | .data = &ipv6_devconf.suppress_frag_ndisc, |
| 6406 | .maxlen = sizeof(int), |
| 6407 | .mode = 0644, |
| 6408 | .proc_handler = proc_dointvec |
| 6409 | }, |
| 6410 | { |
| 6411 | .procname = "accept_ra_from_local", |
| 6412 | .data = &ipv6_devconf.accept_ra_from_local, |
| 6413 | .maxlen = sizeof(int), |
| 6414 | .mode = 0644, |
| 6415 | .proc_handler = proc_dointvec, |
| 6416 | }, |
| 6417 | { |
| 6418 | .procname = "accept_ra_mtu", |
| 6419 | .data = &ipv6_devconf.accept_ra_mtu, |
| 6420 | .maxlen = sizeof(int), |
| 6421 | .mode = 0644, |
| 6422 | .proc_handler = proc_dointvec, |
| 6423 | }, |
| 6424 | { |
| 6425 | .procname = "stable_secret", |
| 6426 | .data = &ipv6_devconf.stable_secret, |
| 6427 | .maxlen = IPV6_MAX_STRLEN, |
| 6428 | .mode = 0600, |
| 6429 | .proc_handler = addrconf_sysctl_stable_secret, |
| 6430 | }, |
| 6431 | { |
| 6432 | .procname = "use_oif_addrs_only", |
| 6433 | .data = &ipv6_devconf.use_oif_addrs_only, |
| 6434 | .maxlen = sizeof(int), |
| 6435 | .mode = 0644, |
| 6436 | .proc_handler = proc_dointvec, |
| 6437 | }, |
| 6438 | { |
| 6439 | .procname = "ignore_routes_with_linkdown", |
| 6440 | .data = &ipv6_devconf.ignore_routes_with_linkdown, |
| 6441 | .maxlen = sizeof(int), |
| 6442 | .mode = 0644, |
| 6443 | .proc_handler = addrconf_sysctl_ignore_routes_with_linkdown, |
| 6444 | }, |
| 6445 | { |
| 6446 | .procname = "drop_unicast_in_l2_multicast", |
| 6447 | .data = &ipv6_devconf.drop_unicast_in_l2_multicast, |
| 6448 | .maxlen = sizeof(int), |
| 6449 | .mode = 0644, |
| 6450 | .proc_handler = proc_dointvec, |
| 6451 | }, |
| 6452 | { |
| 6453 | .procname = "drop_unsolicited_na", |
| 6454 | .data = &ipv6_devconf.drop_unsolicited_na, |
| 6455 | .maxlen = sizeof(int), |
| 6456 | .mode = 0644, |
| 6457 | .proc_handler = proc_dointvec, |
| 6458 | }, |
| 6459 | { |
| 6460 | .procname = "keep_addr_on_down", |
| 6461 | .data = &ipv6_devconf.keep_addr_on_down, |
| 6462 | .maxlen = sizeof(int), |
| 6463 | .mode = 0644, |
| 6464 | .proc_handler = proc_dointvec, |
David Ahern | f1705ec | 2016-02-24 09:25:37 -0800 | [diff] [blame] | 6465 | |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6466 | }, |
| 6467 | { |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 6468 | .procname = "seg6_enabled", |
| 6469 | .data = &ipv6_devconf.seg6_enabled, |
| 6470 | .maxlen = sizeof(int), |
| 6471 | .mode = 0644, |
| 6472 | .proc_handler = proc_dointvec, |
| 6473 | }, |
David Lebrun | bf355b8 | 2016-11-08 14:57:42 +0100 | [diff] [blame] | 6474 | #ifdef CONFIG_IPV6_SEG6_HMAC |
| 6475 | { |
| 6476 | .procname = "seg6_require_hmac", |
| 6477 | .data = &ipv6_devconf.seg6_require_hmac, |
| 6478 | .maxlen = sizeof(int), |
| 6479 | .mode = 0644, |
| 6480 | .proc_handler = proc_dointvec, |
| 6481 | }, |
| 6482 | #endif |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 6483 | { |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 6484 | .procname = "enhanced_dad", |
| 6485 | .data = &ipv6_devconf.enhanced_dad, |
| 6486 | .maxlen = sizeof(int), |
| 6487 | .mode = 0644, |
| 6488 | .proc_handler = proc_dointvec, |
| 6489 | }, |
| 6490 | { |
Felix Jia | d35a00b | 2017-01-26 16:59:17 +1300 | [diff] [blame] | 6491 | .procname = "addr_gen_mode", |
| 6492 | .data = &ipv6_devconf.addr_gen_mode, |
| 6493 | .maxlen = sizeof(int), |
| 6494 | .mode = 0644, |
| 6495 | .proc_handler = addrconf_sysctl_addr_gen_mode, |
| 6496 | }, |
| 6497 | { |
David Forster | df789fe | 2017-02-23 16:27:18 +0000 | [diff] [blame] | 6498 | .procname = "disable_policy", |
| 6499 | .data = &ipv6_devconf.disable_policy, |
| 6500 | .maxlen = sizeof(int), |
| 6501 | .mode = 0644, |
| 6502 | .proc_handler = addrconf_sysctl_disable_policy, |
| 6503 | }, |
| 6504 | { |
Maciej Żenczykowski | 2210d6b | 2017-11-07 21:52:09 -0800 | [diff] [blame] | 6505 | .procname = "ndisc_tclass", |
| 6506 | .data = &ipv6_devconf.ndisc_tclass, |
| 6507 | .maxlen = sizeof(int), |
| 6508 | .mode = 0644, |
| 6509 | .proc_handler = proc_dointvec_minmax, |
| 6510 | .extra1 = (void *)&zero, |
| 6511 | .extra2 = (void *)&two_five_five, |
| 6512 | }, |
| 6513 | { |
Konstantin Khlebnikov | 5df1f77 | 2016-04-18 14:41:17 +0300 | [diff] [blame] | 6514 | /* sentinel */ |
| 6515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6516 | }; |
| 6517 | |
Pavel Emelyanov | bff16c2 | 2008-01-10 17:42:13 -0800 | [diff] [blame] | 6518 | static int __addrconf_sysctl_register(struct net *net, char *dev_name, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 6519 | struct inet6_dev *idev, struct ipv6_devconf *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6520 | { |
Nicolas Dichtel | 29c994e | 2016-08-30 10:09:22 +0200 | [diff] [blame] | 6521 | int i, ifindex; |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6522 | struct ctl_table *table; |
Eric W. Biederman | 6105e29 | 2012-04-19 13:41:24 +0000 | [diff] [blame] | 6523 | char path[sizeof("net/ipv6/conf/") + IFNAMSIZ]; |
Pavel Emelyanov | 1dab622 | 2007-12-02 00:59:38 +1100 | [diff] [blame] | 6524 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6525 | table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL); |
| 6526 | if (!table) |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 6527 | goto out; |
| 6528 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6529 | for (i = 0; table[i].data; i++) { |
| 6530 | table[i].data += (char *)p - (char *)&ipv6_devconf; |
Maciej Żenczykowski | cb9e684 | 2016-09-29 00:33:43 -0700 | [diff] [blame] | 6531 | /* If one of these is already set, then it is not safe to |
| 6532 | * overwrite either of them: this makes proc_dointvec_minmax |
| 6533 | * usable. |
| 6534 | */ |
| 6535 | if (!table[i].extra1 && !table[i].extra2) { |
| 6536 | table[i].extra1 = idev; /* embedded; no ref */ |
| 6537 | table[i].extra2 = net; |
| 6538 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6540 | |
Eric W. Biederman | 6105e29 | 2012-04-19 13:41:24 +0000 | [diff] [blame] | 6541 | snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6542 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6543 | p->sysctl_header = register_net_sysctl(net, path, table); |
| 6544 | if (!p->sysctl_header) |
Eric W. Biederman | 6105e29 | 2012-04-19 13:41:24 +0000 | [diff] [blame] | 6545 | goto free; |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 6546 | |
Nicolas Dichtel | 29c994e | 2016-08-30 10:09:22 +0200 | [diff] [blame] | 6547 | if (!strcmp(dev_name, "all")) |
| 6548 | ifindex = NETCONFA_IFINDEX_ALL; |
| 6549 | else if (!strcmp(dev_name, "default")) |
| 6550 | ifindex = NETCONFA_IFINDEX_DEFAULT; |
| 6551 | else |
| 6552 | ifindex = idev->dev->ifindex; |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 6553 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL, |
| 6554 | ifindex, p); |
Pavel Emelyanov | 9589731 | 2008-01-10 17:41:45 -0800 | [diff] [blame] | 6555 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6556 | |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 6557 | free: |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6558 | kfree(table); |
Pavel Emelyanov | f68635e | 2007-12-02 00:21:52 +1100 | [diff] [blame] | 6559 | out: |
Pavel Emelyanov | 9589731 | 2008-01-10 17:41:45 -0800 | [diff] [blame] | 6560 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6561 | } |
| 6562 | |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 6563 | static void __addrconf_sysctl_unregister(struct net *net, |
| 6564 | struct ipv6_devconf *p, int ifindex) |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 6565 | { |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6566 | struct ctl_table *table; |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 6567 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6568 | if (!p->sysctl_header) |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 6569 | return; |
| 6570 | |
Konstantin Khlebnikov | 607ea7c | 2016-04-18 14:41:10 +0300 | [diff] [blame] | 6571 | table = p->sysctl_header->ctl_table_arg; |
| 6572 | unregister_net_sysctl_table(p->sysctl_header); |
| 6573 | p->sysctl_header = NULL; |
| 6574 | kfree(table); |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 6575 | |
| 6576 | inet6_netconf_notify_devconf(net, RTM_DELNETCONF, 0, ifindex, NULL); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 6577 | } |
| 6578 | |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 6579 | static int addrconf_sysctl_register(struct inet6_dev *idev) |
Pavel Emelyanov | f52295a | 2007-12-02 00:58:37 +1100 | [diff] [blame] | 6580 | { |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 6581 | int err; |
| 6582 | |
| 6583 | if (!sysctl_dev_name_is_allowed(idev->dev->name)) |
| 6584 | return -EINVAL; |
| 6585 | |
| 6586 | err = neigh_sysctl_register(idev->dev, idev->nd_parms, |
| 6587 | &ndisc_ifinfo_sysctl_change); |
| 6588 | if (err) |
| 6589 | return err; |
| 6590 | err = __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name, |
| 6591 | idev, &idev->cnf); |
| 6592 | if (err) |
| 6593 | neigh_sysctl_unregister(idev->nd_parms); |
| 6594 | |
| 6595 | return err; |
Pavel Emelyanov | f52295a | 2007-12-02 00:58:37 +1100 | [diff] [blame] | 6596 | } |
| 6597 | |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 6598 | static void addrconf_sysctl_unregister(struct inet6_dev *idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6599 | { |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 6600 | __addrconf_sysctl_unregister(dev_net(idev->dev), &idev->cnf, |
| 6601 | idev->dev->ifindex); |
Pavel Emelyanov | 408c476 | 2008-01-10 17:41:21 -0800 | [diff] [blame] | 6602 | neigh_sysctl_unregister(idev->nd_parms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6603 | } |
| 6604 | |
| 6605 | |
| 6606 | #endif |
| 6607 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 6608 | static int __net_init addrconf_init_net(struct net *net) |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6609 | { |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 6610 | int err = -ENOMEM; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6611 | struct ipv6_devconf *all, *dflt; |
| 6612 | |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 6613 | all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 6614 | if (!all) |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 6615 | goto err_alloc_all; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6616 | |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 6617 | dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 6618 | if (!dflt) |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 6619 | goto err_alloc_dflt; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6620 | |
Hong Zhiguo | a79ca22 | 2013-03-26 01:52:45 +0800 | [diff] [blame] | 6621 | /* these will be inherited by all namespaces */ |
| 6622 | dflt->autoconf = ipv6_defaults.autoconf; |
| 6623 | dflt->disable_ipv6 = ipv6_defaults.disable_ipv6; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6624 | |
Hannes Frederic Sowa | 3d1bec9 | 2015-03-23 23:36:00 +0100 | [diff] [blame] | 6625 | dflt->stable_secret.initialized = false; |
| 6626 | all->stable_secret.initialized = false; |
| 6627 | |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6628 | net->ipv6.devconf_all = all; |
| 6629 | net->ipv6.devconf_dflt = dflt; |
| 6630 | |
| 6631 | #ifdef CONFIG_SYSCTL |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 6632 | err = __addrconf_sysctl_register(net, "all", NULL, all); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6633 | if (err < 0) |
| 6634 | goto err_reg_all; |
| 6635 | |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 6636 | err = __addrconf_sysctl_register(net, "default", NULL, dflt); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6637 | if (err < 0) |
| 6638 | goto err_reg_dflt; |
| 6639 | #endif |
| 6640 | return 0; |
| 6641 | |
| 6642 | #ifdef CONFIG_SYSCTL |
| 6643 | err_reg_dflt: |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 6644 | __addrconf_sysctl_unregister(net, all, NETCONFA_IFINDEX_ALL); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6645 | err_reg_all: |
| 6646 | kfree(dflt); |
| 6647 | #endif |
| 6648 | err_alloc_dflt: |
| 6649 | kfree(all); |
| 6650 | err_alloc_all: |
| 6651 | return err; |
| 6652 | } |
| 6653 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 6654 | static void __net_exit addrconf_exit_net(struct net *net) |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6655 | { |
| 6656 | #ifdef CONFIG_SYSCTL |
David Ahern | 2345217 | 2017-03-28 14:28:05 -0700 | [diff] [blame] | 6657 | __addrconf_sysctl_unregister(net, net->ipv6.devconf_dflt, |
| 6658 | NETCONFA_IFINDEX_DEFAULT); |
| 6659 | __addrconf_sysctl_unregister(net, net->ipv6.devconf_all, |
| 6660 | NETCONFA_IFINDEX_ALL); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6661 | #endif |
zhuyj | 73cf0e92 | 2014-11-26 10:25:58 +0800 | [diff] [blame] | 6662 | kfree(net->ipv6.devconf_dflt); |
| 6663 | kfree(net->ipv6.devconf_all); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6664 | } |
| 6665 | |
| 6666 | static struct pernet_operations addrconf_ops = { |
| 6667 | .init = addrconf_init_net, |
| 6668 | .exit = addrconf_exit_net, |
| 6669 | }; |
| 6670 | |
Daniel Borkmann | 207895fd3 | 2015-01-29 12:15:03 +0100 | [diff] [blame] | 6671 | static struct rtnl_af_ops inet6_ops __read_mostly = { |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 6672 | .family = AF_INET6, |
| 6673 | .fill_link_af = inet6_fill_link_af, |
| 6674 | .get_link_af_size = inet6_get_link_af_size, |
Daniel Borkmann | 11b1f82 | 2015-02-05 14:39:11 +0100 | [diff] [blame] | 6675 | .validate_link_af = inet6_validate_link_af, |
Daniel Borkmann | f53adae | 2013-04-08 04:01:30 +0000 | [diff] [blame] | 6676 | .set_link_af = inet6_set_link_af, |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 6677 | }; |
| 6678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6679 | /* |
| 6680 | * Init / cleanup code |
| 6681 | */ |
| 6682 | |
| 6683 | int __init addrconf_init(void) |
| 6684 | { |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 6685 | struct inet6_dev *idev; |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 6686 | int i, err; |
YOSHIFUJI Hideaki | 2a8cc6c | 2007-11-14 15:56:23 +0900 | [diff] [blame] | 6687 | |
Stephen Hemminger | e21e846 | 2010-03-20 16:09:01 -0700 | [diff] [blame] | 6688 | err = ipv6_addr_label_init(); |
| 6689 | if (err < 0) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 6690 | pr_crit("%s: cannot initialize default policy table: %d\n", |
| 6691 | __func__, err); |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 6692 | goto out; |
YOSHIFUJI Hideaki | 2a8cc6c | 2007-11-14 15:56:23 +0900 | [diff] [blame] | 6693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6694 | |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 6695 | err = register_pernet_subsys(&addrconf_ops); |
| 6696 | if (err < 0) |
| 6697 | goto out_addrlabel; |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6698 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 6699 | addrconf_wq = create_workqueue("ipv6_addrconf"); |
| 6700 | if (!addrconf_wq) { |
| 6701 | err = -ENOMEM; |
| 6702 | goto out_nowq; |
| 6703 | } |
| 6704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6705 | /* The addrconf netdev notifier requires that loopback_dev |
| 6706 | * has it's ipv6 private information allocated and setup |
| 6707 | * before it can bring up and give link-local addresses |
| 6708 | * to other devices which are up. |
| 6709 | * |
| 6710 | * Unfortunately, loopback_dev is not necessarily the first |
| 6711 | * entry in the global dev_base list of net devices. In fact, |
| 6712 | * it is likely to be the very last entry on that list. |
| 6713 | * So this causes the notifier registry below to try and |
| 6714 | * give link-local addresses to all devices besides loopback_dev |
| 6715 | * first, then loopback_dev, which cases all the non-loopback_dev |
| 6716 | * devices to fail to get a link-local address. |
| 6717 | * |
| 6718 | * So, as a temporary fix, allocate the ipv6 structure for |
| 6719 | * loopback_dev first by hand. |
| 6720 | * Longer term, all of the dependencies ipv6 has upon the loopback |
| 6721 | * device and it being up should be removed. |
| 6722 | */ |
| 6723 | rtnl_lock(); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 6724 | idev = ipv6_add_dev(init_net.loopback_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6725 | rtnl_unlock(); |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 6726 | if (IS_ERR(idev)) { |
| 6727 | err = PTR_ERR(idev); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6728 | goto errlo; |
WANG Cong | a317a2f | 2014-07-25 15:25:09 -0700 | [diff] [blame] | 6729 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6730 | |
WANG Cong | 2f46093 | 2017-05-03 22:07:31 -0700 | [diff] [blame] | 6731 | ip6_route_init_special_entries(); |
| 6732 | |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 6733 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
| 6734 | INIT_HLIST_HEAD(&inet6_addr_lst[i]); |
| 6735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6736 | register_netdevice_notifier(&ipv6_dev_notf); |
| 6737 | |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 6738 | addrconf_verify(); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 6739 | |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 6740 | rtnl_af_register(&inet6_ops); |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 6741 | |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 6742 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETLINK, |
| 6743 | NULL, inet6_dump_ifinfo, 0); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 6744 | if (err < 0) |
| 6745 | goto errout; |
| 6746 | |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 6747 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWADDR, |
| 6748 | inet6_rtm_newaddr, NULL, 0); |
| 6749 | if (err < 0) |
| 6750 | goto errout; |
| 6751 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELADDR, |
| 6752 | inet6_rtm_deladdr, NULL, 0); |
| 6753 | if (err < 0) |
| 6754 | goto errout; |
| 6755 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETADDR, |
| 6756 | inet6_rtm_getaddr, inet6_dump_ifaddr, |
| 6757 | RTNL_FLAG_DOIT_UNLOCKED); |
| 6758 | if (err < 0) |
| 6759 | goto errout; |
| 6760 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETMULTICAST, |
| 6761 | NULL, inet6_dump_ifmcaddr, 0); |
| 6762 | if (err < 0) |
| 6763 | goto errout; |
| 6764 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETANYCAST, |
| 6765 | NULL, inet6_dump_ifacaddr, 0); |
| 6766 | if (err < 0) |
| 6767 | goto errout; |
| 6768 | err = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETNETCONF, |
| 6769 | inet6_netconf_get_devconf, |
| 6770 | inet6_netconf_dump_devconf, |
| 6771 | RTNL_FLAG_DOIT_UNLOCKED); |
| 6772 | if (err < 0) |
| 6773 | goto errout; |
Florian Westphal | a3fde2a | 2017-12-04 19:19:18 +0100 | [diff] [blame] | 6774 | err = ipv6_addr_label_rtnl_register(); |
| 6775 | if (err < 0) |
| 6776 | goto errout; |
YOSHIFUJI Hideaki | 2a8cc6c | 2007-11-14 15:56:23 +0900 | [diff] [blame] | 6777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6778 | return 0; |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 6779 | errout: |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 6780 | rtnl_unregister_all(PF_INET6); |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 6781 | rtnl_af_unregister(&inet6_ops); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 6782 | unregister_netdevice_notifier(&ipv6_dev_notf); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6783 | errlo: |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 6784 | destroy_workqueue(addrconf_wq); |
| 6785 | out_nowq: |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6786 | unregister_pernet_subsys(&addrconf_ops); |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 6787 | out_addrlabel: |
| 6788 | ipv6_addr_label_cleanup(); |
| 6789 | out: |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 6790 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6791 | } |
| 6792 | |
Daniel Lezcano | 09f7709 | 2007-12-13 05:34:58 -0800 | [diff] [blame] | 6793 | void addrconf_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6794 | { |
Daniel Lezcano | 176c39a | 2009-03-03 01:06:45 -0800 | [diff] [blame] | 6795 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6796 | int i; |
| 6797 | |
| 6798 | unregister_netdevice_notifier(&ipv6_dev_notf); |
Pavel Emelyanov | e0da5a4 | 2008-01-10 17:42:55 -0800 | [diff] [blame] | 6799 | unregister_pernet_subsys(&addrconf_ops); |
Neil Horman | 2cc6d2b | 2010-09-24 09:55:52 +0000 | [diff] [blame] | 6800 | ipv6_addr_label_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6801 | |
Florian Westphal | 5c45121 | 2017-10-04 15:58:49 +0200 | [diff] [blame] | 6802 | rtnl_af_unregister(&inet6_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6803 | |
Florian Westphal | 5c45121 | 2017-10-04 15:58:49 +0200 | [diff] [blame] | 6804 | rtnl_lock(); |
Thomas Graf | b382b19 | 2010-11-16 04:33:57 +0000 | [diff] [blame] | 6805 | |
Daniel Lezcano | 176c39a | 2009-03-03 01:06:45 -0800 | [diff] [blame] | 6806 | /* clean dev list */ |
| 6807 | for_each_netdev(&init_net, dev) { |
| 6808 | if (__in6_dev_get(dev) == NULL) |
| 6809 | continue; |
| 6810 | addrconf_ifdown(dev, 1); |
| 6811 | } |
| 6812 | addrconf_ifdown(init_net.loopback_dev, 2); |
| 6813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6814 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6815 | * Check hash table. |
| 6816 | */ |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 6817 | spin_lock_bh(&addrconf_hash_lock); |
stephen hemminger | c2e2129 | 2010-03-17 20:31:10 +0000 | [diff] [blame] | 6818 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
| 6819 | WARN_ON(!hlist_empty(&inet6_addr_lst[i])); |
stephen hemminger | 5c578aed | 2010-03-17 20:31:11 +0000 | [diff] [blame] | 6820 | spin_unlock_bh(&addrconf_hash_lock); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 6821 | cancel_delayed_work(&addr_chk_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6822 | rtnl_unlock(); |
Hannes Frederic Sowa | c15b1cc | 2014-03-27 18:28:07 +0100 | [diff] [blame] | 6823 | |
| 6824 | destroy_workqueue(addrconf_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6825 | } |