blob: fde7797b580694bb3924c5c6e9560cf04fd67387 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * IPv4 Forwarding Information Base: semantics.
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080012#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/bitops.h>
14#include <linux/types.h>
15#include <linux/kernel.h>
16#include <linux/jiffies.h>
17#include <linux/mm.h>
18#include <linux/string.h>
19#include <linux/socket.h>
20#include <linux/sockios.h>
21#include <linux/errno.h>
22#include <linux/in.h>
23#include <linux/inet.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020024#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/netdevice.h>
26#include <linux/if_arp.h>
27#include <linux/proc_fs.h>
28#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
David Ahernc3ab2b42017-05-21 10:12:03 -060031#include <linux/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020033#include <net/arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <net/ip.h>
35#include <net/protocol.h>
36#include <net/route.h>
37#include <net/tcp.h>
38#include <net/sock.h>
39#include <net/ip_fib.h>
David Ahern717a8f52019-04-05 16:30:32 -070040#include <net/ip6_fib.h>
David Ahern5481d732019-06-03 20:19:49 -070041#include <net/nexthop.h>
Thomas Graff21c7bc2006-08-15 00:34:17 -070042#include <net/netlink.h>
David Ahern3c618c12019-04-20 09:28:20 -070043#include <net/rtnh.h>
Roopa Prabhu571e7222015-07-21 10:43:47 +020044#include <net/lwtunnel.h>
Ido Schimmel04b1d4e2017-08-03 13:28:11 +020045#include <net/fib_notifier.h>
David Ahernc0a72072019-04-02 14:11:58 -070046#include <net/addrconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include "fib_lookup.h"
49
Stephen Hemminger832b4c52006-08-29 16:48:09 -070050static DEFINE_SPINLOCK(fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static struct hlist_head *fib_info_hash;
52static struct hlist_head *fib_info_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -080053static unsigned int fib_info_hash_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static unsigned int fib_info_cnt;
55
56#define DEVINDEX_HASHBITS 8
57#define DEVINDEX_HASHSIZE (1U << DEVINDEX_HASHBITS)
58static struct hlist_head fib_info_devhash[DEVINDEX_HASHSIZE];
59
David Aherndcb1ecb2019-06-03 20:19:50 -070060/* for_nexthops and change_nexthops only used when nexthop object
61 * is not set in a fib_info. The logic within can reference fib_nh.
62 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_IP_ROUTE_MULTIPATH
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000065#define for_nexthops(fi) { \
66 int nhsel; const struct fib_nh *nh; \
67 for (nhsel = 0, nh = (fi)->fib_nh; \
David Ahern5481d732019-06-03 20:19:49 -070068 nhsel < fib_info_num_path((fi)); \
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000069 nh++, nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000071#define change_nexthops(fi) { \
72 int nhsel; struct fib_nh *nexthop_nh; \
73 for (nhsel = 0, nexthop_nh = (struct fib_nh *)((fi)->fib_nh); \
David Ahern5481d732019-06-03 20:19:49 -070074 nhsel < fib_info_num_path((fi)); \
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000075 nexthop_nh++, nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#else /* CONFIG_IP_ROUTE_MULTIPATH */
78
79/* Hope, that gcc will optimize it to get rid of dummy loop */
80
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000081#define for_nexthops(fi) { \
82 int nhsel; const struct fib_nh *nh = (fi)->fib_nh; \
83 for (nhsel = 0; nhsel < 1; nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000085#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 Torvalds1da177e2005-04-16 15:20:36 -070089
90#endif /* CONFIG_IP_ROUTE_MULTIPATH */
91
92#define endfor_nexthops(fi) }
93
94
David S. Miller3be06862011-03-07 15:01:10 -080095const struct fib_prop fib_props[RTN_MAX + 1] = {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000096 [RTN_UNSPEC] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .error = 0,
98 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000099 },
100 [RTN_UNICAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .error = 0,
102 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000103 },
104 [RTN_LOCAL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .error = 0,
106 .scope = RT_SCOPE_HOST,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000107 },
108 [RTN_BROADCAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .error = 0,
110 .scope = RT_SCOPE_LINK,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000111 },
112 [RTN_ANYCAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .error = 0,
114 .scope = RT_SCOPE_LINK,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000115 },
116 [RTN_MULTICAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .error = 0,
118 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000119 },
120 [RTN_BLACKHOLE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .error = -EINVAL,
122 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000123 },
124 [RTN_UNREACHABLE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .error = -EHOSTUNREACH,
126 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000127 },
128 [RTN_PROHIBIT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .error = -EACCES,
130 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000131 },
132 [RTN_THROW] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .error = -EAGAIN,
134 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000135 },
136 [RTN_NAT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .error = -EINVAL,
138 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000139 },
140 [RTN_XRESOLVE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .error = -EINVAL,
142 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000143 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
David S. Millerc5038a82012-07-31 15:02:02 -0700146static void rt_fibinfo_free(struct rtable __rcu **rtp)
Eric Dumazet54764bb2012-07-31 01:08:23 +0000147{
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 Wang95c47f92017-06-17 10:42:30 -0700158 dst_dev_put(&rt->dst);
Wei Wangb838d5e2017-06-17 10:42:32 -0700159 dst_release_immediate(&rt->dst);
Eric Dumazet54764bb2012-07-31 01:08:23 +0000160}
161
David Aherna5995e72019-04-30 07:45:50 -0700162static void free_nh_exceptions(struct fib_nh_common *nhc)
David S. Millerc5038a82012-07-31 15:02:02 -0700163{
Eric Dumazetcaa41522014-09-03 22:21:56 -0700164 struct fnhe_hash_bucket *hash;
David S. Millerc5038a82012-07-31 15:02:02 -0700165 int i;
166
David Aherna5995e72019-04-30 07:45:50 -0700167 hash = rcu_dereference_protected(nhc->nhc_exceptions, 1);
Eric Dumazetcaa41522014-09-03 22:21:56 -0700168 if (!hash)
169 return;
David S. Millerc5038a82012-07-31 15:02:02 -0700170 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 Hemminger82695b32018-02-27 15:48:21 -0800176
David S. Millerc5038a82012-07-31 15:02:02 -0700177 next = rcu_dereference_protected(fnhe->fnhe_next, 1);
178
Timo Teräs2ffae992013-06-27 10:27:05 +0300179 rt_fibinfo_free(&fnhe->fnhe_rth_input);
180 rt_fibinfo_free(&fnhe->fnhe_rth_output);
David S. Millerc5038a82012-07-31 15:02:02 -0700181
182 kfree(fnhe);
183
184 fnhe = next;
185 }
186 }
187 kfree(hash);
188}
189
190static void rt_fibinfo_free_cpus(struct rtable __rcu * __percpu *rtp)
Eric Dumazetd26b3a72012-07-31 05:45:30 +0000191{
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 Wang08301062017-06-17 10:42:29 -0700201 if (rt) {
Wei Wang95c47f92017-06-17 10:42:30 -0700202 dst_dev_put(&rt->dst);
Wei Wangb838d5e2017-06-17 10:42:32 -0700203 dst_release_immediate(&rt->dst);
Wei Wang08301062017-06-17 10:42:29 -0700204 }
Eric Dumazetd26b3a72012-07-31 05:45:30 +0000205 }
206 free_percpu(rtp);
207}
208
David Ahern979e2762019-03-27 20:53:58 -0700209void fib_nh_common_release(struct fib_nh_common *nhc)
210{
Yajun Deng1160dfa2021-08-05 19:55:27 +0800211 dev_put(nhc->nhc_dev);
David Ahern979e2762019-03-27 20:53:58 -0700212 lwtstate_put(nhc->nhc_lwtstate);
David Ahern0f457a32019-04-30 07:45:48 -0700213 rt_fibinfo_free_cpus(nhc->nhc_pcpu_rth_output);
214 rt_fibinfo_free(&nhc->nhc_rth_input);
David Aherna5995e72019-04-30 07:45:50 -0700215 free_nh_exceptions(nhc);
David Ahern979e2762019-03-27 20:53:58 -0700216}
217EXPORT_SYMBOL_GPL(fib_nh_common_release);
218
David Ahernfaa041a2019-03-27 20:53:49 -0700219void fib_nh_release(struct net *net, struct fib_nh *fib_nh)
220{
221#ifdef CONFIG_IP_ROUTE_CLASSID
222 if (fib_nh->nh_tclassid)
Eric Dumazet213f5f82021-12-01 18:26:35 -0800223 atomic_dec(&net->ipv4.fib_num_tclassid_users);
David Ahernfaa041a2019-03-27 20:53:49 -0700224#endif
David Ahern979e2762019-03-27 20:53:58 -0700225 fib_nh_common_release(&fib_nh->nh_common);
David Ahernfaa041a2019-03-27 20:53:49 -0700226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* Release a nexthop info record */
Yan, Zheng19c1ea12011-09-04 20:24:20 +0000229static void free_fib_info_rcu(struct rcu_head *head)
230{
231 struct fib_info *fi = container_of(head, struct fib_info, rcu);
232
David Ahern4c7e8082019-06-03 20:19:51 -0700233 if (fi->nh) {
234 nexthop_put(fi->nh);
235 } else {
236 change_nexthops(fi) {
237 fib_nh_release(fi->fib_net, nexthop_nh);
238 } endfor_nexthops(fi);
239 }
Yanmin Zhange49cc0d2012-05-23 15:39:45 +0000240
David Aherncc5f0eb2018-10-04 20:07:52 -0700241 ip_fib_metrics_put(fi->fib_metrics);
242
Yan, Zheng19c1ea12011-09-04 20:24:20 +0000243 kfree(fi);
244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246void free_fib_info(struct fib_info *fi)
247{
248 if (fi->fib_dead == 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000249 pr_warn("Freeing alive fib_info %p\n", fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 fib_info_cnt--;
David Ahernfaa041a2019-03-27 20:53:49 -0700253
Yan, Zheng19c1ea12011-09-04 20:24:20 +0000254 call_rcu(&fi->rcu, free_fib_info_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
Ido Schimmelb423cb12016-12-03 16:44:58 +0100256EXPORT_SYMBOL_GPL(free_fib_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258void fib_release_info(struct fib_info *fi)
259{
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700260 spin_lock_bh(&fib_info_lock);
Yajun Deng79976892021-07-29 15:13:50 +0800261 if (fi && refcount_dec_and_test(&fi->fib_treeref)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 hlist_del(&fi->fib_hash);
263 if (fi->fib_prefsrc)
264 hlist_del(&fi->fib_lhash);
David Ahern4c7e8082019-06-03 20:19:51 -0700265 if (fi->nh) {
266 list_del(&fi->nh_list);
267 } else {
268 change_nexthops(fi) {
269 if (!nexthop_nh->fib_nh_dev)
270 continue;
271 hlist_del(&nexthop_nh->nh_hash);
272 } endfor_nexthops(fi)
273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 fi->fib_dead = 1;
275 fib_info_put(fi);
276 }
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700277 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
David Ahern5481d732019-06-03 20:19:49 -0700280static inline int nh_comp(struct fib_info *fi, struct fib_info *ofi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
David Ahern5481d732019-06-03 20:19:49 -0700282 const struct fib_nh *onh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
David Ahern4c7e8082019-06-03 20:19:51 -0700284 if (fi->nh || ofi->nh)
285 return nexthop_cmp(fi->nh, ofi->nh) ? 0 : -1;
286
287 if (ofi->fib_nhs == 0)
288 return 0;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 for_nexthops(fi) {
David Ahern5481d732019-06-03 20:19:49 -0700291 onh = fib_info_nh(ofi, nhsel);
292
David Ahernb75ed8b2019-03-27 20:53:55 -0700293 if (nh->fib_nh_oif != onh->fib_nh_oif ||
David Aherna4ea5d42019-04-05 16:30:30 -0700294 nh->fib_nh_gw_family != onh->fib_nh_gw_family ||
David Ahernb75ed8b2019-03-27 20:53:55 -0700295 nh->fib_nh_scope != onh->fib_nh_scope ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#ifdef CONFIG_IP_ROUTE_MULTIPATH
David Ahernb75ed8b2019-03-27 20:53:55 -0700297 nh->fib_nh_weight != onh->fib_nh_weight ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298#endif
Patrick McHardyc7066f72011-01-14 13:36:42 +0100299#ifdef CONFIG_IP_ROUTE_CLASSID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 nh->nh_tclassid != onh->nh_tclassid ||
301#endif
David Ahernb75ed8b2019-03-27 20:53:55 -0700302 lwtunnel_cmp_encap(nh->fib_nh_lws, onh->fib_nh_lws) ||
303 ((nh->fib_nh_flags ^ onh->fib_nh_flags) & ~RTNH_COMPARE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return -1;
David Aherna4ea5d42019-04-05 16:30:30 -0700305
306 if (nh->fib_nh_gw_family == AF_INET &&
307 nh->fib_nh_gw4 != onh->fib_nh_gw4)
308 return -1;
309
310 if (nh->fib_nh_gw_family == AF_INET6 &&
311 ipv6_addr_cmp(&nh->fib_nh_gw6, &onh->fib_nh_gw6))
312 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 } endfor_nexthops(fi);
314 return 0;
315}
316
David S. Miller88ebc722008-01-12 21:49:01 -0800317static inline unsigned int fib_devindex_hashfn(unsigned int val)
318{
319 unsigned int mask = DEVINDEX_HASHSIZE - 1;
320
321 return (val ^
322 (val >> DEVINDEX_HASHBITS) ^
323 (val >> (DEVINDEX_HASHBITS * 2))) & mask;
324}
325
David Ahern6c48ea52019-06-08 14:53:33 -0700326static unsigned int fib_info_hashfn_1(int init_val, u8 protocol, u8 scope,
327 u32 prefsrc, u32 priority)
328{
329 unsigned int val = init_val;
330
331 val ^= (protocol << 8) | scope;
332 val ^= prefsrc;
333 val ^= priority;
334
335 return val;
336}
337
338static unsigned int fib_info_hashfn_result(unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
David S. Miller123b9732011-02-01 15:34:21 -0800340 unsigned int mask = (fib_info_hash_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
David Ahern6c48ea52019-06-08 14:53:33 -0700342 return (val ^ (val >> 7) ^ (val >> 12)) & mask;
343}
344
345static inline unsigned int fib_info_hashfn(struct fib_info *fi)
346{
347 unsigned int val;
348
349 val = fib_info_hashfn_1(fi->fib_nhs, fi->fib_protocol,
350 fi->fib_scope, (__force u32)fi->fib_prefsrc,
351 fi->fib_priority);
David Ahern4c7e8082019-06-03 20:19:51 -0700352
353 if (fi->nh) {
354 val ^= fib_devindex_hashfn(fi->nh->id);
355 } else {
356 for_nexthops(fi) {
357 val ^= fib_devindex_hashfn(nh->fib_nh_oif);
358 } endfor_nexthops(fi)
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
David Ahern6c48ea52019-06-08 14:53:33 -0700361 return fib_info_hashfn_result(val);
362}
363
364/* no metrics, only nexthop id */
365static struct fib_info *fib_find_info_nh(struct net *net,
366 const struct fib_config *cfg)
367{
368 struct hlist_head *head;
369 struct fib_info *fi;
370 unsigned int hash;
371
372 hash = fib_info_hashfn_1(fib_devindex_hashfn(cfg->fc_nh_id),
373 cfg->fc_protocol, cfg->fc_scope,
374 (__force u32)cfg->fc_prefsrc,
375 cfg->fc_priority);
376 hash = fib_info_hashfn_result(hash);
377 head = &fib_info_hash[hash];
378
379 hlist_for_each_entry(fi, head, fib_hash) {
380 if (!net_eq(fi->fib_net, net))
381 continue;
382 if (!fi->nh || fi->nh->id != cfg->fc_nh_id)
383 continue;
384 if (cfg->fc_protocol == fi->fib_protocol &&
385 cfg->fc_scope == fi->fib_scope &&
386 cfg->fc_prefsrc == fi->fib_prefsrc &&
387 cfg->fc_priority == fi->fib_priority &&
388 cfg->fc_type == fi->fib_type &&
389 cfg->fc_table == fi->fib_tb_id &&
390 !((cfg->fc_flags ^ fi->fib_flags) & ~RTNH_COMPARE_MASK))
391 return fi;
392 }
393
394 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
David Ahern5481d732019-06-03 20:19:49 -0700397static struct fib_info *fib_find_info(struct fib_info *nfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct fib_info *fi;
401 unsigned int hash;
402
403 hash = fib_info_hashfn(nfi);
404 head = &fib_info_hash[hash];
405
Sasha Levinb67bfe02013-02-27 17:06:00 -0800406 hlist_for_each_entry(fi, head, fib_hash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800407 if (!net_eq(fi->fib_net, nfi->fib_net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -0800408 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (fi->fib_nhs != nfi->fib_nhs)
410 continue;
411 if (nfi->fib_protocol == fi->fib_protocol &&
David S. Miller37e826c2011-03-24 18:06:47 -0700412 nfi->fib_scope == fi->fib_scope &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 nfi->fib_prefsrc == fi->fib_prefsrc &&
414 nfi->fib_priority == fi->fib_priority &&
Eric Dumazetf4ef85b2012-10-04 01:25:26 +0000415 nfi->fib_type == fi->fib_type &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 memcmp(nfi->fib_metrics, fi->fib_metrics,
Eric Dumazetfcd13f42011-03-24 07:01:24 +0000417 sizeof(u32) * RTAX_MAX) == 0 &&
Andy Gospodarek8a3d0312015-06-23 13:45:36 -0400418 !((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_COMPARE_MASK) &&
David Ahern4c7e8082019-06-03 20:19:51 -0700419 nh_comp(fi, nfi) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return fi;
421 }
422
423 return NULL;
424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/* Check, that the gateway is already configured.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000427 * Used only by redirect accept routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
Al Virod878e72e2006-09-26 22:18:13 -0700429int ip_fib_check_default(__be32 gw, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct fib_nh *nh;
433 unsigned int hash;
434
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700435 spin_lock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 hash = fib_devindex_hashfn(dev->ifindex);
438 head = &fib_info_devhash[hash];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800439 hlist_for_each_entry(nh, head, nh_hash) {
David Ahernb75ed8b2019-03-27 20:53:55 -0700440 if (nh->fib_nh_dev == dev &&
441 nh->fib_nh_gw4 == gw &&
442 !(nh->fib_nh_flags & RTNH_F_DEAD)) {
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700443 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return 0;
445 }
446 }
447
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700448 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 return -1;
451}
452
Amit Cohen1e7bdec2021-02-01 21:47:51 +0200453size_t fib_nlmsg_size(struct fib_info *fi)
Thomas Graf339bf982006-11-10 14:10:15 -0800454{
455 size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg))
456 + nla_total_size(4) /* RTA_TABLE */
457 + nla_total_size(4) /* RTA_DST */
458 + nla_total_size(4) /* RTA_PRIORITY */
Daniel Borkmannea697632015-01-05 23:57:47 +0100459 + nla_total_size(4) /* RTA_PREFSRC */
460 + nla_total_size(TCP_CA_NAME_MAX); /* RTAX_CC_ALGO */
David Ahern5481d732019-06-03 20:19:49 -0700461 unsigned int nhs = fib_info_num_path(fi);
Thomas Graf339bf982006-11-10 14:10:15 -0800462
463 /* space for nested metrics */
464 payload += nla_total_size((RTAX_MAX * nla_total_size(4)));
465
David Ahern4c7e8082019-06-03 20:19:51 -0700466 if (fi->nh)
467 payload += nla_total_size(4); /* RTA_NH_ID */
468
David Ahern5481d732019-06-03 20:19:49 -0700469 if (nhs) {
Roopa Prabhu571e7222015-07-21 10:43:47 +0200470 size_t nh_encapsize = 0;
David Ahern5481d732019-06-03 20:19:49 -0700471 /* Also handles the special case nhs == 1 */
Thomas Graf339bf982006-11-10 14:10:15 -0800472
473 /* each nexthop is packed in an attribute */
474 size_t nhsize = nla_total_size(sizeof(struct rtnexthop));
David Aherndcb1ecb2019-06-03 20:19:50 -0700475 unsigned int i;
Thomas Graf339bf982006-11-10 14:10:15 -0800476
477 /* may contain flow and gateway attribute */
478 nhsize += 2 * nla_total_size(4);
479
Roopa Prabhu571e7222015-07-21 10:43:47 +0200480 /* grab encap info */
David Aherndcb1ecb2019-06-03 20:19:50 -0700481 for (i = 0; i < fib_info_num_path(fi); i++) {
482 struct fib_nh_common *nhc = fib_info_nhc(fi, i);
483
484 if (nhc->nhc_lwtstate) {
Roopa Prabhu571e7222015-07-21 10:43:47 +0200485 /* RTA_ENCAP_TYPE */
486 nh_encapsize += lwtunnel_get_encap_size(
David Aherndcb1ecb2019-06-03 20:19:50 -0700487 nhc->nhc_lwtstate);
Roopa Prabhu571e7222015-07-21 10:43:47 +0200488 /* RTA_ENCAP */
489 nh_encapsize += nla_total_size(2);
490 }
David Aherndcb1ecb2019-06-03 20:19:50 -0700491 }
Roopa Prabhu571e7222015-07-21 10:43:47 +0200492
Thomas Graf339bf982006-11-10 14:10:15 -0800493 /* all nexthops are packed in a nested attribute */
David Ahern5481d732019-06-03 20:19:49 -0700494 payload += nla_total_size((nhs * nhsize) + nh_encapsize);
Roopa Prabhu571e7222015-07-21 10:43:47 +0200495
Thomas Graf339bf982006-11-10 14:10:15 -0800496 }
497
498 return payload;
499}
500
Al Viro81f7bf62006-09-27 18:40:00 -0700501void rtmsg_fib(int event, __be32 key, struct fib_alias *fa,
Joe Perches9877b252013-10-17 13:34:11 -0700502 int dst_len, u32 tb_id, const struct nl_info *info,
Milan Kocianb8f55832007-05-23 14:55:06 -0700503 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Ido Schimmel1e301fd2020-01-14 13:23:10 +0200505 struct fib_rt_info fri;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct sk_buff *skb;
Thomas Graf4e902c52006-08-17 18:14:52 -0700507 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700508 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Thomas Graf339bf982006-11-10 14:10:15 -0800510 skb = nlmsg_new(fib_nlmsg_size(fa->fa_info), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100511 if (!skb)
Thomas Graff21c7bc2006-08-15 00:34:17 -0700512 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Ido Schimmel1e301fd2020-01-14 13:23:10 +0200514 fri.fi = fa->fa_info;
515 fri.tb_id = tb_id;
516 fri.dst = key;
517 fri.dst_len = dst_len;
518 fri.tos = fa->fa_tos;
519 fri.type = fa->fa_type;
Ido Schimmel90b93f12020-01-14 13:23:11 +0200520 fri.offload = fa->offload;
521 fri.trap = fa->trap;
Amit Cohen36c51002021-02-07 10:22:50 +0200522 fri.offload_failed = fa->offload_failed;
Ido Schimmel1e301fd2020-01-14 13:23:10 +0200523 err = fib_dump_info(skb, info->portid, seq, event, &fri, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -0800524 if (err < 0) {
525 /* -EMSGSIZE implies BUG in fib_nlmsg_size() */
526 WARN_ON(err == -EMSGSIZE);
527 kfree_skb(skb);
528 goto errout;
529 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000530 rtnl_notify(skb, info->nl_net, info->portid, RTNLGRP_IPV4_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800531 info->nlh, GFP_KERNEL);
532 return;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700533errout:
534 if (err < 0)
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800535 rtnl_set_sk_err(info->nl_net, RTNLGRP_IPV4_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Stephen Hemmingerc9cb6b62013-12-28 11:05:36 -0800538static int fib_detect_death(struct fib_info *fi, int order,
539 struct fib_info **last_resort, int *last_idx,
540 int dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
David Ahern619d1822019-04-05 16:30:37 -0700542 const struct fib_nh_common *nhc = fib_info_nhc(fi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct neighbour *n;
544 int state = NUD_NONE;
545
David Ahern619d1822019-04-05 16:30:37 -0700546 if (likely(nhc->nhc_gw_family == AF_INET))
547 n = neigh_lookup(&arp_tbl, &nhc->nhc_gw.ipv4, nhc->nhc_dev);
548 else if (nhc->nhc_gw_family == AF_INET6)
549 n = neigh_lookup(ipv6_stub->nd_tbl, &nhc->nhc_gw.ipv6,
550 nhc->nhc_dev);
551 else
552 n = NULL;
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (n) {
555 state = n->nud_state;
556 neigh_release(n);
Julian Anastasov88f64322015-07-23 10:39:35 +0300557 } else {
558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Jianjun Kongd93191002008-11-03 00:23:42 -0800560 if (state == NUD_REACHABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000562 if ((state & NUD_VALID) && order != dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000564 if ((state & NUD_VALID) ||
Julian Anastasov88f64322015-07-23 10:39:35 +0300565 (*last_idx < 0 && order > dflt && state != NUD_INCOMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 *last_resort = fi;
567 *last_idx = order;
568 }
569 return 1;
570}
571
Alexander Aringfaee6762020-03-27 18:00:21 -0400572int fib_nh_common_init(struct net *net, struct fib_nh_common *nhc,
573 struct nlattr *encap, u16 encap_type,
574 void *cfg, gfp_t gfp_flags,
David Ahern979e2762019-03-27 20:53:58 -0700575 struct netlink_ext_ack *extack)
576{
David Ahern0f457a32019-04-30 07:45:48 -0700577 int err;
578
579 nhc->nhc_pcpu_rth_output = alloc_percpu_gfp(struct rtable __rcu *,
580 gfp_flags);
581 if (!nhc->nhc_pcpu_rth_output)
582 return -ENOMEM;
583
David Ahern979e2762019-03-27 20:53:58 -0700584 if (encap) {
585 struct lwtunnel_state *lwtstate;
David Ahern979e2762019-03-27 20:53:58 -0700586
587 if (encap_type == LWTUNNEL_ENCAP_NONE) {
588 NL_SET_ERR_MSG(extack, "LWT encap type not specified");
David Ahern0f457a32019-04-30 07:45:48 -0700589 err = -EINVAL;
590 goto lwt_failure;
David Ahern979e2762019-03-27 20:53:58 -0700591 }
Alexander Aringfaee6762020-03-27 18:00:21 -0400592 err = lwtunnel_build_state(net, encap_type, encap,
593 nhc->nhc_family, cfg, &lwtstate,
594 extack);
David Ahern979e2762019-03-27 20:53:58 -0700595 if (err)
David Ahern0f457a32019-04-30 07:45:48 -0700596 goto lwt_failure;
David Ahern979e2762019-03-27 20:53:58 -0700597
598 nhc->nhc_lwtstate = lwtstate_get(lwtstate);
599 }
600
601 return 0;
David Ahern0f457a32019-04-30 07:45:48 -0700602
603lwt_failure:
604 rt_fibinfo_free_cpus(nhc->nhc_pcpu_rth_output);
605 nhc->nhc_pcpu_rth_output = NULL;
606 return err;
David Ahern979e2762019-03-27 20:53:58 -0700607}
608EXPORT_SYMBOL_GPL(fib_nh_common_init);
609
David Aherne4516ef2019-03-27 20:53:48 -0700610int fib_nh_init(struct net *net, struct fib_nh *nh,
611 struct fib_config *cfg, int nh_weight,
612 struct netlink_ext_ack *extack)
613{
David Ahern0f457a32019-04-30 07:45:48 -0700614 int err;
David Aherne4516ef2019-03-27 20:53:48 -0700615
David Ahernf1741732019-03-27 20:53:57 -0700616 nh->fib_nh_family = AF_INET;
617
Alexander Aringfaee6762020-03-27 18:00:21 -0400618 err = fib_nh_common_init(net, &nh->nh_common, cfg->fc_encap,
David Ahern979e2762019-03-27 20:53:58 -0700619 cfg->fc_encap_type, cfg, GFP_KERNEL, extack);
620 if (err)
David Ahern0f457a32019-04-30 07:45:48 -0700621 return err;
David Aherne4516ef2019-03-27 20:53:48 -0700622
David Ahernb75ed8b2019-03-27 20:53:55 -0700623 nh->fib_nh_oif = cfg->fc_oif;
David Aherna4ea5d42019-04-05 16:30:30 -0700624 nh->fib_nh_gw_family = cfg->fc_gw_family;
625 if (cfg->fc_gw_family == AF_INET)
David Ahernf35b7942019-04-05 16:30:28 -0700626 nh->fib_nh_gw4 = cfg->fc_gw4;
David Aherna4ea5d42019-04-05 16:30:30 -0700627 else if (cfg->fc_gw_family == AF_INET6)
628 nh->fib_nh_gw6 = cfg->fc_gw6;
629
David Ahernb75ed8b2019-03-27 20:53:55 -0700630 nh->fib_nh_flags = cfg->fc_flags;
David Aherne4516ef2019-03-27 20:53:48 -0700631
632#ifdef CONFIG_IP_ROUTE_CLASSID
633 nh->nh_tclassid = cfg->fc_flow;
634 if (nh->nh_tclassid)
Eric Dumazet213f5f82021-12-01 18:26:35 -0800635 atomic_inc(&net->ipv4.fib_num_tclassid_users);
David Aherne4516ef2019-03-27 20:53:48 -0700636#endif
637#ifdef CONFIG_IP_ROUTE_MULTIPATH
David Ahernb75ed8b2019-03-27 20:53:55 -0700638 nh->fib_nh_weight = nh_weight;
David Aherne4516ef2019-03-27 20:53:48 -0700639#endif
640 return 0;
David Aherne4516ef2019-03-27 20:53:48 -0700641}
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#ifdef CONFIG_IP_ROUTE_MULTIPATH
644
David Ahern6d8422a12017-05-21 10:12:02 -0600645static int fib_count_nexthops(struct rtnexthop *rtnh, int remaining,
646 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 int nhs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Thomas Graf4e902c52006-08-17 18:14:52 -0700650 while (rtnh_ok(rtnh, remaining)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 nhs++;
Thomas Graf4e902c52006-08-17 18:14:52 -0700652 rtnh = rtnh_next(rtnh, &remaining);
653 }
654
655 /* leftover implies invalid nexthop configuration, discard it */
David Ahernc3ab2b42017-05-21 10:12:03 -0600656 if (remaining > 0) {
657 NL_SET_ERR_MSG(extack,
658 "Invalid nexthop configuration - extra data after nexthops");
659 nhs = 0;
660 }
661
662 return nhs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
David Ahern4c7e8082019-06-03 20:19:51 -0700665/* only called when fib_nh is integrated into fib_info */
Thomas Graf4e902c52006-08-17 18:14:52 -0700666static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh,
David Ahern6d8422a12017-05-21 10:12:02 -0600667 int remaining, struct fib_config *cfg,
668 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
David Aherne4516ef2019-03-27 20:53:48 -0700670 struct net *net = fi->fib_net;
671 struct fib_config fib_cfg;
David Ahern5481d732019-06-03 20:19:49 -0700672 struct fib_nh *nh;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200673 int ret;
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 change_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700676 int attrlen;
677
David Aherne4516ef2019-03-27 20:53:48 -0700678 memset(&fib_cfg, 0, sizeof(fib_cfg));
679
David Ahernc3ab2b42017-05-21 10:12:03 -0600680 if (!rtnh_ok(rtnh, remaining)) {
681 NL_SET_ERR_MSG(extack,
682 "Invalid nexthop configuration - extra data after nexthop");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -EINVAL;
David Ahernc3ab2b42017-05-21 10:12:03 -0600684 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700685
David Ahernc3ab2b42017-05-21 10:12:03 -0600686 if (rtnh->rtnh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN)) {
687 NL_SET_ERR_MSG(extack,
688 "Invalid flags for nexthop - can not contain DEAD or LINKDOWN");
Julian Anastasov80610222016-07-10 21:11:55 +0300689 return -EINVAL;
David Ahernc3ab2b42017-05-21 10:12:03 -0600690 }
Julian Anastasov80610222016-07-10 21:11:55 +0300691
David Aherne4516ef2019-03-27 20:53:48 -0700692 fib_cfg.fc_flags = (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags;
693 fib_cfg.fc_oif = rtnh->rtnh_ifindex;
Thomas Graf4e902c52006-08-17 18:14:52 -0700694
695 attrlen = rtnh_attrlen(rtnh);
696 if (attrlen > 0) {
David Ahernd1566262019-04-05 16:30:40 -0700697 struct nlattr *nla, *nlav, *attrs = rtnh_attrs(rtnh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700698
699 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
David Ahernd1566262019-04-05 16:30:40 -0700700 nlav = nla_find(attrs, attrlen, RTA_VIA);
701 if (nla && nlav) {
702 NL_SET_ERR_MSG(extack,
703 "Nexthop configuration can not contain both GATEWAY and VIA");
704 return -EINVAL;
705 }
David Ahernf35b7942019-04-05 16:30:28 -0700706 if (nla) {
David Ahernf35b7942019-04-05 16:30:28 -0700707 fib_cfg.fc_gw4 = nla_get_in_addr(nla);
David Ahernd73f80f2019-04-10 10:05:51 -0700708 if (fib_cfg.fc_gw4)
709 fib_cfg.fc_gw_family = AF_INET;
David Ahernd1566262019-04-05 16:30:40 -0700710 } else if (nlav) {
711 ret = fib_gw_from_via(&fib_cfg, nlav, extack);
712 if (ret)
713 goto errout;
David Ahernf35b7942019-04-05 16:30:28 -0700714 }
David Aherne4516ef2019-03-27 20:53:48 -0700715
Thomas Graf4e902c52006-08-17 18:14:52 -0700716 nla = nla_find(attrs, attrlen, RTA_FLOW);
David Aherne4516ef2019-03-27 20:53:48 -0700717 if (nla)
718 fib_cfg.fc_flow = nla_get_u32(nla);
Roopa Prabhu571e7222015-07-21 10:43:47 +0200719
David Aherne4516ef2019-03-27 20:53:48 -0700720 fib_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
721 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
722 if (nla)
723 fib_cfg.fc_encap_type = nla_get_u16(nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700725
David Aherne4516ef2019-03-27 20:53:48 -0700726 ret = fib_nh_init(net, nexthop_nh, &fib_cfg,
727 rtnh->rtnh_hops + 1, extack);
728 if (ret)
729 goto errout;
730
Thomas Graf4e902c52006-08-17 18:14:52 -0700731 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 } endfor_nexthops(fi);
Thomas Graf4e902c52006-08-17 18:14:52 -0700733
Roopa Prabhu571e7222015-07-21 10:43:47 +0200734 ret = -EINVAL;
David Ahern5481d732019-06-03 20:19:49 -0700735 nh = fib_info_nh(fi, 0);
736 if (cfg->fc_oif && nh->fib_nh_oif != cfg->fc_oif) {
David Aherne4516ef2019-03-27 20:53:48 -0700737 NL_SET_ERR_MSG(extack,
738 "Nexthop device index does not match RTA_OIF");
739 goto errout;
740 }
David Ahernf35b7942019-04-05 16:30:28 -0700741 if (cfg->fc_gw_family) {
David Ahern5481d732019-06-03 20:19:49 -0700742 if (cfg->fc_gw_family != nh->fib_nh_gw_family ||
David Ahernf35b7942019-04-05 16:30:28 -0700743 (cfg->fc_gw_family == AF_INET &&
David Ahern5481d732019-06-03 20:19:49 -0700744 nh->fib_nh_gw4 != cfg->fc_gw4) ||
David Aherna4ea5d42019-04-05 16:30:30 -0700745 (cfg->fc_gw_family == AF_INET6 &&
David Ahern5481d732019-06-03 20:19:49 -0700746 ipv6_addr_cmp(&nh->fib_nh_gw6, &cfg->fc_gw6))) {
David Ahernf35b7942019-04-05 16:30:28 -0700747 NL_SET_ERR_MSG(extack,
David Aherna4ea5d42019-04-05 16:30:30 -0700748 "Nexthop gateway does not match RTA_GATEWAY or RTA_VIA");
David Ahernf35b7942019-04-05 16:30:28 -0700749 goto errout;
750 }
David Aherne4516ef2019-03-27 20:53:48 -0700751 }
752#ifdef CONFIG_IP_ROUTE_CLASSID
David Ahern5481d732019-06-03 20:19:49 -0700753 if (cfg->fc_flow && nh->nh_tclassid != cfg->fc_flow) {
David Aherne4516ef2019-03-27 20:53:48 -0700754 NL_SET_ERR_MSG(extack,
755 "Nexthop class id does not match RTA_FLOW");
756 goto errout;
757 }
758#endif
759 ret = 0;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200760errout:
761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
David Ahern4c7e8082019-06-03 20:19:51 -0700764/* only called when fib_nh is integrated into fib_info */
Peter Nørlund0e884c72015-09-30 10:12:21 +0200765static void fib_rebalance(struct fib_info *fi)
766{
767 int total;
768 int w;
Peter Nørlund0e884c72015-09-30 10:12:21 +0200769
David Ahern5481d732019-06-03 20:19:49 -0700770 if (fib_info_num_path(fi) < 2)
Peter Nørlund0e884c72015-09-30 10:12:21 +0200771 return;
772
773 total = 0;
774 for_nexthops(fi) {
David Ahernb75ed8b2019-03-27 20:53:55 -0700775 if (nh->fib_nh_flags & RTNH_F_DEAD)
Peter Nørlund0e884c72015-09-30 10:12:21 +0200776 continue;
777
David Ahernb75ed8b2019-03-27 20:53:55 -0700778 if (ip_ignore_linkdown(nh->fib_nh_dev) &&
779 nh->fib_nh_flags & RTNH_F_LINKDOWN)
Peter Nørlund0e884c72015-09-30 10:12:21 +0200780 continue;
781
David Ahernb75ed8b2019-03-27 20:53:55 -0700782 total += nh->fib_nh_weight;
Peter Nørlund0e884c72015-09-30 10:12:21 +0200783 } endfor_nexthops(fi);
784
785 w = 0;
786 change_nexthops(fi) {
787 int upper_bound;
788
David Ahernb75ed8b2019-03-27 20:53:55 -0700789 if (nexthop_nh->fib_nh_flags & RTNH_F_DEAD) {
Peter Nørlund0e884c72015-09-30 10:12:21 +0200790 upper_bound = -1;
David Ahernb75ed8b2019-03-27 20:53:55 -0700791 } else if (ip_ignore_linkdown(nexthop_nh->fib_nh_dev) &&
792 nexthop_nh->fib_nh_flags & RTNH_F_LINKDOWN) {
Peter Nørlund0e884c72015-09-30 10:12:21 +0200793 upper_bound = -1;
794 } else {
David Ahernb75ed8b2019-03-27 20:53:55 -0700795 w += nexthop_nh->fib_nh_weight;
Peter Nørlund0a837fe2015-10-06 07:24:47 +0200796 upper_bound = DIV_ROUND_CLOSEST_ULL((u64)w << 31,
797 total) - 1;
Peter Nørlund0e884c72015-09-30 10:12:21 +0200798 }
799
David Ahernb75ed8b2019-03-27 20:53:55 -0700800 atomic_set(&nexthop_nh->fib_nh_upper_bound, upper_bound);
Peter Nørlund0e884c72015-09-30 10:12:21 +0200801 } endfor_nexthops(fi);
Peter Nørlund0e884c72015-09-30 10:12:21 +0200802}
Peter Nørlund0e884c72015-09-30 10:12:21 +0200803#else /* CONFIG_IP_ROUTE_MULTIPATH */
804
David Ahern8373c6c2019-03-27 20:53:46 -0700805static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh,
806 int remaining, struct fib_config *cfg,
807 struct netlink_ext_ack *extack)
808{
809 NL_SET_ERR_MSG(extack, "Multipath support not enabled in kernel");
810
811 return -EINVAL;
812}
813
Peter Nørlund0e884c72015-09-30 10:12:21 +0200814#define fib_rebalance(fi) do { } while (0)
Peter Nørlund0e884c72015-09-30 10:12:21 +0200815
816#endif /* CONFIG_IP_ROUTE_MULTIPATH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Alexander Aringfaee6762020-03-27 18:00:21 -0400818static int fib_encap_match(struct net *net, u16 encap_type,
Ying Xuee01286e2015-08-19 16:04:51 +0800819 struct nlattr *encap,
David Ahern30357d72017-01-30 12:07:37 -0800820 const struct fib_nh *nh,
David Ahern9ae28722017-05-27 16:19:28 -0600821 const struct fib_config *cfg,
822 struct netlink_ext_ack *extack)
Roopa Prabhu571e7222015-07-21 10:43:47 +0200823{
824 struct lwtunnel_state *lwtstate;
Jiri Bencdf383e62015-08-18 18:41:13 +0200825 int ret, result = 0;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200826
827 if (encap_type == LWTUNNEL_ENCAP_NONE)
828 return 0;
829
Alexander Aringfaee6762020-03-27 18:00:21 -0400830 ret = lwtunnel_build_state(net, encap_type, encap, AF_INET,
David Ahern9ae28722017-05-27 16:19:28 -0600831 cfg, &lwtstate, extack);
Jiri Bencdf383e62015-08-18 18:41:13 +0200832 if (!ret) {
David Ahernb75ed8b2019-03-27 20:53:55 -0700833 result = lwtunnel_cmp_encap(lwtstate, nh->fib_nh_lws);
Jiri Bencdf383e62015-08-18 18:41:13 +0200834 lwtstate_free(lwtstate);
835 }
Roopa Prabhu571e7222015-07-21 10:43:47 +0200836
Jiri Bencdf383e62015-08-18 18:41:13 +0200837 return result;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200838}
839
Alexander Aringfaee6762020-03-27 18:00:21 -0400840int fib_nh_match(struct net *net, struct fib_config *cfg, struct fib_info *fi,
David Ahern9ae28722017-05-27 16:19:28 -0600841 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700844 struct rtnexthop *rtnh;
845 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846#endif
847
Thomas Graf4e902c52006-08-17 18:14:52 -0700848 if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return 1;
850
David Ahern493ced12019-06-08 14:53:32 -0700851 if (cfg->fc_nh_id) {
852 if (fi->nh && cfg->fc_nh_id == fi->nh->id)
853 return 0;
854 return 1;
855 }
856
David Ahernf35b7942019-04-05 16:30:28 -0700857 if (cfg->fc_oif || cfg->fc_gw_family) {
David Ahern5481d732019-06-03 20:19:49 -0700858 struct fib_nh *nh = fib_info_nh(fi, 0);
859
Roopa Prabhu571e7222015-07-21 10:43:47 +0200860 if (cfg->fc_encap) {
Alexander Aringfaee6762020-03-27 18:00:21 -0400861 if (fib_encap_match(net, cfg->fc_encap_type,
862 cfg->fc_encap, nh, cfg, extack))
David Ahern9ae28722017-05-27 16:19:28 -0600863 return 1;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200864 }
Stefano Brivioa8c6db12018-02-15 09:46:03 +0100865#ifdef CONFIG_IP_ROUTE_CLASSID
866 if (cfg->fc_flow &&
David Ahern5481d732019-06-03 20:19:49 -0700867 cfg->fc_flow != nh->nh_tclassid)
Stefano Brivioa8c6db12018-02-15 09:46:03 +0100868 return 1;
869#endif
David Ahern5481d732019-06-03 20:19:49 -0700870 if ((cfg->fc_oif && cfg->fc_oif != nh->fib_nh_oif) ||
David Ahernf35b7942019-04-05 16:30:28 -0700871 (cfg->fc_gw_family &&
David Ahern5481d732019-06-03 20:19:49 -0700872 cfg->fc_gw_family != nh->fib_nh_gw_family))
David Ahernf35b7942019-04-05 16:30:28 -0700873 return 1;
874
875 if (cfg->fc_gw_family == AF_INET &&
David Ahern5481d732019-06-03 20:19:49 -0700876 cfg->fc_gw4 != nh->fib_nh_gw4)
David Ahernf35b7942019-04-05 16:30:28 -0700877 return 1;
878
David Aherna4ea5d42019-04-05 16:30:30 -0700879 if (cfg->fc_gw_family == AF_INET6 &&
David Ahern5481d732019-06-03 20:19:49 -0700880 ipv6_addr_cmp(&cfg->fc_gw6, &nh->fib_nh_gw6))
David Aherna4ea5d42019-04-05 16:30:30 -0700881 return 1;
882
David Ahernf35b7942019-04-05 16:30:28 -0700883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
885
886#ifdef CONFIG_IP_ROUTE_MULTIPATH
Ian Morris51456b22015-04-03 09:17:26 +0100887 if (!cfg->fc_mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700889
890 rtnh = cfg->fc_mp;
891 remaining = cfg->fc_mp_len;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 for_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700894 int attrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Thomas Graf4e902c52006-08-17 18:14:52 -0700896 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700898
David Ahernb75ed8b2019-03-27 20:53:55 -0700899 if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->fib_nh_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700901
902 attrlen = rtnh_attrlen(rtnh);
Jiri Pirkof76936d2014-10-13 16:34:10 +0200903 if (attrlen > 0) {
David Ahernd1566262019-04-05 16:30:40 -0700904 struct nlattr *nla, *nlav, *attrs = rtnh_attrs(rtnh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700905
906 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
David Ahernd1566262019-04-05 16:30:40 -0700907 nlav = nla_find(attrs, attrlen, RTA_VIA);
908 if (nla && nlav) {
909 NL_SET_ERR_MSG(extack,
910 "Nexthop configuration can not contain both GATEWAY and VIA");
911 return -EINVAL;
912 }
913
914 if (nla) {
915 if (nh->fib_nh_gw_family != AF_INET ||
916 nla_get_in_addr(nla) != nh->fib_nh_gw4)
917 return 1;
918 } else if (nlav) {
919 struct fib_config cfg2;
920 int err;
921
922 err = fib_gw_from_via(&cfg2, nlav, extack);
923 if (err)
924 return err;
925
926 switch (nh->fib_nh_gw_family) {
927 case AF_INET:
928 if (cfg2.fc_gw_family != AF_INET ||
929 cfg2.fc_gw4 != nh->fib_nh_gw4)
930 return 1;
931 break;
932 case AF_INET6:
933 if (cfg2.fc_gw_family != AF_INET6 ||
934 ipv6_addr_cmp(&cfg2.fc_gw6,
935 &nh->fib_nh_gw6))
936 return 1;
937 break;
938 }
939 }
940
Patrick McHardyc7066f72011-01-14 13:36:42 +0100941#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700942 nla = nla_find(attrs, attrlen, RTA_FLOW);
943 if (nla && nla_get_u32(nla) != nh->nh_tclassid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return 1;
945#endif
946 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700947
948 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 } endfor_nexthops(fi);
950#endif
951 return 0;
952}
953
Xin Long5f9ae3d2017-08-23 10:07:26 +0800954bool fib_metrics_match(struct fib_config *cfg, struct fib_info *fi)
955{
956 struct nlattr *nla;
957 int remaining;
958
959 if (!cfg->fc_mx)
960 return true;
961
962 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
963 int type = nla_type(nla);
Phil Sutterd03a4552017-12-19 15:17:13 +0100964 u32 fi_val, val;
Xin Long5f9ae3d2017-08-23 10:07:26 +0800965
966 if (!type)
967 continue;
968 if (type > RTAX_MAX)
969 return false;
970
971 if (type == RTAX_CC_ALGO) {
972 char tmp[TCP_CA_NAME_MAX];
973 bool ecn_ca = false;
974
Francis Laniel872f6902020-11-15 18:08:06 +0100975 nla_strscpy(tmp, nla, sizeof(tmp));
Stephen Hemminger6670e152017-11-14 08:25:49 -0800976 val = tcp_ca_get_key_by_name(fi->fib_net, tmp, &ecn_ca);
Xin Long5f9ae3d2017-08-23 10:07:26 +0800977 } else {
Eric Dumazet5b5e7a02018-06-05 06:06:19 -0700978 if (nla_len(nla) != sizeof(u32))
979 return false;
Xin Long5f9ae3d2017-08-23 10:07:26 +0800980 val = nla_get_u32(nla);
981 }
982
Phil Sutterd03a4552017-12-19 15:17:13 +0100983 fi_val = fi->fib_metrics->metrics[type - 1];
984 if (type == RTAX_FEATURES)
985 fi_val &= ~DST_FEATURE_ECN_CA;
986
987 if (fi_val != val)
Xin Long5f9ae3d2017-08-23 10:07:26 +0800988 return false;
989 }
990
991 return true;
992}
993
David Ahern717a8f52019-04-05 16:30:32 -0700994static int fib_check_nh_v6_gw(struct net *net, struct fib_nh *nh,
995 u32 table, struct netlink_ext_ack *extack)
996{
997 struct fib6_config cfg = {
998 .fc_table = table,
999 .fc_flags = nh->fib_nh_flags | RTF_GATEWAY,
1000 .fc_ifindex = nh->fib_nh_oif,
1001 .fc_gateway = nh->fib_nh_gw6,
1002 };
1003 struct fib6_nh fib6_nh = {};
1004 int err;
1005
1006 err = ipv6_stub->fib6_nh_init(net, &fib6_nh, &cfg, GFP_KERNEL, extack);
1007 if (!err) {
1008 nh->fib_nh_dev = fib6_nh.fib_nh_dev;
1009 dev_hold(nh->fib_nh_dev);
1010 nh->fib_nh_oif = nh->fib_nh_dev->ifindex;
1011 nh->fib_nh_scope = RT_SCOPE_LINK;
1012
1013 ipv6_stub->fib6_nh_release(&fib6_nh);
1014 }
1015
1016 return err;
1017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001020 * Picture
1021 * -------
1022 *
1023 * Semantics of nexthop is very messy by historical reasons.
1024 * We have to take into account, that:
1025 * a) gateway can be actually local interface address,
1026 * so that gatewayed route is direct.
1027 * b) gateway must be on-link address, possibly
1028 * described not by an ifaddr, but also by a direct route.
1029 * c) If both gateway and interface are specified, they should not
1030 * contradict.
1031 * d) If we use tunnel routes, gateway could be not on-link.
1032 *
1033 * Attempt to reconcile all of these (alas, self-contradictory) conditions
1034 * results in pretty ugly and hairy code with obscure logic.
1035 *
1036 * I chose to generalized it instead, so that the size
1037 * of code does not increase practically, but it becomes
1038 * much more general.
1039 * Every prefix is assigned a "scope" value: "host" is local address,
1040 * "link" is direct route,
1041 * [ ... "site" ... "interior" ... ]
1042 * and "universe" is true gateway route with global meaning.
1043 *
1044 * Every prefix refers to a set of "nexthop"s (gw, oif),
1045 * where gw must have narrower scope. This recursion stops
1046 * when gw has LOCAL scope or if "nexthop" is declared ONLINK,
1047 * which means that gw is forced to be on link.
1048 *
1049 * Code is still hairy, but now it is apparently logically
1050 * consistent and very flexible. F.e. as by-product it allows
1051 * to co-exists in peace independent exterior and interior
1052 * routing processes.
1053 *
1054 * Normally it looks as following.
1055 *
1056 * {universe prefix} -> (gw, oif) [scope link]
1057 * |
1058 * |-> {link prefix} -> (gw, oif) [scope local]
1059 * |
1060 * |-> {local prefix} (terminal node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 */
David Ahern448d7242019-04-05 16:30:31 -07001062static int fib_check_nh_v4_gw(struct net *net, struct fib_nh *nh, u32 table,
1063 u8 scope, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001065 struct net_device *dev;
David Ahern448d7242019-04-05 16:30:31 -07001066 struct fib_result res;
Enrico Weigeltc3fee642019-06-06 16:43:17 +02001067 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
David Ahern448d7242019-04-05 16:30:31 -07001069 if (nh->fib_nh_flags & RTNH_F_ONLINK) {
1070 unsigned int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
David Ahern448d7242019-04-05 16:30:31 -07001072 if (scope >= RT_SCOPE_LINK) {
1073 NL_SET_ERR_MSG(extack, "Nexthop has invalid scope");
1074 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
David Ahern448d7242019-04-05 16:30:31 -07001076 dev = __dev_get_by_index(net, nh->fib_nh_oif);
1077 if (!dev) {
1078 NL_SET_ERR_MSG(extack, "Nexthop device required for onlink");
1079 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
David Ahern448d7242019-04-05 16:30:31 -07001081 if (!(dev->flags & IFF_UP)) {
1082 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
1083 return -ENETDOWN;
1084 }
1085 addr_type = inet_addr_type_dev_table(net, dev, nh->fib_nh_gw4);
1086 if (addr_type != RTN_UNICAST) {
1087 NL_SET_ERR_MSG(extack, "Nexthop has invalid gateway");
1088 return -EINVAL;
1089 }
1090 if (!netif_carrier_ok(dev))
1091 nh->fib_nh_flags |= RTNH_F_LINKDOWN;
1092 nh->fib_nh_dev = dev;
1093 dev_hold(dev);
1094 nh->fib_nh_scope = RT_SCOPE_LINK;
1095 return 0;
1096 }
1097 rcu_read_lock();
1098 {
1099 struct fib_table *tbl = NULL;
1100 struct flowi4 fl4 = {
1101 .daddr = nh->fib_nh_gw4,
1102 .flowi4_scope = scope + 1,
1103 .flowi4_oif = nh->fib_nh_oif,
1104 .flowi4_iif = LOOPBACK_IFINDEX,
1105 };
1106
1107 /* It is not necessary, but requires a bit of thinking */
1108 if (fl4.flowi4_scope < RT_SCOPE_LINK)
1109 fl4.flowi4_scope = RT_SCOPE_LINK;
1110
guodeqing5eea3a62020-06-17 10:07:16 +08001111 if (table && table != RT_TABLE_MAIN)
David Ahern448d7242019-04-05 16:30:31 -07001112 tbl = fib_get_table(net, table);
1113
1114 if (tbl)
1115 err = fib_table_lookup(tbl, &fl4, &res,
1116 FIB_LOOKUP_IGNORE_LINKSTATE |
1117 FIB_LOOKUP_NOREF);
1118
1119 /* on error or if no table given do full lookup. This
1120 * is needed for example when nexthops are in the local
1121 * table rather than the given table
1122 */
1123 if (!tbl || err) {
1124 err = fib_lookup(net, &fl4, &res,
1125 FIB_LOOKUP_IGNORE_LINKSTATE);
1126 }
1127
1128 if (err) {
David Ahernc3ab2b42017-05-21 10:12:03 -06001129 NL_SET_ERR_MSG(extack, "Nexthop has invalid gateway");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 goto out;
David Ahernc3ab2b42017-05-21 10:12:03 -06001131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
David Ahern448d7242019-04-05 16:30:31 -07001133
1134 err = -EINVAL;
1135 if (res.type != RTN_UNICAST && res.type != RTN_LOCAL) {
1136 NL_SET_ERR_MSG(extack, "Nexthop has invalid gateway");
1137 goto out;
1138 }
1139 nh->fib_nh_scope = res.scope;
1140 nh->fib_nh_oif = FIB_RES_OIF(res);
1141 nh->fib_nh_dev = dev = FIB_RES_DEV(res);
1142 if (!dev) {
1143 NL_SET_ERR_MSG(extack,
1144 "No egress device for nexthop gateway");
1145 goto out;
1146 }
1147 dev_hold(dev);
1148 if (!netif_carrier_ok(dev))
1149 nh->fib_nh_flags |= RTNH_F_LINKDOWN;
1150 err = (dev->flags & IFF_UP) ? 0 : -ENETDOWN;
Eric Dumazet8723e1b2010-10-19 00:39:26 +00001151out:
1152 rcu_read_unlock();
1153 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
David Ahern448d7242019-04-05 16:30:31 -07001156static int fib_check_nh_nongw(struct net *net, struct fib_nh *nh,
1157 struct netlink_ext_ack *extack)
1158{
1159 struct in_device *in_dev;
1160 int err;
1161
1162 if (nh->fib_nh_flags & (RTNH_F_PERVASIVE | RTNH_F_ONLINK)) {
1163 NL_SET_ERR_MSG(extack,
1164 "Invalid flags for nexthop - PERVASIVE and ONLINK can not be set");
1165 return -EINVAL;
1166 }
1167
1168 rcu_read_lock();
1169
1170 err = -ENODEV;
1171 in_dev = inetdev_by_index(net, nh->fib_nh_oif);
1172 if (!in_dev)
1173 goto out;
1174 err = -ENETDOWN;
1175 if (!(in_dev->dev->flags & IFF_UP)) {
1176 NL_SET_ERR_MSG(extack, "Device for nexthop is not up");
1177 goto out;
1178 }
1179
1180 nh->fib_nh_dev = in_dev->dev;
1181 dev_hold(nh->fib_nh_dev);
1182 nh->fib_nh_scope = RT_SCOPE_HOST;
1183 if (!netif_carrier_ok(nh->fib_nh_dev))
1184 nh->fib_nh_flags |= RTNH_F_LINKDOWN;
1185 err = 0;
1186out:
1187 rcu_read_unlock();
1188 return err;
1189}
1190
David Ahernac1fab22019-05-22 12:04:43 -07001191int fib_check_nh(struct net *net, struct fib_nh *nh, u32 table, u8 scope,
1192 struct netlink_ext_ack *extack)
David Ahern448d7242019-04-05 16:30:31 -07001193{
David Ahern448d7242019-04-05 16:30:31 -07001194 int err;
1195
1196 if (nh->fib_nh_gw_family == AF_INET)
David Ahernac1fab22019-05-22 12:04:43 -07001197 err = fib_check_nh_v4_gw(net, nh, table, scope, extack);
David Ahern717a8f52019-04-05 16:30:32 -07001198 else if (nh->fib_nh_gw_family == AF_INET6)
1199 err = fib_check_nh_v6_gw(net, nh, table, extack);
David Ahern448d7242019-04-05 16:30:31 -07001200 else
1201 err = fib_check_nh_nongw(net, nh, extack);
1202
1203 return err;
1204}
1205
Al Viro81f7bf62006-09-27 18:40:00 -07001206static inline unsigned int fib_laddr_hashfn(__be32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
David S. Miller123b9732011-02-01 15:34:21 -08001208 unsigned int mask = (fib_info_hash_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001210 return ((__force u32)val ^
1211 ((__force u32)val >> 7) ^
1212 ((__force u32)val >> 14)) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
David S. Miller123b9732011-02-01 15:34:21 -08001215static struct hlist_head *fib_info_hash_alloc(int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 if (bytes <= PAGE_SIZE)
Joonwoo Park88f83492007-11-26 23:29:32 +08001218 return kzalloc(bytes, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 else
1220 return (struct hlist_head *)
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001221 __get_free_pages(GFP_KERNEL | __GFP_ZERO,
1222 get_order(bytes));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
David S. Miller123b9732011-02-01 15:34:21 -08001225static void fib_info_hash_free(struct hlist_head *hash, int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227 if (!hash)
1228 return;
1229
1230 if (bytes <= PAGE_SIZE)
1231 kfree(hash);
1232 else
1233 free_pages((unsigned long) hash, get_order(bytes));
1234}
1235
David S. Miller123b9732011-02-01 15:34:21 -08001236static void fib_info_hash_move(struct hlist_head *new_info_hash,
1237 struct hlist_head *new_laddrhash,
1238 unsigned int new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
David S. Millerb7656e72005-08-05 04:12:48 -07001240 struct hlist_head *old_info_hash, *old_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -08001241 unsigned int old_size = fib_info_hash_size;
David S. Millerb7656e72005-08-05 04:12:48 -07001242 unsigned int i, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Stephen Hemminger832b4c52006-08-29 16:48:09 -07001244 spin_lock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -07001245 old_info_hash = fib_info_hash;
1246 old_laddrhash = fib_info_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -08001247 fib_info_hash_size = new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 for (i = 0; i < old_size; i++) {
1250 struct hlist_head *head = &fib_info_hash[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001251 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 struct fib_info *fi;
1253
Sasha Levinb67bfe02013-02-27 17:06:00 -08001254 hlist_for_each_entry_safe(fi, n, head, fib_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct hlist_head *dest;
1256 unsigned int new_hash;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 new_hash = fib_info_hashfn(fi);
1259 dest = &new_info_hash[new_hash];
1260 hlist_add_head(&fi->fib_hash, dest);
1261 }
1262 }
1263 fib_info_hash = new_info_hash;
1264
1265 for (i = 0; i < old_size; i++) {
1266 struct hlist_head *lhead = &fib_info_laddrhash[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001267 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 struct fib_info *fi;
1269
Sasha Levinb67bfe02013-02-27 17:06:00 -08001270 hlist_for_each_entry_safe(fi, n, lhead, fib_lhash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct hlist_head *ldest;
1272 unsigned int new_hash;
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 new_hash = fib_laddr_hashfn(fi->fib_prefsrc);
1275 ldest = &new_laddrhash[new_hash];
1276 hlist_add_head(&fi->fib_lhash, ldest);
1277 }
1278 }
1279 fib_info_laddrhash = new_laddrhash;
1280
Stephen Hemminger832b4c52006-08-29 16:48:09 -07001281 spin_unlock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -07001282
1283 bytes = old_size * sizeof(struct hlist_head *);
David S. Miller123b9732011-02-01 15:34:21 -08001284 fib_info_hash_free(old_info_hash, bytes);
1285 fib_info_hash_free(old_laddrhash, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
David Aherndcb1ecb2019-06-03 20:19:50 -07001288__be32 fib_info_update_nhc_saddr(struct net *net, struct fib_nh_common *nhc,
1289 unsigned char scope)
David S. Miller436c3b62011-03-24 17:42:21 -07001290{
David Aherndcb1ecb2019-06-03 20:19:50 -07001291 struct fib_nh *nh;
1292
1293 if (nhc->nhc_family != AF_INET)
1294 return inet_select_addr(nhc->nhc_dev, 0, scope);
1295
1296 nh = container_of(nhc, struct fib_nh, nh_common);
David Ahernc3669482019-05-22 12:04:45 -07001297 nh->nh_saddr = inet_select_addr(nh->fib_nh_dev, nh->fib_nh_gw4, scope);
David S. Miller436c3b62011-03-24 17:42:21 -07001298 nh->nh_saddr_genid = atomic_read(&net->ipv4.dev_addr_genid);
1299
1300 return nh->nh_saddr;
1301}
1302
David Aherneba618a2019-04-02 14:11:55 -07001303__be32 fib_result_prefsrc(struct net *net, struct fib_result *res)
1304{
1305 struct fib_nh_common *nhc = res->nhc;
David Aherneba618a2019-04-02 14:11:55 -07001306
1307 if (res->fi->fib_prefsrc)
1308 return res->fi->fib_prefsrc;
1309
David Aherndcb1ecb2019-06-03 20:19:50 -07001310 if (nhc->nhc_family == AF_INET) {
1311 struct fib_nh *nh;
David Aherneba618a2019-04-02 14:11:55 -07001312
David Aherndcb1ecb2019-06-03 20:19:50 -07001313 nh = container_of(nhc, struct fib_nh, nh_common);
1314 if (nh->nh_saddr_genid == atomic_read(&net->ipv4.dev_addr_genid))
1315 return nh->nh_saddr;
1316 }
1317
1318 return fib_info_update_nhc_saddr(net, nhc, res->fi->fib_scope);
David Aherneba618a2019-04-02 14:11:55 -07001319}
1320
David Ahern021dd3b2015-08-13 14:59:06 -06001321static bool fib_valid_prefsrc(struct fib_config *cfg, __be32 fib_prefsrc)
1322{
1323 if (cfg->fc_type != RTN_LOCAL || !cfg->fc_dst ||
1324 fib_prefsrc != cfg->fc_dst) {
David Ahern9b8ff512015-09-01 14:26:35 -06001325 u32 tb_id = cfg->fc_table;
David Aherne1b8d902015-11-03 15:59:28 -08001326 int rc;
David Ahern021dd3b2015-08-13 14:59:06 -06001327
1328 if (tb_id == RT_TABLE_MAIN)
1329 tb_id = RT_TABLE_LOCAL;
1330
David Aherne1b8d902015-11-03 15:59:28 -08001331 rc = inet_addr_type_table(cfg->fc_nlinfo.nl_net,
1332 fib_prefsrc, tb_id);
1333
1334 if (rc != RTN_LOCAL && tb_id != RT_TABLE_LOCAL) {
1335 rc = inet_addr_type_table(cfg->fc_nlinfo.nl_net,
1336 fib_prefsrc, RT_TABLE_LOCAL);
David Ahern021dd3b2015-08-13 14:59:06 -06001337 }
David Aherne1b8d902015-11-03 15:59:28 -08001338
1339 if (rc != RTN_LOCAL)
1340 return false;
David Ahern021dd3b2015-08-13 14:59:06 -06001341 }
1342 return true;
1343}
1344
David Ahern6d8422a12017-05-21 10:12:02 -06001345struct fib_info *fib_create_info(struct fib_config *cfg,
1346 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 int err;
1349 struct fib_info *fi = NULL;
David Ahern4c7e8082019-06-03 20:19:51 -07001350 struct nexthop *nh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 struct fib_info *ofi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 int nhs = 1;
Denis V. Lunev7462bd742008-01-31 18:49:32 -08001353 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
David S. Miller4c8237c2011-03-07 14:27:38 -08001355 if (cfg->fc_type > RTN_MAX)
1356 goto err_inval;
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /* Fast check to catch the most weird cases */
David Ahernc3ab2b42017-05-21 10:12:03 -06001359 if (fib_props[cfg->fc_type].scope > cfg->fc_scope) {
1360 NL_SET_ERR_MSG(extack, "Invalid scope");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
David Ahernc3ab2b42017-05-21 10:12:03 -06001364 if (cfg->fc_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN)) {
1365 NL_SET_ERR_MSG(extack,
1366 "Invalid rtm_flags - can not contain DEAD or LINKDOWN");
Julian Anastasov80610222016-07-10 21:11:55 +03001367 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001368 }
Julian Anastasov80610222016-07-10 21:11:55 +03001369
David Ahern493ced12019-06-08 14:53:32 -07001370 if (cfg->fc_nh_id) {
David Ahern6c48ea52019-06-08 14:53:33 -07001371 if (!cfg->fc_mx) {
1372 fi = fib_find_info_nh(net, cfg);
1373 if (fi) {
Yajun Deng79976892021-07-29 15:13:50 +08001374 refcount_inc(&fi->fib_treeref);
David Ahern6c48ea52019-06-08 14:53:33 -07001375 return fi;
1376 }
1377 }
1378
David Ahern493ced12019-06-08 14:53:32 -07001379 nh = nexthop_find_by_id(net, cfg->fc_nh_id);
1380 if (!nh) {
1381 NL_SET_ERR_MSG(extack, "Nexthop id does not exist");
1382 goto err_inval;
1383 }
1384 nhs = 0;
1385 }
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -07001388 if (cfg->fc_mp) {
David Ahern6d8422a12017-05-21 10:12:02 -06001389 nhs = fib_count_nexthops(cfg->fc_mp, cfg->fc_mp_len, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (nhs == 0)
1391 goto err_inval;
1392 }
1393#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 err = -ENOBUFS;
David S. Miller123b9732011-02-01 15:34:21 -08001396 if (fib_info_cnt >= fib_info_hash_size) {
1397 unsigned int new_size = fib_info_hash_size << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 struct hlist_head *new_info_hash;
1399 struct hlist_head *new_laddrhash;
1400 unsigned int bytes;
1401
1402 if (!new_size)
Eric Dumazetd94ce9b2012-10-21 20:12:09 +00001403 new_size = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 bytes = new_size * sizeof(struct hlist_head *);
David S. Miller123b9732011-02-01 15:34:21 -08001405 new_info_hash = fib_info_hash_alloc(bytes);
1406 new_laddrhash = fib_info_hash_alloc(bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (!new_info_hash || !new_laddrhash) {
David S. Miller123b9732011-02-01 15:34:21 -08001408 fib_info_hash_free(new_info_hash, bytes);
1409 fib_info_hash_free(new_laddrhash, bytes);
Joonwoo Park88f83492007-11-26 23:29:32 +08001410 } else
David S. Miller123b9732011-02-01 15:34:21 -08001411 fib_info_hash_move(new_info_hash, new_laddrhash, new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
David S. Miller123b9732011-02-01 15:34:21 -08001413 if (!fib_info_hash_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 goto failure;
1415 }
1416
Gustavo A. R. Silva1f533ba2019-01-30 18:51:48 -06001417 fi = kzalloc(struct_size(fi, fib_nh, nhs), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01001418 if (!fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 goto failure;
David Ahern767a2212018-10-04 20:07:51 -07001420 fi->fib_metrics = ip_fib_metrics_init(fi->fib_net, cfg->fc_mx,
David Ahernd7e774f2018-11-06 12:51:15 -08001421 cfg->fc_mx_len, extack);
Enrico Weigelt88e235b2019-06-05 23:09:05 +02001422 if (IS_ERR(fi->fib_metrics)) {
David Ahern767a2212018-10-04 20:07:51 -07001423 err = PTR_ERR(fi->fib_metrics);
1424 kfree(fi);
1425 return ERR_PTR(err);
Eric Dumazet187e5b32017-08-15 05:26:17 -07001426 }
David Ahern767a2212018-10-04 20:07:51 -07001427
Eric Dumazet187e5b32017-08-15 05:26:17 -07001428 fib_info_cnt++;
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001429 fi->fib_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -07001430 fi->fib_protocol = cfg->fc_protocol;
David S. Miller37e826c2011-03-24 18:06:47 -07001431 fi->fib_scope = cfg->fc_scope;
Thomas Graf4e902c52006-08-17 18:14:52 -07001432 fi->fib_flags = cfg->fc_flags;
1433 fi->fib_priority = cfg->fc_priority;
1434 fi->fib_prefsrc = cfg->fc_prefsrc;
Eric Dumazetf4ef85b2012-10-04 01:25:26 +00001435 fi->fib_type = cfg->fc_type;
Mark Tomlinson5a56a0b2016-09-05 10:20:20 +12001436 fi->fib_tb_id = cfg->fc_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 fi->fib_nhs = nhs;
David Ahern4c7e8082019-06-03 20:19:51 -07001439 if (nh) {
1440 if (!nexthop_get(nh)) {
1441 NL_SET_ERR_MSG(extack, "Nexthop has been deleted");
1442 err = -EINVAL;
1443 } else {
1444 err = 0;
1445 fi->nh = nh;
1446 }
1447 } else {
1448 change_nexthops(fi) {
1449 nexthop_nh->nh_parent = fi;
1450 } endfor_nexthops(fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
David Ahern4c7e8082019-06-03 20:19:51 -07001452 if (cfg->fc_mp)
1453 err = fib_get_nhs(fi, cfg->fc_mp, cfg->fc_mp_len, cfg,
1454 extack);
1455 else
1456 err = fib_nh_init(net, fi->fib_nh, cfg, 1, extack);
1457 }
Thomas Graf4e902c52006-08-17 18:14:52 -07001458
David Aherne4516ef2019-03-27 20:53:48 -07001459 if (err != 0)
1460 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Thomas Graf4e902c52006-08-17 18:14:52 -07001462 if (fib_props[cfg->fc_type].error) {
David Ahernf35b7942019-04-05 16:30:28 -07001463 if (cfg->fc_gw_family || cfg->fc_oif || cfg->fc_mp) {
David Ahernc3ab2b42017-05-21 10:12:03 -06001464 NL_SET_ERR_MSG(extack,
1465 "Gateway, device and multipath can not be specified for this route type");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 goto link_it;
David S. Miller4c8237c2011-03-07 14:27:38 -08001469 } else {
1470 switch (cfg->fc_type) {
1471 case RTN_UNICAST:
1472 case RTN_LOCAL:
1473 case RTN_BROADCAST:
1474 case RTN_ANYCAST:
1475 case RTN_MULTICAST:
1476 break;
1477 default:
David Ahernc3ab2b42017-05-21 10:12:03 -06001478 NL_SET_ERR_MSG(extack, "Invalid route type");
David S. Miller4c8237c2011-03-07 14:27:38 -08001479 goto err_inval;
1480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
1482
David Ahernc3ab2b42017-05-21 10:12:03 -06001483 if (cfg->fc_scope > RT_SCOPE_HOST) {
1484 NL_SET_ERR_MSG(extack, "Invalid scope");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
David Ahern4c7e8082019-06-03 20:19:51 -07001488 if (fi->nh) {
1489 err = fib_check_nexthop(fi->nh, cfg->fc_scope, extack);
1490 if (err)
1491 goto failure;
1492 } else if (cfg->fc_scope == RT_SCOPE_HOST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 struct fib_nh *nh = fi->fib_nh;
1494
1495 /* Local address is added. */
David Ahernc3ab2b42017-05-21 10:12:03 -06001496 if (nhs != 1) {
1497 NL_SET_ERR_MSG(extack,
1498 "Route with host scope can not have multiple nexthops");
David Ahern6d8422a12017-05-21 10:12:02 -06001499 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001500 }
David Ahernbdf00462019-04-05 16:30:26 -07001501 if (nh->fib_nh_gw_family) {
David Ahernc3ab2b42017-05-21 10:12:03 -06001502 NL_SET_ERR_MSG(extack,
1503 "Route with host scope can not have a gateway");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001505 }
David Ahernb75ed8b2019-03-27 20:53:55 -07001506 nh->fib_nh_scope = RT_SCOPE_NOWHERE;
David Ahern5481d732019-06-03 20:19:49 -07001507 nh->fib_nh_dev = dev_get_by_index(net, nh->fib_nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 err = -ENODEV;
David Ahernb75ed8b2019-03-27 20:53:55 -07001509 if (!nh->fib_nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 goto failure;
1511 } else {
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001512 int linkdown = 0;
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 change_nexthops(fi) {
David Ahernac1fab22019-05-22 12:04:43 -07001515 err = fib_check_nh(cfg->fc_nlinfo.nl_net, nexthop_nh,
1516 cfg->fc_table, cfg->fc_scope,
1517 extack);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001518 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 goto failure;
David Ahernb75ed8b2019-03-27 20:53:55 -07001520 if (nexthop_nh->fib_nh_flags & RTNH_F_LINKDOWN)
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001521 linkdown++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 } endfor_nexthops(fi)
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001523 if (linkdown == fi->fib_nhs)
1524 fi->fib_flags |= RTNH_F_LINKDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526
David Ahernc3ab2b42017-05-21 10:12:03 -06001527 if (fi->fib_prefsrc && !fib_valid_prefsrc(cfg, fi->fib_prefsrc)) {
1528 NL_SET_ERR_MSG(extack, "Invalid prefsrc address");
David Ahern021dd3b2015-08-13 14:59:06 -06001529 goto err_inval;
David Ahernc3ab2b42017-05-21 10:12:03 -06001530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
David Ahern4c7e8082019-06-03 20:19:51 -07001532 if (!fi->nh) {
1533 change_nexthops(fi) {
1534 fib_info_update_nhc_saddr(net, &nexthop_nh->nh_common,
1535 fi->fib_scope);
1536 if (nexthop_nh->fib_nh_gw_family == AF_INET6)
1537 fi->fib_nh_is_v6 = true;
1538 } endfor_nexthops(fi)
David S. Miller1fc050a2011-03-07 20:54:48 -08001539
David Ahern4c7e8082019-06-03 20:19:51 -07001540 fib_rebalance(fi);
1541 }
Peter Nørlund0e884c72015-09-30 10:12:21 +02001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543link_it:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001544 ofi = fib_find_info(fi);
1545 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 fi->fib_dead = 1;
1547 free_fib_info(fi);
Yajun Deng79976892021-07-29 15:13:50 +08001548 refcount_inc(&ofi->fib_treeref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return ofi;
1550 }
1551
David Ahern28814cd2021-08-02 10:02:21 -06001552 refcount_set(&fi->fib_treeref, 1);
Reshetova, Elena0029c0d2017-07-04 09:35:02 +03001553 refcount_set(&fi->fib_clntref, 1);
Stephen Hemminger832b4c52006-08-29 16:48:09 -07001554 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 hlist_add_head(&fi->fib_hash,
1556 &fib_info_hash[fib_info_hashfn(fi)]);
1557 if (fi->fib_prefsrc) {
1558 struct hlist_head *head;
1559
1560 head = &fib_info_laddrhash[fib_laddr_hashfn(fi->fib_prefsrc)];
1561 hlist_add_head(&fi->fib_lhash, head);
1562 }
David Ahern4c7e8082019-06-03 20:19:51 -07001563 if (fi->nh) {
1564 list_add(&fi->nh_list, &nh->fi_list);
1565 } else {
1566 change_nexthops(fi) {
1567 struct hlist_head *head;
1568 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
David Ahern4c7e8082019-06-03 20:19:51 -07001570 if (!nexthop_nh->fib_nh_dev)
1571 continue;
1572 hash = fib_devindex_hashfn(nexthop_nh->fib_nh_dev->ifindex);
1573 head = &fib_info_devhash[hash];
1574 hlist_add_head(&nexthop_nh->nh_hash, head);
1575 } endfor_nexthops(fi)
1576 }
Stephen Hemminger832b4c52006-08-29 16:48:09 -07001577 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return fi;
1579
1580err_inval:
1581 err = -EINVAL;
1582
1583failure:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001584 if (fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 fi->fib_dead = 1;
1586 free_fib_info(fi);
1587 }
Thomas Graf4e902c52006-08-17 18:14:52 -07001588
1589 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
David Ahernc0a72072019-04-02 14:11:58 -07001592int fib_nexthop_info(struct sk_buff *skb, const struct fib_nh_common *nhc,
Donald Sharp7bdf4de2019-09-04 10:11:58 -04001593 u8 rt_family, unsigned char *flags, bool skip_oif)
David Ahernb0f60192019-04-02 14:11:56 -07001594{
David Ahernc2364192019-04-02 14:11:57 -07001595 if (nhc->nhc_flags & RTNH_F_DEAD)
David Ahernb0f60192019-04-02 14:11:56 -07001596 *flags |= RTNH_F_DEAD;
1597
David Ahernc2364192019-04-02 14:11:57 -07001598 if (nhc->nhc_flags & RTNH_F_LINKDOWN) {
David Ahernb0f60192019-04-02 14:11:56 -07001599 *flags |= RTNH_F_LINKDOWN;
1600
1601 rcu_read_lock();
David Ahernc2364192019-04-02 14:11:57 -07001602 switch (nhc->nhc_family) {
1603 case AF_INET:
1604 if (ip_ignore_linkdown(nhc->nhc_dev))
1605 *flags |= RTNH_F_DEAD;
1606 break;
David Ahernc0a72072019-04-02 14:11:58 -07001607 case AF_INET6:
1608 if (ip6_ignore_linkdown(nhc->nhc_dev))
1609 *flags |= RTNH_F_DEAD;
1610 break;
David Ahernc2364192019-04-02 14:11:57 -07001611 }
David Ahernb0f60192019-04-02 14:11:56 -07001612 rcu_read_unlock();
1613 }
1614
David Ahernbdf00462019-04-05 16:30:26 -07001615 switch (nhc->nhc_gw_family) {
1616 case AF_INET:
1617 if (nla_put_in_addr(skb, RTA_GATEWAY, nhc->nhc_gw.ipv4))
1618 goto nla_put_failure;
1619 break;
1620 case AF_INET6:
David Ahernd1566262019-04-05 16:30:40 -07001621 /* if gateway family does not match nexthop family
1622 * gateway is encoded as RTA_VIA
1623 */
Donald Sharp7bdf4de2019-09-04 10:11:58 -04001624 if (rt_family != nhc->nhc_gw_family) {
David Ahernd1566262019-04-05 16:30:40 -07001625 int alen = sizeof(struct in6_addr);
1626 struct nlattr *nla;
1627 struct rtvia *via;
1628
1629 nla = nla_reserve(skb, RTA_VIA, alen + 2);
1630 if (!nla)
1631 goto nla_put_failure;
1632
1633 via = nla_data(nla);
1634 via->rtvia_family = AF_INET6;
1635 memcpy(via->rtvia_addr, &nhc->nhc_gw.ipv6, alen);
1636 } else if (nla_put_in6_addr(skb, RTA_GATEWAY,
1637 &nhc->nhc_gw.ipv6) < 0) {
David Ahernbdf00462019-04-05 16:30:26 -07001638 goto nla_put_failure;
David Ahernd1566262019-04-05 16:30:40 -07001639 }
David Ahernbdf00462019-04-05 16:30:26 -07001640 break;
David Ahernc2364192019-04-02 14:11:57 -07001641 }
David Ahernb0f60192019-04-02 14:11:56 -07001642
Ido Schimmelca787e02020-11-10 12:25:53 +02001643 *flags |= (nhc->nhc_flags &
1644 (RTNH_F_ONLINK | RTNH_F_OFFLOAD | RTNH_F_TRAP));
David Ahernb0f60192019-04-02 14:11:56 -07001645
David Ahernc2364192019-04-02 14:11:57 -07001646 if (!skip_oif && nhc->nhc_dev &&
1647 nla_put_u32(skb, RTA_OIF, nhc->nhc_dev->ifindex))
David Ahernb0f60192019-04-02 14:11:56 -07001648 goto nla_put_failure;
1649
David Ahernc2364192019-04-02 14:11:57 -07001650 if (nhc->nhc_lwtstate &&
David Ahernffa8ce52019-04-23 08:23:41 -07001651 lwtunnel_fill_encap(skb, nhc->nhc_lwtstate,
1652 RTA_ENCAP, RTA_ENCAP_TYPE) < 0)
David Ahernb0f60192019-04-02 14:11:56 -07001653 goto nla_put_failure;
1654
1655 return 0;
1656
1657nla_put_failure:
1658 return -EMSGSIZE;
1659}
David Ahernc0a72072019-04-02 14:11:58 -07001660EXPORT_SYMBOL_GPL(fib_nexthop_info);
David Ahernb0f60192019-04-02 14:11:56 -07001661
David Ahernc0a72072019-04-02 14:11:58 -07001662#if IS_ENABLED(CONFIG_IP_ROUTE_MULTIPATH) || IS_ENABLED(CONFIG_IPV6)
1663int fib_add_nexthop(struct sk_buff *skb, const struct fib_nh_common *nhc,
Xiao Liang597aa162021-09-23 23:03:19 +08001664 int nh_weight, u8 rt_family, u32 nh_tclassid)
David Ahernb0f60192019-04-02 14:11:56 -07001665{
David Ahernc2364192019-04-02 14:11:57 -07001666 const struct net_device *dev = nhc->nhc_dev;
David Ahernb0f60192019-04-02 14:11:56 -07001667 struct rtnexthop *rtnh;
David Ahernecc56632019-04-23 08:48:09 -07001668 unsigned char flags = 0;
David Ahernb0f60192019-04-02 14:11:56 -07001669
1670 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
1671 if (!rtnh)
1672 goto nla_put_failure;
1673
David Ahernc2364192019-04-02 14:11:57 -07001674 rtnh->rtnh_hops = nh_weight - 1;
David Ahernb0f60192019-04-02 14:11:56 -07001675 rtnh->rtnh_ifindex = dev ? dev->ifindex : 0;
1676
Donald Sharp7bdf4de2019-09-04 10:11:58 -04001677 if (fib_nexthop_info(skb, nhc, rt_family, &flags, true) < 0)
David Ahernb0f60192019-04-02 14:11:56 -07001678 goto nla_put_failure;
1679
1680 rtnh->rtnh_flags = flags;
1681
Xiao Liang597aa162021-09-23 23:03:19 +08001682 if (nh_tclassid && nla_put_u32(skb, RTA_FLOW, nh_tclassid))
1683 goto nla_put_failure;
1684
David Ahernb0f60192019-04-02 14:11:56 -07001685 /* length of rtnetlink header + attributes */
1686 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
1687
1688 return 0;
1689
1690nla_put_failure:
1691 return -EMSGSIZE;
1692}
David Ahernc0a72072019-04-02 14:11:58 -07001693EXPORT_SYMBOL_GPL(fib_add_nexthop);
David Ahernc2364192019-04-02 14:11:57 -07001694#endif
David Ahernb0f60192019-04-02 14:11:56 -07001695
David Ahernc2364192019-04-02 14:11:57 -07001696#ifdef CONFIG_IP_ROUTE_MULTIPATH
David Ahernb0f60192019-04-02 14:11:56 -07001697static int fib_add_multipath(struct sk_buff *skb, struct fib_info *fi)
1698{
1699 struct nlattr *mp;
1700
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001701 mp = nla_nest_start_noflag(skb, RTA_MULTIPATH);
David Ahernb0f60192019-04-02 14:11:56 -07001702 if (!mp)
1703 goto nla_put_failure;
1704
David Ahern4c7e8082019-06-03 20:19:51 -07001705 if (unlikely(fi->nh)) {
Donald Sharp7bdf4de2019-09-04 10:11:58 -04001706 if (nexthop_mpath_fill_node(skb, fi->nh, AF_INET) < 0)
David Ahern4c7e8082019-06-03 20:19:51 -07001707 goto nla_put_failure;
1708 goto mp_end;
1709 }
1710
David Ahernb0f60192019-04-02 14:11:56 -07001711 for_nexthops(fi) {
Xiao Liang597aa162021-09-23 23:03:19 +08001712 u32 nh_tclassid = 0;
David Ahernb0f60192019-04-02 14:11:56 -07001713#ifdef CONFIG_IP_ROUTE_CLASSID
Xiao Liang597aa162021-09-23 23:03:19 +08001714 nh_tclassid = nh->nh_tclassid;
David Ahernb0f60192019-04-02 14:11:56 -07001715#endif
Xiao Liang597aa162021-09-23 23:03:19 +08001716 if (fib_add_nexthop(skb, &nh->nh_common, nh->fib_nh_weight,
1717 AF_INET, nh_tclassid) < 0)
1718 goto nla_put_failure;
David Ahernb0f60192019-04-02 14:11:56 -07001719 } endfor_nexthops(fi);
1720
David Ahern4c7e8082019-06-03 20:19:51 -07001721mp_end:
David Ahernb0f60192019-04-02 14:11:56 -07001722 nla_nest_end(skb, mp);
1723
1724 return 0;
1725
1726nla_put_failure:
1727 return -EMSGSIZE;
1728}
1729#else
1730static int fib_add_multipath(struct sk_buff *skb, struct fib_info *fi)
1731{
1732 return 0;
1733}
1734#endif
1735
Eric W. Biederman15e47302012-09-07 20:12:54 +00001736int fib_dump_info(struct sk_buff *skb, u32 portid, u32 seq, int event,
Amit Cohen08554782021-02-01 21:47:50 +02001737 const struct fib_rt_info *fri, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
Ido Schimmel1e301fd2020-01-14 13:23:10 +02001739 unsigned int nhs = fib_info_num_path(fri->fi);
1740 struct fib_info *fi = fri->fi;
1741 u32 tb_id = fri->tb_id;
Thomas Grafbe403ea2006-08-17 18:15:17 -07001742 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Eric W. Biederman15e47302012-09-07 20:12:54 +00001745 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags);
Ian Morris51456b22015-04-03 09:17:26 +01001746 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08001747 return -EMSGSIZE;
Thomas Grafbe403ea2006-08-17 18:15:17 -07001748
1749 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 rtm->rtm_family = AF_INET;
Ido Schimmel1e301fd2020-01-14 13:23:10 +02001751 rtm->rtm_dst_len = fri->dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 rtm->rtm_src_len = 0;
Ido Schimmel1e301fd2020-01-14 13:23:10 +02001753 rtm->rtm_tos = fri->tos;
Krzysztof Piotr Oledzki709772e2008-06-10 15:44:49 -07001754 if (tb_id < 256)
1755 rtm->rtm_table = tb_id;
1756 else
1757 rtm->rtm_table = RT_TABLE_COMPAT;
David S. Millerf3756b72012-04-01 20:39:02 -04001758 if (nla_put_u32(skb, RTA_TABLE, tb_id))
1759 goto nla_put_failure;
Ido Schimmel1e301fd2020-01-14 13:23:10 +02001760 rtm->rtm_type = fri->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 rtm->rtm_flags = fi->fib_flags;
David S. Miller37e826c2011-03-24 18:06:47 -07001762 rtm->rtm_scope = fi->fib_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 rtm->rtm_protocol = fi->fib_protocol;
Thomas Grafbe403ea2006-08-17 18:15:17 -07001764
David S. Millerf3756b72012-04-01 20:39:02 -04001765 if (rtm->rtm_dst_len &&
Ido Schimmel1e301fd2020-01-14 13:23:10 +02001766 nla_put_in_addr(skb, RTA_DST, fri->dst))
David S. Millerf3756b72012-04-01 20:39:02 -04001767 goto nla_put_failure;
1768 if (fi->fib_priority &&
1769 nla_put_u32(skb, RTA_PRIORITY, fi->fib_priority))
1770 goto nla_put_failure;
Eric Dumazet3fb07da2017-05-25 14:27:35 -07001771 if (rtnetlink_put_metrics(skb, fi->fib_metrics->metrics) < 0)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001772 goto nla_put_failure;
1773
David S. Millerf3756b72012-04-01 20:39:02 -04001774 if (fi->fib_prefsrc &&
Jiri Benc930345e2015-03-29 16:59:25 +02001775 nla_put_in_addr(skb, RTA_PREFSRC, fi->fib_prefsrc))
David S. Millerf3756b72012-04-01 20:39:02 -04001776 goto nla_put_failure;
David Ahern4c7e8082019-06-03 20:19:51 -07001777
1778 if (fi->nh) {
1779 if (nla_put_u32(skb, RTA_NH_ID, fi->nh->id))
1780 goto nla_put_failure;
1781 if (nexthop_is_blackhole(fi->nh))
1782 rtm->rtm_type = RTN_BLACKHOLE;
Roopa Prabhu4f801162020-04-27 13:56:46 -07001783 if (!fi->fib_net->ipv4.sysctl_nexthop_compat_mode)
1784 goto offload;
David Ahern4c7e8082019-06-03 20:19:51 -07001785 }
1786
David Ahern5481d732019-06-03 20:19:49 -07001787 if (nhs == 1) {
David Aherndcb1ecb2019-06-03 20:19:50 -07001788 const struct fib_nh_common *nhc = fib_info_nhc(fi, 0);
David Ahernecc56632019-04-23 08:48:09 -07001789 unsigned char flags = 0;
David Ahernb0f60192019-04-02 14:11:56 -07001790
Donald Sharp7bdf4de2019-09-04 10:11:58 -04001791 if (fib_nexthop_info(skb, nhc, AF_INET, &flags, false) < 0)
David S. Millerf3756b72012-04-01 20:39:02 -04001792 goto nla_put_failure;
David Ahernb0f60192019-04-02 14:11:56 -07001793
1794 rtm->rtm_flags = flags;
Patrick McHardyc7066f72011-01-14 13:36:42 +01001795#ifdef CONFIG_IP_ROUTE_CLASSID
David Aherndcb1ecb2019-06-03 20:19:50 -07001796 if (nhc->nhc_family == AF_INET) {
1797 struct fib_nh *nh;
1798
1799 nh = container_of(nhc, struct fib_nh, nh_common);
1800 if (nh->nh_tclassid &&
1801 nla_put_u32(skb, RTA_FLOW, nh->nh_tclassid))
1802 goto nla_put_failure;
1803 }
Patrick McHardy8265abc2006-07-21 15:09:55 -07001804#endif
David Ahernb0f60192019-04-02 14:11:56 -07001805 } else {
1806 if (fib_add_multipath(skb, fi) < 0)
David Ahernea7a8082017-01-11 14:29:54 -08001807 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Thomas Grafbe403ea2006-08-17 18:15:17 -07001809
Roopa Prabhu4f801162020-04-27 13:56:46 -07001810offload:
Ido Schimmel90b93f12020-01-14 13:23:11 +02001811 if (fri->offload)
1812 rtm->rtm_flags |= RTM_F_OFFLOAD;
1813 if (fri->trap)
1814 rtm->rtm_flags |= RTM_F_TRAP;
Amit Cohen36c51002021-02-07 10:22:50 +02001815 if (fri->offload_failed)
1816 rtm->rtm_flags |= RTM_F_OFFLOAD_FAILED;
Ido Schimmel90b93f12020-01-14 13:23:11 +02001817
Johannes Berg053c0952015-01-16 22:09:00 +01001818 nlmsg_end(skb, nlh);
1819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Thomas Grafbe403ea2006-08-17 18:15:17 -07001821nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001822 nlmsg_cancel(skb, nlh);
1823 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001827 * Update FIB if:
1828 * - local address disappeared -> we must delete all the entries
1829 * referring to it.
1830 * - device went down -> we must shutdown all nexthops going via it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 */
Mark Tomlinson5a56a0b2016-09-05 10:20:20 +12001832int fib_sync_down_addr(struct net_device *dev, __be32 local)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001833{
1834 int ret = 0;
1835 unsigned int hash = fib_laddr_hashfn(local);
1836 struct hlist_head *head = &fib_info_laddrhash[hash];
David Aherne0a31262019-11-07 18:29:52 +00001837 int tb_id = l3mdev_fib_table(dev) ? : RT_TABLE_MAIN;
Mark Tomlinson5a56a0b2016-09-05 10:20:20 +12001838 struct net *net = dev_net(dev);
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001839 struct fib_info *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Ian Morris51456b22015-04-03 09:17:26 +01001841 if (!fib_info_laddrhash || local == 0)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001842 return 0;
1843
Sasha Levinb67bfe02013-02-27 17:06:00 -08001844 hlist_for_each_entry(fi, head, fib_lhash) {
Mark Tomlinson5a56a0b2016-09-05 10:20:20 +12001845 if (!net_eq(fi->fib_net, net) ||
1846 fi->fib_tb_id != tb_id)
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001847 continue;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001848 if (fi->fib_prefsrc == local) {
1849 fi->fib_flags |= RTNH_F_DEAD;
1850 ret++;
1851 }
1852 }
1853 return ret;
1854}
1855
David Ahernb75ed8b2019-03-27 20:53:55 -07001856static int call_fib_nh_notifiers(struct fib_nh *nh,
Ido Schimmel982acb92017-02-08 11:16:39 +01001857 enum fib_event_type event_type)
1858{
David Ahernb75ed8b2019-03-27 20:53:55 -07001859 bool ignore_link_down = ip_ignore_linkdown(nh->fib_nh_dev);
Ido Schimmel982acb92017-02-08 11:16:39 +01001860 struct fib_nh_notifier_info info = {
David Ahernb75ed8b2019-03-27 20:53:55 -07001861 .fib_nh = nh,
Ido Schimmel982acb92017-02-08 11:16:39 +01001862 };
1863
1864 switch (event_type) {
1865 case FIB_EVENT_NH_ADD:
David Ahernb75ed8b2019-03-27 20:53:55 -07001866 if (nh->fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel982acb92017-02-08 11:16:39 +01001867 break;
David Ahernb75ed8b2019-03-27 20:53:55 -07001868 if (ignore_link_down && nh->fib_nh_flags & RTNH_F_LINKDOWN)
Ido Schimmel982acb92017-02-08 11:16:39 +01001869 break;
David Ahernb75ed8b2019-03-27 20:53:55 -07001870 return call_fib4_notifiers(dev_net(nh->fib_nh_dev), event_type,
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001871 &info.info);
Ido Schimmel982acb92017-02-08 11:16:39 +01001872 case FIB_EVENT_NH_DEL:
David Ahernb75ed8b2019-03-27 20:53:55 -07001873 if ((ignore_link_down && nh->fib_nh_flags & RTNH_F_LINKDOWN) ||
1874 (nh->fib_nh_flags & RTNH_F_DEAD))
1875 return call_fib4_notifiers(dev_net(nh->fib_nh_dev),
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001876 event_type, &info.info);
Gustavo A. R. Silva79121182020-11-20 12:25:57 -06001877 break;
Ido Schimmel982acb92017-02-08 11:16:39 +01001878 default:
1879 break;
1880 }
1881
1882 return NOTIFY_DONE;
1883}
1884
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001885/* Update the PMTU of exceptions when:
1886 * - the new MTU of the first hop becomes smaller than the PMTU
1887 * - the old MTU was the same as the PMTU, and it limited discovery of
1888 * larger MTUs on the path. With that limit raised, we can now
1889 * discover larger MTUs
1890 * A special case is locked exceptions, for which the PMTU is smaller
1891 * than the minimal accepted PMTU:
1892 * - if the new MTU is greater than the PMTU, don't make any change
1893 * - otherwise, unlock and set PMTU
1894 */
David Ahern06c77c32019-05-22 12:04:46 -07001895void fib_nhc_update_mtu(struct fib_nh_common *nhc, u32 new, u32 orig)
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001896{
1897 struct fnhe_hash_bucket *bucket;
1898 int i;
1899
David Aherna5995e72019-04-30 07:45:50 -07001900 bucket = rcu_dereference_protected(nhc->nhc_exceptions, 1);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001901 if (!bucket)
1902 return;
1903
1904 for (i = 0; i < FNHE_HASH_SIZE; i++) {
1905 struct fib_nh_exception *fnhe;
1906
1907 for (fnhe = rcu_dereference_protected(bucket[i].chain, 1);
1908 fnhe;
1909 fnhe = rcu_dereference_protected(fnhe->fnhe_next, 1)) {
1910 if (fnhe->fnhe_mtu_locked) {
1911 if (new <= fnhe->fnhe_pmtu) {
1912 fnhe->fnhe_pmtu = new;
1913 fnhe->fnhe_mtu_locked = false;
1914 }
1915 } else if (new < fnhe->fnhe_pmtu ||
1916 orig == fnhe->fnhe_pmtu) {
1917 fnhe->fnhe_pmtu = new;
1918 }
1919 }
1920 }
1921}
1922
1923void fib_sync_mtu(struct net_device *dev, u32 orig_mtu)
1924{
1925 unsigned int hash = fib_devindex_hashfn(dev->ifindex);
1926 struct hlist_head *head = &fib_info_devhash[hash];
1927 struct fib_nh *nh;
1928
1929 hlist_for_each_entry(nh, head, nh_hash) {
David Ahernb75ed8b2019-03-27 20:53:55 -07001930 if (nh->fib_nh_dev == dev)
David Ahern06c77c32019-05-22 12:04:46 -07001931 fib_nhc_update_mtu(&nh->nh_common, dev->mtu, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001932 }
1933}
1934
Julian Anastasov4f823de2015-10-30 10:23:33 +02001935/* Event force Flags Description
1936 * NETDEV_CHANGE 0 LINKDOWN Carrier OFF, not for scope host
1937 * NETDEV_DOWN 0 LINKDOWN|DEAD Link down, not for scope host
1938 * NETDEV_DOWN 1 LINKDOWN|DEAD Last address removed
1939 * NETDEV_UNREGISTER 1 LINKDOWN|DEAD Device removed
David Ahern4c7e8082019-06-03 20:19:51 -07001940 *
1941 * only used when fib_nh is built into fib_info
Julian Anastasov4f823de2015-10-30 10:23:33 +02001942 */
1943int fib_sync_down_dev(struct net_device *dev, unsigned long event, bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
1945 int ret = 0;
1946 int scope = RT_SCOPE_NOWHERE;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001947 struct fib_info *prev_fi = NULL;
1948 unsigned int hash = fib_devindex_hashfn(dev->ifindex);
1949 struct hlist_head *head = &fib_info_devhash[hash];
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001950 struct fib_nh *nh;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001951
Julian Anastasov4f823de2015-10-30 10:23:33 +02001952 if (force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 scope = -1;
1954
Sasha Levinb67bfe02013-02-27 17:06:00 -08001955 hlist_for_each_entry(nh, head, nh_hash) {
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001956 struct fib_info *fi = nh->nh_parent;
1957 int dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001959 BUG_ON(!fi->fib_nhs);
David Ahernb75ed8b2019-03-27 20:53:55 -07001960 if (nh->fib_nh_dev != dev || fi == prev_fi)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001961 continue;
1962 prev_fi = fi;
1963 dead = 0;
1964 change_nexthops(fi) {
David Ahernb75ed8b2019-03-27 20:53:55 -07001965 if (nexthop_nh->fib_nh_flags & RTNH_F_DEAD)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001966 dead++;
David Ahernb75ed8b2019-03-27 20:53:55 -07001967 else if (nexthop_nh->fib_nh_dev == dev &&
1968 nexthop_nh->fib_nh_scope != scope) {
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001969 switch (event) {
1970 case NETDEV_DOWN:
1971 case NETDEV_UNREGISTER:
David Ahernb75ed8b2019-03-27 20:53:55 -07001972 nexthop_nh->fib_nh_flags |= RTNH_F_DEAD;
Joe Perchesa8eceea2020-03-12 15:50:22 -07001973 fallthrough;
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001974 case NETDEV_CHANGE:
David Ahernb75ed8b2019-03-27 20:53:55 -07001975 nexthop_nh->fib_nh_flags |= RTNH_F_LINKDOWN;
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001976 break;
1977 }
Ido Schimmel982acb92017-02-08 11:16:39 +01001978 call_fib_nh_notifiers(nexthop_nh,
1979 FIB_EVENT_NH_DEL);
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001980 dead++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001982#ifdef CONFIG_IP_ROUTE_MULTIPATH
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001983 if (event == NETDEV_UNREGISTER &&
David Ahernb75ed8b2019-03-27 20:53:55 -07001984 nexthop_nh->fib_nh_dev == dev) {
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001985 dead = fi->fib_nhs;
1986 break;
1987 }
1988#endif
1989 } endfor_nexthops(fi)
1990 if (dead == fi->fib_nhs) {
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001991 switch (event) {
1992 case NETDEV_DOWN:
1993 case NETDEV_UNREGISTER:
1994 fi->fib_flags |= RTNH_F_DEAD;
Joe Perchesa8eceea2020-03-12 15:50:22 -07001995 fallthrough;
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001996 case NETDEV_CHANGE:
1997 fi->fib_flags |= RTNH_F_LINKDOWN;
1998 break;
1999 }
Denis V. Lunev85326fa2008-01-31 18:48:47 -08002000 ret++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
Peter Nørlund0e884c72015-09-30 10:12:21 +02002002
2003 fib_rebalance(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
2005
2006 return ret;
2007}
2008
David S. Miller0c838ff2011-01-31 16:16:50 -08002009/* Must be invoked inside of an RCU protected region. */
David Ahernc7b371e2017-01-05 19:33:59 -08002010static void fib_select_default(const struct flowi4 *flp, struct fib_result *res)
David S. Miller0c838ff2011-01-31 16:16:50 -08002011{
2012 struct fib_info *fi = NULL, *last_resort = NULL;
Alexander Duyck56315f92015-02-25 15:31:31 -08002013 struct hlist_head *fa_head = res->fa_head;
David S. Miller0c838ff2011-01-31 16:16:50 -08002014 struct fib_table *tb = res->table;
Julian Anastasov18a912e92015-07-22 10:43:22 +03002015 u8 slen = 32 - res->prefixlen;
David S. Miller0c838ff2011-01-31 16:16:50 -08002016 int order = -1, last_idx = -1;
Julian Anastasov2392deb2015-07-22 10:43:23 +03002017 struct fib_alias *fa, *fa1 = NULL;
2018 u32 last_prio = res->fi->fib_priority;
2019 u8 last_tos = 0;
David S. Miller0c838ff2011-01-31 16:16:50 -08002020
Alexander Duyck56315f92015-02-25 15:31:31 -08002021 hlist_for_each_entry_rcu(fa, fa_head, fa_list) {
David S. Miller0c838ff2011-01-31 16:16:50 -08002022 struct fib_info *next_fi = fa->fa_info;
David Ahern7c74b0b2020-04-22 15:40:20 -06002023 struct fib_nh_common *nhc;
David S. Miller0c838ff2011-01-31 16:16:50 -08002024
Julian Anastasov18a912e92015-07-22 10:43:22 +03002025 if (fa->fa_slen != slen)
2026 continue;
Julian Anastasov2392deb2015-07-22 10:43:23 +03002027 if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos)
2028 continue;
Julian Anastasov18a912e92015-07-22 10:43:22 +03002029 if (fa->tb_id != tb->tb_id)
2030 continue;
Julian Anastasov2392deb2015-07-22 10:43:23 +03002031 if (next_fi->fib_priority > last_prio &&
2032 fa->fa_tos == last_tos) {
2033 if (last_tos)
2034 continue;
2035 break;
2036 }
2037 if (next_fi->fib_flags & RTNH_F_DEAD)
2038 continue;
2039 last_tos = fa->fa_tos;
2040 last_prio = next_fi->fib_priority;
2041
David S. Miller37e826c2011-03-24 18:06:47 -07002042 if (next_fi->fib_scope != res->scope ||
David S. Miller0c838ff2011-01-31 16:16:50 -08002043 fa->fa_type != RTN_UNICAST)
2044 continue;
David Ahern5481d732019-06-03 20:19:49 -07002045
David Ahern7c74b0b2020-04-22 15:40:20 -06002046 nhc = fib_info_nhc(next_fi, 0);
2047 if (!nhc->nhc_gw_family || nhc->nhc_scope != RT_SCOPE_LINK)
David S. Miller0c838ff2011-01-31 16:16:50 -08002048 continue;
2049
2050 fib_alias_accessed(fa);
2051
Ian Morris51456b22015-04-03 09:17:26 +01002052 if (!fi) {
David S. Miller0c838ff2011-01-31 16:16:50 -08002053 if (next_fi != res->fi)
2054 break;
Julian Anastasov2392deb2015-07-22 10:43:23 +03002055 fa1 = fa;
David S. Miller0c838ff2011-01-31 16:16:50 -08002056 } else if (!fib_detect_death(fi, order, &last_resort,
Julian Anastasov2392deb2015-07-22 10:43:23 +03002057 &last_idx, fa1->fa_default)) {
David S. Miller0c838ff2011-01-31 16:16:50 -08002058 fib_result_assign(res, fi);
Julian Anastasov2392deb2015-07-22 10:43:23 +03002059 fa1->fa_default = order;
David S. Miller0c838ff2011-01-31 16:16:50 -08002060 goto out;
2061 }
2062 fi = next_fi;
2063 order++;
2064 }
2065
Ian Morris51456b22015-04-03 09:17:26 +01002066 if (order <= 0 || !fi) {
Julian Anastasov2392deb2015-07-22 10:43:23 +03002067 if (fa1)
2068 fa1->fa_default = -1;
David S. Miller0c838ff2011-01-31 16:16:50 -08002069 goto out;
2070 }
2071
2072 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
Julian Anastasov2392deb2015-07-22 10:43:23 +03002073 fa1->fa_default)) {
David S. Miller0c838ff2011-01-31 16:16:50 -08002074 fib_result_assign(res, fi);
Julian Anastasov2392deb2015-07-22 10:43:23 +03002075 fa1->fa_default = order;
David S. Miller0c838ff2011-01-31 16:16:50 -08002076 goto out;
2077 }
2078
2079 if (last_idx >= 0)
2080 fib_result_assign(res, last_resort);
Julian Anastasov2392deb2015-07-22 10:43:23 +03002081 fa1->fa_default = last_idx;
David S. Miller0c838ff2011-01-31 16:16:50 -08002082out:
Eric Dumazet31d40932011-02-14 11:23:04 -08002083 return;
David S. Miller0c838ff2011-01-31 16:16:50 -08002084}
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00002087 * Dead device goes up. We wake up dead nexthops.
2088 * It takes sense only on multipath routes.
David Ahern4c7e8082019-06-03 20:19:51 -07002089 *
2090 * only used when fib_nh is built into fib_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 */
David Ahernecc56632019-04-23 08:48:09 -07002092int fib_sync_up(struct net_device *dev, unsigned char nh_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 struct fib_info *prev_fi;
2095 unsigned int hash;
2096 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 struct fib_nh *nh;
2098 int ret;
2099
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00002100 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return 0;
2102
Julian Anastasovc9b32922015-10-30 10:23:34 +02002103 if (nh_flags & RTNH_F_DEAD) {
2104 unsigned int flags = dev_get_flags(dev);
2105
2106 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
2107 nh_flags |= RTNH_F_LINKDOWN;
2108 }
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 prev_fi = NULL;
2111 hash = fib_devindex_hashfn(dev->ifindex);
2112 head = &fib_info_devhash[hash];
2113 ret = 0;
2114
Sasha Levinb67bfe02013-02-27 17:06:00 -08002115 hlist_for_each_entry(nh, head, nh_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 struct fib_info *fi = nh->nh_parent;
2117 int alive;
2118
2119 BUG_ON(!fi->fib_nhs);
David Ahernb75ed8b2019-03-27 20:53:55 -07002120 if (nh->fib_nh_dev != dev || fi == prev_fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 continue;
2122
2123 prev_fi = fi;
2124 alive = 0;
2125 change_nexthops(fi) {
David Ahernb75ed8b2019-03-27 20:53:55 -07002126 if (!(nexthop_nh->fib_nh_flags & nh_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 alive++;
2128 continue;
2129 }
David Ahernb75ed8b2019-03-27 20:53:55 -07002130 if (!nexthop_nh->fib_nh_dev ||
2131 !(nexthop_nh->fib_nh_dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 continue;
David Ahernb75ed8b2019-03-27 20:53:55 -07002133 if (nexthop_nh->fib_nh_dev != dev ||
David S. Miller71fceff2010-01-15 01:16:40 -08002134 !__in_dev_get_rtnl(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 continue;
2136 alive++;
David Ahernb75ed8b2019-03-27 20:53:55 -07002137 nexthop_nh->fib_nh_flags &= ~nh_flags;
Ido Schimmel982acb92017-02-08 11:16:39 +01002138 call_fib_nh_notifiers(nexthop_nh, FIB_EVENT_NH_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 } endfor_nexthops(fi)
2140
2141 if (alive > 0) {
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04002142 fi->fib_flags &= ~nh_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 ret++;
2144 }
Peter Nørlund0e884c72015-09-30 10:12:21 +02002145
2146 fib_rebalance(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
2149 return ret;
2150}
2151
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04002152#ifdef CONFIG_IP_ROUTE_MULTIPATH
David Aherna6db4492016-04-07 07:21:00 -07002153static bool fib_good_nh(const struct fib_nh *nh)
2154{
2155 int state = NUD_REACHABLE;
2156
David Ahernb75ed8b2019-03-27 20:53:55 -07002157 if (nh->fib_nh_scope == RT_SCOPE_LINK) {
David Aherna6db4492016-04-07 07:21:00 -07002158 struct neighbour *n;
2159
2160 rcu_read_lock_bh();
2161
David Ahern1a38c432019-04-05 16:30:38 -07002162 if (likely(nh->fib_nh_gw_family == AF_INET))
2163 n = __ipv4_neigh_lookup_noref(nh->fib_nh_dev,
2164 (__force u32)nh->fib_nh_gw4);
2165 else if (nh->fib_nh_gw_family == AF_INET6)
2166 n = __ipv6_neigh_lookup_noref_stub(nh->fib_nh_dev,
2167 &nh->fib_nh_gw6);
2168 else
2169 n = NULL;
David Aherna6db4492016-04-07 07:21:00 -07002170 if (n)
2171 state = n->nud_state;
2172
2173 rcu_read_unlock_bh();
2174 }
2175
2176 return !!(state & NUD_VALID);
2177}
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04002178
Peter Nørlund0e884c72015-09-30 10:12:21 +02002179void fib_select_multipath(struct fib_result *res, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
2181 struct fib_info *fi = res->fi;
David Aherna6db4492016-04-07 07:21:00 -07002182 struct net *net = fi->fib_net;
2183 bool first = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
David Ahern4c7e8082019-06-03 20:19:51 -07002185 if (unlikely(res->fi->nh)) {
2186 nexthop_path_fib_result(res, hash);
2187 return;
2188 }
2189
David Aherneba618a2019-04-02 14:11:55 -07002190 change_nexthops(fi) {
Xin Long6174a302018-04-01 22:40:35 +08002191 if (net->ipv4.sysctl_fib_multipath_use_neigh) {
David Aherneba618a2019-04-02 14:11:55 -07002192 if (!fib_good_nh(nexthop_nh))
Xin Long6174a302018-04-01 22:40:35 +08002193 continue;
2194 if (!first) {
2195 res->nh_sel = nhsel;
David Aherneba618a2019-04-02 14:11:55 -07002196 res->nhc = &nexthop_nh->nh_common;
Xin Long6174a302018-04-01 22:40:35 +08002197 first = true;
2198 }
2199 }
2200
David Aherneba618a2019-04-02 14:11:55 -07002201 if (hash > atomic_read(&nexthop_nh->fib_nh_upper_bound))
Peter Nørlund0e884c72015-09-30 10:12:21 +02002202 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Xin Long6174a302018-04-01 22:40:35 +08002204 res->nh_sel = nhsel;
David Aherneba618a2019-04-02 14:11:55 -07002205 res->nhc = &nexthop_nh->nh_common;
Xin Long6174a302018-04-01 22:40:35 +08002206 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 } endfor_nexthops(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209#endif
David Ahern3ce58d82015-10-05 08:51:25 -07002210
2211void fib_select_path(struct net *net, struct fib_result *res,
Nikolay Aleksandrovbf4e0a32017-03-16 15:28:00 +02002212 struct flowi4 *fl4, const struct sk_buff *skb)
David Ahern3ce58d82015-10-05 08:51:25 -07002213{
David Ahern0d876f22018-02-13 08:11:34 -08002214 if (fl4->flowi4_oif && !(fl4->flowi4_flags & FLOWI_FLAG_SKIP_NH_OIF))
2215 goto check_saddr;
David Ahern7a18c5b2017-01-10 14:37:35 -08002216
David Ahern3ce58d82015-10-05 08:51:25 -07002217#ifdef CONFIG_IP_ROUTE_MULTIPATH
David Ahern5481d732019-06-03 20:19:49 -07002218 if (fib_info_num_path(res->fi) > 1) {
David Ahern7efc0b62018-03-02 08:32:12 -08002219 int h = fib_multipath_hash(net, fl4, skb, NULL);
Paolo Abeni9920e482015-10-29 22:20:40 +01002220
Nikolay Aleksandrovbf4e0a32017-03-16 15:28:00 +02002221 fib_select_multipath(res, h);
David Ahern3ce58d82015-10-05 08:51:25 -07002222 }
2223 else
2224#endif
2225 if (!res->prefixlen &&
2226 res->table->tb_num_default > 1 &&
David Ahern0d876f22018-02-13 08:11:34 -08002227 res->type == RTN_UNICAST)
David Ahern3ce58d82015-10-05 08:51:25 -07002228 fib_select_default(fl4, res);
2229
David Ahern0d876f22018-02-13 08:11:34 -08002230check_saddr:
David Ahern3ce58d82015-10-05 08:51:25 -07002231 if (!fl4->saddr)
David Aherneba618a2019-04-02 14:11:55 -07002232 fl4->saddr = fib_result_prefsrc(net, res);
David Ahern3ce58d82015-10-05 08:51:25 -07002233}