blob: 5ea2750982f289e961ba42756adbf072a923bf2b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * IPv4 Forwarding Information Base: FIB frontend.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080017#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/types.h>
21#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
23#include <linux/string.h>
24#include <linux/socket.h>
25#include <linux/sockios.h>
26#include <linux/errno.h>
27#include <linux/in.h>
28#include <linux/inet.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020029#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070031#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/if_arp.h>
33#include <linux/skbuff.h>
David S. Miller7a9bc9b2012-06-29 01:32:45 -070034#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/init.h>
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070036#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <net/ip.h>
40#include <net/protocol.h>
41#include <net/route.h>
42#include <net/tcp.h>
43#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <net/arp.h>
45#include <net/ip_fib.h>
David Ahern5481d732019-06-03 20:19:49 -070046#include <net/nexthop.h>
Thomas Graf63f34442007-03-22 11:55:17 -070047#include <net/rtnetlink.h>
Michael Smith990078a2011-04-07 04:51:51 +000048#include <net/xfrm.h>
David Ahern385add92015-09-29 20:07:13 -070049#include <net/l3mdev.h>
David Ahern9ed59592017-01-17 14:57:36 -080050#include <net/lwtunnel.h>
David Ahernf6d3c192015-08-28 08:42:09 -070051#include <trace/events/fib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifndef CONFIG_IP_MULTIPLE_TABLES
54
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -080055static int __net_init fib4_rules_init(struct net *net)
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080056{
Denis V. Lunev93456b62008-01-10 03:23:38 -080057 struct fib_table *local_table, *main_table;
58
Alexander Duyck0ddcf432015-03-06 13:47:00 -080059 main_table = fib_trie_table(RT_TABLE_MAIN, NULL);
Ian Morris51456b22015-04-03 09:17:26 +010060 if (!main_table)
Alexander Duyck61f0d862015-03-11 14:02:16 -070061 return -ENOMEM;
Denis V. Lunevdbb50162008-01-10 03:21:49 -080062
Alexander Duyck0ddcf432015-03-06 13:47:00 -080063 local_table = fib_trie_table(RT_TABLE_LOCAL, main_table);
Ian Morris51456b22015-04-03 09:17:26 +010064 if (!local_table)
Alexander Duyck61f0d862015-03-11 14:02:16 -070065 goto fail;
Alexander Duyck0ddcf432015-03-06 13:47:00 -080066
Denis V. Lunev93456b62008-01-10 03:23:38 -080067 hlist_add_head_rcu(&local_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080068 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX]);
Denis V. Lunev93456b62008-01-10 03:23:38 -080069 hlist_add_head_rcu(&main_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080070 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX]);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080071 return 0;
72
73fail:
Alexander Duyck61f0d862015-03-11 14:02:16 -070074 fib_free_table(main_table);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080075 return -ENOMEM;
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080076}
Paolo Abeni032a4802017-10-31 14:32:38 +010077
78static bool fib4_has_custom_rules(struct net *net)
79{
80 return false;
81}
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#else
83
Denis V. Lunev8ad49422008-01-10 03:24:11 -080084struct fib_table *fib_new_table(struct net *net, u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Alexander Duyck0ddcf432015-03-06 13:47:00 -080086 struct fib_table *tb, *alias = NULL;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070087 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070089 if (id == 0)
90 id = RT_TABLE_MAIN;
Denis V. Lunev8ad49422008-01-10 03:24:11 -080091 tb = fib_get_table(net, id);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070092 if (tb)
93 return tb;
Stephen Hemminger7f9b8052008-01-14 23:14:20 -080094
Alexander Duyck5350d542017-01-02 13:32:54 -080095 if (id == RT_TABLE_LOCAL && !net->ipv4.fib_has_custom_rules)
Alexander Duyck0ddcf432015-03-06 13:47:00 -080096 alias = fib_new_table(net, RT_TABLE_MAIN);
97
98 tb = fib_trie_table(id, alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (!tb)
100 return NULL;
David S. Millerf4530fa2012-07-05 22:13:13 -0700101
102 switch (id) {
David S. Millerf4530fa2012-07-05 22:13:13 -0700103 case RT_TABLE_MAIN:
Alexander Duycka7e53532015-03-04 15:02:44 -0800104 rcu_assign_pointer(net->ipv4.fib_main, tb);
David S. Millerf4530fa2012-07-05 22:13:13 -0700105 break;
David S. Millerf4530fa2012-07-05 22:13:13 -0700106 case RT_TABLE_DEFAULT:
Alexander Duycka7e53532015-03-04 15:02:44 -0800107 rcu_assign_pointer(net->ipv4.fib_default, tb);
David S. Millerf4530fa2012-07-05 22:13:13 -0700108 break;
David S. Millerf4530fa2012-07-05 22:13:13 -0700109 default:
110 break;
111 }
112
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700113 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800114 hlist_add_head_rcu(&tb->tb_hlist, &net->ipv4.fib_table_hash[h]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return tb;
116}
David Ahernb3b46632016-05-04 21:46:12 -0700117EXPORT_SYMBOL_GPL(fib_new_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Alexander Duyck345e9b52014-12-31 10:56:24 -0800119/* caller must hold either rtnl or rcu read lock */
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800120struct fib_table *fib_get_table(struct net *net, u32 id)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700121{
122 struct fib_table *tb;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800123 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700124 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700126 if (id == 0)
127 id = RT_TABLE_MAIN;
128 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800129
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800130 head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800131 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyck345e9b52014-12-31 10:56:24 -0800132 if (tb->tb_id == id)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700133 return tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700134 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700135 return NULL;
136}
Paolo Abeni032a4802017-10-31 14:32:38 +0100137
138static bool fib4_has_custom_rules(struct net *net)
139{
140 return net->ipv4.fib_has_custom_rules;
141}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#endif /* CONFIG_IP_MULTIPLE_TABLES */
143
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800144static void fib_replace_table(struct net *net, struct fib_table *old,
145 struct fib_table *new)
146{
147#ifdef CONFIG_IP_MULTIPLE_TABLES
148 switch (new->tb_id) {
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800149 case RT_TABLE_MAIN:
150 rcu_assign_pointer(net->ipv4.fib_main, new);
151 break;
152 case RT_TABLE_DEFAULT:
153 rcu_assign_pointer(net->ipv4.fib_default, new);
154 break;
155 default:
156 break;
157 }
158
159#endif
160 /* replace the old table in the hlist */
161 hlist_replace_rcu(&old->tb_hlist, &new->tb_hlist);
162}
163
164int fib_unmerge(struct net *net)
165{
Alexander Duyck3b709332016-11-15 05:46:06 -0500166 struct fib_table *old, *new, *main_table;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800167
Alexander Duyck3c9e9f72015-03-12 14:46:23 -0700168 /* attempt to fetch local table if it has been allocated */
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800169 old = fib_get_table(net, RT_TABLE_LOCAL);
Alexander Duyck3c9e9f72015-03-12 14:46:23 -0700170 if (!old)
171 return 0;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800172
Alexander Duyck3c9e9f72015-03-12 14:46:23 -0700173 new = fib_trie_unmerge(old);
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800174 if (!new)
175 return -ENOMEM;
176
Alexander Duyck3b709332016-11-15 05:46:06 -0500177 /* table is already unmerged */
178 if (new == old)
179 return 0;
180
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800181 /* replace merged table with clean table */
Alexander Duyck3b709332016-11-15 05:46:06 -0500182 fib_replace_table(net, old, new);
183 fib_free_table(old);
184
185 /* attempt to fetch main table if it has been allocated */
186 main_table = fib_get_table(net, RT_TABLE_MAIN);
187 if (!main_table)
188 return 0;
189
190 /* flush local entries from main table */
191 fib_table_flush_external(main_table);
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800192
193 return 0;
194}
195
David Ahern9bd83662019-05-22 12:04:44 -0700196void fib_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int flushed = 0;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700199 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700201 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
Alexander Duycka7e53532015-03-04 15:02:44 -0800202 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
203 struct hlist_node *tmp;
204 struct fib_table *tb;
205
206 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist)
Ido Schimmelf97f4dd2019-01-09 09:57:39 +0000207 flushed += fib_table_flush(net, tb, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (flushed)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +0000211 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800214/*
215 * Find address type as if only "dev" was present in the system. If
216 * on_dev is NULL then all interfaces are taken into consideration.
217 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000218static inline unsigned int __inet_dev_addr_type(struct net *net,
219 const struct net_device *dev,
David Ahern9b8ff512015-09-01 14:26:35 -0600220 __be32 addr, u32 tb_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
David S. Miller9ade2282011-03-12 02:02:42 -0500222 struct flowi4 fl4 = { .daddr = addr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct fib_result res;
Eric Dumazet95c96172012-04-15 05:58:06 +0000224 unsigned int ret = RTN_BROADCAST;
David Ahern15be405e2015-08-13 14:59:04 -0600225 struct fib_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Jan Engelhardt1e637c72008-01-21 03:18:08 -0800227 if (ipv4_is_zeronet(addr) || ipv4_is_lbcast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return RTN_BROADCAST;
Joe Perchesf97c1e02007-12-16 13:45:43 -0800229 if (ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return RTN_MULTICAST;
231
Alexander Duyck345e9b52014-12-31 10:56:24 -0800232 rcu_read_lock();
233
David Ahern15be405e2015-08-13 14:59:04 -0600234 table = fib_get_table(net, tb_id);
235 if (table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 ret = RTN_UNICAST;
David Ahern15be405e2015-08-13 14:59:04 -0600237 if (!fib_table_lookup(table, &fl4, &res, FIB_LOOKUP_NOREF)) {
David Aherndcb1ecb2019-06-03 20:19:50 -0700238 struct fib_nh_common *nhc = fib_info_nhc(res.fi, 0);
David Ahern5481d732019-06-03 20:19:49 -0700239
David Aherndcb1ecb2019-06-03 20:19:50 -0700240 if (!dev || dev == nhc->nhc_dev)
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800241 ret = res.type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 }
Alexander Duyck345e9b52014-12-31 10:56:24 -0800244
245 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return ret;
247}
248
David Ahern9b8ff512015-09-01 14:26:35 -0600249unsigned int inet_addr_type_table(struct net *net, __be32 addr, u32 tb_id)
David Ahern15be405e2015-08-13 14:59:04 -0600250{
251 return __inet_dev_addr_type(net, NULL, addr, tb_id);
252}
253EXPORT_SYMBOL(inet_addr_type_table);
254
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800255unsigned int inet_addr_type(struct net *net, __be32 addr)
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800256{
David Ahern15be405e2015-08-13 14:59:04 -0600257 return __inet_dev_addr_type(net, NULL, addr, RT_TABLE_LOCAL);
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800258}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000259EXPORT_SYMBOL(inet_addr_type);
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800260
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800261unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
262 __be32 addr)
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800263{
David Ahern3236b002015-09-29 20:07:14 -0700264 u32 rt_table = l3mdev_fib_table(dev) ? : RT_TABLE_LOCAL;
David Ahern15be405e2015-08-13 14:59:04 -0600265
266 return __inet_dev_addr_type(net, dev, addr, rt_table);
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800267}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000268EXPORT_SYMBOL(inet_dev_addr_type);
Laszlo Attila Toth055381162007-12-04 23:28:46 -0800269
David Ahern30bbaa12015-08-13 14:59:05 -0600270/* inet_addr_type with dev == NULL but using the table from a dev
271 * if one is associated
272 */
273unsigned int inet_addr_type_dev_table(struct net *net,
274 const struct net_device *dev,
275 __be32 addr)
276{
David Ahern3236b002015-09-29 20:07:14 -0700277 u32 rt_table = l3mdev_fib_table(dev) ? : RT_TABLE_LOCAL;
David Ahern30bbaa12015-08-13 14:59:05 -0600278
279 return __inet_dev_addr_type(net, NULL, addr, rt_table);
280}
281EXPORT_SYMBOL(inet_addr_type_dev_table);
282
David S. Miller35ebf652012-06-28 03:59:11 -0700283__be32 fib_compute_spec_dst(struct sk_buff *skb)
284{
285 struct net_device *dev = skb->dev;
286 struct in_device *in_dev;
287 struct fib_result res;
David S. Millera207a4b2012-06-28 18:33:24 -0700288 struct rtable *rt;
David S. Miller35ebf652012-06-28 03:59:11 -0700289 struct net *net;
David S. Millera207a4b2012-06-28 18:33:24 -0700290 int scope;
David S. Miller35ebf652012-06-28 03:59:11 -0700291
David S. Millera207a4b2012-06-28 18:33:24 -0700292 rt = skb_rtable(skb);
Julian Anastasov0cc535a2012-07-18 21:35:03 +0000293 if ((rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | RTCF_LOCAL)) ==
294 RTCF_LOCAL)
David S. Miller35ebf652012-06-28 03:59:11 -0700295 return ip_hdr(skb)->daddr;
296
297 in_dev = __in_dev_get_rcu(dev);
David S. Miller35ebf652012-06-28 03:59:11 -0700298
299 net = dev_net(dev);
David S. Millera207a4b2012-06-28 18:33:24 -0700300
301 scope = RT_SCOPE_UNIVERSE;
302 if (!ipv4_is_zeronet(ip_hdr(skb)->saddr)) {
Lorenzo Bianconi9fc12022018-07-27 18:15:46 +0200303 bool vmark = in_dev && IN_DEV_SRC_VMARK(in_dev);
Lance Richardson4cfc86f2016-03-22 14:56:57 -0400304 struct flowi4 fl4 = {
305 .flowi4_iif = LOOPBACK_IFINDEX,
David Aherne7372192018-07-07 16:15:26 -0700306 .flowi4_oif = l3mdev_master_ifindex_rcu(dev),
Lance Richardson4cfc86f2016-03-22 14:56:57 -0400307 .daddr = ip_hdr(skb)->saddr,
308 .flowi4_tos = RT_TOS(ip_hdr(skb)->tos),
309 .flowi4_scope = scope,
Lorenzo Bianconi9fc12022018-07-27 18:15:46 +0200310 .flowi4_mark = vmark ? skb->mark : 0,
Lance Richardson4cfc86f2016-03-22 14:56:57 -0400311 };
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400312 if (!fib_lookup(net, &fl4, &res, 0))
David Aherneba618a2019-04-02 14:11:55 -0700313 return fib_result_prefsrc(net, &res);
David S. Millera207a4b2012-06-28 18:33:24 -0700314 } else {
315 scope = RT_SCOPE_LINK;
316 }
317
318 return inet_select_addr(dev, ip_hdr(skb)->saddr, scope);
David S. Miller35ebf652012-06-28 03:59:11 -0700319}
320
David Ahern78f27562018-09-20 13:50:47 -0700321bool fib_info_nh_uses_dev(struct fib_info *fi, const struct net_device *dev)
322{
323 bool dev_match = false;
Eric Dumazet075e2642018-09-21 10:58:07 -0700324#ifdef CONFIG_IP_ROUTE_MULTIPATH
David Ahern78f27562018-09-20 13:50:47 -0700325 int ret;
326
David Ahern5481d732019-06-03 20:19:49 -0700327 for (ret = 0; ret < fib_info_num_path(fi); ret++) {
David Aherndcb1ecb2019-06-03 20:19:50 -0700328 const struct fib_nh_common *nhc = fib_info_nhc(fi, ret);
David Ahern78f27562018-09-20 13:50:47 -0700329
David Aherndcb1ecb2019-06-03 20:19:50 -0700330 if (nhc->nhc_dev == dev) {
David Ahern78f27562018-09-20 13:50:47 -0700331 dev_match = true;
332 break;
David Aherndcb1ecb2019-06-03 20:19:50 -0700333 } else if (l3mdev_master_ifindex_rcu(nhc->nhc_dev) == dev->ifindex) {
David Ahern78f27562018-09-20 13:50:47 -0700334 dev_match = true;
335 break;
336 }
337 }
338#else
David Aherndcb1ecb2019-06-03 20:19:50 -0700339 if (fib_info_nhc(fi, 0)->nhc_dev == dev)
David Ahern78f27562018-09-20 13:50:47 -0700340 dev_match = true;
341#endif
342
343 return dev_match;
344}
345EXPORT_SYMBOL_GPL(fib_info_nh_uses_dev);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/* Given (packet source, input interface) and optional (dst, oif, tos):
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000348 * - (main) check, that source is valid i.e. not broadcast or our local
349 * address.
350 * - figure out what "logical" interface this packet arrived
351 * and calculate "specific destination" address.
352 * - check, that packet arrived from expected physical interface.
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000353 * called with rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700355static int __fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
356 u8 tos, int oif, struct net_device *dev,
357 int rpf, struct in_device *idev, u32 *itag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
David Ahern5a847a62018-05-16 13:36:40 -0700359 struct net *net = dev_net(dev);
360 struct flow_keys flkeys;
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200361 int ret, no_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct fib_result res;
David S. Miller9e56e382012-06-28 18:54:02 -0700363 struct flowi4 fl4;
David S. Miller9e56e382012-06-28 18:54:02 -0700364 bool dev_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
David S. Miller9ade2282011-03-12 02:02:42 -0500366 fl4.flowi4_oif = 0;
David Ahern385add92015-09-29 20:07:13 -0700367 fl4.flowi4_iif = l3mdev_master_ifindex_rcu(dev);
David Aherncd2fbe12015-08-13 14:59:01 -0600368 if (!fl4.flowi4_iif)
369 fl4.flowi4_iif = oif ? : LOOPBACK_IFINDEX;
David S. Miller9ade2282011-03-12 02:02:42 -0500370 fl4.daddr = src;
371 fl4.saddr = dst;
372 fl4.flowi4_tos = tos;
373 fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
Thomas Graf1b7179d2015-07-21 10:43:59 +0200374 fl4.flowi4_tun_key.tun_id = 0;
David Ahernb84f7872015-09-29 19:07:07 -0700375 fl4.flowi4_flags = 0;
Julian Anastasov8bcfd092017-02-26 15:50:52 +0200376 fl4.flowi4_uid = sock_net_uid(net, NULL);
David S. Millercc7e17e2011-03-09 20:57:50 -0800377
David S. Miller9e56e382012-06-28 18:54:02 -0700378 no_addr = idev->ifa_list == NULL;
Michael Smith990078a2011-04-07 04:51:51 +0000379
David S. Miller9e56e382012-06-28 18:54:02 -0700380 fl4.flowi4_mark = IN_DEV_SRC_VMARK(idev) ? skb->mark : 0;
David Ahern5a847a62018-05-16 13:36:40 -0700381 if (!fib4_rules_early_flow_dissect(net, skb, &fl4, &flkeys)) {
382 fl4.flowi4_proto = 0;
383 fl4.fl4_sport = 0;
384 fl4.fl4_dport = 0;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400387 if (fib_lookup(net, &fl4, &res, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 goto last_resort;
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200389 if (res.type != RTN_UNICAST &&
390 (res.type != RTN_LOCAL || !IN_DEV_ACCEPT_LOCAL(idev)))
391 goto e_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 fib_combine_itag(itag, &res);
David S. Miller6f86b322010-09-06 22:36:19 -0700393
David Ahern78f27562018-09-20 13:50:47 -0700394 dev_match = fib_info_nh_uses_dev(res.fi, dev);
David S. Miller6f86b322010-09-06 22:36:19 -0700395 if (dev_match) {
David Aherneba618a2019-04-02 14:11:55 -0700396 ret = FIB_RES_NHC(res)->nhc_scope >= RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return ret;
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (no_addr)
400 goto last_resort;
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000401 if (rpf == 1)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000402 goto e_rpf;
David S. Miller9ade2282011-03-12 02:02:42 -0500403 fl4.flowi4_oif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 ret = 0;
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400406 if (fib_lookup(net, &fl4, &res, FIB_LOOKUP_IGNORE_LINKSTATE) == 0) {
David S. Miller41347dc2012-06-28 04:05:27 -0700407 if (res.type == RTN_UNICAST)
David Aherneba618a2019-04-02 14:11:55 -0700408 ret = FIB_RES_NHC(res)->nhc_scope >= RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 return ret;
411
412last_resort:
413 if (rpf)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000414 goto e_rpf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 *itag = 0;
416 return 0;
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418e_inval:
419 return -EINVAL;
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000420e_rpf:
421 return -EXDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700424/* Ignore rp_filter for packets protected by IPsec. */
425int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
426 u8 tos, int oif, struct net_device *dev,
427 struct in_device *idev, u32 *itag)
428{
429 int r = secpath_exists(skb) ? 0 : IN_DEV_RPFILTER(idev);
Paolo Abeni6e617de2017-09-20 18:26:53 +0200430 struct net *net = dev_net(dev);
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700431
Paolo Abeni6e617de2017-09-20 18:26:53 +0200432 if (!r && !fib_num_tclassid_users(net) &&
Julian Anastasove81da0e2012-10-08 11:41:15 +0000433 (dev->ifindex != oif || !IN_DEV_TX_REDIRECTS(idev))) {
Paolo Abeni6e617de2017-09-20 18:26:53 +0200434 if (IN_DEV_ACCEPT_LOCAL(idev))
435 goto ok;
Paolo Abeni032a4802017-10-31 14:32:38 +0100436 /* with custom local routes in place, checking local addresses
437 * only will be too optimistic, with custom rules, checking
438 * local addresses only can be too strict, e.g. due to vrf
Paolo Abeni6e617de2017-09-20 18:26:53 +0200439 */
Paolo Abeni032a4802017-10-31 14:32:38 +0100440 if (net->ipv4.fib_has_custom_local_routes ||
441 fib4_has_custom_rules(net))
Paolo Abeni6e617de2017-09-20 18:26:53 +0200442 goto full_check;
443 if (inet_lookup_ifaddr_rcu(net, src))
444 return -EINVAL;
445
446ok:
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700447 *itag = 0;
448 return 0;
449 }
Paolo Abeni6e617de2017-09-20 18:26:53 +0200450
451full_check:
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700452 return __fib_validate_source(skb, src, dst, tos, oif, dev, r, idev, itag);
453}
454
Al Viro81f7bf62006-09-27 18:40:00 -0700455static inline __be32 sk_extract_addr(struct sockaddr *addr)
Thomas Graf4e902c52006-08-17 18:14:52 -0700456{
457 return ((struct sockaddr_in *) addr)->sin_addr.s_addr;
458}
459
460static int put_rtax(struct nlattr *mx, int len, int type, u32 value)
461{
462 struct nlattr *nla;
463
464 nla = (struct nlattr *) ((char *) mx + len);
465 nla->nla_type = type;
466 nla->nla_len = nla_attr_size(4);
467 *(u32 *) nla_data(nla) = value;
468
469 return len + nla_total_size(4);
470}
471
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800472static int rtentry_to_fib_config(struct net *net, int cmd, struct rtentry *rt,
Thomas Graf4e902c52006-08-17 18:14:52 -0700473 struct fib_config *cfg)
474{
Al Viro6d85c102006-09-26 22:15:46 -0700475 __be32 addr;
Thomas Graf4e902c52006-08-17 18:14:52 -0700476 int plen;
477
478 memset(cfg, 0, sizeof(*cfg));
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800479 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700480
481 if (rt->rt_dst.sa_family != AF_INET)
482 return -EAFNOSUPPORT;
483
484 /*
485 * Check mask for validity:
486 * a) it must be contiguous.
487 * b) destination must have all host bits clear.
488 * c) if application forgot to set correct family (AF_INET),
489 * reject request unless it is absolutely clear i.e.
490 * both family and mask are zero.
491 */
492 plen = 32;
493 addr = sk_extract_addr(&rt->rt_dst);
494 if (!(rt->rt_flags & RTF_HOST)) {
Al Viro81f7bf62006-09-27 18:40:00 -0700495 __be32 mask = sk_extract_addr(&rt->rt_genmask);
Thomas Graf4e902c52006-08-17 18:14:52 -0700496
497 if (rt->rt_genmask.sa_family != AF_INET) {
498 if (mask || rt->rt_genmask.sa_family)
499 return -EAFNOSUPPORT;
500 }
501
502 if (bad_mask(mask, addr))
503 return -EINVAL;
504
505 plen = inet_mask_len(mask);
506 }
507
508 cfg->fc_dst_len = plen;
509 cfg->fc_dst = addr;
510
511 if (cmd != SIOCDELRT) {
512 cfg->fc_nlflags = NLM_F_CREATE;
513 cfg->fc_protocol = RTPROT_BOOT;
514 }
515
516 if (rt->rt_metric)
517 cfg->fc_priority = rt->rt_metric - 1;
518
519 if (rt->rt_flags & RTF_REJECT) {
520 cfg->fc_scope = RT_SCOPE_HOST;
521 cfg->fc_type = RTN_UNREACHABLE;
522 return 0;
523 }
524
525 cfg->fc_scope = RT_SCOPE_NOWHERE;
526 cfg->fc_type = RTN_UNICAST;
527
528 if (rt->rt_dev) {
529 char *colon;
530 struct net_device *dev;
531 char devname[IFNAMSIZ];
532
533 if (copy_from_user(devname, rt->rt_dev, IFNAMSIZ-1))
534 return -EFAULT;
535
536 devname[IFNAMSIZ-1] = 0;
537 colon = strchr(devname, ':');
538 if (colon)
539 *colon = 0;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800540 dev = __dev_get_by_name(net, devname);
Thomas Graf4e902c52006-08-17 18:14:52 -0700541 if (!dev)
542 return -ENODEV;
543 cfg->fc_oif = dev->ifindex;
Mark Tomlinson5a56a0b2016-09-05 10:20:20 +1200544 cfg->fc_table = l3mdev_fib_table(dev);
Thomas Graf4e902c52006-08-17 18:14:52 -0700545 if (colon) {
Florian Westphalcd5a4112019-05-31 18:27:07 +0200546 const struct in_ifaddr *ifa;
547 struct in_device *in_dev;
548
549 in_dev = __in_dev_get_rtnl(dev);
Thomas Graf4e902c52006-08-17 18:14:52 -0700550 if (!in_dev)
551 return -ENODEV;
Florian Westphalcd5a4112019-05-31 18:27:07 +0200552
Thomas Graf4e902c52006-08-17 18:14:52 -0700553 *colon = ':';
Florian Westphalcd5a4112019-05-31 18:27:07 +0200554
555 rcu_read_lock();
556 in_dev_for_each_ifa_rcu(ifa, in_dev) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700557 if (strcmp(ifa->ifa_label, devname) == 0)
558 break;
Florian Westphalcd5a4112019-05-31 18:27:07 +0200559 }
560 rcu_read_unlock();
561
Ian Morris51456b22015-04-03 09:17:26 +0100562 if (!ifa)
Thomas Graf4e902c52006-08-17 18:14:52 -0700563 return -ENODEV;
564 cfg->fc_prefsrc = ifa->ifa_local;
565 }
566 }
567
568 addr = sk_extract_addr(&rt->rt_gateway);
569 if (rt->rt_gateway.sa_family == AF_INET && addr) {
David Ahern30bbaa12015-08-13 14:59:05 -0600570 unsigned int addr_type;
571
David Ahernf35b7942019-04-05 16:30:28 -0700572 cfg->fc_gw4 = addr;
573 cfg->fc_gw_family = AF_INET;
David Ahern30bbaa12015-08-13 14:59:05 -0600574 addr_type = inet_addr_type_table(net, addr, cfg->fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700575 if (rt->rt_flags & RTF_GATEWAY &&
David Ahern30bbaa12015-08-13 14:59:05 -0600576 addr_type == RTN_UNICAST)
Thomas Graf4e902c52006-08-17 18:14:52 -0700577 cfg->fc_scope = RT_SCOPE_UNIVERSE;
578 }
579
580 if (cmd == SIOCDELRT)
581 return 0;
582
David Ahernf35b7942019-04-05 16:30:28 -0700583 if (rt->rt_flags & RTF_GATEWAY && !cfg->fc_gw_family)
Thomas Graf4e902c52006-08-17 18:14:52 -0700584 return -EINVAL;
585
586 if (cfg->fc_scope == RT_SCOPE_NOWHERE)
587 cfg->fc_scope = RT_SCOPE_LINK;
588
589 if (rt->rt_flags & (RTF_MTU | RTF_WINDOW | RTF_IRTT)) {
590 struct nlattr *mx;
591 int len = 0;
592
Kees Cook6396bb22018-06-12 14:03:40 -0700593 mx = kcalloc(3, nla_total_size(4), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100594 if (!mx)
Thomas Graf4e902c52006-08-17 18:14:52 -0700595 return -ENOMEM;
596
597 if (rt->rt_flags & RTF_MTU)
598 len = put_rtax(mx, len, RTAX_ADVMSS, rt->rt_mtu - 40);
599
600 if (rt->rt_flags & RTF_WINDOW)
601 len = put_rtax(mx, len, RTAX_WINDOW, rt->rt_window);
602
603 if (rt->rt_flags & RTF_IRTT)
604 len = put_rtax(mx, len, RTAX_RTT, rt->rt_irtt << 3);
605
606 cfg->fc_mx = mx;
607 cfg->fc_mx_len = len;
608 }
609
610 return 0;
611}
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000614 * Handle IP routing ioctl calls.
615 * These are used to manipulate the routing tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 */
Al Viroca25c302017-07-01 08:03:10 -0400617int ip_rt_ioctl(struct net *net, unsigned int cmd, struct rtentry *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Thomas Graf4e902c52006-08-17 18:14:52 -0700619 struct fib_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 switch (cmd) {
623 case SIOCADDRT: /* Add a route */
624 case SIOCDELRT: /* Delete a route */
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000625 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return -EPERM;
Thomas Graf4e902c52006-08-17 18:14:52 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 rtnl_lock();
Al Viroca25c302017-07-01 08:03:10 -0400629 err = rtentry_to_fib_config(net, cmd, rt, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (err == 0) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700631 struct fib_table *tb;
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (cmd == SIOCDELRT) {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800634 tb = fib_get_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (tb)
David Ahern78055992017-05-27 16:19:26 -0600636 err = fib_table_delete(net, tb, &cfg,
637 NULL);
Thomas Graf4e902c52006-08-17 18:14:52 -0700638 else
639 err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 } else {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800641 tb = fib_new_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (tb)
David Ahern6d8422a12017-05-21 10:12:02 -0600643 err = fib_table_insert(net, tb,
644 &cfg, NULL);
Thomas Graf4e902c52006-08-17 18:14:52 -0700645 else
646 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700648
649 /* allocated by rtentry_to_fib_config() */
650 kfree(cfg.fc_mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 rtnl_unlock();
653 return err;
654 }
655 return -EINVAL;
656}
657
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000658const struct nla_policy rtm_ipv4_policy[RTA_MAX + 1] = {
David Ahern75425652019-05-22 12:07:43 -0700659 [RTA_UNSPEC] = { .strict_start_type = RTA_DPORT + 1 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700660 [RTA_DST] = { .type = NLA_U32 },
661 [RTA_SRC] = { .type = NLA_U32 },
662 [RTA_IIF] = { .type = NLA_U32 },
663 [RTA_OIF] = { .type = NLA_U32 },
664 [RTA_GATEWAY] = { .type = NLA_U32 },
665 [RTA_PRIORITY] = { .type = NLA_U32 },
666 [RTA_PREFSRC] = { .type = NLA_U32 },
667 [RTA_METRICS] = { .type = NLA_NESTED },
Thomas Graf5176f912006-08-26 20:13:18 -0700668 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf4e902c52006-08-17 18:14:52 -0700669 [RTA_FLOW] = { .type = NLA_U32 },
Roopa Prabhu571e7222015-07-21 10:43:47 +0200670 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
671 [RTA_ENCAP] = { .type = NLA_NESTED },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +0900672 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +0800673 [RTA_MARK] = { .type = NLA_U32 },
Roopa Prabhu2eabd762018-05-22 13:44:51 -0700674 [RTA_TABLE] = { .type = NLA_U32 },
Roopa Prabhu404eb772018-05-22 14:03:27 -0700675 [RTA_IP_PROTO] = { .type = NLA_U8 },
676 [RTA_SPORT] = { .type = NLA_U16 },
677 [RTA_DPORT] = { .type = NLA_U16 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700678};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
David Ahernd1566262019-04-05 16:30:40 -0700680int fib_gw_from_via(struct fib_config *cfg, struct nlattr *nla,
681 struct netlink_ext_ack *extack)
682{
683 struct rtvia *via;
684 int alen;
685
686 if (nla_len(nla) < offsetof(struct rtvia, rtvia_addr)) {
687 NL_SET_ERR_MSG(extack, "Invalid attribute length for RTA_VIA");
688 return -EINVAL;
689 }
690
691 via = nla_data(nla);
692 alen = nla_len(nla) - offsetof(struct rtvia, rtvia_addr);
693
694 switch (via->rtvia_family) {
695 case AF_INET:
696 if (alen != sizeof(__be32)) {
697 NL_SET_ERR_MSG(extack, "Invalid IPv4 address in RTA_VIA");
698 return -EINVAL;
699 }
700 cfg->fc_gw_family = AF_INET;
701 cfg->fc_gw4 = *((__be32 *)via->rtvia_addr);
702 break;
703 case AF_INET6:
704#ifdef CONFIG_IPV6
705 if (alen != sizeof(struct in6_addr)) {
706 NL_SET_ERR_MSG(extack, "Invalid IPv6 address in RTA_VIA");
707 return -EINVAL;
708 }
709 cfg->fc_gw_family = AF_INET6;
710 cfg->fc_gw6 = *((struct in6_addr *)via->rtvia_addr);
711#else
712 NL_SET_ERR_MSG(extack, "IPv6 support not enabled in kernel");
713 return -EINVAL;
714#endif
715 break;
716 default:
717 NL_SET_ERR_MSG(extack, "Unsupported address family in RTA_VIA");
718 return -EINVAL;
719 }
720
721 return 0;
722}
723
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800724static int rtm_to_fib_config(struct net *net, struct sk_buff *skb,
David Ahern6d8422a12017-05-21 10:12:02 -0600725 struct nlmsghdr *nlh, struct fib_config *cfg,
726 struct netlink_ext_ack *extack)
Thomas Graf4e902c52006-08-17 18:14:52 -0700727{
David Ahernd1566262019-04-05 16:30:40 -0700728 bool has_gw = false, has_via = false;
Thomas Graf4e902c52006-08-17 18:14:52 -0700729 struct nlattr *attr;
730 int err, remaining;
731 struct rtmsg *rtm;
732
Johannes Berg8cb08172019-04-26 14:07:28 +0200733 err = nlmsg_validate_deprecated(nlh, sizeof(*rtm), RTA_MAX,
734 rtm_ipv4_policy, extack);
Thomas Graf4e902c52006-08-17 18:14:52 -0700735 if (err < 0)
736 goto errout;
737
738 memset(cfg, 0, sizeof(*cfg));
739
740 rtm = nlmsg_data(nlh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700741 cfg->fc_dst_len = rtm->rtm_dst_len;
Thomas Graf4e902c52006-08-17 18:14:52 -0700742 cfg->fc_tos = rtm->rtm_tos;
743 cfg->fc_table = rtm->rtm_table;
744 cfg->fc_protocol = rtm->rtm_protocol;
745 cfg->fc_scope = rtm->rtm_scope;
746 cfg->fc_type = rtm->rtm_type;
747 cfg->fc_flags = rtm->rtm_flags;
748 cfg->fc_nlflags = nlh->nlmsg_flags;
749
Eric W. Biederman15e47302012-09-07 20:12:54 +0000750 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf4e902c52006-08-17 18:14:52 -0700751 cfg->fc_nlinfo.nlh = nlh;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800752 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700753
Thomas Grafa0ee18b2007-03-24 20:32:54 -0700754 if (cfg->fc_type > RTN_MAX) {
David Ahernc3ab2b42017-05-21 10:12:03 -0600755 NL_SET_ERR_MSG(extack, "Invalid route type");
Thomas Grafa0ee18b2007-03-24 20:32:54 -0700756 err = -EINVAL;
757 goto errout;
758 }
759
Thomas Graf4e902c52006-08-17 18:14:52 -0700760 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200761 switch (nla_type(attr)) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700762 case RTA_DST:
Al Viro17fb2c62006-09-26 22:15:25 -0700763 cfg->fc_dst = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700764 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700765 case RTA_OIF:
766 cfg->fc_oif = nla_get_u32(attr);
767 break;
768 case RTA_GATEWAY:
David Ahernd1566262019-04-05 16:30:40 -0700769 has_gw = true;
David Ahernf35b7942019-04-05 16:30:28 -0700770 cfg->fc_gw4 = nla_get_be32(attr);
David Ahernd73f80f2019-04-10 10:05:51 -0700771 if (cfg->fc_gw4)
772 cfg->fc_gw_family = AF_INET;
Thomas Graf4e902c52006-08-17 18:14:52 -0700773 break;
David Ahernb6e9e5d2019-02-26 09:00:02 -0800774 case RTA_VIA:
David Ahernd1566262019-04-05 16:30:40 -0700775 has_via = true;
776 err = fib_gw_from_via(cfg, attr, extack);
777 if (err)
778 goto errout;
779 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700780 case RTA_PRIORITY:
781 cfg->fc_priority = nla_get_u32(attr);
782 break;
783 case RTA_PREFSRC:
Al Viro17fb2c62006-09-26 22:15:25 -0700784 cfg->fc_prefsrc = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700785 break;
786 case RTA_METRICS:
787 cfg->fc_mx = nla_data(attr);
788 cfg->fc_mx_len = nla_len(attr);
789 break;
790 case RTA_MULTIPATH:
David Ahern9ed59592017-01-17 14:57:36 -0800791 err = lwtunnel_valid_encap_type_attr(nla_data(attr),
David Ahernc255bd62017-05-27 16:19:27 -0600792 nla_len(attr),
793 extack);
David Ahern9ed59592017-01-17 14:57:36 -0800794 if (err < 0)
795 goto errout;
Thomas Graf4e902c52006-08-17 18:14:52 -0700796 cfg->fc_mp = nla_data(attr);
797 cfg->fc_mp_len = nla_len(attr);
798 break;
799 case RTA_FLOW:
800 cfg->fc_flow = nla_get_u32(attr);
801 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700802 case RTA_TABLE:
803 cfg->fc_table = nla_get_u32(attr);
804 break;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200805 case RTA_ENCAP:
806 cfg->fc_encap = attr;
807 break;
808 case RTA_ENCAP_TYPE:
809 cfg->fc_encap_type = nla_get_u16(attr);
David Ahernc255bd62017-05-27 16:19:27 -0600810 err = lwtunnel_valid_encap_type(cfg->fc_encap_type,
811 extack);
David Ahern9ed59592017-01-17 14:57:36 -0800812 if (err < 0)
813 goto errout;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200814 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700817
David Ahernd1566262019-04-05 16:30:40 -0700818 if (has_gw && has_via) {
819 NL_SET_ERR_MSG(extack,
820 "Nexthop configuration can not contain both GATEWAY and VIA");
821 goto errout;
822 }
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700825errout:
826 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
David Ahernc21ef3e2017-04-16 09:48:24 -0700829static int inet_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
830 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900832 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700833 struct fib_config cfg;
834 struct fib_table *tb;
835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
David Ahern6d8422a12017-05-21 10:12:02 -0600837 err = rtm_to_fib_config(net, skb, nlh, &cfg, extack);
Thomas Graf4e902c52006-08-17 18:14:52 -0700838 if (err < 0)
839 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800841 tb = fib_get_table(net, cfg.fc_table);
Ian Morris51456b22015-04-03 09:17:26 +0100842 if (!tb) {
David Ahernc3ab2b42017-05-21 10:12:03 -0600843 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Graf4e902c52006-08-17 18:14:52 -0700844 err = -ESRCH;
845 goto errout;
846 }
847
David Ahern78055992017-05-27 16:19:26 -0600848 err = fib_table_delete(net, tb, &cfg, extack);
Thomas Graf4e902c52006-08-17 18:14:52 -0700849errout:
850 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
David Ahernc21ef3e2017-04-16 09:48:24 -0700853static int inet_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
854 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900856 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700857 struct fib_config cfg;
858 struct fib_table *tb;
859 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
David Ahern6d8422a12017-05-21 10:12:02 -0600861 err = rtm_to_fib_config(net, skb, nlh, &cfg, extack);
Thomas Graf4e902c52006-08-17 18:14:52 -0700862 if (err < 0)
863 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Denis V. Lunev226b0b4a52008-01-10 03:30:24 -0800865 tb = fib_new_table(net, cfg.fc_table);
Ian Morris51456b22015-04-03 09:17:26 +0100866 if (!tb) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700867 err = -ENOBUFS;
868 goto errout;
869 }
870
David Ahern6d8422a12017-05-21 10:12:02 -0600871 err = fib_table_insert(net, tb, &cfg, extack);
Paolo Abeni6e617de2017-09-20 18:26:53 +0200872 if (!err && cfg.fc_type == RTN_LOCAL)
873 net->ipv4.fib_has_custom_local_routes = true;
Thomas Graf4e902c52006-08-17 18:14:52 -0700874errout:
875 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
David Ahern47246762018-10-15 18:56:42 -0700878int ip_valid_fib_dump_req(struct net *net, const struct nlmsghdr *nlh,
879 struct fib_dump_filter *filter,
David Aherneffe6792018-10-15 18:56:48 -0700880 struct netlink_callback *cb)
David Aherne8ba3302018-10-07 20:16:35 -0700881{
David Aherneffe6792018-10-15 18:56:48 -0700882 struct netlink_ext_ack *extack = cb->extack;
883 struct nlattr *tb[RTA_MAX + 1];
David Aherne8ba3302018-10-07 20:16:35 -0700884 struct rtmsg *rtm;
David Aherneffe6792018-10-15 18:56:48 -0700885 int err, i;
886
887 ASSERT_RTNL();
David Aherne8ba3302018-10-07 20:16:35 -0700888
889 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) {
890 NL_SET_ERR_MSG(extack, "Invalid header for FIB dump request");
891 return -EINVAL;
892 }
893
894 rtm = nlmsg_data(nlh);
895 if (rtm->rtm_dst_len || rtm->rtm_src_len || rtm->rtm_tos ||
David Aherneffe6792018-10-15 18:56:48 -0700896 rtm->rtm_scope) {
David Aherne8ba3302018-10-07 20:16:35 -0700897 NL_SET_ERR_MSG(extack, "Invalid values in header for FIB dump request");
898 return -EINVAL;
899 }
900 if (rtm->rtm_flags & ~(RTM_F_CLONED | RTM_F_PREFIX)) {
901 NL_SET_ERR_MSG(extack, "Invalid flags for FIB dump request");
902 return -EINVAL;
903 }
904
David Ahernae677bb2018-10-24 12:59:01 -0700905 filter->dump_all_families = (rtm->rtm_family == AF_UNSPEC);
David Aherneffe6792018-10-15 18:56:48 -0700906 filter->flags = rtm->rtm_flags;
907 filter->protocol = rtm->rtm_protocol;
908 filter->rt_type = rtm->rtm_type;
909 filter->table_id = rtm->rtm_table;
910
Johannes Berg8cb08172019-04-26 14:07:28 +0200911 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX,
912 rtm_ipv4_policy, extack);
David Aherneffe6792018-10-15 18:56:48 -0700913 if (err < 0)
914 return err;
915
916 for (i = 0; i <= RTA_MAX; ++i) {
917 int ifindex;
918
919 if (!tb[i])
920 continue;
921
922 switch (i) {
923 case RTA_TABLE:
924 filter->table_id = nla_get_u32(tb[i]);
925 break;
926 case RTA_OIF:
927 ifindex = nla_get_u32(tb[i]);
928 filter->dev = __dev_get_by_index(net, ifindex);
929 if (!filter->dev)
930 return -ENODEV;
931 break;
932 default:
933 NL_SET_ERR_MSG(extack, "Unsupported attribute in dump request");
934 return -EINVAL;
935 }
936 }
937
938 if (filter->flags || filter->protocol || filter->rt_type ||
939 filter->table_id || filter->dev) {
940 filter->filter_set = 1;
941 cb->answer_flags = NLM_F_DUMP_FILTERED;
David Aherne8ba3302018-10-07 20:16:35 -0700942 }
943
944 return 0;
945}
946EXPORT_SYMBOL_GPL(ip_valid_fib_dump_req);
947
Thomas Graf63f34442007-03-22 11:55:17 -0700948static int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
David Aherne8ba3302018-10-07 20:16:35 -0700950 const struct nlmsghdr *nlh = cb->nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900951 struct net *net = sock_net(skb->sk);
David Ahern47246762018-10-15 18:56:42 -0700952 struct fib_dump_filter filter = {};
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700953 unsigned int h, s_h;
954 unsigned int e = 0, s_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 struct fib_table *tb;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800956 struct hlist_head *head;
David Ahernf6c57752017-05-15 23:19:17 -0700957 int dumped = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
David Aherne8ba3302018-10-07 20:16:35 -0700959 if (cb->strict_check) {
David Aherneffe6792018-10-15 18:56:48 -0700960 err = ip_valid_fib_dump_req(net, nlh, &filter, cb);
David Aherne8ba3302018-10-07 20:16:35 -0700961 if (err < 0)
962 return err;
David Aherne4e92fb2018-10-15 18:56:51 -0700963 } else if (nlmsg_len(nlh) >= sizeof(struct rtmsg)) {
964 struct rtmsg *rtm = nlmsg_data(nlh);
965
966 filter.flags = rtm->rtm_flags & (RTM_F_PREFIX | RTM_F_CLONED);
David Aherne8ba3302018-10-07 20:16:35 -0700967 }
968
David Aherne4e92fb2018-10-15 18:56:51 -0700969 /* fib entries are never clones and ipv4 does not use prefix flag */
970 if (filter.flags & (RTM_F_PREFIX | RTM_F_CLONED))
Li RongQing0b8c7f62014-03-21 11:33:10 +0800971 return skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
David Ahern18a80212018-10-15 18:56:43 -0700973 if (filter.table_id) {
974 tb = fib_get_table(net, filter.table_id);
975 if (!tb) {
David Ahernae677bb2018-10-24 12:59:01 -0700976 if (filter.dump_all_families)
977 return skb->len;
978
David Ahern18a80212018-10-15 18:56:43 -0700979 NL_SET_ERR_MSG(cb->extack, "ipv4: FIB table does not exist");
980 return -ENOENT;
981 }
982
983 err = fib_table_dump(tb, skb, cb, &filter);
984 return skb->len ? : err;
985 }
986
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700987 s_h = cb->args[0];
988 s_e = cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Alexander Duycka7e53532015-03-04 15:02:44 -0800990 rcu_read_lock();
991
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700992 for (h = s_h; h < FIB_TABLE_HASHSZ; h++, s_e = 0) {
993 e = 0;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800994 head = &net->ipv4.fib_table_hash[h];
Alexander Duycka7e53532015-03-04 15:02:44 -0800995 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700996 if (e < s_e)
997 goto next;
998 if (dumped)
999 memset(&cb->args[2], 0, sizeof(cb->args) -
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001000 2 * sizeof(cb->args[0]));
David Ahern18a80212018-10-15 18:56:43 -07001001 err = fib_table_dump(tb, skb, cb, &filter);
David Ahernf6c57752017-05-15 23:19:17 -07001002 if (err < 0) {
1003 if (likely(skb->len))
1004 goto out;
1005
1006 goto out_err;
1007 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001008 dumped = 1;
1009next:
1010 e++;
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001013out:
David Ahernf6c57752017-05-15 23:19:17 -07001014 err = skb->len;
1015out_err:
Alexander Duycka7e53532015-03-04 15:02:44 -08001016 rcu_read_unlock();
1017
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001018 cb->args[1] = e;
1019 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
David Ahernf6c57752017-05-15 23:19:17 -07001021 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
1024/* Prepare and feed intra-kernel routing request.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001025 * Really, it should be netlink message, but :-( netlink
1026 * can be not configured, so that we feed it directly
1027 * to fib engine. It is legal, because all events occur
1028 * only when netlink is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
David Ahernaf4d7682018-05-27 08:09:57 -07001030static void fib_magic(int cmd, int type, __be32 dst, int dst_len,
1031 struct in_ifaddr *ifa, u32 rt_priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001033 struct net *net = dev_net(ifa->ifa_dev->dev);
David Ahern3236b002015-09-29 20:07:14 -07001034 u32 tb_id = l3mdev_fib_table(ifa->ifa_dev->dev);
Thomas Graf4e902c52006-08-17 18:14:52 -07001035 struct fib_table *tb;
1036 struct fib_config cfg = {
1037 .fc_protocol = RTPROT_KERNEL,
1038 .fc_type = type,
1039 .fc_dst = dst,
1040 .fc_dst_len = dst_len,
David Ahernaf4d7682018-05-27 08:09:57 -07001041 .fc_priority = rt_priority,
Thomas Graf4e902c52006-08-17 18:14:52 -07001042 .fc_prefsrc = ifa->ifa_local,
1043 .fc_oif = ifa->ifa_dev->dev->ifindex,
1044 .fc_nlflags = NLM_F_CREATE | NLM_F_APPEND,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001045 .fc_nlinfo = {
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -08001046 .nl_net = net,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001047 },
Thomas Graf4e902c52006-08-17 18:14:52 -07001048 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
David Ahern021dd3b2015-08-13 14:59:06 -06001050 if (!tb_id)
1051 tb_id = (type == RTN_UNICAST) ? RT_TABLE_MAIN : RT_TABLE_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
David Ahern021dd3b2015-08-13 14:59:06 -06001053 tb = fib_new_table(net, tb_id);
Ian Morris51456b22015-04-03 09:17:26 +01001054 if (!tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return;
1056
Thomas Graf4e902c52006-08-17 18:14:52 -07001057 cfg.fc_table = tb->tb_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Thomas Graf4e902c52006-08-17 18:14:52 -07001059 if (type != RTN_LOCAL)
1060 cfg.fc_scope = RT_SCOPE_LINK;
1061 else
1062 cfg.fc_scope = RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 if (cmd == RTM_NEWROUTE)
David Ahern6d8422a12017-05-21 10:12:02 -06001065 fib_table_insert(net, tb, &cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 else
David Ahern78055992017-05-27 16:19:26 -06001067 fib_table_delete(net, tb, &cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
Jamal Hadi Salim0ff60a42005-11-22 14:47:37 -08001070void fib_add_ifaddr(struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
1072 struct in_device *in_dev = ifa->ifa_dev;
1073 struct net_device *dev = in_dev->dev;
1074 struct in_ifaddr *prim = ifa;
Al Viroa144ea42006-09-28 18:00:55 -07001075 __be32 mask = ifa->ifa_mask;
1076 __be32 addr = ifa->ifa_local;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001077 __be32 prefix = ifa->ifa_address & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001079 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 prim = inet_ifa_byprefix(in_dev, prefix, mask);
Ian Morris51456b22015-04-03 09:17:26 +01001081 if (!prim) {
Joe Perches058bd4d2012-03-11 18:36:11 +00001082 pr_warn("%s: bug: prim == NULL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return;
1084 }
1085 }
1086
David Ahernaf4d7682018-05-27 08:09:57 -07001087 fib_magic(RTM_NEWROUTE, RTN_LOCAL, addr, 32, prim, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001089 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return;
1091
1092 /* Add broadcast address, if it is explicitly assigned. */
Al Viroa144ea42006-09-28 18:00:55 -07001093 if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF))
David Ahernaf4d7682018-05-27 08:09:57 -07001094 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32,
1095 prim, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001097 if (!ipv4_is_zeronet(prefix) && !(ifa->ifa_flags & IFA_F_SECONDARY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 (prefix != addr || ifa->ifa_prefixlen < 32)) {
Paolo Abeni7b131182015-10-20 10:28:45 +02001099 if (!(ifa->ifa_flags & IFA_F_NOPREFIXROUTE))
1100 fib_magic(RTM_NEWROUTE,
1101 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
David Ahernaf4d7682018-05-27 08:09:57 -07001102 prefix, ifa->ifa_prefixlen, prim,
1103 ifa->ifa_rt_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 /* Add network specific broadcasts, when it takes a sense */
1106 if (ifa->ifa_prefixlen < 31) {
David Ahernaf4d7682018-05-27 08:09:57 -07001107 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix, 32,
1108 prim, 0);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001109 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix | ~mask,
David Ahernaf4d7682018-05-27 08:09:57 -07001110 32, prim, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112 }
1113}
1114
David Ahernaf4d7682018-05-27 08:09:57 -07001115void fib_modify_prefix_metric(struct in_ifaddr *ifa, u32 new_metric)
1116{
1117 __be32 prefix = ifa->ifa_address & ifa->ifa_mask;
1118 struct in_device *in_dev = ifa->ifa_dev;
1119 struct net_device *dev = in_dev->dev;
1120
1121 if (!(dev->flags & IFF_UP) ||
1122 ifa->ifa_flags & (IFA_F_SECONDARY | IFA_F_NOPREFIXROUTE) ||
1123 ipv4_is_zeronet(prefix) ||
1124 prefix == ifa->ifa_local || ifa->ifa_prefixlen == 32)
1125 return;
1126
1127 /* add the new */
1128 fib_magic(RTM_NEWROUTE,
1129 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
1130 prefix, ifa->ifa_prefixlen, ifa, new_metric);
1131
1132 /* delete the old */
1133 fib_magic(RTM_DELROUTE,
1134 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
1135 prefix, ifa->ifa_prefixlen, ifa, ifa->ifa_rt_priority);
1136}
1137
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001138/* Delete primary or secondary address.
1139 * Optionally, on secondary address promotion consider the addresses
1140 * from subnet iprim as deleted, even if they are in device list.
1141 * In this case the secondary ifa can be in device list.
1142 */
1143void fib_del_ifaddr(struct in_ifaddr *ifa, struct in_ifaddr *iprim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 struct in_device *in_dev = ifa->ifa_dev;
1146 struct net_device *dev = in_dev->dev;
1147 struct in_ifaddr *ifa1;
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001148 struct in_ifaddr *prim = ifa, *prim1 = NULL;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001149 __be32 brd = ifa->ifa_address | ~ifa->ifa_mask;
1150 __be32 any = ifa->ifa_address & ifa->ifa_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151#define LOCAL_OK 1
1152#define BRD_OK 2
1153#define BRD0_OK 4
1154#define BRD1_OK 8
Eric Dumazet95c96172012-04-15 05:58:06 +00001155 unsigned int ok = 0;
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001156 int subnet = 0; /* Primary network */
1157 int gone = 1; /* Address is missing */
1158 int same_prefsrc = 0; /* Another primary with same IP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001160 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 prim = inet_ifa_byprefix(in_dev, any, ifa->ifa_mask);
Ian Morris51456b22015-04-03 09:17:26 +01001162 if (!prim) {
Paolo Abeni391a2032016-04-21 22:23:31 +02001163 /* if the device has been deleted, we don't perform
1164 * address promotion
1165 */
1166 if (!in_dev->dead)
1167 pr_warn("%s: bug: prim == NULL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return;
1169 }
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001170 if (iprim && iprim != prim) {
Joe Perches058bd4d2012-03-11 18:36:11 +00001171 pr_warn("%s: bug: iprim != prim\n", __func__);
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001172 return;
1173 }
1174 } else if (!ipv4_is_zeronet(any) &&
1175 (any != ifa->ifa_local || ifa->ifa_prefixlen < 32)) {
Paolo Abeni7b131182015-10-20 10:28:45 +02001176 if (!(ifa->ifa_flags & IFA_F_NOPREFIXROUTE))
1177 fib_magic(RTM_DELROUTE,
1178 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
David Ahernaf4d7682018-05-27 08:09:57 -07001179 any, ifa->ifa_prefixlen, prim, 0);
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001180 subnet = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182
David S. Millerfbd40ea2016-03-13 23:28:00 -04001183 if (in_dev->dead)
1184 goto no_promotions;
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* Deletion is more complicated than add.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001187 * We should take care of not to delete too much :-)
1188 *
1189 * Scan address list to be sure that addresses are really gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 */
Florian Westphalcd5a4112019-05-31 18:27:07 +02001191 rcu_read_lock();
1192 in_dev_for_each_ifa_rcu(ifa1, in_dev) {
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001193 if (ifa1 == ifa) {
1194 /* promotion, keep the IP */
1195 gone = 0;
1196 continue;
1197 }
1198 /* Ignore IFAs from our subnet */
1199 if (iprim && ifa1->ifa_mask == iprim->ifa_mask &&
1200 inet_ifa_match(ifa1->ifa_address, iprim))
1201 continue;
1202
1203 /* Ignore ifa1 if it uses different primary IP (prefsrc) */
1204 if (ifa1->ifa_flags & IFA_F_SECONDARY) {
1205 /* Another address from our subnet? */
1206 if (ifa1->ifa_mask == prim->ifa_mask &&
1207 inet_ifa_match(ifa1->ifa_address, prim))
1208 prim1 = prim;
1209 else {
1210 /* We reached the secondaries, so
1211 * same_prefsrc should be determined.
1212 */
1213 if (!same_prefsrc)
1214 continue;
1215 /* Search new prim1 if ifa1 is not
1216 * using the current prim1
1217 */
1218 if (!prim1 ||
1219 ifa1->ifa_mask != prim1->ifa_mask ||
1220 !inet_ifa_match(ifa1->ifa_address, prim1))
1221 prim1 = inet_ifa_byprefix(in_dev,
1222 ifa1->ifa_address,
1223 ifa1->ifa_mask);
1224 if (!prim1)
1225 continue;
1226 if (prim1->ifa_local != prim->ifa_local)
1227 continue;
1228 }
1229 } else {
1230 if (prim->ifa_local != ifa1->ifa_local)
1231 continue;
1232 prim1 = ifa1;
1233 if (prim != prim1)
1234 same_prefsrc = 1;
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (ifa->ifa_local == ifa1->ifa_local)
1237 ok |= LOCAL_OK;
1238 if (ifa->ifa_broadcast == ifa1->ifa_broadcast)
1239 ok |= BRD_OK;
1240 if (brd == ifa1->ifa_broadcast)
1241 ok |= BRD1_OK;
1242 if (any == ifa1->ifa_broadcast)
1243 ok |= BRD0_OK;
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001244 /* primary has network specific broadcasts */
1245 if (prim1 == ifa1 && ifa1->ifa_prefixlen < 31) {
1246 __be32 brd1 = ifa1->ifa_address | ~ifa1->ifa_mask;
1247 __be32 any1 = ifa1->ifa_address & ifa1->ifa_mask;
1248
1249 if (!ipv4_is_zeronet(any1)) {
1250 if (ifa->ifa_broadcast == brd1 ||
1251 ifa->ifa_broadcast == any1)
1252 ok |= BRD_OK;
1253 if (brd == brd1 || brd == any1)
1254 ok |= BRD1_OK;
1255 if (any == brd1 || any == any1)
1256 ok |= BRD0_OK;
1257 }
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
Florian Westphalcd5a4112019-05-31 18:27:07 +02001260 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
David S. Millerfbd40ea2016-03-13 23:28:00 -04001262no_promotions:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001263 if (!(ok & BRD_OK))
David Ahernaf4d7682018-05-27 08:09:57 -07001264 fib_magic(RTM_DELROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32,
1265 prim, 0);
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001266 if (subnet && ifa->ifa_prefixlen < 31) {
1267 if (!(ok & BRD1_OK))
David Ahernaf4d7682018-05-27 08:09:57 -07001268 fib_magic(RTM_DELROUTE, RTN_BROADCAST, brd, 32,
1269 prim, 0);
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001270 if (!(ok & BRD0_OK))
David Ahernaf4d7682018-05-27 08:09:57 -07001271 fib_magic(RTM_DELROUTE, RTN_BROADCAST, any, 32,
1272 prim, 0);
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001273 }
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001274 if (!(ok & LOCAL_OK)) {
David Ahern30bbaa12015-08-13 14:59:05 -06001275 unsigned int addr_type;
1276
David Ahernaf4d7682018-05-27 08:09:57 -07001277 fib_magic(RTM_DELROUTE, RTN_LOCAL, ifa->ifa_local, 32, prim, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /* Check, that this local address finally disappeared. */
David Ahern30bbaa12015-08-13 14:59:05 -06001280 addr_type = inet_addr_type_dev_table(dev_net(dev), dev,
1281 ifa->ifa_local);
1282 if (gone && addr_type != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /* And the last, but not the least thing.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001284 * We must flush stray FIB entries.
1285 *
1286 * First of all, we scan fib_info list searching
1287 * for stray nexthop entries, then ignite fib_flush.
1288 */
Mark Tomlinson5a56a0b2016-09-05 10:20:20 +12001289 if (fib_sync_down_addr(dev, ifa->ifa_local))
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001290 fib_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 }
1293#undef LOCAL_OK
1294#undef BRD_OK
1295#undef BRD0_OK
1296#undef BRD1_OK
1297}
1298
Alexander Duyck345e9b52014-12-31 10:56:24 -08001299static void nl_fib_lookup(struct net *net, struct fib_result_nl *frn)
Robert Olsson246955f2005-06-20 13:36:39 -07001300{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001301
Robert Olsson246955f2005-06-20 13:36:39 -07001302 struct fib_result res;
David S. Miller9ade2282011-03-12 02:02:42 -05001303 struct flowi4 fl4 = {
1304 .flowi4_mark = frn->fl_mark,
1305 .daddr = frn->fl_addr,
1306 .flowi4_tos = frn->fl_tos,
1307 .flowi4_scope = frn->fl_scope,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001308 };
Alexander Duyck345e9b52014-12-31 10:56:24 -08001309 struct fib_table *tb;
1310
1311 rcu_read_lock();
1312
1313 tb = fib_get_table(net, frn->tb_id_in);
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -07001314
1315 frn->err = -ENOENT;
Robert Olsson246955f2005-06-20 13:36:39 -07001316 if (tb) {
1317 local_bh_disable();
1318
1319 frn->tb_id = tb->tb_id;
David S. Miller9ade2282011-03-12 02:02:42 -05001320 frn->err = fib_table_lookup(tb, &fl4, &res, FIB_LOOKUP_NOREF);
Robert Olsson246955f2005-06-20 13:36:39 -07001321
1322 if (!frn->err) {
1323 frn->prefixlen = res.prefixlen;
1324 frn->nh_sel = res.nh_sel;
1325 frn->type = res.type;
1326 frn->scope = res.scope;
1327 }
1328 local_bh_enable();
1329 }
Alexander Duyck345e9b52014-12-31 10:56:24 -08001330
1331 rcu_read_unlock();
Robert Olsson246955f2005-06-20 13:36:39 -07001332}
1333
David S. Miller28f7b0362007-10-10 21:32:39 -07001334static void nl_fib_input(struct sk_buff *skb)
Robert Olsson246955f2005-06-20 13:36:39 -07001335{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001336 struct net *net;
Robert Olsson246955f2005-06-20 13:36:39 -07001337 struct fib_result_nl *frn;
David S. Miller28f7b0362007-10-10 21:32:39 -07001338 struct nlmsghdr *nlh;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001339 u32 portid;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -07001340
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001341 net = sock_net(skb->sk);
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001342 nlh = nlmsg_hdr(skb);
Eric Dumazetc64c0b32017-03-21 19:22:28 -07001343 if (skb->len < nlmsg_total_size(sizeof(*frn)) ||
1344 skb->len < nlh->nlmsg_len ||
Hong zhi guo573ce262013-03-27 06:47:04 +00001345 nlmsg_len(nlh) < sizeof(*frn))
Thomas Grafea865752005-12-01 14:30:00 -08001346 return;
Denis V. Lunevd883a032007-12-21 02:01:53 -08001347
Pablo Neira3a365152013-06-28 03:04:23 +02001348 skb = netlink_skb_clone(skb, GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01001349 if (!skb)
Denis V. Lunevd883a032007-12-21 02:01:53 -08001350 return;
1351 nlh = nlmsg_hdr(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001352
Hong zhi guo573ce262013-03-27 06:47:04 +00001353 frn = (struct fib_result_nl *) nlmsg_data(nlh);
Alexander Duyck345e9b52014-12-31 10:56:24 -08001354 nl_fib_lookup(net, frn);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001355
Rami Rosen28a28282013-01-11 09:59:20 +00001356 portid = NETLINK_CB(skb).portid; /* netlink portid */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001357 NETLINK_CB(skb).portid = 0; /* from kernel */
Patrick McHardyac6d4392005-08-14 19:29:52 -07001358 NETLINK_CB(skb).dst_group = 0; /* unicast */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001359 netlink_unicast(net->ipv4.fibnl, skb, portid, MSG_DONTWAIT);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001360}
Robert Olsson246955f2005-06-20 13:36:39 -07001361
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001362static int __net_init nl_fib_lookup_init(struct net *net)
Robert Olsson246955f2005-06-20 13:36:39 -07001363{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001364 struct sock *sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001365 struct netlink_kernel_cfg cfg = {
1366 .input = nl_fib_input,
1367 };
1368
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00001369 sk = netlink_kernel_create(net, NETLINK_FIB_LOOKUP, &cfg);
Ian Morris51456b22015-04-03 09:17:26 +01001370 if (!sk)
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001371 return -EAFNOSUPPORT;
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001372 net->ipv4.fibnl = sk;
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001373 return 0;
1374}
1375
1376static void nl_fib_lookup_exit(struct net *net)
1377{
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001378 netlink_kernel_release(net->ipv4.fibnl);
Denis V. Lunev775516b2008-01-18 23:55:19 -08001379 net->ipv4.fibnl = NULL;
Robert Olsson246955f2005-06-20 13:36:39 -07001380}
1381
Julian Anastasov4f823de2015-10-30 10:23:33 +02001382static void fib_disable_ip(struct net_device *dev, unsigned long event,
1383 bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Julian Anastasov4f823de2015-10-30 10:23:33 +02001385 if (fib_sync_down_dev(dev, event, force))
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001386 fib_flush(dev_net(dev));
Gao Feng06b4fc52017-04-26 19:04:04 +08001387 else
1388 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 arp_ifdown(dev);
1390}
1391
1392static int fib_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
1393{
Jianjun Kong6ed2533e2008-11-03 00:25:16 -08001394 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -07001395 struct net_device *dev = ifa->ifa_dev->dev;
David S. Miller436c3b62011-03-24 17:42:21 -07001396 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 switch (event) {
1399 case NETDEV_UP:
1400 fib_add_ifaddr(ifa);
1401#ifdef CONFIG_IP_ROUTE_MULTIPATH
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001402 fib_sync_up(dev, RTNH_F_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403#endif
David S. Miller436c3b62011-03-24 17:42:21 -07001404 atomic_inc(&net->ipv4.dev_addr_genid);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001405 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 break;
1407 case NETDEV_DOWN:
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001408 fib_del_ifaddr(ifa, NULL);
David S. Miller436c3b62011-03-24 17:42:21 -07001409 atomic_inc(&net->ipv4.dev_addr_genid);
Ian Morris51456b22015-04-03 09:17:26 +01001410 if (!ifa->ifa_dev->ifa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 /* Last address was deleted from this interface.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001412 * Disable IP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 */
Julian Anastasov4f823de2015-10-30 10:23:33 +02001414 fib_disable_ip(dev, event, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 } else {
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001416 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418 break;
1419 }
1420 return NOTIFY_DONE;
1421}
1422
1423static int fib_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1424{
Jiri Pirko351638e2013-05-28 01:30:21 +00001425 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001426 struct netdev_notifier_changeupper_info *upper_info = ptr;
1427 struct netdev_notifier_info_ext *info_ext = ptr;
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001428 struct in_device *in_dev;
David S. Miller436c3b62011-03-24 17:42:21 -07001429 struct net *net = dev_net(dev);
Florian Westphalcd5a4112019-05-31 18:27:07 +02001430 struct in_ifaddr *ifa;
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001431 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 if (event == NETDEV_UNREGISTER) {
Julian Anastasov4f823de2015-10-30 10:23:33 +02001434 fib_disable_ip(dev, event, true);
David S. Millercaacf052012-07-31 15:06:50 -07001435 rt_flush_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return NOTIFY_DONE;
1437 }
1438
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001439 in_dev = __in_dev_get_rtnl(dev);
Oliver Hartkoppa0065f22014-01-23 10:19:34 +01001440 if (!in_dev)
1441 return NOTIFY_DONE;
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 switch (event) {
1444 case NETDEV_UP:
Florian Westphalcd5a4112019-05-31 18:27:07 +02001445 in_dev_for_each_ifa_rtnl(ifa, in_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 fib_add_ifaddr(ifa);
Florian Westphalcd5a4112019-05-31 18:27:07 +02001447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448#ifdef CONFIG_IP_ROUTE_MULTIPATH
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001449 fib_sync_up(dev, RTNH_F_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450#endif
David S. Miller436c3b62011-03-24 17:42:21 -07001451 atomic_inc(&net->ipv4.dev_addr_genid);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001452 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 break;
1454 case NETDEV_DOWN:
Julian Anastasov4f823de2015-10-30 10:23:33 +02001455 fib_disable_ip(dev, event, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 case NETDEV_CHANGE:
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001458 flags = dev_get_flags(dev);
1459 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
1460 fib_sync_up(dev, RTNH_F_LINKDOWN);
1461 else
Julian Anastasov4f823de2015-10-30 10:23:33 +02001462 fib_sync_down_dev(dev, event, false);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001463 rt_cache_flush(net);
1464 break;
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001465 case NETDEV_CHANGEMTU:
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001466 fib_sync_mtu(dev, info_ext->ext.mtu);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001467 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 break;
David Ahern7f49e7a2015-12-10 10:25:24 -08001469 case NETDEV_CHANGEUPPER:
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001470 upper_info = ptr;
David Ahern7f49e7a2015-12-10 10:25:24 -08001471 /* flush all routes if dev is linked to or unlinked from
1472 * an L3 master device (e.g., VRF)
1473 */
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001474 if (upper_info->upper_dev &&
1475 netif_is_l3_master(upper_info->upper_dev))
David Ahern7f49e7a2015-12-10 10:25:24 -08001476 fib_disable_ip(dev, NETDEV_DOWN, true);
1477 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
1479 return NOTIFY_DONE;
1480}
1481
1482static struct notifier_block fib_inetaddr_notifier = {
Jianjun Kong6ed2533e2008-11-03 00:25:16 -08001483 .notifier_call = fib_inetaddr_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484};
1485
1486static struct notifier_block fib_netdev_notifier = {
Jianjun Kong6ed2533e2008-11-03 00:25:16 -08001487 .notifier_call = fib_netdev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488};
1489
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001490static int __net_init ip_fib_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001492 int err;
Eric Dumazet10da66f2010-10-13 08:22:03 +00001493 size_t size = sizeof(struct hlist_head) * FIB_TABLE_HASHSZ;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001494
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001495 err = fib4_notifier_init(net);
1496 if (err)
1497 return err;
Ido Schimmelcacaad12016-12-03 16:45:06 +01001498
Eric Dumazet10da66f2010-10-13 08:22:03 +00001499 /* Avoid false sharing : Use at least a full cache line */
1500 size = max_t(size_t, size, L1_CACHE_BYTES);
1501
1502 net->ipv4.fib_table_hash = kzalloc(size, GFP_KERNEL);
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001503 if (!net->ipv4.fib_table_hash) {
1504 err = -ENOMEM;
1505 goto err_table_hash_alloc;
1506 }
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001507
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001508 err = fib4_rules_init(net);
1509 if (err < 0)
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001510 goto err_rules_init;
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001511 return 0;
1512
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001513err_rules_init:
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001514 kfree(net->ipv4.fib_table_hash);
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001515err_table_hash_alloc:
1516 fib4_notifier_exit(net);
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001517 return err;
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001518}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001520static void ip_fib_net_exit(struct net *net)
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001521{
Ido Schimmelb4681c22017-12-20 19:34:19 +02001522 int i;
Thomas Graf63f34442007-03-22 11:55:17 -07001523
Sabrina Dubroca6dede752015-03-10 21:03:54 +01001524 rtnl_lock();
Alexander Duyck6e47d6c2015-03-27 14:14:22 -07001525#ifdef CONFIG_IP_MULTIPLE_TABLES
Alexander Duyck6e47d6c2015-03-27 14:14:22 -07001526 RCU_INIT_POINTER(net->ipv4.fib_main, NULL);
1527 RCU_INIT_POINTER(net->ipv4.fib_default, NULL);
1528#endif
Ido Schimmelb4681c22017-12-20 19:34:19 +02001529 /* Destroy the tables in reverse order to guarantee that the
1530 * local table, ID 255, is destroyed before the main table, ID
1531 * 254. This is necessary as the local table may contain
1532 * references to data contained in the main table.
1533 */
1534 for (i = FIB_TABLE_HASHSZ - 1; i >= 0; i--) {
Alexander Duycka7e53532015-03-04 15:02:44 -08001535 struct hlist_head *head = &net->ipv4.fib_table_hash[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001536 struct hlist_node *tmp;
Alexander Duycka7e53532015-03-04 15:02:44 -08001537 struct fib_table *tb;
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001538
Alexander Duycka7e53532015-03-04 15:02:44 -08001539 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist) {
Alexander Duycka7e53532015-03-04 15:02:44 -08001540 hlist_del(&tb->tb_hlist);
Ido Schimmelf97f4dd2019-01-09 09:57:39 +00001541 fib_table_flush(net, tb, true);
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001542 fib_free_table(tb);
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001543 }
1544 }
Alexander Duyckad88d052015-03-27 14:14:16 -07001545
1546#ifdef CONFIG_IP_MULTIPLE_TABLES
1547 fib4_rules_exit(net);
1548#endif
Eric Dumazete2666f82011-03-30 16:57:46 -07001549 rtnl_unlock();
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001550 kfree(net->ipv4.fib_table_hash);
Ido Schimmel04b1d4e2017-08-03 13:28:11 +02001551 fib4_notifier_exit(net);
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001552}
1553
1554static int __net_init fib_net_init(struct net *net)
1555{
1556 int error;
1557
David S. Millerf4530fa2012-07-05 22:13:13 -07001558#ifdef CONFIG_IP_ROUTE_CLASSID
1559 net->ipv4.fib_num_tclassid_users = 0;
1560#endif
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001561 error = ip_fib_net_init(net);
1562 if (error < 0)
1563 goto out;
1564 error = nl_fib_lookup_init(net);
1565 if (error < 0)
1566 goto out_nlfl;
1567 error = fib_proc_init(net);
1568 if (error < 0)
1569 goto out_proc;
1570out:
1571 return error;
1572
1573out_proc:
1574 nl_fib_lookup_exit(net);
1575out_nlfl:
1576 ip_fib_net_exit(net);
1577 goto out;
1578}
1579
1580static void __net_exit fib_net_exit(struct net *net)
1581{
1582 fib_proc_exit(net);
1583 nl_fib_lookup_exit(net);
1584 ip_fib_net_exit(net);
1585}
1586
1587static struct pernet_operations fib_net_ops = {
1588 .init = fib_net_init,
1589 .exit = fib_net_exit,
1590};
1591
1592void __init ip_fib_init(void)
1593{
Mahesh Bandewar8799a222017-07-19 15:41:33 -07001594 fib_trie_init();
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001595
1596 register_pernet_subsys(&fib_net_ops);
Mahesh Bandewar8799a222017-07-19 15:41:33 -07001597
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001598 register_netdevice_notifier(&fib_netdev_notifier);
1599 register_inetaddr_notifier(&fib_inetaddr_notifier);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001600
Florian Westphalb97bac62017-08-09 20:41:48 +02001601 rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL, 0);
1602 rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL, 0);
1603 rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}