Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
| 3 | * operating system. INET is implemented using the BSD Socket |
| 4 | * interface as the means of communication with the user level. |
| 5 | * |
| 6 | * IPv4 Forwarding Information Base: semantics. |
| 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version |
| 13 | * 2 of the License, or (at your option) any later version. |
| 14 | */ |
| 15 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 16 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/bitops.h> |
| 18 | #include <linux/types.h> |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/jiffies.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/socket.h> |
| 24 | #include <linux/sockios.h> |
| 25 | #include <linux/errno.h> |
| 26 | #include <linux/in.h> |
| 27 | #include <linux/inet.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 28 | #include <linux/inetdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/netdevice.h> |
| 30 | #include <linux/if_arp.h> |
| 31 | #include <linux/proc_fs.h> |
| 32 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 35 | #include <linux/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 37 | #include <net/arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <net/ip.h> |
| 39 | #include <net/protocol.h> |
| 40 | #include <net/route.h> |
| 41 | #include <net/tcp.h> |
| 42 | #include <net/sock.h> |
| 43 | #include <net/ip_fib.h> |
David Ahern | 717a8f5 | 2019-04-05 16:30:32 -0700 | [diff] [blame] | 44 | #include <net/ip6_fib.h> |
Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 45 | #include <net/netlink.h> |
David Ahern | 3c618c1 | 2019-04-20 09:28:20 -0700 | [diff] [blame] | 46 | #include <net/rtnh.h> |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 47 | #include <net/lwtunnel.h> |
Ido Schimmel | 04b1d4e | 2017-08-03 13:28:11 +0200 | [diff] [blame] | 48 | #include <net/fib_notifier.h> |
David Ahern | c0a7207 | 2019-04-02 14:11:58 -0700 | [diff] [blame] | 49 | #include <net/addrconf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | #include "fib_lookup.h" |
| 52 | |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 53 | static DEFINE_SPINLOCK(fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | static struct hlist_head *fib_info_hash; |
| 55 | static struct hlist_head *fib_info_laddrhash; |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 56 | static unsigned int fib_info_hash_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | static unsigned int fib_info_cnt; |
| 58 | |
| 59 | #define DEVINDEX_HASHBITS 8 |
| 60 | #define DEVINDEX_HASHSIZE (1U << DEVINDEX_HASHBITS) |
| 61 | static struct hlist_head fib_info_devhash[DEVINDEX_HASHSIZE]; |
| 62 | |
| 63 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 65 | #define for_nexthops(fi) { \ |
| 66 | int nhsel; const struct fib_nh *nh; \ |
| 67 | for (nhsel = 0, nh = (fi)->fib_nh; \ |
| 68 | nhsel < (fi)->fib_nhs; \ |
| 69 | nh++, nhsel++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 71 | #define change_nexthops(fi) { \ |
| 72 | int nhsel; struct fib_nh *nexthop_nh; \ |
| 73 | for (nhsel = 0, nexthop_nh = (struct fib_nh *)((fi)->fib_nh); \ |
| 74 | nhsel < (fi)->fib_nhs; \ |
| 75 | nexthop_nh++, nhsel++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | #else /* CONFIG_IP_ROUTE_MULTIPATH */ |
| 78 | |
| 79 | /* Hope, that gcc will optimize it to get rid of dummy loop */ |
| 80 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 81 | #define for_nexthops(fi) { \ |
| 82 | int nhsel; const struct fib_nh *nh = (fi)->fib_nh; \ |
| 83 | for (nhsel = 0; nhsel < 1; nhsel++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 85 | #define change_nexthops(fi) { \ |
| 86 | int nhsel; \ |
| 87 | struct fib_nh *nexthop_nh = (struct fib_nh *)((fi)->fib_nh); \ |
| 88 | for (nhsel = 0; nhsel < 1; nhsel++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | #endif /* CONFIG_IP_ROUTE_MULTIPATH */ |
| 91 | |
| 92 | #define endfor_nexthops(fi) } |
| 93 | |
| 94 | |
David S. Miller | 3be0686 | 2011-03-07 15:01:10 -0800 | [diff] [blame] | 95 | const struct fib_prop fib_props[RTN_MAX + 1] = { |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 96 | [RTN_UNSPEC] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | .error = 0, |
| 98 | .scope = RT_SCOPE_NOWHERE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 99 | }, |
| 100 | [RTN_UNICAST] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | .error = 0, |
| 102 | .scope = RT_SCOPE_UNIVERSE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 103 | }, |
| 104 | [RTN_LOCAL] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | .error = 0, |
| 106 | .scope = RT_SCOPE_HOST, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 107 | }, |
| 108 | [RTN_BROADCAST] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | .error = 0, |
| 110 | .scope = RT_SCOPE_LINK, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 111 | }, |
| 112 | [RTN_ANYCAST] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | .error = 0, |
| 114 | .scope = RT_SCOPE_LINK, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 115 | }, |
| 116 | [RTN_MULTICAST] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .error = 0, |
| 118 | .scope = RT_SCOPE_UNIVERSE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 119 | }, |
| 120 | [RTN_BLACKHOLE] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | .error = -EINVAL, |
| 122 | .scope = RT_SCOPE_UNIVERSE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 123 | }, |
| 124 | [RTN_UNREACHABLE] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | .error = -EHOSTUNREACH, |
| 126 | .scope = RT_SCOPE_UNIVERSE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 127 | }, |
| 128 | [RTN_PROHIBIT] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | .error = -EACCES, |
| 130 | .scope = RT_SCOPE_UNIVERSE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 131 | }, |
| 132 | [RTN_THROW] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | .error = -EAGAIN, |
| 134 | .scope = RT_SCOPE_UNIVERSE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 135 | }, |
| 136 | [RTN_NAT] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | .error = -EINVAL, |
| 138 | .scope = RT_SCOPE_NOWHERE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 139 | }, |
| 140 | [RTN_XRESOLVE] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | .error = -EINVAL, |
| 142 | .scope = RT_SCOPE_NOWHERE, |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 143 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | }; |
| 145 | |
David S. Miller | c5038a8 | 2012-07-31 15:02:02 -0700 | [diff] [blame] | 146 | static void rt_fibinfo_free(struct rtable __rcu **rtp) |
Eric Dumazet | 54764bb | 2012-07-31 01:08:23 +0000 | [diff] [blame] | 147 | { |
| 148 | struct rtable *rt = rcu_dereference_protected(*rtp, 1); |
| 149 | |
| 150 | if (!rt) |
| 151 | return; |
| 152 | |
| 153 | /* Not even needed : RCU_INIT_POINTER(*rtp, NULL); |
| 154 | * because we waited an RCU grace period before calling |
| 155 | * free_fib_info_rcu() |
| 156 | */ |
| 157 | |
Wei Wang | 95c47f9 | 2017-06-17 10:42:30 -0700 | [diff] [blame] | 158 | dst_dev_put(&rt->dst); |
Wei Wang | b838d5e | 2017-06-17 10:42:32 -0700 | [diff] [blame] | 159 | dst_release_immediate(&rt->dst); |
Eric Dumazet | 54764bb | 2012-07-31 01:08:23 +0000 | [diff] [blame] | 160 | } |
| 161 | |
David Ahern | a5995e7 | 2019-04-30 07:45:50 -0700 | [diff] [blame] | 162 | static void free_nh_exceptions(struct fib_nh_common *nhc) |
David S. Miller | c5038a8 | 2012-07-31 15:02:02 -0700 | [diff] [blame] | 163 | { |
Eric Dumazet | caa4152 | 2014-09-03 22:21:56 -0700 | [diff] [blame] | 164 | struct fnhe_hash_bucket *hash; |
David S. Miller | c5038a8 | 2012-07-31 15:02:02 -0700 | [diff] [blame] | 165 | int i; |
| 166 | |
David Ahern | a5995e7 | 2019-04-30 07:45:50 -0700 | [diff] [blame] | 167 | hash = rcu_dereference_protected(nhc->nhc_exceptions, 1); |
Eric Dumazet | caa4152 | 2014-09-03 22:21:56 -0700 | [diff] [blame] | 168 | if (!hash) |
| 169 | return; |
David S. Miller | c5038a8 | 2012-07-31 15:02:02 -0700 | [diff] [blame] | 170 | for (i = 0; i < FNHE_HASH_SIZE; i++) { |
| 171 | struct fib_nh_exception *fnhe; |
| 172 | |
| 173 | fnhe = rcu_dereference_protected(hash[i].chain, 1); |
| 174 | while (fnhe) { |
| 175 | struct fib_nh_exception *next; |
Stephen Hemminger | 82695b3 | 2018-02-27 15:48:21 -0800 | [diff] [blame] | 176 | |
David S. Miller | c5038a8 | 2012-07-31 15:02:02 -0700 | [diff] [blame] | 177 | next = rcu_dereference_protected(fnhe->fnhe_next, 1); |
| 178 | |
Timo Teräs | 2ffae99 | 2013-06-27 10:27:05 +0300 | [diff] [blame] | 179 | rt_fibinfo_free(&fnhe->fnhe_rth_input); |
| 180 | rt_fibinfo_free(&fnhe->fnhe_rth_output); |
David S. Miller | c5038a8 | 2012-07-31 15:02:02 -0700 | [diff] [blame] | 181 | |
| 182 | kfree(fnhe); |
| 183 | |
| 184 | fnhe = next; |
| 185 | } |
| 186 | } |
| 187 | kfree(hash); |
| 188 | } |
| 189 | |
| 190 | static void rt_fibinfo_free_cpus(struct rtable __rcu * __percpu *rtp) |
Eric Dumazet | d26b3a7 | 2012-07-31 05:45:30 +0000 | [diff] [blame] | 191 | { |
| 192 | int cpu; |
| 193 | |
| 194 | if (!rtp) |
| 195 | return; |
| 196 | |
| 197 | for_each_possible_cpu(cpu) { |
| 198 | struct rtable *rt; |
| 199 | |
| 200 | rt = rcu_dereference_protected(*per_cpu_ptr(rtp, cpu), 1); |
Wei Wang | 0830106 | 2017-06-17 10:42:29 -0700 | [diff] [blame] | 201 | if (rt) { |
Wei Wang | 95c47f9 | 2017-06-17 10:42:30 -0700 | [diff] [blame] | 202 | dst_dev_put(&rt->dst); |
Wei Wang | b838d5e | 2017-06-17 10:42:32 -0700 | [diff] [blame] | 203 | dst_release_immediate(&rt->dst); |
Wei Wang | 0830106 | 2017-06-17 10:42:29 -0700 | [diff] [blame] | 204 | } |
Eric Dumazet | d26b3a7 | 2012-07-31 05:45:30 +0000 | [diff] [blame] | 205 | } |
| 206 | free_percpu(rtp); |
| 207 | } |
| 208 | |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 209 | void fib_nh_common_release(struct fib_nh_common *nhc) |
| 210 | { |
| 211 | if (nhc->nhc_dev) |
| 212 | dev_put(nhc->nhc_dev); |
| 213 | |
| 214 | lwtstate_put(nhc->nhc_lwtstate); |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 215 | rt_fibinfo_free_cpus(nhc->nhc_pcpu_rth_output); |
| 216 | rt_fibinfo_free(&nhc->nhc_rth_input); |
David Ahern | a5995e7 | 2019-04-30 07:45:50 -0700 | [diff] [blame] | 217 | free_nh_exceptions(nhc); |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 218 | } |
| 219 | EXPORT_SYMBOL_GPL(fib_nh_common_release); |
| 220 | |
David Ahern | faa041a | 2019-03-27 20:53:49 -0700 | [diff] [blame] | 221 | void fib_nh_release(struct net *net, struct fib_nh *fib_nh) |
| 222 | { |
| 223 | #ifdef CONFIG_IP_ROUTE_CLASSID |
| 224 | if (fib_nh->nh_tclassid) |
| 225 | net->ipv4.fib_num_tclassid_users--; |
| 226 | #endif |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 227 | fib_nh_common_release(&fib_nh->nh_common); |
David Ahern | faa041a | 2019-03-27 20:53:49 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* Release a nexthop info record */ |
Yan, Zheng | 19c1ea1 | 2011-09-04 20:24:20 +0000 | [diff] [blame] | 231 | static void free_fib_info_rcu(struct rcu_head *head) |
| 232 | { |
| 233 | struct fib_info *fi = container_of(head, struct fib_info, rcu); |
| 234 | |
Yanmin Zhang | e49cc0d | 2012-05-23 15:39:45 +0000 | [diff] [blame] | 235 | change_nexthops(fi) { |
David Ahern | faa041a | 2019-03-27 20:53:49 -0700 | [diff] [blame] | 236 | fib_nh_release(fi->fib_net, nexthop_nh); |
Yanmin Zhang | e49cc0d | 2012-05-23 15:39:45 +0000 | [diff] [blame] | 237 | } endfor_nexthops(fi); |
| 238 | |
David Ahern | cc5f0eb | 2018-10-04 20:07:52 -0700 | [diff] [blame] | 239 | ip_fib_metrics_put(fi->fib_metrics); |
| 240 | |
Yan, Zheng | 19c1ea1 | 2011-09-04 20:24:20 +0000 | [diff] [blame] | 241 | kfree(fi); |
| 242 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
| 244 | void free_fib_info(struct fib_info *fi) |
| 245 | { |
| 246 | if (fi->fib_dead == 0) { |
Joe Perches | 058bd4d | 2012-03-11 18:36:11 +0000 | [diff] [blame] | 247 | pr_warn("Freeing alive fib_info %p\n", fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return; |
| 249 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | fib_info_cnt--; |
David Ahern | faa041a | 2019-03-27 20:53:49 -0700 | [diff] [blame] | 251 | |
Yan, Zheng | 19c1ea1 | 2011-09-04 20:24:20 +0000 | [diff] [blame] | 252 | call_rcu(&fi->rcu, free_fib_info_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
Ido Schimmel | b423cb1 | 2016-12-03 16:44:58 +0100 | [diff] [blame] | 254 | EXPORT_SYMBOL_GPL(free_fib_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
| 256 | void fib_release_info(struct fib_info *fi) |
| 257 | { |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 258 | spin_lock_bh(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | if (fi && --fi->fib_treeref == 0) { |
| 260 | hlist_del(&fi->fib_hash); |
| 261 | if (fi->fib_prefsrc) |
| 262 | hlist_del(&fi->fib_lhash); |
| 263 | change_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 264 | if (!nexthop_nh->fib_nh_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | continue; |
David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 266 | hlist_del(&nexthop_nh->nh_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } endfor_nexthops(fi) |
| 268 | fi->fib_dead = 1; |
| 269 | fib_info_put(fi); |
| 270 | } |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 271 | spin_unlock_bh(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 274 | static inline int nh_comp(const struct fib_info *fi, const struct fib_info *ofi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | { |
| 276 | const struct fib_nh *onh = ofi->fib_nh; |
| 277 | |
| 278 | for_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 279 | if (nh->fib_nh_oif != onh->fib_nh_oif || |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 280 | nh->fib_nh_gw_family != onh->fib_nh_gw_family || |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 281 | nh->fib_nh_scope != onh->fib_nh_scope || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 283 | nh->fib_nh_weight != onh->fib_nh_weight || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | #endif |
Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 285 | #ifdef CONFIG_IP_ROUTE_CLASSID |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | nh->nh_tclassid != onh->nh_tclassid || |
| 287 | #endif |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 288 | lwtunnel_cmp_encap(nh->fib_nh_lws, onh->fib_nh_lws) || |
| 289 | ((nh->fib_nh_flags ^ onh->fib_nh_flags) & ~RTNH_COMPARE_MASK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | return -1; |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 291 | |
| 292 | if (nh->fib_nh_gw_family == AF_INET && |
| 293 | nh->fib_nh_gw4 != onh->fib_nh_gw4) |
| 294 | return -1; |
| 295 | |
| 296 | if (nh->fib_nh_gw_family == AF_INET6 && |
| 297 | ipv6_addr_cmp(&nh->fib_nh_gw6, &onh->fib_nh_gw6)) |
| 298 | return -1; |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | onh++; |
| 301 | } endfor_nexthops(fi); |
| 302 | return 0; |
| 303 | } |
| 304 | |
David S. Miller | 88ebc72 | 2008-01-12 21:49:01 -0800 | [diff] [blame] | 305 | static inline unsigned int fib_devindex_hashfn(unsigned int val) |
| 306 | { |
| 307 | unsigned int mask = DEVINDEX_HASHSIZE - 1; |
| 308 | |
| 309 | return (val ^ |
| 310 | (val >> DEVINDEX_HASHBITS) ^ |
| 311 | (val >> (DEVINDEX_HASHBITS * 2))) & mask; |
| 312 | } |
| 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | static inline unsigned int fib_info_hashfn(const struct fib_info *fi) |
| 315 | { |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 316 | unsigned int mask = (fib_info_hash_size - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | unsigned int val = fi->fib_nhs; |
| 318 | |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 319 | val ^= (fi->fib_protocol << 8) | fi->fib_scope; |
Al Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 320 | val ^= (__force u32)fi->fib_prefsrc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | val ^= fi->fib_priority; |
David S. Miller | 88ebc72 | 2008-01-12 21:49:01 -0800 | [diff] [blame] | 322 | for_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 323 | val ^= fib_devindex_hashfn(nh->fib_nh_oif); |
David S. Miller | 88ebc72 | 2008-01-12 21:49:01 -0800 | [diff] [blame] | 324 | } endfor_nexthops(fi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | return (val ^ (val >> 7) ^ (val >> 12)) & mask; |
| 327 | } |
| 328 | |
| 329 | static struct fib_info *fib_find_info(const struct fib_info *nfi) |
| 330 | { |
| 331 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | struct fib_info *fi; |
| 333 | unsigned int hash; |
| 334 | |
| 335 | hash = fib_info_hashfn(nfi); |
| 336 | head = &fib_info_hash[hash]; |
| 337 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 338 | hlist_for_each_entry(fi, head, fib_hash) { |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 339 | if (!net_eq(fi->fib_net, nfi->fib_net)) |
Denis V. Lunev | 4814bdb | 2008-01-31 18:50:07 -0800 | [diff] [blame] | 340 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | if (fi->fib_nhs != nfi->fib_nhs) |
| 342 | continue; |
| 343 | if (nfi->fib_protocol == fi->fib_protocol && |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 344 | nfi->fib_scope == fi->fib_scope && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | nfi->fib_prefsrc == fi->fib_prefsrc && |
| 346 | nfi->fib_priority == fi->fib_priority && |
Eric Dumazet | f4ef85b | 2012-10-04 01:25:26 +0000 | [diff] [blame] | 347 | nfi->fib_type == fi->fib_type && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | memcmp(nfi->fib_metrics, fi->fib_metrics, |
Eric Dumazet | fcd13f4 | 2011-03-24 07:01:24 +0000 | [diff] [blame] | 349 | sizeof(u32) * RTAX_MAX) == 0 && |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 350 | !((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_COMPARE_MASK) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0)) |
| 352 | return fi; |
| 353 | } |
| 354 | |
| 355 | return NULL; |
| 356 | } |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | /* Check, that the gateway is already configured. |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 359 | * Used only by redirect accept routine. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | */ |
Al Viro | d878e72e | 2006-09-26 22:18:13 -0700 | [diff] [blame] | 361 | int ip_fib_check_default(__be32 gw, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
| 363 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | struct fib_nh *nh; |
| 365 | unsigned int hash; |
| 366 | |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 367 | spin_lock(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
| 369 | hash = fib_devindex_hashfn(dev->ifindex); |
| 370 | head = &fib_info_devhash[hash]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 371 | hlist_for_each_entry(nh, head, nh_hash) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 372 | if (nh->fib_nh_dev == dev && |
| 373 | nh->fib_nh_gw4 == gw && |
| 374 | !(nh->fib_nh_flags & RTNH_F_DEAD)) { |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 375 | spin_unlock(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | return 0; |
| 377 | } |
| 378 | } |
| 379 | |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 380 | spin_unlock(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | return -1; |
| 383 | } |
| 384 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 385 | static inline size_t fib_nlmsg_size(struct fib_info *fi) |
| 386 | { |
| 387 | size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg)) |
| 388 | + nla_total_size(4) /* RTA_TABLE */ |
| 389 | + nla_total_size(4) /* RTA_DST */ |
| 390 | + nla_total_size(4) /* RTA_PRIORITY */ |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 391 | + nla_total_size(4) /* RTA_PREFSRC */ |
| 392 | + nla_total_size(TCP_CA_NAME_MAX); /* RTAX_CC_ALGO */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 393 | |
| 394 | /* space for nested metrics */ |
| 395 | payload += nla_total_size((RTAX_MAX * nla_total_size(4))); |
| 396 | |
| 397 | if (fi->fib_nhs) { |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 398 | size_t nh_encapsize = 0; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 399 | /* Also handles the special case fib_nhs == 1 */ |
| 400 | |
| 401 | /* each nexthop is packed in an attribute */ |
| 402 | size_t nhsize = nla_total_size(sizeof(struct rtnexthop)); |
| 403 | |
| 404 | /* may contain flow and gateway attribute */ |
| 405 | nhsize += 2 * nla_total_size(4); |
| 406 | |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 407 | /* grab encap info */ |
| 408 | for_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 409 | if (nh->fib_nh_lws) { |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 410 | /* RTA_ENCAP_TYPE */ |
| 411 | nh_encapsize += lwtunnel_get_encap_size( |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 412 | nh->fib_nh_lws); |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 413 | /* RTA_ENCAP */ |
| 414 | nh_encapsize += nla_total_size(2); |
| 415 | } |
| 416 | } endfor_nexthops(fi); |
| 417 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 418 | /* all nexthops are packed in a nested attribute */ |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 419 | payload += nla_total_size((fi->fib_nhs * nhsize) + |
| 420 | nh_encapsize); |
| 421 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | return payload; |
| 425 | } |
| 426 | |
Al Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 427 | void rtmsg_fib(int event, __be32 key, struct fib_alias *fa, |
Joe Perches | 9877b25 | 2013-10-17 13:34:11 -0700 | [diff] [blame] | 428 | int dst_len, u32 tb_id, const struct nl_info *info, |
Milan Kocian | b8f5583 | 2007-05-23 14:55:06 -0700 | [diff] [blame] | 429 | unsigned int nlm_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
| 431 | struct sk_buff *skb; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 432 | u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; |
Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 433 | int err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 435 | skb = nlmsg_new(fib_nlmsg_size(fa->fa_info), GFP_KERNEL); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 436 | if (!skb) |
Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 437 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 439 | err = fib_dump_info(skb, info->portid, seq, event, tb_id, |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 440 | fa->fa_type, key, dst_len, |
Milan Kocian | b8f5583 | 2007-05-23 14:55:06 -0700 | [diff] [blame] | 441 | fa->fa_tos, fa->fa_info, nlm_flags); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 442 | if (err < 0) { |
| 443 | /* -EMSGSIZE implies BUG in fib_nlmsg_size() */ |
| 444 | WARN_ON(err == -EMSGSIZE); |
| 445 | kfree_skb(skb); |
| 446 | goto errout; |
| 447 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 448 | rtnl_notify(skb, info->nl_net, info->portid, RTNLGRP_IPV4_ROUTE, |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 449 | info->nlh, GFP_KERNEL); |
| 450 | return; |
Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 451 | errout: |
| 452 | if (err < 0) |
Denis V. Lunev | 4d1169c | 2008-01-10 03:26:13 -0800 | [diff] [blame] | 453 | rtnl_set_sk_err(info->nl_net, RTNLGRP_IPV4_ROUTE, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Stephen Hemminger | c9cb6b6 | 2013-12-28 11:05:36 -0800 | [diff] [blame] | 456 | static int fib_detect_death(struct fib_info *fi, int order, |
| 457 | struct fib_info **last_resort, int *last_idx, |
| 458 | int dflt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | { |
David Ahern | 619d182 | 2019-04-05 16:30:37 -0700 | [diff] [blame] | 460 | const struct fib_nh_common *nhc = fib_info_nhc(fi, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | struct neighbour *n; |
| 462 | int state = NUD_NONE; |
| 463 | |
David Ahern | 619d182 | 2019-04-05 16:30:37 -0700 | [diff] [blame] | 464 | if (likely(nhc->nhc_gw_family == AF_INET)) |
| 465 | n = neigh_lookup(&arp_tbl, &nhc->nhc_gw.ipv4, nhc->nhc_dev); |
| 466 | else if (nhc->nhc_gw_family == AF_INET6) |
| 467 | n = neigh_lookup(ipv6_stub->nd_tbl, &nhc->nhc_gw.ipv6, |
| 468 | nhc->nhc_dev); |
| 469 | else |
| 470 | n = NULL; |
| 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | if (n) { |
| 473 | state = n->nud_state; |
| 474 | neigh_release(n); |
Julian Anastasov | 88f6432 | 2015-07-23 10:39:35 +0300 | [diff] [blame] | 475 | } else { |
| 476 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | } |
Jianjun Kong | d9319100 | 2008-11-03 00:23:42 -0800 | [diff] [blame] | 478 | if (state == NUD_REACHABLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | return 0; |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 480 | if ((state & NUD_VALID) && order != dflt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | return 0; |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 482 | if ((state & NUD_VALID) || |
Julian Anastasov | 88f6432 | 2015-07-23 10:39:35 +0300 | [diff] [blame] | 483 | (*last_idx < 0 && order > dflt && state != NUD_INCOMPLETE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | *last_resort = fi; |
| 485 | *last_idx = order; |
| 486 | } |
| 487 | return 1; |
| 488 | } |
| 489 | |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 490 | int fib_nh_common_init(struct fib_nh_common *nhc, struct nlattr *encap, |
| 491 | u16 encap_type, void *cfg, gfp_t gfp_flags, |
| 492 | struct netlink_ext_ack *extack) |
| 493 | { |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 494 | int err; |
| 495 | |
| 496 | nhc->nhc_pcpu_rth_output = alloc_percpu_gfp(struct rtable __rcu *, |
| 497 | gfp_flags); |
| 498 | if (!nhc->nhc_pcpu_rth_output) |
| 499 | return -ENOMEM; |
| 500 | |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 501 | if (encap) { |
| 502 | struct lwtunnel_state *lwtstate; |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 503 | |
| 504 | if (encap_type == LWTUNNEL_ENCAP_NONE) { |
| 505 | NL_SET_ERR_MSG(extack, "LWT encap type not specified"); |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 506 | err = -EINVAL; |
| 507 | goto lwt_failure; |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 508 | } |
| 509 | err = lwtunnel_build_state(encap_type, encap, nhc->nhc_family, |
| 510 | cfg, &lwtstate, extack); |
| 511 | if (err) |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 512 | goto lwt_failure; |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 513 | |
| 514 | nhc->nhc_lwtstate = lwtstate_get(lwtstate); |
| 515 | } |
| 516 | |
| 517 | return 0; |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 518 | |
| 519 | lwt_failure: |
| 520 | rt_fibinfo_free_cpus(nhc->nhc_pcpu_rth_output); |
| 521 | nhc->nhc_pcpu_rth_output = NULL; |
| 522 | return err; |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 523 | } |
| 524 | EXPORT_SYMBOL_GPL(fib_nh_common_init); |
| 525 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 526 | int fib_nh_init(struct net *net, struct fib_nh *nh, |
| 527 | struct fib_config *cfg, int nh_weight, |
| 528 | struct netlink_ext_ack *extack) |
| 529 | { |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 530 | int err; |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 531 | |
David Ahern | f174173 | 2019-03-27 20:53:57 -0700 | [diff] [blame] | 532 | nh->fib_nh_family = AF_INET; |
| 533 | |
David Ahern | 979e276 | 2019-03-27 20:53:58 -0700 | [diff] [blame] | 534 | err = fib_nh_common_init(&nh->nh_common, cfg->fc_encap, |
| 535 | cfg->fc_encap_type, cfg, GFP_KERNEL, extack); |
| 536 | if (err) |
David Ahern | 0f457a3 | 2019-04-30 07:45:48 -0700 | [diff] [blame] | 537 | return err; |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 538 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 539 | nh->fib_nh_oif = cfg->fc_oif; |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 540 | nh->fib_nh_gw_family = cfg->fc_gw_family; |
| 541 | if (cfg->fc_gw_family == AF_INET) |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 542 | nh->fib_nh_gw4 = cfg->fc_gw4; |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 543 | else if (cfg->fc_gw_family == AF_INET6) |
| 544 | nh->fib_nh_gw6 = cfg->fc_gw6; |
| 545 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 546 | nh->fib_nh_flags = cfg->fc_flags; |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 547 | |
| 548 | #ifdef CONFIG_IP_ROUTE_CLASSID |
| 549 | nh->nh_tclassid = cfg->fc_flow; |
| 550 | if (nh->nh_tclassid) |
| 551 | net->ipv4.fib_num_tclassid_users++; |
| 552 | #endif |
| 553 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 554 | nh->fib_nh_weight = nh_weight; |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 555 | #endif |
| 556 | return 0; |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 557 | } |
| 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
| 560 | |
David Ahern | 6d8422a1 | 2017-05-21 10:12:02 -0600 | [diff] [blame] | 561 | static int fib_count_nexthops(struct rtnexthop *rtnh, int remaining, |
| 562 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
| 564 | int nhs = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 566 | while (rtnh_ok(rtnh, remaining)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | nhs++; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 568 | rtnh = rtnh_next(rtnh, &remaining); |
| 569 | } |
| 570 | |
| 571 | /* leftover implies invalid nexthop configuration, discard it */ |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 572 | if (remaining > 0) { |
| 573 | NL_SET_ERR_MSG(extack, |
| 574 | "Invalid nexthop configuration - extra data after nexthops"); |
| 575 | nhs = 0; |
| 576 | } |
| 577 | |
| 578 | return nhs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | } |
| 580 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 581 | static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, |
David Ahern | 6d8422a1 | 2017-05-21 10:12:02 -0600 | [diff] [blame] | 582 | int remaining, struct fib_config *cfg, |
| 583 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | { |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 585 | struct net *net = fi->fib_net; |
| 586 | struct fib_config fib_cfg; |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 587 | int ret; |
| 588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | change_nexthops(fi) { |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 590 | int attrlen; |
| 591 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 592 | memset(&fib_cfg, 0, sizeof(fib_cfg)); |
| 593 | |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 594 | if (!rtnh_ok(rtnh, remaining)) { |
| 595 | NL_SET_ERR_MSG(extack, |
| 596 | "Invalid nexthop configuration - extra data after nexthop"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | return -EINVAL; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 598 | } |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 599 | |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 600 | if (rtnh->rtnh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN)) { |
| 601 | NL_SET_ERR_MSG(extack, |
| 602 | "Invalid flags for nexthop - can not contain DEAD or LINKDOWN"); |
Julian Anastasov | 8061022 | 2016-07-10 21:11:55 +0300 | [diff] [blame] | 603 | return -EINVAL; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 604 | } |
Julian Anastasov | 8061022 | 2016-07-10 21:11:55 +0300 | [diff] [blame] | 605 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 606 | fib_cfg.fc_flags = (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags; |
| 607 | fib_cfg.fc_oif = rtnh->rtnh_ifindex; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 608 | |
| 609 | attrlen = rtnh_attrlen(rtnh); |
| 610 | if (attrlen > 0) { |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 611 | struct nlattr *nla, *nlav, *attrs = rtnh_attrs(rtnh); |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 612 | |
| 613 | nla = nla_find(attrs, attrlen, RTA_GATEWAY); |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 614 | nlav = nla_find(attrs, attrlen, RTA_VIA); |
| 615 | if (nla && nlav) { |
| 616 | NL_SET_ERR_MSG(extack, |
| 617 | "Nexthop configuration can not contain both GATEWAY and VIA"); |
| 618 | return -EINVAL; |
| 619 | } |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 620 | if (nla) { |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 621 | fib_cfg.fc_gw4 = nla_get_in_addr(nla); |
David Ahern | d73f80f | 2019-04-10 10:05:51 -0700 | [diff] [blame] | 622 | if (fib_cfg.fc_gw4) |
| 623 | fib_cfg.fc_gw_family = AF_INET; |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 624 | } else if (nlav) { |
| 625 | ret = fib_gw_from_via(&fib_cfg, nlav, extack); |
| 626 | if (ret) |
| 627 | goto errout; |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 628 | } |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 629 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 630 | nla = nla_find(attrs, attrlen, RTA_FLOW); |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 631 | if (nla) |
| 632 | fib_cfg.fc_flow = nla_get_u32(nla); |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 633 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 634 | fib_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); |
| 635 | nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); |
| 636 | if (nla) |
| 637 | fib_cfg.fc_encap_type = nla_get_u16(nla); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 639 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 640 | ret = fib_nh_init(net, nexthop_nh, &fib_cfg, |
| 641 | rtnh->rtnh_hops + 1, extack); |
| 642 | if (ret) |
| 643 | goto errout; |
| 644 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 645 | rtnh = rtnh_next(rtnh, &remaining); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } endfor_nexthops(fi); |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 647 | |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 648 | ret = -EINVAL; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 649 | if (cfg->fc_oif && fi->fib_nh->fib_nh_oif != cfg->fc_oif) { |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 650 | NL_SET_ERR_MSG(extack, |
| 651 | "Nexthop device index does not match RTA_OIF"); |
| 652 | goto errout; |
| 653 | } |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 654 | if (cfg->fc_gw_family) { |
| 655 | if (cfg->fc_gw_family != fi->fib_nh->fib_nh_gw_family || |
| 656 | (cfg->fc_gw_family == AF_INET && |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 657 | fi->fib_nh->fib_nh_gw4 != cfg->fc_gw4) || |
| 658 | (cfg->fc_gw_family == AF_INET6 && |
| 659 | ipv6_addr_cmp(&fi->fib_nh->fib_nh_gw6, &cfg->fc_gw6))) { |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 660 | NL_SET_ERR_MSG(extack, |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 661 | "Nexthop gateway does not match RTA_GATEWAY or RTA_VIA"); |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 662 | goto errout; |
| 663 | } |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 664 | } |
| 665 | #ifdef CONFIG_IP_ROUTE_CLASSID |
| 666 | if (cfg->fc_flow && fi->fib_nh->nh_tclassid != cfg->fc_flow) { |
| 667 | NL_SET_ERR_MSG(extack, |
| 668 | "Nexthop class id does not match RTA_FLOW"); |
| 669 | goto errout; |
| 670 | } |
| 671 | #endif |
| 672 | ret = 0; |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 673 | errout: |
| 674 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 677 | static void fib_rebalance(struct fib_info *fi) |
| 678 | { |
| 679 | int total; |
| 680 | int w; |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 681 | |
| 682 | if (fi->fib_nhs < 2) |
| 683 | return; |
| 684 | |
| 685 | total = 0; |
| 686 | for_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 687 | if (nh->fib_nh_flags & RTNH_F_DEAD) |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 688 | continue; |
| 689 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 690 | if (ip_ignore_linkdown(nh->fib_nh_dev) && |
| 691 | nh->fib_nh_flags & RTNH_F_LINKDOWN) |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 692 | continue; |
| 693 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 694 | total += nh->fib_nh_weight; |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 695 | } endfor_nexthops(fi); |
| 696 | |
| 697 | w = 0; |
| 698 | change_nexthops(fi) { |
| 699 | int upper_bound; |
| 700 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 701 | if (nexthop_nh->fib_nh_flags & RTNH_F_DEAD) { |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 702 | upper_bound = -1; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 703 | } else if (ip_ignore_linkdown(nexthop_nh->fib_nh_dev) && |
| 704 | nexthop_nh->fib_nh_flags & RTNH_F_LINKDOWN) { |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 705 | upper_bound = -1; |
| 706 | } else { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 707 | w += nexthop_nh->fib_nh_weight; |
Peter Nørlund | 0a837fe | 2015-10-06 07:24:47 +0200 | [diff] [blame] | 708 | upper_bound = DIV_ROUND_CLOSEST_ULL((u64)w << 31, |
| 709 | total) - 1; |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 710 | } |
| 711 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 712 | atomic_set(&nexthop_nh->fib_nh_upper_bound, upper_bound); |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 713 | } endfor_nexthops(fi); |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 714 | } |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 715 | #else /* CONFIG_IP_ROUTE_MULTIPATH */ |
| 716 | |
David Ahern | 8373c6c | 2019-03-27 20:53:46 -0700 | [diff] [blame] | 717 | static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, |
| 718 | int remaining, struct fib_config *cfg, |
| 719 | struct netlink_ext_ack *extack) |
| 720 | { |
| 721 | NL_SET_ERR_MSG(extack, "Multipath support not enabled in kernel"); |
| 722 | |
| 723 | return -EINVAL; |
| 724 | } |
| 725 | |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 726 | #define fib_rebalance(fi) do { } while (0) |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 727 | |
| 728 | #endif /* CONFIG_IP_ROUTE_MULTIPATH */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
David Ahern | 30357d7 | 2017-01-30 12:07:37 -0800 | [diff] [blame] | 730 | static int fib_encap_match(u16 encap_type, |
Ying Xue | e01286e | 2015-08-19 16:04:51 +0800 | [diff] [blame] | 731 | struct nlattr *encap, |
David Ahern | 30357d7 | 2017-01-30 12:07:37 -0800 | [diff] [blame] | 732 | const struct fib_nh *nh, |
David Ahern | 9ae2872 | 2017-05-27 16:19:28 -0600 | [diff] [blame] | 733 | const struct fib_config *cfg, |
| 734 | struct netlink_ext_ack *extack) |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 735 | { |
| 736 | struct lwtunnel_state *lwtstate; |
Jiri Benc | df383e6 | 2015-08-18 18:41:13 +0200 | [diff] [blame] | 737 | int ret, result = 0; |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 738 | |
| 739 | if (encap_type == LWTUNNEL_ENCAP_NONE) |
| 740 | return 0; |
| 741 | |
David Ahern | 9ae2872 | 2017-05-27 16:19:28 -0600 | [diff] [blame] | 742 | ret = lwtunnel_build_state(encap_type, encap, AF_INET, |
| 743 | cfg, &lwtstate, extack); |
Jiri Benc | df383e6 | 2015-08-18 18:41:13 +0200 | [diff] [blame] | 744 | if (!ret) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 745 | result = lwtunnel_cmp_encap(lwtstate, nh->fib_nh_lws); |
Jiri Benc | df383e6 | 2015-08-18 18:41:13 +0200 | [diff] [blame] | 746 | lwtstate_free(lwtstate); |
| 747 | } |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 748 | |
Jiri Benc | df383e6 | 2015-08-18 18:41:13 +0200 | [diff] [blame] | 749 | return result; |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 750 | } |
| 751 | |
David Ahern | 9ae2872 | 2017-05-27 16:19:28 -0600 | [diff] [blame] | 752 | int fib_nh_match(struct fib_config *cfg, struct fib_info *fi, |
| 753 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
| 755 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 756 | struct rtnexthop *rtnh; |
| 757 | int remaining; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | #endif |
| 759 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 760 | if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | return 1; |
| 762 | |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 763 | if (cfg->fc_oif || cfg->fc_gw_family) { |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 764 | if (cfg->fc_encap) { |
David Ahern | 9ae2872 | 2017-05-27 16:19:28 -0600 | [diff] [blame] | 765 | if (fib_encap_match(cfg->fc_encap_type, cfg->fc_encap, |
| 766 | fi->fib_nh, cfg, extack)) |
| 767 | return 1; |
Roopa Prabhu | 571e722 | 2015-07-21 10:43:47 +0200 | [diff] [blame] | 768 | } |
Stefano Brivio | a8c6db1 | 2018-02-15 09:46:03 +0100 | [diff] [blame] | 769 | #ifdef CONFIG_IP_ROUTE_CLASSID |
| 770 | if (cfg->fc_flow && |
| 771 | cfg->fc_flow != fi->fib_nh->nh_tclassid) |
| 772 | return 1; |
| 773 | #endif |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 774 | if ((cfg->fc_oif && cfg->fc_oif != fi->fib_nh->fib_nh_oif) || |
| 775 | (cfg->fc_gw_family && |
| 776 | cfg->fc_gw_family != fi->fib_nh->fib_nh_gw_family)) |
| 777 | return 1; |
| 778 | |
| 779 | if (cfg->fc_gw_family == AF_INET && |
| 780 | cfg->fc_gw4 != fi->fib_nh->fib_nh_gw4) |
| 781 | return 1; |
| 782 | |
David Ahern | a4ea5d4 | 2019-04-05 16:30:30 -0700 | [diff] [blame] | 783 | if (cfg->fc_gw_family == AF_INET6 && |
| 784 | ipv6_addr_cmp(&cfg->fc_gw6, &fi->fib_nh->fib_nh_gw6)) |
| 785 | return 1; |
| 786 | |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 787 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 791 | if (!cfg->fc_mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | return 0; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 793 | |
| 794 | rtnh = cfg->fc_mp; |
| 795 | remaining = cfg->fc_mp_len; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | for_nexthops(fi) { |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 798 | int attrlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 800 | if (!rtnh_ok(rtnh, remaining)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | return -EINVAL; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 802 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 803 | if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->fib_nh_oif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | return 1; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 805 | |
| 806 | attrlen = rtnh_attrlen(rtnh); |
Jiri Pirko | f76936d | 2014-10-13 16:34:10 +0200 | [diff] [blame] | 807 | if (attrlen > 0) { |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 808 | struct nlattr *nla, *nlav, *attrs = rtnh_attrs(rtnh); |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 809 | |
| 810 | nla = nla_find(attrs, attrlen, RTA_GATEWAY); |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 811 | nlav = nla_find(attrs, attrlen, RTA_VIA); |
| 812 | if (nla && nlav) { |
| 813 | NL_SET_ERR_MSG(extack, |
| 814 | "Nexthop configuration can not contain both GATEWAY and VIA"); |
| 815 | return -EINVAL; |
| 816 | } |
| 817 | |
| 818 | if (nla) { |
| 819 | if (nh->fib_nh_gw_family != AF_INET || |
| 820 | nla_get_in_addr(nla) != nh->fib_nh_gw4) |
| 821 | return 1; |
| 822 | } else if (nlav) { |
| 823 | struct fib_config cfg2; |
| 824 | int err; |
| 825 | |
| 826 | err = fib_gw_from_via(&cfg2, nlav, extack); |
| 827 | if (err) |
| 828 | return err; |
| 829 | |
| 830 | switch (nh->fib_nh_gw_family) { |
| 831 | case AF_INET: |
| 832 | if (cfg2.fc_gw_family != AF_INET || |
| 833 | cfg2.fc_gw4 != nh->fib_nh_gw4) |
| 834 | return 1; |
| 835 | break; |
| 836 | case AF_INET6: |
| 837 | if (cfg2.fc_gw_family != AF_INET6 || |
| 838 | ipv6_addr_cmp(&cfg2.fc_gw6, |
| 839 | &nh->fib_nh_gw6)) |
| 840 | return 1; |
| 841 | break; |
| 842 | } |
| 843 | } |
| 844 | |
Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 845 | #ifdef CONFIG_IP_ROUTE_CLASSID |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 846 | nla = nla_find(attrs, attrlen, RTA_FLOW); |
| 847 | if (nla && nla_get_u32(nla) != nh->nh_tclassid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | return 1; |
| 849 | #endif |
| 850 | } |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 851 | |
| 852 | rtnh = rtnh_next(rtnh, &remaining); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } endfor_nexthops(fi); |
| 854 | #endif |
| 855 | return 0; |
| 856 | } |
| 857 | |
Xin Long | 5f9ae3d | 2017-08-23 10:07:26 +0800 | [diff] [blame] | 858 | bool fib_metrics_match(struct fib_config *cfg, struct fib_info *fi) |
| 859 | { |
| 860 | struct nlattr *nla; |
| 861 | int remaining; |
| 862 | |
| 863 | if (!cfg->fc_mx) |
| 864 | return true; |
| 865 | |
| 866 | nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) { |
| 867 | int type = nla_type(nla); |
Phil Sutter | d03a455 | 2017-12-19 15:17:13 +0100 | [diff] [blame] | 868 | u32 fi_val, val; |
Xin Long | 5f9ae3d | 2017-08-23 10:07:26 +0800 | [diff] [blame] | 869 | |
| 870 | if (!type) |
| 871 | continue; |
| 872 | if (type > RTAX_MAX) |
| 873 | return false; |
| 874 | |
| 875 | if (type == RTAX_CC_ALGO) { |
| 876 | char tmp[TCP_CA_NAME_MAX]; |
| 877 | bool ecn_ca = false; |
| 878 | |
| 879 | nla_strlcpy(tmp, nla, sizeof(tmp)); |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 880 | val = tcp_ca_get_key_by_name(fi->fib_net, tmp, &ecn_ca); |
Xin Long | 5f9ae3d | 2017-08-23 10:07:26 +0800 | [diff] [blame] | 881 | } else { |
Eric Dumazet | 5b5e7a0 | 2018-06-05 06:06:19 -0700 | [diff] [blame] | 882 | if (nla_len(nla) != sizeof(u32)) |
| 883 | return false; |
Xin Long | 5f9ae3d | 2017-08-23 10:07:26 +0800 | [diff] [blame] | 884 | val = nla_get_u32(nla); |
| 885 | } |
| 886 | |
Phil Sutter | d03a455 | 2017-12-19 15:17:13 +0100 | [diff] [blame] | 887 | fi_val = fi->fib_metrics->metrics[type - 1]; |
| 888 | if (type == RTAX_FEATURES) |
| 889 | fi_val &= ~DST_FEATURE_ECN_CA; |
| 890 | |
| 891 | if (fi_val != val) |
Xin Long | 5f9ae3d | 2017-08-23 10:07:26 +0800 | [diff] [blame] | 892 | return false; |
| 893 | } |
| 894 | |
| 895 | return true; |
| 896 | } |
| 897 | |
David Ahern | 717a8f5 | 2019-04-05 16:30:32 -0700 | [diff] [blame] | 898 | static int fib_check_nh_v6_gw(struct net *net, struct fib_nh *nh, |
| 899 | u32 table, struct netlink_ext_ack *extack) |
| 900 | { |
| 901 | struct fib6_config cfg = { |
| 902 | .fc_table = table, |
| 903 | .fc_flags = nh->fib_nh_flags | RTF_GATEWAY, |
| 904 | .fc_ifindex = nh->fib_nh_oif, |
| 905 | .fc_gateway = nh->fib_nh_gw6, |
| 906 | }; |
| 907 | struct fib6_nh fib6_nh = {}; |
| 908 | int err; |
| 909 | |
| 910 | err = ipv6_stub->fib6_nh_init(net, &fib6_nh, &cfg, GFP_KERNEL, extack); |
| 911 | if (!err) { |
| 912 | nh->fib_nh_dev = fib6_nh.fib_nh_dev; |
| 913 | dev_hold(nh->fib_nh_dev); |
| 914 | nh->fib_nh_oif = nh->fib_nh_dev->ifindex; |
| 915 | nh->fib_nh_scope = RT_SCOPE_LINK; |
| 916 | |
| 917 | ipv6_stub->fib6_nh_release(&fib6_nh); |
| 918 | } |
| 919 | |
| 920 | return err; |
| 921 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
| 923 | /* |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 924 | * Picture |
| 925 | * ------- |
| 926 | * |
| 927 | * Semantics of nexthop is very messy by historical reasons. |
| 928 | * We have to take into account, that: |
| 929 | * a) gateway can be actually local interface address, |
| 930 | * so that gatewayed route is direct. |
| 931 | * b) gateway must be on-link address, possibly |
| 932 | * described not by an ifaddr, but also by a direct route. |
| 933 | * c) If both gateway and interface are specified, they should not |
| 934 | * contradict. |
| 935 | * d) If we use tunnel routes, gateway could be not on-link. |
| 936 | * |
| 937 | * Attempt to reconcile all of these (alas, self-contradictory) conditions |
| 938 | * results in pretty ugly and hairy code with obscure logic. |
| 939 | * |
| 940 | * I chose to generalized it instead, so that the size |
| 941 | * of code does not increase practically, but it becomes |
| 942 | * much more general. |
| 943 | * Every prefix is assigned a "scope" value: "host" is local address, |
| 944 | * "link" is direct route, |
| 945 | * [ ... "site" ... "interior" ... ] |
| 946 | * and "universe" is true gateway route with global meaning. |
| 947 | * |
| 948 | * Every prefix refers to a set of "nexthop"s (gw, oif), |
| 949 | * where gw must have narrower scope. This recursion stops |
| 950 | * when gw has LOCAL scope or if "nexthop" is declared ONLINK, |
| 951 | * which means that gw is forced to be on link. |
| 952 | * |
| 953 | * Code is still hairy, but now it is apparently logically |
| 954 | * consistent and very flexible. F.e. as by-product it allows |
| 955 | * to co-exists in peace independent exterior and interior |
| 956 | * routing processes. |
| 957 | * |
| 958 | * Normally it looks as following. |
| 959 | * |
| 960 | * {universe prefix} -> (gw, oif) [scope link] |
| 961 | * | |
| 962 | * |-> {link prefix} -> (gw, oif) [scope local] |
| 963 | * | |
| 964 | * |-> {local prefix} (terminal node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | */ |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 966 | static int fib_check_nh_v4_gw(struct net *net, struct fib_nh *nh, u32 table, |
| 967 | u8 scope, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | { |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 969 | struct net_device *dev; |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 970 | struct fib_result res; |
| 971 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 973 | if (nh->fib_nh_flags & RTNH_F_ONLINK) { |
| 974 | unsigned int addr_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 976 | if (scope >= RT_SCOPE_LINK) { |
| 977 | NL_SET_ERR_MSG(extack, "Nexthop has invalid scope"); |
| 978 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | } |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 980 | dev = __dev_get_by_index(net, nh->fib_nh_oif); |
| 981 | if (!dev) { |
| 982 | NL_SET_ERR_MSG(extack, "Nexthop device required for onlink"); |
| 983 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 985 | if (!(dev->flags & IFF_UP)) { |
| 986 | NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
| 987 | return -ENETDOWN; |
| 988 | } |
| 989 | addr_type = inet_addr_type_dev_table(net, dev, nh->fib_nh_gw4); |
| 990 | if (addr_type != RTN_UNICAST) { |
| 991 | NL_SET_ERR_MSG(extack, "Nexthop has invalid gateway"); |
| 992 | return -EINVAL; |
| 993 | } |
| 994 | if (!netif_carrier_ok(dev)) |
| 995 | nh->fib_nh_flags |= RTNH_F_LINKDOWN; |
| 996 | nh->fib_nh_dev = dev; |
| 997 | dev_hold(dev); |
| 998 | nh->fib_nh_scope = RT_SCOPE_LINK; |
| 999 | return 0; |
| 1000 | } |
| 1001 | rcu_read_lock(); |
| 1002 | { |
| 1003 | struct fib_table *tbl = NULL; |
| 1004 | struct flowi4 fl4 = { |
| 1005 | .daddr = nh->fib_nh_gw4, |
| 1006 | .flowi4_scope = scope + 1, |
| 1007 | .flowi4_oif = nh->fib_nh_oif, |
| 1008 | .flowi4_iif = LOOPBACK_IFINDEX, |
| 1009 | }; |
| 1010 | |
| 1011 | /* It is not necessary, but requires a bit of thinking */ |
| 1012 | if (fl4.flowi4_scope < RT_SCOPE_LINK) |
| 1013 | fl4.flowi4_scope = RT_SCOPE_LINK; |
| 1014 | |
| 1015 | if (table) |
| 1016 | tbl = fib_get_table(net, table); |
| 1017 | |
| 1018 | if (tbl) |
| 1019 | err = fib_table_lookup(tbl, &fl4, &res, |
| 1020 | FIB_LOOKUP_IGNORE_LINKSTATE | |
| 1021 | FIB_LOOKUP_NOREF); |
| 1022 | |
| 1023 | /* on error or if no table given do full lookup. This |
| 1024 | * is needed for example when nexthops are in the local |
| 1025 | * table rather than the given table |
| 1026 | */ |
| 1027 | if (!tbl || err) { |
| 1028 | err = fib_lookup(net, &fl4, &res, |
| 1029 | FIB_LOOKUP_IGNORE_LINKSTATE); |
| 1030 | } |
| 1031 | |
| 1032 | if (err) { |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1033 | NL_SET_ERR_MSG(extack, "Nexthop has invalid gateway"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | goto out; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1035 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 1037 | |
| 1038 | err = -EINVAL; |
| 1039 | if (res.type != RTN_UNICAST && res.type != RTN_LOCAL) { |
| 1040 | NL_SET_ERR_MSG(extack, "Nexthop has invalid gateway"); |
| 1041 | goto out; |
| 1042 | } |
| 1043 | nh->fib_nh_scope = res.scope; |
| 1044 | nh->fib_nh_oif = FIB_RES_OIF(res); |
| 1045 | nh->fib_nh_dev = dev = FIB_RES_DEV(res); |
| 1046 | if (!dev) { |
| 1047 | NL_SET_ERR_MSG(extack, |
| 1048 | "No egress device for nexthop gateway"); |
| 1049 | goto out; |
| 1050 | } |
| 1051 | dev_hold(dev); |
| 1052 | if (!netif_carrier_ok(dev)) |
| 1053 | nh->fib_nh_flags |= RTNH_F_LINKDOWN; |
| 1054 | err = (dev->flags & IFF_UP) ? 0 : -ENETDOWN; |
Eric Dumazet | 8723e1b | 2010-10-19 00:39:26 +0000 | [diff] [blame] | 1055 | out: |
| 1056 | rcu_read_unlock(); |
| 1057 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 1060 | static int fib_check_nh_nongw(struct net *net, struct fib_nh *nh, |
| 1061 | struct netlink_ext_ack *extack) |
| 1062 | { |
| 1063 | struct in_device *in_dev; |
| 1064 | int err; |
| 1065 | |
| 1066 | if (nh->fib_nh_flags & (RTNH_F_PERVASIVE | RTNH_F_ONLINK)) { |
| 1067 | NL_SET_ERR_MSG(extack, |
| 1068 | "Invalid flags for nexthop - PERVASIVE and ONLINK can not be set"); |
| 1069 | return -EINVAL; |
| 1070 | } |
| 1071 | |
| 1072 | rcu_read_lock(); |
| 1073 | |
| 1074 | err = -ENODEV; |
| 1075 | in_dev = inetdev_by_index(net, nh->fib_nh_oif); |
| 1076 | if (!in_dev) |
| 1077 | goto out; |
| 1078 | err = -ENETDOWN; |
| 1079 | if (!(in_dev->dev->flags & IFF_UP)) { |
| 1080 | NL_SET_ERR_MSG(extack, "Device for nexthop is not up"); |
| 1081 | goto out; |
| 1082 | } |
| 1083 | |
| 1084 | nh->fib_nh_dev = in_dev->dev; |
| 1085 | dev_hold(nh->fib_nh_dev); |
| 1086 | nh->fib_nh_scope = RT_SCOPE_HOST; |
| 1087 | if (!netif_carrier_ok(nh->fib_nh_dev)) |
| 1088 | nh->fib_nh_flags |= RTNH_F_LINKDOWN; |
| 1089 | err = 0; |
| 1090 | out: |
| 1091 | rcu_read_unlock(); |
| 1092 | return err; |
| 1093 | } |
| 1094 | |
David Ahern | ac1fab2 | 2019-05-22 12:04:43 -0700 | [diff] [blame^] | 1095 | int fib_check_nh(struct net *net, struct fib_nh *nh, u32 table, u8 scope, |
| 1096 | struct netlink_ext_ack *extack) |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 1097 | { |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 1098 | int err; |
| 1099 | |
| 1100 | if (nh->fib_nh_gw_family == AF_INET) |
David Ahern | ac1fab2 | 2019-05-22 12:04:43 -0700 | [diff] [blame^] | 1101 | err = fib_check_nh_v4_gw(net, nh, table, scope, extack); |
David Ahern | 717a8f5 | 2019-04-05 16:30:32 -0700 | [diff] [blame] | 1102 | else if (nh->fib_nh_gw_family == AF_INET6) |
| 1103 | err = fib_check_nh_v6_gw(net, nh, table, extack); |
David Ahern | 448d724 | 2019-04-05 16:30:31 -0700 | [diff] [blame] | 1104 | else |
| 1105 | err = fib_check_nh_nongw(net, nh, extack); |
| 1106 | |
| 1107 | return err; |
| 1108 | } |
| 1109 | |
Al Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 1110 | static inline unsigned int fib_laddr_hashfn(__be32 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | { |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1112 | unsigned int mask = (fib_info_hash_size - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1114 | return ((__force u32)val ^ |
| 1115 | ((__force u32)val >> 7) ^ |
| 1116 | ((__force u32)val >> 14)) & mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1119 | static struct hlist_head *fib_info_hash_alloc(int bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | { |
| 1121 | if (bytes <= PAGE_SIZE) |
Joonwoo Park | 88f8349 | 2007-11-26 23:29:32 +0800 | [diff] [blame] | 1122 | return kzalloc(bytes, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | else |
| 1124 | return (struct hlist_head *) |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1125 | __get_free_pages(GFP_KERNEL | __GFP_ZERO, |
| 1126 | get_order(bytes)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1129 | static void fib_info_hash_free(struct hlist_head *hash, int bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | { |
| 1131 | if (!hash) |
| 1132 | return; |
| 1133 | |
| 1134 | if (bytes <= PAGE_SIZE) |
| 1135 | kfree(hash); |
| 1136 | else |
| 1137 | free_pages((unsigned long) hash, get_order(bytes)); |
| 1138 | } |
| 1139 | |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1140 | static void fib_info_hash_move(struct hlist_head *new_info_hash, |
| 1141 | struct hlist_head *new_laddrhash, |
| 1142 | unsigned int new_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | { |
David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 1144 | struct hlist_head *old_info_hash, *old_laddrhash; |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1145 | unsigned int old_size = fib_info_hash_size; |
David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 1146 | unsigned int i, bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 1148 | spin_lock_bh(&fib_info_lock); |
David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 1149 | old_info_hash = fib_info_hash; |
| 1150 | old_laddrhash = fib_info_laddrhash; |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1151 | fib_info_hash_size = new_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | |
| 1153 | for (i = 0; i < old_size; i++) { |
| 1154 | struct hlist_head *head = &fib_info_hash[i]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1155 | struct hlist_node *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | struct fib_info *fi; |
| 1157 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1158 | hlist_for_each_entry_safe(fi, n, head, fib_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | struct hlist_head *dest; |
| 1160 | unsigned int new_hash; |
| 1161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | new_hash = fib_info_hashfn(fi); |
| 1163 | dest = &new_info_hash[new_hash]; |
| 1164 | hlist_add_head(&fi->fib_hash, dest); |
| 1165 | } |
| 1166 | } |
| 1167 | fib_info_hash = new_info_hash; |
| 1168 | |
| 1169 | for (i = 0; i < old_size; i++) { |
| 1170 | struct hlist_head *lhead = &fib_info_laddrhash[i]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1171 | struct hlist_node *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | struct fib_info *fi; |
| 1173 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1174 | hlist_for_each_entry_safe(fi, n, lhead, fib_lhash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | struct hlist_head *ldest; |
| 1176 | unsigned int new_hash; |
| 1177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | new_hash = fib_laddr_hashfn(fi->fib_prefsrc); |
| 1179 | ldest = &new_laddrhash[new_hash]; |
| 1180 | hlist_add_head(&fi->fib_lhash, ldest); |
| 1181 | } |
| 1182 | } |
| 1183 | fib_info_laddrhash = new_laddrhash; |
| 1184 | |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 1185 | spin_unlock_bh(&fib_info_lock); |
David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 1186 | |
| 1187 | bytes = old_size * sizeof(struct hlist_head *); |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1188 | fib_info_hash_free(old_info_hash, bytes); |
| 1189 | fib_info_hash_free(old_laddrhash, bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | } |
| 1191 | |
David S. Miller | 436c3b6 | 2011-03-24 17:42:21 -0700 | [diff] [blame] | 1192 | __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh) |
| 1193 | { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1194 | nh->nh_saddr = inet_select_addr(nh->fib_nh_dev, |
| 1195 | nh->fib_nh_gw4, |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 1196 | nh->nh_parent->fib_scope); |
David S. Miller | 436c3b6 | 2011-03-24 17:42:21 -0700 | [diff] [blame] | 1197 | nh->nh_saddr_genid = atomic_read(&net->ipv4.dev_addr_genid); |
| 1198 | |
| 1199 | return nh->nh_saddr; |
| 1200 | } |
| 1201 | |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 1202 | __be32 fib_result_prefsrc(struct net *net, struct fib_result *res) |
| 1203 | { |
| 1204 | struct fib_nh_common *nhc = res->nhc; |
| 1205 | struct fib_nh *nh; |
| 1206 | |
| 1207 | if (res->fi->fib_prefsrc) |
| 1208 | return res->fi->fib_prefsrc; |
| 1209 | |
| 1210 | nh = container_of(nhc, struct fib_nh, nh_common); |
| 1211 | if (nh->nh_saddr_genid == atomic_read(&net->ipv4.dev_addr_genid)) |
| 1212 | return nh->nh_saddr; |
| 1213 | |
| 1214 | return fib_info_update_nh_saddr(net, nh); |
| 1215 | } |
| 1216 | |
David Ahern | 021dd3b | 2015-08-13 14:59:06 -0600 | [diff] [blame] | 1217 | static bool fib_valid_prefsrc(struct fib_config *cfg, __be32 fib_prefsrc) |
| 1218 | { |
| 1219 | if (cfg->fc_type != RTN_LOCAL || !cfg->fc_dst || |
| 1220 | fib_prefsrc != cfg->fc_dst) { |
David Ahern | 9b8ff51 | 2015-09-01 14:26:35 -0600 | [diff] [blame] | 1221 | u32 tb_id = cfg->fc_table; |
David Ahern | e1b8d90 | 2015-11-03 15:59:28 -0800 | [diff] [blame] | 1222 | int rc; |
David Ahern | 021dd3b | 2015-08-13 14:59:06 -0600 | [diff] [blame] | 1223 | |
| 1224 | if (tb_id == RT_TABLE_MAIN) |
| 1225 | tb_id = RT_TABLE_LOCAL; |
| 1226 | |
David Ahern | e1b8d90 | 2015-11-03 15:59:28 -0800 | [diff] [blame] | 1227 | rc = inet_addr_type_table(cfg->fc_nlinfo.nl_net, |
| 1228 | fib_prefsrc, tb_id); |
| 1229 | |
| 1230 | if (rc != RTN_LOCAL && tb_id != RT_TABLE_LOCAL) { |
| 1231 | rc = inet_addr_type_table(cfg->fc_nlinfo.nl_net, |
| 1232 | fib_prefsrc, RT_TABLE_LOCAL); |
David Ahern | 021dd3b | 2015-08-13 14:59:06 -0600 | [diff] [blame] | 1233 | } |
David Ahern | e1b8d90 | 2015-11-03 15:59:28 -0800 | [diff] [blame] | 1234 | |
| 1235 | if (rc != RTN_LOCAL) |
| 1236 | return false; |
David Ahern | 021dd3b | 2015-08-13 14:59:06 -0600 | [diff] [blame] | 1237 | } |
| 1238 | return true; |
| 1239 | } |
| 1240 | |
David Ahern | 6d8422a1 | 2017-05-21 10:12:02 -0600 | [diff] [blame] | 1241 | struct fib_info *fib_create_info(struct fib_config *cfg, |
| 1242 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | { |
| 1244 | int err; |
| 1245 | struct fib_info *fi = NULL; |
| 1246 | struct fib_info *ofi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | int nhs = 1; |
Denis V. Lunev | 7462bd74 | 2008-01-31 18:49:32 -0800 | [diff] [blame] | 1248 | struct net *net = cfg->fc_nlinfo.nl_net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
David S. Miller | 4c8237c | 2011-03-07 14:27:38 -0800 | [diff] [blame] | 1250 | if (cfg->fc_type > RTN_MAX) |
| 1251 | goto err_inval; |
| 1252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | /* Fast check to catch the most weird cases */ |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1254 | if (fib_props[cfg->fc_type].scope > cfg->fc_scope) { |
| 1255 | NL_SET_ERR_MSG(extack, "Invalid scope"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1257 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1259 | if (cfg->fc_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN)) { |
| 1260 | NL_SET_ERR_MSG(extack, |
| 1261 | "Invalid rtm_flags - can not contain DEAD or LINKDOWN"); |
Julian Anastasov | 8061022 | 2016-07-10 21:11:55 +0300 | [diff] [blame] | 1262 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1263 | } |
Julian Anastasov | 8061022 | 2016-07-10 21:11:55 +0300 | [diff] [blame] | 1264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1266 | if (cfg->fc_mp) { |
David Ahern | 6d8422a1 | 2017-05-21 10:12:02 -0600 | [diff] [blame] | 1267 | nhs = fib_count_nexthops(cfg->fc_mp, cfg->fc_mp_len, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | if (nhs == 0) |
| 1269 | goto err_inval; |
| 1270 | } |
| 1271 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | |
| 1273 | err = -ENOBUFS; |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1274 | if (fib_info_cnt >= fib_info_hash_size) { |
| 1275 | unsigned int new_size = fib_info_hash_size << 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | struct hlist_head *new_info_hash; |
| 1277 | struct hlist_head *new_laddrhash; |
| 1278 | unsigned int bytes; |
| 1279 | |
| 1280 | if (!new_size) |
Eric Dumazet | d94ce9b | 2012-10-21 20:12:09 +0000 | [diff] [blame] | 1281 | new_size = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | bytes = new_size * sizeof(struct hlist_head *); |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1283 | new_info_hash = fib_info_hash_alloc(bytes); |
| 1284 | new_laddrhash = fib_info_hash_alloc(bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | if (!new_info_hash || !new_laddrhash) { |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1286 | fib_info_hash_free(new_info_hash, bytes); |
| 1287 | fib_info_hash_free(new_laddrhash, bytes); |
Joonwoo Park | 88f8349 | 2007-11-26 23:29:32 +0800 | [diff] [blame] | 1288 | } else |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1289 | fib_info_hash_move(new_info_hash, new_laddrhash, new_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 1291 | if (!fib_info_hash_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | goto failure; |
| 1293 | } |
| 1294 | |
Gustavo A. R. Silva | 1f533ba | 2019-01-30 18:51:48 -0600 | [diff] [blame] | 1295 | fi = kzalloc(struct_size(fi, fib_nh, nhs), GFP_KERNEL); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1296 | if (!fi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | goto failure; |
David Ahern | 767a221 | 2018-10-04 20:07:51 -0700 | [diff] [blame] | 1298 | fi->fib_metrics = ip_fib_metrics_init(fi->fib_net, cfg->fc_mx, |
David Ahern | d7e774f | 2018-11-06 12:51:15 -0800 | [diff] [blame] | 1299 | cfg->fc_mx_len, extack); |
David Ahern | 767a221 | 2018-10-04 20:07:51 -0700 | [diff] [blame] | 1300 | if (unlikely(IS_ERR(fi->fib_metrics))) { |
| 1301 | err = PTR_ERR(fi->fib_metrics); |
| 1302 | kfree(fi); |
| 1303 | return ERR_PTR(err); |
Eric Dumazet | 187e5b3 | 2017-08-15 05:26:17 -0700 | [diff] [blame] | 1304 | } |
David Ahern | 767a221 | 2018-10-04 20:07:51 -0700 | [diff] [blame] | 1305 | |
Eric Dumazet | 187e5b3 | 2017-08-15 05:26:17 -0700 | [diff] [blame] | 1306 | fib_info_cnt++; |
Eric W. Biederman | efd7ef1 | 2015-03-11 23:04:08 -0500 | [diff] [blame] | 1307 | fi->fib_net = net; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1308 | fi->fib_protocol = cfg->fc_protocol; |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 1309 | fi->fib_scope = cfg->fc_scope; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1310 | fi->fib_flags = cfg->fc_flags; |
| 1311 | fi->fib_priority = cfg->fc_priority; |
| 1312 | fi->fib_prefsrc = cfg->fc_prefsrc; |
Eric Dumazet | f4ef85b | 2012-10-04 01:25:26 +0000 | [diff] [blame] | 1313 | fi->fib_type = cfg->fc_type; |
Mark Tomlinson | 5a56a0b | 2016-09-05 10:20:20 +1200 | [diff] [blame] | 1314 | fi->fib_tb_id = cfg->fc_table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | |
| 1316 | fi->fib_nhs = nhs; |
| 1317 | change_nexthops(fi) { |
David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1318 | nexthop_nh->nh_parent = fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | } endfor_nexthops(fi) |
| 1320 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 1321 | if (cfg->fc_mp) |
David Ahern | 6d8422a1 | 2017-05-21 10:12:02 -0600 | [diff] [blame] | 1322 | err = fib_get_nhs(fi, cfg->fc_mp, cfg->fc_mp_len, cfg, extack); |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 1323 | else |
| 1324 | err = fib_nh_init(net, fi->fib_nh, cfg, 1, extack); |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1325 | |
David Ahern | e4516ef | 2019-03-27 20:53:48 -0700 | [diff] [blame] | 1326 | if (err != 0) |
| 1327 | goto failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1329 | if (fib_props[cfg->fc_type].error) { |
David Ahern | f35b794 | 2019-04-05 16:30:28 -0700 | [diff] [blame] | 1330 | if (cfg->fc_gw_family || cfg->fc_oif || cfg->fc_mp) { |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1331 | NL_SET_ERR_MSG(extack, |
| 1332 | "Gateway, device and multipath can not be specified for this route type"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1334 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | goto link_it; |
David S. Miller | 4c8237c | 2011-03-07 14:27:38 -0800 | [diff] [blame] | 1336 | } else { |
| 1337 | switch (cfg->fc_type) { |
| 1338 | case RTN_UNICAST: |
| 1339 | case RTN_LOCAL: |
| 1340 | case RTN_BROADCAST: |
| 1341 | case RTN_ANYCAST: |
| 1342 | case RTN_MULTICAST: |
| 1343 | break; |
| 1344 | default: |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1345 | NL_SET_ERR_MSG(extack, "Invalid route type"); |
David S. Miller | 4c8237c | 2011-03-07 14:27:38 -0800 | [diff] [blame] | 1346 | goto err_inval; |
| 1347 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | } |
| 1349 | |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1350 | if (cfg->fc_scope > RT_SCOPE_HOST) { |
| 1351 | NL_SET_ERR_MSG(extack, "Invalid scope"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1355 | if (cfg->fc_scope == RT_SCOPE_HOST) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | struct fib_nh *nh = fi->fib_nh; |
| 1357 | |
| 1358 | /* Local address is added. */ |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1359 | if (nhs != 1) { |
| 1360 | NL_SET_ERR_MSG(extack, |
| 1361 | "Route with host scope can not have multiple nexthops"); |
David Ahern | 6d8422a1 | 2017-05-21 10:12:02 -0600 | [diff] [blame] | 1362 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1363 | } |
David Ahern | bdf0046 | 2019-04-05 16:30:26 -0700 | [diff] [blame] | 1364 | if (nh->fib_nh_gw_family) { |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1365 | NL_SET_ERR_MSG(extack, |
| 1366 | "Route with host scope can not have a gateway"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1368 | } |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1369 | nh->fib_nh_scope = RT_SCOPE_NOWHERE; |
| 1370 | nh->fib_nh_dev = dev_get_by_index(net, fi->fib_nh->fib_nh_oif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | err = -ENODEV; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1372 | if (!nh->fib_nh_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | goto failure; |
| 1374 | } else { |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1375 | int linkdown = 0; |
| 1376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | change_nexthops(fi) { |
David Ahern | ac1fab2 | 2019-05-22 12:04:43 -0700 | [diff] [blame^] | 1378 | err = fib_check_nh(cfg->fc_nlinfo.nl_net, nexthop_nh, |
| 1379 | cfg->fc_table, cfg->fc_scope, |
| 1380 | extack); |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1381 | if (err != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | goto failure; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1383 | if (nexthop_nh->fib_nh_flags & RTNH_F_LINKDOWN) |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1384 | linkdown++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | } endfor_nexthops(fi) |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1386 | if (linkdown == fi->fib_nhs) |
| 1387 | fi->fib_flags |= RTNH_F_LINKDOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | } |
| 1389 | |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1390 | if (fi->fib_prefsrc && !fib_valid_prefsrc(cfg, fi->fib_prefsrc)) { |
| 1391 | NL_SET_ERR_MSG(extack, "Invalid prefsrc address"); |
David Ahern | 021dd3b | 2015-08-13 14:59:06 -0600 | [diff] [blame] | 1392 | goto err_inval; |
David Ahern | c3ab2b4 | 2017-05-21 10:12:03 -0600 | [diff] [blame] | 1393 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | |
David S. Miller | 1fc050a | 2011-03-07 20:54:48 -0800 | [diff] [blame] | 1395 | change_nexthops(fi) { |
David S. Miller | 436c3b6 | 2011-03-24 17:42:21 -0700 | [diff] [blame] | 1396 | fib_info_update_nh_saddr(net, nexthop_nh); |
David Ahern | 19a9d13 | 2019-04-05 16:30:39 -0700 | [diff] [blame] | 1397 | if (nexthop_nh->fib_nh_gw_family == AF_INET6) |
| 1398 | fi->fib_nh_is_v6 = true; |
David S. Miller | 1fc050a | 2011-03-07 20:54:48 -0800 | [diff] [blame] | 1399 | } endfor_nexthops(fi) |
| 1400 | |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 1401 | fib_rebalance(fi); |
| 1402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | link_it: |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1404 | ofi = fib_find_info(fi); |
| 1405 | if (ofi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | fi->fib_dead = 1; |
| 1407 | free_fib_info(fi); |
| 1408 | ofi->fib_treeref++; |
| 1409 | return ofi; |
| 1410 | } |
| 1411 | |
| 1412 | fi->fib_treeref++; |
Reshetova, Elena | 0029c0d | 2017-07-04 09:35:02 +0300 | [diff] [blame] | 1413 | refcount_set(&fi->fib_clntref, 1); |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 1414 | spin_lock_bh(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | hlist_add_head(&fi->fib_hash, |
| 1416 | &fib_info_hash[fib_info_hashfn(fi)]); |
| 1417 | if (fi->fib_prefsrc) { |
| 1418 | struct hlist_head *head; |
| 1419 | |
| 1420 | head = &fib_info_laddrhash[fib_laddr_hashfn(fi->fib_prefsrc)]; |
| 1421 | hlist_add_head(&fi->fib_lhash, head); |
| 1422 | } |
| 1423 | change_nexthops(fi) { |
| 1424 | struct hlist_head *head; |
| 1425 | unsigned int hash; |
| 1426 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1427 | if (!nexthop_nh->fib_nh_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | continue; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1429 | hash = fib_devindex_hashfn(nexthop_nh->fib_nh_dev->ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | head = &fib_info_devhash[hash]; |
David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1431 | hlist_add_head(&nexthop_nh->nh_hash, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | } endfor_nexthops(fi) |
Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 1433 | spin_unlock_bh(&fib_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | return fi; |
| 1435 | |
| 1436 | err_inval: |
| 1437 | err = -EINVAL; |
| 1438 | |
| 1439 | failure: |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1440 | if (fi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | fi->fib_dead = 1; |
| 1442 | free_fib_info(fi); |
| 1443 | } |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 1444 | |
| 1445 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | } |
| 1447 | |
David Ahern | c0a7207 | 2019-04-02 14:11:58 -0700 | [diff] [blame] | 1448 | int fib_nexthop_info(struct sk_buff *skb, const struct fib_nh_common *nhc, |
David Ahern | ecc5663 | 2019-04-23 08:48:09 -0700 | [diff] [blame] | 1449 | unsigned char *flags, bool skip_oif) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1450 | { |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1451 | if (nhc->nhc_flags & RTNH_F_DEAD) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1452 | *flags |= RTNH_F_DEAD; |
| 1453 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1454 | if (nhc->nhc_flags & RTNH_F_LINKDOWN) { |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1455 | *flags |= RTNH_F_LINKDOWN; |
| 1456 | |
| 1457 | rcu_read_lock(); |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1458 | switch (nhc->nhc_family) { |
| 1459 | case AF_INET: |
| 1460 | if (ip_ignore_linkdown(nhc->nhc_dev)) |
| 1461 | *flags |= RTNH_F_DEAD; |
| 1462 | break; |
David Ahern | c0a7207 | 2019-04-02 14:11:58 -0700 | [diff] [blame] | 1463 | case AF_INET6: |
| 1464 | if (ip6_ignore_linkdown(nhc->nhc_dev)) |
| 1465 | *flags |= RTNH_F_DEAD; |
| 1466 | break; |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1467 | } |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1468 | rcu_read_unlock(); |
| 1469 | } |
| 1470 | |
David Ahern | bdf0046 | 2019-04-05 16:30:26 -0700 | [diff] [blame] | 1471 | switch (nhc->nhc_gw_family) { |
| 1472 | case AF_INET: |
| 1473 | if (nla_put_in_addr(skb, RTA_GATEWAY, nhc->nhc_gw.ipv4)) |
| 1474 | goto nla_put_failure; |
| 1475 | break; |
| 1476 | case AF_INET6: |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 1477 | /* if gateway family does not match nexthop family |
| 1478 | * gateway is encoded as RTA_VIA |
| 1479 | */ |
| 1480 | if (nhc->nhc_gw_family != nhc->nhc_family) { |
| 1481 | int alen = sizeof(struct in6_addr); |
| 1482 | struct nlattr *nla; |
| 1483 | struct rtvia *via; |
| 1484 | |
| 1485 | nla = nla_reserve(skb, RTA_VIA, alen + 2); |
| 1486 | if (!nla) |
| 1487 | goto nla_put_failure; |
| 1488 | |
| 1489 | via = nla_data(nla); |
| 1490 | via->rtvia_family = AF_INET6; |
| 1491 | memcpy(via->rtvia_addr, &nhc->nhc_gw.ipv6, alen); |
| 1492 | } else if (nla_put_in6_addr(skb, RTA_GATEWAY, |
| 1493 | &nhc->nhc_gw.ipv6) < 0) { |
David Ahern | bdf0046 | 2019-04-05 16:30:26 -0700 | [diff] [blame] | 1494 | goto nla_put_failure; |
David Ahern | d156626 | 2019-04-05 16:30:40 -0700 | [diff] [blame] | 1495 | } |
David Ahern | bdf0046 | 2019-04-05 16:30:26 -0700 | [diff] [blame] | 1496 | break; |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1497 | } |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1498 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1499 | *flags |= (nhc->nhc_flags & RTNH_F_ONLINK); |
| 1500 | if (nhc->nhc_flags & RTNH_F_OFFLOAD) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1501 | *flags |= RTNH_F_OFFLOAD; |
| 1502 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1503 | if (!skip_oif && nhc->nhc_dev && |
| 1504 | nla_put_u32(skb, RTA_OIF, nhc->nhc_dev->ifindex)) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1505 | goto nla_put_failure; |
| 1506 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1507 | if (nhc->nhc_lwtstate && |
David Ahern | ffa8ce5 | 2019-04-23 08:23:41 -0700 | [diff] [blame] | 1508 | lwtunnel_fill_encap(skb, nhc->nhc_lwtstate, |
| 1509 | RTA_ENCAP, RTA_ENCAP_TYPE) < 0) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1510 | goto nla_put_failure; |
| 1511 | |
| 1512 | return 0; |
| 1513 | |
| 1514 | nla_put_failure: |
| 1515 | return -EMSGSIZE; |
| 1516 | } |
David Ahern | c0a7207 | 2019-04-02 14:11:58 -0700 | [diff] [blame] | 1517 | EXPORT_SYMBOL_GPL(fib_nexthop_info); |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1518 | |
David Ahern | c0a7207 | 2019-04-02 14:11:58 -0700 | [diff] [blame] | 1519 | #if IS_ENABLED(CONFIG_IP_ROUTE_MULTIPATH) || IS_ENABLED(CONFIG_IPV6) |
| 1520 | int fib_add_nexthop(struct sk_buff *skb, const struct fib_nh_common *nhc, |
| 1521 | int nh_weight) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1522 | { |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1523 | const struct net_device *dev = nhc->nhc_dev; |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1524 | struct rtnexthop *rtnh; |
David Ahern | ecc5663 | 2019-04-23 08:48:09 -0700 | [diff] [blame] | 1525 | unsigned char flags = 0; |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1526 | |
| 1527 | rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh)); |
| 1528 | if (!rtnh) |
| 1529 | goto nla_put_failure; |
| 1530 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1531 | rtnh->rtnh_hops = nh_weight - 1; |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1532 | rtnh->rtnh_ifindex = dev ? dev->ifindex : 0; |
| 1533 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1534 | if (fib_nexthop_info(skb, nhc, &flags, true) < 0) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1535 | goto nla_put_failure; |
| 1536 | |
| 1537 | rtnh->rtnh_flags = flags; |
| 1538 | |
| 1539 | /* length of rtnetlink header + attributes */ |
| 1540 | rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh; |
| 1541 | |
| 1542 | return 0; |
| 1543 | |
| 1544 | nla_put_failure: |
| 1545 | return -EMSGSIZE; |
| 1546 | } |
David Ahern | c0a7207 | 2019-04-02 14:11:58 -0700 | [diff] [blame] | 1547 | EXPORT_SYMBOL_GPL(fib_add_nexthop); |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1548 | #endif |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1549 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1550 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1551 | static int fib_add_multipath(struct sk_buff *skb, struct fib_info *fi) |
| 1552 | { |
| 1553 | struct nlattr *mp; |
| 1554 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1555 | mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1556 | if (!mp) |
| 1557 | goto nla_put_failure; |
| 1558 | |
| 1559 | for_nexthops(fi) { |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1560 | if (fib_add_nexthop(skb, &nh->nh_common, nh->fib_nh_weight) < 0) |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1561 | goto nla_put_failure; |
| 1562 | #ifdef CONFIG_IP_ROUTE_CLASSID |
| 1563 | if (nh->nh_tclassid && |
| 1564 | nla_put_u32(skb, RTA_FLOW, nh->nh_tclassid)) |
| 1565 | goto nla_put_failure; |
| 1566 | #endif |
| 1567 | } endfor_nexthops(fi); |
| 1568 | |
| 1569 | nla_nest_end(skb, mp); |
| 1570 | |
| 1571 | return 0; |
| 1572 | |
| 1573 | nla_put_failure: |
| 1574 | return -EMSGSIZE; |
| 1575 | } |
| 1576 | #else |
| 1577 | static int fib_add_multipath(struct sk_buff *skb, struct fib_info *fi) |
| 1578 | { |
| 1579 | return 0; |
| 1580 | } |
| 1581 | #endif |
| 1582 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1583 | int fib_dump_info(struct sk_buff *skb, u32 portid, u32 seq, int event, |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 1584 | u32 tb_id, u8 type, __be32 dst, int dst_len, u8 tos, |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1585 | struct fib_info *fi, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | { |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1587 | struct nlmsghdr *nlh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | struct rtmsg *rtm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1590 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1591 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 1592 | return -EMSGSIZE; |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1593 | |
| 1594 | rtm = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | rtm->rtm_family = AF_INET; |
| 1596 | rtm->rtm_dst_len = dst_len; |
| 1597 | rtm->rtm_src_len = 0; |
| 1598 | rtm->rtm_tos = tos; |
Krzysztof Piotr Oledzki | 709772e | 2008-06-10 15:44:49 -0700 | [diff] [blame] | 1599 | if (tb_id < 256) |
| 1600 | rtm->rtm_table = tb_id; |
| 1601 | else |
| 1602 | rtm->rtm_table = RT_TABLE_COMPAT; |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1603 | if (nla_put_u32(skb, RTA_TABLE, tb_id)) |
| 1604 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | rtm->rtm_type = type; |
| 1606 | rtm->rtm_flags = fi->fib_flags; |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 1607 | rtm->rtm_scope = fi->fib_scope; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | rtm->rtm_protocol = fi->fib_protocol; |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1609 | |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1610 | if (rtm->rtm_dst_len && |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1611 | nla_put_in_addr(skb, RTA_DST, dst)) |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1612 | goto nla_put_failure; |
| 1613 | if (fi->fib_priority && |
| 1614 | nla_put_u32(skb, RTA_PRIORITY, fi->fib_priority)) |
| 1615 | goto nla_put_failure; |
Eric Dumazet | 3fb07da | 2017-05-25 14:27:35 -0700 | [diff] [blame] | 1616 | if (rtnetlink_put_metrics(skb, fi->fib_metrics->metrics) < 0) |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1617 | goto nla_put_failure; |
| 1618 | |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1619 | if (fi->fib_prefsrc && |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1620 | nla_put_in_addr(skb, RTA_PREFSRC, fi->fib_prefsrc)) |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1621 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | if (fi->fib_nhs == 1) { |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1623 | struct fib_nh *nh = &fi->fib_nh[0]; |
David Ahern | ecc5663 | 2019-04-23 08:48:09 -0700 | [diff] [blame] | 1624 | unsigned char flags = 0; |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1625 | |
David Ahern | c236419 | 2019-04-02 14:11:57 -0700 | [diff] [blame] | 1626 | if (fib_nexthop_info(skb, &nh->nh_common, &flags, false) < 0) |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1627 | goto nla_put_failure; |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1628 | |
| 1629 | rtm->rtm_flags = flags; |
Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 1630 | #ifdef CONFIG_IP_ROUTE_CLASSID |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1631 | if (nh->nh_tclassid && |
| 1632 | nla_put_u32(skb, RTA_FLOW, nh->nh_tclassid)) |
David S. Miller | f3756b7 | 2012-04-01 20:39:02 -0400 | [diff] [blame] | 1633 | goto nla_put_failure; |
Patrick McHardy | 8265abc | 2006-07-21 15:09:55 -0700 | [diff] [blame] | 1634 | #endif |
David Ahern | b0f6019 | 2019-04-02 14:11:56 -0700 | [diff] [blame] | 1635 | } else { |
| 1636 | if (fib_add_multipath(skb, fi) < 0) |
David Ahern | ea7a808 | 2017-01-11 14:29:54 -0800 | [diff] [blame] | 1637 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | } |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1639 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 1640 | nlmsg_end(skb, nlh); |
| 1641 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1643 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 1644 | nlmsg_cancel(skb, nlh); |
| 1645 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | } |
| 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | /* |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1649 | * Update FIB if: |
| 1650 | * - local address disappeared -> we must delete all the entries |
| 1651 | * referring to it. |
| 1652 | * - device went down -> we must shutdown all nexthops going via it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | */ |
Mark Tomlinson | 5a56a0b | 2016-09-05 10:20:20 +1200 | [diff] [blame] | 1654 | int fib_sync_down_addr(struct net_device *dev, __be32 local) |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1655 | { |
| 1656 | int ret = 0; |
| 1657 | unsigned int hash = fib_laddr_hashfn(local); |
| 1658 | struct hlist_head *head = &fib_info_laddrhash[hash]; |
Mark Tomlinson | 5a56a0b | 2016-09-05 10:20:20 +1200 | [diff] [blame] | 1659 | struct net *net = dev_net(dev); |
| 1660 | int tb_id = l3mdev_fib_table(dev); |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1661 | struct fib_info *fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1663 | if (!fib_info_laddrhash || local == 0) |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1664 | return 0; |
| 1665 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1666 | hlist_for_each_entry(fi, head, fib_lhash) { |
Mark Tomlinson | 5a56a0b | 2016-09-05 10:20:20 +1200 | [diff] [blame] | 1667 | if (!net_eq(fi->fib_net, net) || |
| 1668 | fi->fib_tb_id != tb_id) |
Denis V. Lunev | 4814bdb | 2008-01-31 18:50:07 -0800 | [diff] [blame] | 1669 | continue; |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1670 | if (fi->fib_prefsrc == local) { |
| 1671 | fi->fib_flags |= RTNH_F_DEAD; |
| 1672 | ret++; |
| 1673 | } |
| 1674 | } |
| 1675 | return ret; |
| 1676 | } |
| 1677 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1678 | static int call_fib_nh_notifiers(struct fib_nh *nh, |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1679 | enum fib_event_type event_type) |
| 1680 | { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1681 | bool ignore_link_down = ip_ignore_linkdown(nh->fib_nh_dev); |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1682 | struct fib_nh_notifier_info info = { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1683 | .fib_nh = nh, |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1684 | }; |
| 1685 | |
| 1686 | switch (event_type) { |
| 1687 | case FIB_EVENT_NH_ADD: |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1688 | if (nh->fib_nh_flags & RTNH_F_DEAD) |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1689 | break; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1690 | if (ignore_link_down && nh->fib_nh_flags & RTNH_F_LINKDOWN) |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1691 | break; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1692 | return call_fib4_notifiers(dev_net(nh->fib_nh_dev), event_type, |
Ido Schimmel | 04b1d4e | 2017-08-03 13:28:11 +0200 | [diff] [blame] | 1693 | &info.info); |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1694 | case FIB_EVENT_NH_DEL: |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1695 | if ((ignore_link_down && nh->fib_nh_flags & RTNH_F_LINKDOWN) || |
| 1696 | (nh->fib_nh_flags & RTNH_F_DEAD)) |
| 1697 | return call_fib4_notifiers(dev_net(nh->fib_nh_dev), |
Ido Schimmel | 04b1d4e | 2017-08-03 13:28:11 +0200 | [diff] [blame] | 1698 | event_type, &info.info); |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1699 | default: |
| 1700 | break; |
| 1701 | } |
| 1702 | |
| 1703 | return NOTIFY_DONE; |
| 1704 | } |
| 1705 | |
Sabrina Dubroca | af7d6cc | 2018-10-09 17:48:14 +0200 | [diff] [blame] | 1706 | /* Update the PMTU of exceptions when: |
| 1707 | * - the new MTU of the first hop becomes smaller than the PMTU |
| 1708 | * - the old MTU was the same as the PMTU, and it limited discovery of |
| 1709 | * larger MTUs on the path. With that limit raised, we can now |
| 1710 | * discover larger MTUs |
| 1711 | * A special case is locked exceptions, for which the PMTU is smaller |
| 1712 | * than the minimal accepted PMTU: |
| 1713 | * - if the new MTU is greater than the PMTU, don't make any change |
| 1714 | * - otherwise, unlock and set PMTU |
| 1715 | */ |
David Ahern | a5995e7 | 2019-04-30 07:45:50 -0700 | [diff] [blame] | 1716 | static void nh_update_mtu(struct fib_nh_common *nhc, u32 new, u32 orig) |
Sabrina Dubroca | af7d6cc | 2018-10-09 17:48:14 +0200 | [diff] [blame] | 1717 | { |
| 1718 | struct fnhe_hash_bucket *bucket; |
| 1719 | int i; |
| 1720 | |
David Ahern | a5995e7 | 2019-04-30 07:45:50 -0700 | [diff] [blame] | 1721 | bucket = rcu_dereference_protected(nhc->nhc_exceptions, 1); |
Sabrina Dubroca | af7d6cc | 2018-10-09 17:48:14 +0200 | [diff] [blame] | 1722 | if (!bucket) |
| 1723 | return; |
| 1724 | |
| 1725 | for (i = 0; i < FNHE_HASH_SIZE; i++) { |
| 1726 | struct fib_nh_exception *fnhe; |
| 1727 | |
| 1728 | for (fnhe = rcu_dereference_protected(bucket[i].chain, 1); |
| 1729 | fnhe; |
| 1730 | fnhe = rcu_dereference_protected(fnhe->fnhe_next, 1)) { |
| 1731 | if (fnhe->fnhe_mtu_locked) { |
| 1732 | if (new <= fnhe->fnhe_pmtu) { |
| 1733 | fnhe->fnhe_pmtu = new; |
| 1734 | fnhe->fnhe_mtu_locked = false; |
| 1735 | } |
| 1736 | } else if (new < fnhe->fnhe_pmtu || |
| 1737 | orig == fnhe->fnhe_pmtu) { |
| 1738 | fnhe->fnhe_pmtu = new; |
| 1739 | } |
| 1740 | } |
| 1741 | } |
| 1742 | } |
| 1743 | |
| 1744 | void fib_sync_mtu(struct net_device *dev, u32 orig_mtu) |
| 1745 | { |
| 1746 | unsigned int hash = fib_devindex_hashfn(dev->ifindex); |
| 1747 | struct hlist_head *head = &fib_info_devhash[hash]; |
| 1748 | struct fib_nh *nh; |
| 1749 | |
| 1750 | hlist_for_each_entry(nh, head, nh_hash) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1751 | if (nh->fib_nh_dev == dev) |
David Ahern | a5995e7 | 2019-04-30 07:45:50 -0700 | [diff] [blame] | 1752 | nh_update_mtu(&nh->nh_common, dev->mtu, orig_mtu); |
Sabrina Dubroca | af7d6cc | 2018-10-09 17:48:14 +0200 | [diff] [blame] | 1753 | } |
| 1754 | } |
| 1755 | |
Julian Anastasov | 4f823de | 2015-10-30 10:23:33 +0200 | [diff] [blame] | 1756 | /* Event force Flags Description |
| 1757 | * NETDEV_CHANGE 0 LINKDOWN Carrier OFF, not for scope host |
| 1758 | * NETDEV_DOWN 0 LINKDOWN|DEAD Link down, not for scope host |
| 1759 | * NETDEV_DOWN 1 LINKDOWN|DEAD Last address removed |
| 1760 | * NETDEV_UNREGISTER 1 LINKDOWN|DEAD Device removed |
| 1761 | */ |
| 1762 | int fib_sync_down_dev(struct net_device *dev, unsigned long event, bool force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | { |
| 1764 | int ret = 0; |
| 1765 | int scope = RT_SCOPE_NOWHERE; |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1766 | struct fib_info *prev_fi = NULL; |
| 1767 | unsigned int hash = fib_devindex_hashfn(dev->ifindex); |
| 1768 | struct hlist_head *head = &fib_info_devhash[hash]; |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1769 | struct fib_nh *nh; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1770 | |
Julian Anastasov | 4f823de | 2015-10-30 10:23:33 +0200 | [diff] [blame] | 1771 | if (force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | scope = -1; |
| 1773 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1774 | hlist_for_each_entry(nh, head, nh_hash) { |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1775 | struct fib_info *fi = nh->nh_parent; |
| 1776 | int dead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1778 | BUG_ON(!fi->fib_nhs); |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1779 | if (nh->fib_nh_dev != dev || fi == prev_fi) |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1780 | continue; |
| 1781 | prev_fi = fi; |
| 1782 | dead = 0; |
| 1783 | change_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1784 | if (nexthop_nh->fib_nh_flags & RTNH_F_DEAD) |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1785 | dead++; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1786 | else if (nexthop_nh->fib_nh_dev == dev && |
| 1787 | nexthop_nh->fib_nh_scope != scope) { |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1788 | switch (event) { |
| 1789 | case NETDEV_DOWN: |
| 1790 | case NETDEV_UNREGISTER: |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1791 | nexthop_nh->fib_nh_flags |= RTNH_F_DEAD; |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1792 | /* fall through */ |
| 1793 | case NETDEV_CHANGE: |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1794 | nexthop_nh->fib_nh_flags |= RTNH_F_LINKDOWN; |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1795 | break; |
| 1796 | } |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1797 | call_fib_nh_notifiers(nexthop_nh, |
| 1798 | FIB_EVENT_NH_DEL); |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1799 | dead++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | } |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1801 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1802 | if (event == NETDEV_UNREGISTER && |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1803 | nexthop_nh->fib_nh_dev == dev) { |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1804 | dead = fi->fib_nhs; |
| 1805 | break; |
| 1806 | } |
| 1807 | #endif |
| 1808 | } endfor_nexthops(fi) |
| 1809 | if (dead == fi->fib_nhs) { |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1810 | switch (event) { |
| 1811 | case NETDEV_DOWN: |
| 1812 | case NETDEV_UNREGISTER: |
| 1813 | fi->fib_flags |= RTNH_F_DEAD; |
| 1814 | /* fall through */ |
| 1815 | case NETDEV_CHANGE: |
| 1816 | fi->fib_flags |= RTNH_F_LINKDOWN; |
| 1817 | break; |
| 1818 | } |
Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1819 | ret++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | } |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 1821 | |
| 1822 | fib_rebalance(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | } |
| 1824 | |
| 1825 | return ret; |
| 1826 | } |
| 1827 | |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1828 | /* Must be invoked inside of an RCU protected region. */ |
David Ahern | c7b371e | 2017-01-05 19:33:59 -0800 | [diff] [blame] | 1829 | static void fib_select_default(const struct flowi4 *flp, struct fib_result *res) |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1830 | { |
| 1831 | struct fib_info *fi = NULL, *last_resort = NULL; |
Alexander Duyck | 56315f9 | 2015-02-25 15:31:31 -0800 | [diff] [blame] | 1832 | struct hlist_head *fa_head = res->fa_head; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1833 | struct fib_table *tb = res->table; |
Julian Anastasov | 18a912e9 | 2015-07-22 10:43:22 +0300 | [diff] [blame] | 1834 | u8 slen = 32 - res->prefixlen; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1835 | int order = -1, last_idx = -1; |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1836 | struct fib_alias *fa, *fa1 = NULL; |
| 1837 | u32 last_prio = res->fi->fib_priority; |
| 1838 | u8 last_tos = 0; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1839 | |
Alexander Duyck | 56315f9 | 2015-02-25 15:31:31 -0800 | [diff] [blame] | 1840 | hlist_for_each_entry_rcu(fa, fa_head, fa_list) { |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1841 | struct fib_info *next_fi = fa->fa_info; |
| 1842 | |
Julian Anastasov | 18a912e9 | 2015-07-22 10:43:22 +0300 | [diff] [blame] | 1843 | if (fa->fa_slen != slen) |
| 1844 | continue; |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1845 | if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos) |
| 1846 | continue; |
Julian Anastasov | 18a912e9 | 2015-07-22 10:43:22 +0300 | [diff] [blame] | 1847 | if (fa->tb_id != tb->tb_id) |
| 1848 | continue; |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1849 | if (next_fi->fib_priority > last_prio && |
| 1850 | fa->fa_tos == last_tos) { |
| 1851 | if (last_tos) |
| 1852 | continue; |
| 1853 | break; |
| 1854 | } |
| 1855 | if (next_fi->fib_flags & RTNH_F_DEAD) |
| 1856 | continue; |
| 1857 | last_tos = fa->fa_tos; |
| 1858 | last_prio = next_fi->fib_priority; |
| 1859 | |
David S. Miller | 37e826c | 2011-03-24 18:06:47 -0700 | [diff] [blame] | 1860 | if (next_fi->fib_scope != res->scope || |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1861 | fa->fa_type != RTN_UNICAST) |
| 1862 | continue; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1863 | if (!next_fi->fib_nh[0].fib_nh_gw4 || |
| 1864 | next_fi->fib_nh[0].fib_nh_scope != RT_SCOPE_LINK) |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1865 | continue; |
| 1866 | |
| 1867 | fib_alias_accessed(fa); |
| 1868 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1869 | if (!fi) { |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1870 | if (next_fi != res->fi) |
| 1871 | break; |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1872 | fa1 = fa; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1873 | } else if (!fib_detect_death(fi, order, &last_resort, |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1874 | &last_idx, fa1->fa_default)) { |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1875 | fib_result_assign(res, fi); |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1876 | fa1->fa_default = order; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1877 | goto out; |
| 1878 | } |
| 1879 | fi = next_fi; |
| 1880 | order++; |
| 1881 | } |
| 1882 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1883 | if (order <= 0 || !fi) { |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1884 | if (fa1) |
| 1885 | fa1->fa_default = -1; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1886 | goto out; |
| 1887 | } |
| 1888 | |
| 1889 | if (!fib_detect_death(fi, order, &last_resort, &last_idx, |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1890 | fa1->fa_default)) { |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1891 | fib_result_assign(res, fi); |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1892 | fa1->fa_default = order; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1893 | goto out; |
| 1894 | } |
| 1895 | |
| 1896 | if (last_idx >= 0) |
| 1897 | fib_result_assign(res, last_resort); |
Julian Anastasov | 2392deb | 2015-07-22 10:43:23 +0300 | [diff] [blame] | 1898 | fa1->fa_default = last_idx; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1899 | out: |
Eric Dumazet | 31d4093 | 2011-02-14 11:23:04 -0800 | [diff] [blame] | 1900 | return; |
David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1901 | } |
| 1902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | /* |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1904 | * Dead device goes up. We wake up dead nexthops. |
| 1905 | * It takes sense only on multipath routes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | */ |
David Ahern | ecc5663 | 2019-04-23 08:48:09 -0700 | [diff] [blame] | 1907 | int fib_sync_up(struct net_device *dev, unsigned char nh_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | { |
| 1909 | struct fib_info *prev_fi; |
| 1910 | unsigned int hash; |
| 1911 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | struct fib_nh *nh; |
| 1913 | int ret; |
| 1914 | |
Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1915 | if (!(dev->flags & IFF_UP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | return 0; |
| 1917 | |
Julian Anastasov | c9b3292 | 2015-10-30 10:23:34 +0200 | [diff] [blame] | 1918 | if (nh_flags & RTNH_F_DEAD) { |
| 1919 | unsigned int flags = dev_get_flags(dev); |
| 1920 | |
| 1921 | if (flags & (IFF_RUNNING | IFF_LOWER_UP)) |
| 1922 | nh_flags |= RTNH_F_LINKDOWN; |
| 1923 | } |
| 1924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | prev_fi = NULL; |
| 1926 | hash = fib_devindex_hashfn(dev->ifindex); |
| 1927 | head = &fib_info_devhash[hash]; |
| 1928 | ret = 0; |
| 1929 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1930 | hlist_for_each_entry(nh, head, nh_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | struct fib_info *fi = nh->nh_parent; |
| 1932 | int alive; |
| 1933 | |
| 1934 | BUG_ON(!fi->fib_nhs); |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1935 | if (nh->fib_nh_dev != dev || fi == prev_fi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | continue; |
| 1937 | |
| 1938 | prev_fi = fi; |
| 1939 | alive = 0; |
| 1940 | change_nexthops(fi) { |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1941 | if (!(nexthop_nh->fib_nh_flags & nh_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | alive++; |
| 1943 | continue; |
| 1944 | } |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1945 | if (!nexthop_nh->fib_nh_dev || |
| 1946 | !(nexthop_nh->fib_nh_dev->flags & IFF_UP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | continue; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1948 | if (nexthop_nh->fib_nh_dev != dev || |
David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1949 | !__in_dev_get_rtnl(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | continue; |
| 1951 | alive++; |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1952 | nexthop_nh->fib_nh_flags &= ~nh_flags; |
Ido Schimmel | 982acb9 | 2017-02-08 11:16:39 +0100 | [diff] [blame] | 1953 | call_fib_nh_notifiers(nexthop_nh, FIB_EVENT_NH_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | } endfor_nexthops(fi) |
| 1955 | |
| 1956 | if (alive > 0) { |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1957 | fi->fib_flags &= ~nh_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | ret++; |
| 1959 | } |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 1960 | |
| 1961 | fib_rebalance(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | } |
| 1963 | |
| 1964 | return ret; |
| 1965 | } |
| 1966 | |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1967 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
David Ahern | a6db449 | 2016-04-07 07:21:00 -0700 | [diff] [blame] | 1968 | static bool fib_good_nh(const struct fib_nh *nh) |
| 1969 | { |
| 1970 | int state = NUD_REACHABLE; |
| 1971 | |
David Ahern | b75ed8b | 2019-03-27 20:53:55 -0700 | [diff] [blame] | 1972 | if (nh->fib_nh_scope == RT_SCOPE_LINK) { |
David Ahern | a6db449 | 2016-04-07 07:21:00 -0700 | [diff] [blame] | 1973 | struct neighbour *n; |
| 1974 | |
| 1975 | rcu_read_lock_bh(); |
| 1976 | |
David Ahern | 1a38c43 | 2019-04-05 16:30:38 -0700 | [diff] [blame] | 1977 | if (likely(nh->fib_nh_gw_family == AF_INET)) |
| 1978 | n = __ipv4_neigh_lookup_noref(nh->fib_nh_dev, |
| 1979 | (__force u32)nh->fib_nh_gw4); |
| 1980 | else if (nh->fib_nh_gw_family == AF_INET6) |
| 1981 | n = __ipv6_neigh_lookup_noref_stub(nh->fib_nh_dev, |
| 1982 | &nh->fib_nh_gw6); |
| 1983 | else |
| 1984 | n = NULL; |
David Ahern | a6db449 | 2016-04-07 07:21:00 -0700 | [diff] [blame] | 1985 | if (n) |
| 1986 | state = n->nud_state; |
| 1987 | |
| 1988 | rcu_read_unlock_bh(); |
| 1989 | } |
| 1990 | |
| 1991 | return !!(state & NUD_VALID); |
| 1992 | } |
Andy Gospodarek | 8a3d031 | 2015-06-23 13:45:36 -0400 | [diff] [blame] | 1993 | |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 1994 | void fib_select_multipath(struct fib_result *res, int hash) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | { |
| 1996 | struct fib_info *fi = res->fi; |
David Ahern | a6db449 | 2016-04-07 07:21:00 -0700 | [diff] [blame] | 1997 | struct net *net = fi->fib_net; |
| 1998 | bool first = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 2000 | change_nexthops(fi) { |
Xin Long | 6174a30 | 2018-04-01 22:40:35 +0800 | [diff] [blame] | 2001 | if (net->ipv4.sysctl_fib_multipath_use_neigh) { |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 2002 | if (!fib_good_nh(nexthop_nh)) |
Xin Long | 6174a30 | 2018-04-01 22:40:35 +0800 | [diff] [blame] | 2003 | continue; |
| 2004 | if (!first) { |
| 2005 | res->nh_sel = nhsel; |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 2006 | res->nhc = &nexthop_nh->nh_common; |
Xin Long | 6174a30 | 2018-04-01 22:40:35 +0800 | [diff] [blame] | 2007 | first = true; |
| 2008 | } |
| 2009 | } |
| 2010 | |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 2011 | if (hash > atomic_read(&nexthop_nh->fib_nh_upper_bound)) |
Peter Nørlund | 0e884c7 | 2015-09-30 10:12:21 +0200 | [diff] [blame] | 2012 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | |
Xin Long | 6174a30 | 2018-04-01 22:40:35 +0800 | [diff] [blame] | 2014 | res->nh_sel = nhsel; |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 2015 | res->nhc = &nexthop_nh->nh_common; |
Xin Long | 6174a30 | 2018-04-01 22:40:35 +0800 | [diff] [blame] | 2016 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | } endfor_nexthops(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2018 | } |
| 2019 | #endif |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2020 | |
| 2021 | void fib_select_path(struct net *net, struct fib_result *res, |
Nikolay Aleksandrov | bf4e0a3 | 2017-03-16 15:28:00 +0200 | [diff] [blame] | 2022 | struct flowi4 *fl4, const struct sk_buff *skb) |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2023 | { |
David Ahern | 0d876f2 | 2018-02-13 08:11:34 -0800 | [diff] [blame] | 2024 | if (fl4->flowi4_oif && !(fl4->flowi4_flags & FLOWI_FLAG_SKIP_NH_OIF)) |
| 2025 | goto check_saddr; |
David Ahern | 7a18c5b | 2017-01-10 14:37:35 -0800 | [diff] [blame] | 2026 | |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2027 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
David Ahern | 0d876f2 | 2018-02-13 08:11:34 -0800 | [diff] [blame] | 2028 | if (res->fi->fib_nhs > 1) { |
David Ahern | 7efc0b6 | 2018-03-02 08:32:12 -0800 | [diff] [blame] | 2029 | int h = fib_multipath_hash(net, fl4, skb, NULL); |
Paolo Abeni | 9920e48 | 2015-10-29 22:20:40 +0100 | [diff] [blame] | 2030 | |
Nikolay Aleksandrov | bf4e0a3 | 2017-03-16 15:28:00 +0200 | [diff] [blame] | 2031 | fib_select_multipath(res, h); |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2032 | } |
| 2033 | else |
| 2034 | #endif |
| 2035 | if (!res->prefixlen && |
| 2036 | res->table->tb_num_default > 1 && |
David Ahern | 0d876f2 | 2018-02-13 08:11:34 -0800 | [diff] [blame] | 2037 | res->type == RTN_UNICAST) |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2038 | fib_select_default(fl4, res); |
| 2039 | |
David Ahern | 0d876f2 | 2018-02-13 08:11:34 -0800 | [diff] [blame] | 2040 | check_saddr: |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2041 | if (!fl4->saddr) |
David Ahern | eba618a | 2019-04-02 14:11:55 -0700 | [diff] [blame] | 2042 | fl4->saddr = fib_result_prefsrc(net, res); |
David Ahern | 3ce58d8 | 2015-10-05 08:51:25 -0700 | [diff] [blame] | 2043 | } |