blob: 6b98de0d79498d575a44d6c20bd3abb5a38ea75c [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>
17#include <asm/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>
Thomas Graf63f34442007-03-22 11:55:17 -070046#include <net/rtnetlink.h>
Michael Smith990078a2011-04-07 04:51:51 +000047#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifndef CONFIG_IP_MULTIPLE_TABLES
50
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -080051static int __net_init fib4_rules_init(struct net *net)
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080052{
Denis V. Lunev93456b62008-01-10 03:23:38 -080053 struct fib_table *local_table, *main_table;
54
Alexander Duyck0ddcf432015-03-06 13:47:00 -080055 main_table = fib_trie_table(RT_TABLE_MAIN, NULL);
Ian Morris51456b22015-04-03 09:17:26 +010056 if (!main_table)
Alexander Duyck61f0d862015-03-11 14:02:16 -070057 return -ENOMEM;
Denis V. Lunevdbb50162008-01-10 03:21:49 -080058
Alexander Duyck0ddcf432015-03-06 13:47:00 -080059 local_table = fib_trie_table(RT_TABLE_LOCAL, main_table);
Ian Morris51456b22015-04-03 09:17:26 +010060 if (!local_table)
Alexander Duyck61f0d862015-03-11 14:02:16 -070061 goto fail;
Alexander Duyck0ddcf432015-03-06 13:47:00 -080062
Denis V. Lunev93456b62008-01-10 03:23:38 -080063 hlist_add_head_rcu(&local_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080064 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX]);
Denis V. Lunev93456b62008-01-10 03:23:38 -080065 hlist_add_head_rcu(&main_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080066 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX]);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080067 return 0;
68
69fail:
Alexander Duyck61f0d862015-03-11 14:02:16 -070070 fib_free_table(main_table);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080071 return -ENOMEM;
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080072}
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#else
74
Denis V. Lunev8ad49422008-01-10 03:24:11 -080075struct fib_table *fib_new_table(struct net *net, u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Alexander Duyck0ddcf432015-03-06 13:47:00 -080077 struct fib_table *tb, *alias = NULL;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070078 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070080 if (id == 0)
81 id = RT_TABLE_MAIN;
Denis V. Lunev8ad49422008-01-10 03:24:11 -080082 tb = fib_get_table(net, id);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070083 if (tb)
84 return tb;
Stephen Hemminger7f9b8052008-01-14 23:14:20 -080085
Alexander Duyck0ddcf432015-03-06 13:47:00 -080086 if (id == RT_TABLE_LOCAL)
87 alias = fib_new_table(net, RT_TABLE_MAIN);
88
89 tb = fib_trie_table(id, alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (!tb)
91 return NULL;
David S. Millerf4530fa2012-07-05 22:13:13 -070092
93 switch (id) {
94 case RT_TABLE_LOCAL:
Alexander Duycka7e53532015-03-04 15:02:44 -080095 rcu_assign_pointer(net->ipv4.fib_local, tb);
David S. Millerf4530fa2012-07-05 22:13:13 -070096 break;
David S. Millerf4530fa2012-07-05 22:13:13 -070097 case RT_TABLE_MAIN:
Alexander Duycka7e53532015-03-04 15:02:44 -080098 rcu_assign_pointer(net->ipv4.fib_main, tb);
David S. Millerf4530fa2012-07-05 22:13:13 -070099 break;
David S. Millerf4530fa2012-07-05 22:13:13 -0700100 case RT_TABLE_DEFAULT:
Alexander Duycka7e53532015-03-04 15:02:44 -0800101 rcu_assign_pointer(net->ipv4.fib_default, tb);
David S. Millerf4530fa2012-07-05 22:13:13 -0700102 break;
David S. Millerf4530fa2012-07-05 22:13:13 -0700103 default:
104 break;
105 }
106
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700107 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800108 hlist_add_head_rcu(&tb->tb_hlist, &net->ipv4.fib_table_hash[h]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return tb;
110}
111
Alexander Duyck345e9b52014-12-31 10:56:24 -0800112/* caller must hold either rtnl or rcu read lock */
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800113struct fib_table *fib_get_table(struct net *net, u32 id)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700114{
115 struct fib_table *tb;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800116 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700117 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700119 if (id == 0)
120 id = RT_TABLE_MAIN;
121 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800122
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800123 head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800124 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyck345e9b52014-12-31 10:56:24 -0800125 if (tb->tb_id == id)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700126 return tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700127 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700128 return NULL;
129}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif /* CONFIG_IP_MULTIPLE_TABLES */
131
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800132static void fib_replace_table(struct net *net, struct fib_table *old,
133 struct fib_table *new)
134{
135#ifdef CONFIG_IP_MULTIPLE_TABLES
136 switch (new->tb_id) {
137 case RT_TABLE_LOCAL:
138 rcu_assign_pointer(net->ipv4.fib_local, new);
139 break;
140 case RT_TABLE_MAIN:
141 rcu_assign_pointer(net->ipv4.fib_main, new);
142 break;
143 case RT_TABLE_DEFAULT:
144 rcu_assign_pointer(net->ipv4.fib_default, new);
145 break;
146 default:
147 break;
148 }
149
150#endif
151 /* replace the old table in the hlist */
152 hlist_replace_rcu(&old->tb_hlist, &new->tb_hlist);
153}
154
155int fib_unmerge(struct net *net)
156{
157 struct fib_table *old, *new;
158
Alexander Duyck3c9e9f72015-03-12 14:46:23 -0700159 /* attempt to fetch local table if it has been allocated */
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800160 old = fib_get_table(net, RT_TABLE_LOCAL);
Alexander Duyck3c9e9f72015-03-12 14:46:23 -0700161 if (!old)
162 return 0;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800163
Alexander Duyck3c9e9f72015-03-12 14:46:23 -0700164 new = fib_trie_unmerge(old);
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800165 if (!new)
166 return -ENOMEM;
167
168 /* replace merged table with clean table */
169 if (new != old) {
170 fib_replace_table(net, old, new);
171 fib_free_table(old);
172 }
173
174 return 0;
175}
176
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800177static void fib_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 int flushed = 0;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700180 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700182 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
Alexander Duycka7e53532015-03-04 15:02:44 -0800183 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
184 struct hlist_node *tmp;
185 struct fib_table *tb;
186
187 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000188 flushed += fib_table_flush(tb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (flushed)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +0000192 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Scott Feldman104616e2015-03-05 21:21:16 -0800195void fib_flush_external(struct net *net)
196{
197 struct fib_table *tb;
198 struct hlist_head *head;
199 unsigned int h;
200
201 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
202 head = &net->ipv4.fib_table_hash[h];
203 hlist_for_each_entry(tb, head, tb_hlist)
204 fib_table_flush_external(tb);
205 }
206}
207
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800208/*
209 * Find address type as if only "dev" was present in the system. If
210 * on_dev is NULL then all interfaces are taken into consideration.
211 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000212static inline unsigned int __inet_dev_addr_type(struct net *net,
213 const struct net_device *dev,
214 __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
David S. Miller9ade2282011-03-12 02:02:42 -0500216 struct flowi4 fl4 = { .daddr = addr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 struct fib_result res;
Eric Dumazet95c96172012-04-15 05:58:06 +0000218 unsigned int ret = RTN_BROADCAST;
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700219 struct fib_table *local_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jan Engelhardt1e637c72008-01-21 03:18:08 -0800221 if (ipv4_is_zeronet(addr) || ipv4_is_lbcast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return RTN_BROADCAST;
Joe Perchesf97c1e02007-12-16 13:45:43 -0800223 if (ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return RTN_MULTICAST;
225
Alexander Duyck345e9b52014-12-31 10:56:24 -0800226 rcu_read_lock();
227
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800228 local_table = fib_get_table(net, RT_TABLE_LOCAL);
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700229 if (local_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ret = RTN_UNICAST;
David S. Miller9ade2282011-03-12 02:02:42 -0500231 if (!fib_table_lookup(local_table, &fl4, &res, FIB_LOOKUP_NOREF)) {
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800232 if (!dev || dev == res.fi->fib_dev)
233 ret = res.type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235 }
Alexander Duyck345e9b52014-12-31 10:56:24 -0800236
237 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return ret;
239}
240
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800241unsigned int inet_addr_type(struct net *net, __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800242{
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800243 return __inet_dev_addr_type(net, NULL, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800244}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000245EXPORT_SYMBOL(inet_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800246
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800247unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
248 __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800249{
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000250 return __inet_dev_addr_type(net, dev, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800251}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000252EXPORT_SYMBOL(inet_dev_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800253
David S. Miller35ebf652012-06-28 03:59:11 -0700254__be32 fib_compute_spec_dst(struct sk_buff *skb)
255{
256 struct net_device *dev = skb->dev;
257 struct in_device *in_dev;
258 struct fib_result res;
David S. Millera207a4b2012-06-28 18:33:24 -0700259 struct rtable *rt;
David S. Miller35ebf652012-06-28 03:59:11 -0700260 struct flowi4 fl4;
261 struct net *net;
David S. Millera207a4b2012-06-28 18:33:24 -0700262 int scope;
David S. Miller35ebf652012-06-28 03:59:11 -0700263
David S. Millera207a4b2012-06-28 18:33:24 -0700264 rt = skb_rtable(skb);
Julian Anastasov0cc535a2012-07-18 21:35:03 +0000265 if ((rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | RTCF_LOCAL)) ==
266 RTCF_LOCAL)
David S. Miller35ebf652012-06-28 03:59:11 -0700267 return ip_hdr(skb)->daddr;
268
269 in_dev = __in_dev_get_rcu(dev);
270 BUG_ON(!in_dev);
David S. Miller35ebf652012-06-28 03:59:11 -0700271
272 net = dev_net(dev);
David S. Millera207a4b2012-06-28 18:33:24 -0700273
274 scope = RT_SCOPE_UNIVERSE;
275 if (!ipv4_is_zeronet(ip_hdr(skb)->saddr)) {
276 fl4.flowi4_oif = 0;
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000277 fl4.flowi4_iif = LOOPBACK_IFINDEX;
David S. Millera207a4b2012-06-28 18:33:24 -0700278 fl4.daddr = ip_hdr(skb)->saddr;
279 fl4.saddr = 0;
280 fl4.flowi4_tos = RT_TOS(ip_hdr(skb)->tos);
281 fl4.flowi4_scope = scope;
282 fl4.flowi4_mark = IN_DEV_SRC_VMARK(in_dev) ? skb->mark : 0;
Thomas Graf1b7179d2015-07-21 10:43:59 +0200283 fl4.flowi4_tun_key.tun_id = 0;
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400284 if (!fib_lookup(net, &fl4, &res, 0))
David S. Millera207a4b2012-06-28 18:33:24 -0700285 return FIB_RES_PREFSRC(net, res);
286 } else {
287 scope = RT_SCOPE_LINK;
288 }
289
290 return inet_select_addr(dev, ip_hdr(skb)->saddr, scope);
David S. Miller35ebf652012-06-28 03:59:11 -0700291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/* Given (packet source, input interface) and optional (dst, oif, tos):
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000294 * - (main) check, that source is valid i.e. not broadcast or our local
295 * address.
296 * - figure out what "logical" interface this packet arrived
297 * and calculate "specific destination" address.
298 * - check, that packet arrived from expected physical interface.
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000299 * called with rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700301static int __fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
302 u8 tos, int oif, struct net_device *dev,
303 int rpf, struct in_device *idev, u32 *itag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200305 int ret, no_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 struct fib_result res;
David S. Miller9e56e382012-06-28 18:54:02 -0700307 struct flowi4 fl4;
Denis V. Lunev5b707aa2008-01-21 17:33:15 -0800308 struct net *net;
David S. Miller9e56e382012-06-28 18:54:02 -0700309 bool dev_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
David S. Miller9ade2282011-03-12 02:02:42 -0500311 fl4.flowi4_oif = 0;
Cong Wang6a662712014-04-15 16:25:34 -0700312 fl4.flowi4_iif = oif ? : LOOPBACK_IFINDEX;
David S. Miller9ade2282011-03-12 02:02:42 -0500313 fl4.daddr = src;
314 fl4.saddr = dst;
315 fl4.flowi4_tos = tos;
316 fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
Thomas Graf1b7179d2015-07-21 10:43:59 +0200317 fl4.flowi4_tun_key.tun_id = 0;
David S. Millercc7e17e2011-03-09 20:57:50 -0800318
David S. Miller9e56e382012-06-28 18:54:02 -0700319 no_addr = idev->ifa_list == NULL;
Michael Smith990078a2011-04-07 04:51:51 +0000320
David S. Miller9e56e382012-06-28 18:54:02 -0700321 fl4.flowi4_mark = IN_DEV_SRC_VMARK(idev) ? skb->mark : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900323 net = dev_net(dev);
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400324 if (fib_lookup(net, &fl4, &res, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 goto last_resort;
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200326 if (res.type != RTN_UNICAST &&
327 (res.type != RTN_LOCAL || !IN_DEV_ACCEPT_LOCAL(idev)))
328 goto e_inval;
329 if (!rpf && !fib_num_tclassid_users(dev_net(dev)) &&
330 (dev->ifindex != oif || !IN_DEV_TX_REDIRECTS(idev)))
331 goto last_resort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 fib_combine_itag(itag, &res);
David S. Miller6f86b322010-09-06 22:36:19 -0700333 dev_match = false;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller6f86b322010-09-06 22:36:19 -0700336 for (ret = 0; ret < res.fi->fib_nhs; ret++) {
337 struct fib_nh *nh = &res.fi->fib_nh[ret];
338
339 if (nh->nh_dev == dev) {
340 dev_match = true;
341 break;
342 }
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#else
345 if (FIB_RES_DEV(res) == dev)
David S. Miller6f86b322010-09-06 22:36:19 -0700346 dev_match = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347#endif
David S. Miller6f86b322010-09-06 22:36:19 -0700348 if (dev_match) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return ret;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (no_addr)
353 goto last_resort;
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000354 if (rpf == 1)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000355 goto e_rpf;
David S. Miller9ade2282011-03-12 02:02:42 -0500356 fl4.flowi4_oif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 ret = 0;
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400359 if (fib_lookup(net, &fl4, &res, FIB_LOOKUP_IGNORE_LINKSTATE) == 0) {
David S. Miller41347dc2012-06-28 04:05:27 -0700360 if (res.type == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363 return ret;
364
365last_resort:
366 if (rpf)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000367 goto e_rpf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 *itag = 0;
369 return 0;
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371e_inval:
372 return -EINVAL;
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000373e_rpf:
374 return -EXDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700377/* Ignore rp_filter for packets protected by IPsec. */
378int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
379 u8 tos, int oif, struct net_device *dev,
380 struct in_device *idev, u32 *itag)
381{
382 int r = secpath_exists(skb) ? 0 : IN_DEV_RPFILTER(idev);
383
Julian Anastasove81da0e2012-10-08 11:41:15 +0000384 if (!r && !fib_num_tclassid_users(dev_net(dev)) &&
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200385 IN_DEV_ACCEPT_LOCAL(idev) &&
Julian Anastasove81da0e2012-10-08 11:41:15 +0000386 (dev->ifindex != oif || !IN_DEV_TX_REDIRECTS(idev))) {
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700387 *itag = 0;
388 return 0;
389 }
390 return __fib_validate_source(skb, src, dst, tos, oif, dev, r, idev, itag);
391}
392
Al Viro81f7bf62006-09-27 18:40:00 -0700393static inline __be32 sk_extract_addr(struct sockaddr *addr)
Thomas Graf4e902c52006-08-17 18:14:52 -0700394{
395 return ((struct sockaddr_in *) addr)->sin_addr.s_addr;
396}
397
398static int put_rtax(struct nlattr *mx, int len, int type, u32 value)
399{
400 struct nlattr *nla;
401
402 nla = (struct nlattr *) ((char *) mx + len);
403 nla->nla_type = type;
404 nla->nla_len = nla_attr_size(4);
405 *(u32 *) nla_data(nla) = value;
406
407 return len + nla_total_size(4);
408}
409
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800410static int rtentry_to_fib_config(struct net *net, int cmd, struct rtentry *rt,
Thomas Graf4e902c52006-08-17 18:14:52 -0700411 struct fib_config *cfg)
412{
Al Viro6d85c102006-09-26 22:15:46 -0700413 __be32 addr;
Thomas Graf4e902c52006-08-17 18:14:52 -0700414 int plen;
415
416 memset(cfg, 0, sizeof(*cfg));
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800417 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700418
419 if (rt->rt_dst.sa_family != AF_INET)
420 return -EAFNOSUPPORT;
421
422 /*
423 * Check mask for validity:
424 * a) it must be contiguous.
425 * b) destination must have all host bits clear.
426 * c) if application forgot to set correct family (AF_INET),
427 * reject request unless it is absolutely clear i.e.
428 * both family and mask are zero.
429 */
430 plen = 32;
431 addr = sk_extract_addr(&rt->rt_dst);
432 if (!(rt->rt_flags & RTF_HOST)) {
Al Viro81f7bf62006-09-27 18:40:00 -0700433 __be32 mask = sk_extract_addr(&rt->rt_genmask);
Thomas Graf4e902c52006-08-17 18:14:52 -0700434
435 if (rt->rt_genmask.sa_family != AF_INET) {
436 if (mask || rt->rt_genmask.sa_family)
437 return -EAFNOSUPPORT;
438 }
439
440 if (bad_mask(mask, addr))
441 return -EINVAL;
442
443 plen = inet_mask_len(mask);
444 }
445
446 cfg->fc_dst_len = plen;
447 cfg->fc_dst = addr;
448
449 if (cmd != SIOCDELRT) {
450 cfg->fc_nlflags = NLM_F_CREATE;
451 cfg->fc_protocol = RTPROT_BOOT;
452 }
453
454 if (rt->rt_metric)
455 cfg->fc_priority = rt->rt_metric - 1;
456
457 if (rt->rt_flags & RTF_REJECT) {
458 cfg->fc_scope = RT_SCOPE_HOST;
459 cfg->fc_type = RTN_UNREACHABLE;
460 return 0;
461 }
462
463 cfg->fc_scope = RT_SCOPE_NOWHERE;
464 cfg->fc_type = RTN_UNICAST;
465
466 if (rt->rt_dev) {
467 char *colon;
468 struct net_device *dev;
469 char devname[IFNAMSIZ];
470
471 if (copy_from_user(devname, rt->rt_dev, IFNAMSIZ-1))
472 return -EFAULT;
473
474 devname[IFNAMSIZ-1] = 0;
475 colon = strchr(devname, ':');
476 if (colon)
477 *colon = 0;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800478 dev = __dev_get_by_name(net, devname);
Thomas Graf4e902c52006-08-17 18:14:52 -0700479 if (!dev)
480 return -ENODEV;
481 cfg->fc_oif = dev->ifindex;
482 if (colon) {
483 struct in_ifaddr *ifa;
484 struct in_device *in_dev = __in_dev_get_rtnl(dev);
485 if (!in_dev)
486 return -ENODEV;
487 *colon = ':';
488 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next)
489 if (strcmp(ifa->ifa_label, devname) == 0)
490 break;
Ian Morris51456b22015-04-03 09:17:26 +0100491 if (!ifa)
Thomas Graf4e902c52006-08-17 18:14:52 -0700492 return -ENODEV;
493 cfg->fc_prefsrc = ifa->ifa_local;
494 }
495 }
496
497 addr = sk_extract_addr(&rt->rt_gateway);
498 if (rt->rt_gateway.sa_family == AF_INET && addr) {
499 cfg->fc_gw = addr;
500 if (rt->rt_flags & RTF_GATEWAY &&
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800501 inet_addr_type(net, addr) == RTN_UNICAST)
Thomas Graf4e902c52006-08-17 18:14:52 -0700502 cfg->fc_scope = RT_SCOPE_UNIVERSE;
503 }
504
505 if (cmd == SIOCDELRT)
506 return 0;
507
508 if (rt->rt_flags & RTF_GATEWAY && !cfg->fc_gw)
509 return -EINVAL;
510
511 if (cfg->fc_scope == RT_SCOPE_NOWHERE)
512 cfg->fc_scope = RT_SCOPE_LINK;
513
514 if (rt->rt_flags & (RTF_MTU | RTF_WINDOW | RTF_IRTT)) {
515 struct nlattr *mx;
516 int len = 0;
517
518 mx = kzalloc(3 * nla_total_size(4), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100519 if (!mx)
Thomas Graf4e902c52006-08-17 18:14:52 -0700520 return -ENOMEM;
521
522 if (rt->rt_flags & RTF_MTU)
523 len = put_rtax(mx, len, RTAX_ADVMSS, rt->rt_mtu - 40);
524
525 if (rt->rt_flags & RTF_WINDOW)
526 len = put_rtax(mx, len, RTAX_WINDOW, rt->rt_window);
527
528 if (rt->rt_flags & RTF_IRTT)
529 len = put_rtax(mx, len, RTAX_RTT, rt->rt_irtt << 3);
530
531 cfg->fc_mx = mx;
532 cfg->fc_mx_len = len;
533 }
534
535 return 0;
536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000539 * Handle IP routing ioctl calls.
540 * These are used to manipulate the routing tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800542int ip_rt_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Thomas Graf4e902c52006-08-17 18:14:52 -0700544 struct fib_config cfg;
545 struct rtentry rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 switch (cmd) {
549 case SIOCADDRT: /* Add a route */
550 case SIOCDELRT: /* Delete a route */
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000551 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return -EPERM;
Thomas Graf4e902c52006-08-17 18:14:52 -0700553
554 if (copy_from_user(&rt, arg, sizeof(rt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return -EFAULT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 rtnl_lock();
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800558 err = rtentry_to_fib_config(net, cmd, &rt, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (err == 0) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700560 struct fib_table *tb;
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (cmd == SIOCDELRT) {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800563 tb = fib_get_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (tb)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000565 err = fib_table_delete(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700566 else
567 err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 } else {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800569 tb = fib_new_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (tb)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000571 err = fib_table_insert(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700572 else
573 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700575
576 /* allocated by rtentry_to_fib_config() */
577 kfree(cfg.fc_mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579 rtnl_unlock();
580 return err;
581 }
582 return -EINVAL;
583}
584
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000585const struct nla_policy rtm_ipv4_policy[RTA_MAX + 1] = {
Thomas Graf4e902c52006-08-17 18:14:52 -0700586 [RTA_DST] = { .type = NLA_U32 },
587 [RTA_SRC] = { .type = NLA_U32 },
588 [RTA_IIF] = { .type = NLA_U32 },
589 [RTA_OIF] = { .type = NLA_U32 },
590 [RTA_GATEWAY] = { .type = NLA_U32 },
591 [RTA_PRIORITY] = { .type = NLA_U32 },
592 [RTA_PREFSRC] = { .type = NLA_U32 },
593 [RTA_METRICS] = { .type = NLA_NESTED },
Thomas Graf5176f912006-08-26 20:13:18 -0700594 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf4e902c52006-08-17 18:14:52 -0700595 [RTA_FLOW] = { .type = NLA_U32 },
Roopa Prabhu571e7222015-07-21 10:43:47 +0200596 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
597 [RTA_ENCAP] = { .type = NLA_NESTED },
Thomas Graf4e902c52006-08-17 18:14:52 -0700598};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800600static int rtm_to_fib_config(struct net *net, struct sk_buff *skb,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000601 struct nlmsghdr *nlh, struct fib_config *cfg)
Thomas Graf4e902c52006-08-17 18:14:52 -0700602{
603 struct nlattr *attr;
604 int err, remaining;
605 struct rtmsg *rtm;
606
607 err = nlmsg_validate(nlh, sizeof(*rtm), RTA_MAX, rtm_ipv4_policy);
608 if (err < 0)
609 goto errout;
610
611 memset(cfg, 0, sizeof(*cfg));
612
613 rtm = nlmsg_data(nlh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700614 cfg->fc_dst_len = rtm->rtm_dst_len;
Thomas Graf4e902c52006-08-17 18:14:52 -0700615 cfg->fc_tos = rtm->rtm_tos;
616 cfg->fc_table = rtm->rtm_table;
617 cfg->fc_protocol = rtm->rtm_protocol;
618 cfg->fc_scope = rtm->rtm_scope;
619 cfg->fc_type = rtm->rtm_type;
620 cfg->fc_flags = rtm->rtm_flags;
621 cfg->fc_nlflags = nlh->nlmsg_flags;
622
Eric W. Biederman15e47302012-09-07 20:12:54 +0000623 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf4e902c52006-08-17 18:14:52 -0700624 cfg->fc_nlinfo.nlh = nlh;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800625 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700626
Thomas Grafa0ee18b2007-03-24 20:32:54 -0700627 if (cfg->fc_type > RTN_MAX) {
628 err = -EINVAL;
629 goto errout;
630 }
631
Thomas Graf4e902c52006-08-17 18:14:52 -0700632 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200633 switch (nla_type(attr)) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700634 case RTA_DST:
Al Viro17fb2c62006-09-26 22:15:25 -0700635 cfg->fc_dst = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700636 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700637 case RTA_OIF:
638 cfg->fc_oif = nla_get_u32(attr);
639 break;
640 case RTA_GATEWAY:
Al Viro17fb2c62006-09-26 22:15:25 -0700641 cfg->fc_gw = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700642 break;
643 case RTA_PRIORITY:
644 cfg->fc_priority = nla_get_u32(attr);
645 break;
646 case RTA_PREFSRC:
Al Viro17fb2c62006-09-26 22:15:25 -0700647 cfg->fc_prefsrc = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700648 break;
649 case RTA_METRICS:
650 cfg->fc_mx = nla_data(attr);
651 cfg->fc_mx_len = nla_len(attr);
652 break;
653 case RTA_MULTIPATH:
654 cfg->fc_mp = nla_data(attr);
655 cfg->fc_mp_len = nla_len(attr);
656 break;
657 case RTA_FLOW:
658 cfg->fc_flow = nla_get_u32(attr);
659 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700660 case RTA_TABLE:
661 cfg->fc_table = nla_get_u32(attr);
662 break;
Roopa Prabhu571e7222015-07-21 10:43:47 +0200663 case RTA_ENCAP:
664 cfg->fc_encap = attr;
665 break;
666 case RTA_ENCAP_TYPE:
667 cfg->fc_encap_type = nla_get_u16(attr);
668 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700673errout:
674 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Thomas Graf661d2962013-03-21 07:45:29 +0000677static int inet_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900679 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700680 struct fib_config cfg;
681 struct fib_table *tb;
682 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800684 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700685 if (err < 0)
686 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800688 tb = fib_get_table(net, cfg.fc_table);
Ian Morris51456b22015-04-03 09:17:26 +0100689 if (!tb) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700690 err = -ESRCH;
691 goto errout;
692 }
693
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000694 err = fib_table_delete(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700695errout:
696 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Thomas Graf661d2962013-03-21 07:45:29 +0000699static int inet_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900701 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700702 struct fib_config cfg;
703 struct fib_table *tb;
704 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800706 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700707 if (err < 0)
708 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Denis V. Lunev226b0b4a52008-01-10 03:30:24 -0800710 tb = fib_new_table(net, cfg.fc_table);
Ian Morris51456b22015-04-03 09:17:26 +0100711 if (!tb) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700712 err = -ENOBUFS;
713 goto errout;
714 }
715
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000716 err = fib_table_insert(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700717errout:
718 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Thomas Graf63f34442007-03-22 11:55:17 -0700721static int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900723 struct net *net = sock_net(skb->sk);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700724 unsigned int h, s_h;
725 unsigned int e = 0, s_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct fib_table *tb;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800727 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700728 int dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Thomas Grafbe403ea2006-08-17 18:15:17 -0700730 if (nlmsg_len(cb->nlh) >= sizeof(struct rtmsg) &&
731 ((struct rtmsg *) nlmsg_data(cb->nlh))->rtm_flags & RTM_F_CLONED)
Li RongQing0b8c7f62014-03-21 11:33:10 +0800732 return skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700734 s_h = cb->args[0];
735 s_e = cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Alexander Duycka7e53532015-03-04 15:02:44 -0800737 rcu_read_lock();
738
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700739 for (h = s_h; h < FIB_TABLE_HASHSZ; h++, s_e = 0) {
740 e = 0;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800741 head = &net->ipv4.fib_table_hash[h];
Alexander Duycka7e53532015-03-04 15:02:44 -0800742 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700743 if (e < s_e)
744 goto next;
745 if (dumped)
746 memset(&cb->args[2], 0, sizeof(cb->args) -
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900747 2 * sizeof(cb->args[0]));
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000748 if (fib_table_dump(tb, skb, cb) < 0)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700749 goto out;
750 dumped = 1;
751next:
752 e++;
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700755out:
Alexander Duycka7e53532015-03-04 15:02:44 -0800756 rcu_read_unlock();
757
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700758 cb->args[1] = e;
759 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 return skb->len;
762}
763
764/* Prepare and feed intra-kernel routing request.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000765 * Really, it should be netlink message, but :-( netlink
766 * can be not configured, so that we feed it directly
767 * to fib engine. It is legal, because all events occur
768 * only when netlink is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Al Viro81f7bf62006-09-27 18:40:00 -0700770static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900772 struct net *net = dev_net(ifa->ifa_dev->dev);
Thomas Graf4e902c52006-08-17 18:14:52 -0700773 struct fib_table *tb;
774 struct fib_config cfg = {
775 .fc_protocol = RTPROT_KERNEL,
776 .fc_type = type,
777 .fc_dst = dst,
778 .fc_dst_len = dst_len,
779 .fc_prefsrc = ifa->ifa_local,
780 .fc_oif = ifa->ifa_dev->dev->ifindex,
781 .fc_nlflags = NLM_F_CREATE | NLM_F_APPEND,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800782 .fc_nlinfo = {
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800783 .nl_net = net,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800784 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700785 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (type == RTN_UNICAST)
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800788 tb = fib_new_table(net, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 else
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800790 tb = fib_new_table(net, RT_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Ian Morris51456b22015-04-03 09:17:26 +0100792 if (!tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return;
794
Thomas Graf4e902c52006-08-17 18:14:52 -0700795 cfg.fc_table = tb->tb_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Thomas Graf4e902c52006-08-17 18:14:52 -0700797 if (type != RTN_LOCAL)
798 cfg.fc_scope = RT_SCOPE_LINK;
799 else
800 cfg.fc_scope = RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 if (cmd == RTM_NEWROUTE)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000803 fib_table_insert(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 else
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000805 fib_table_delete(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Jamal Hadi Salim0ff60a42005-11-22 14:47:37 -0800808void fib_add_ifaddr(struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct in_device *in_dev = ifa->ifa_dev;
811 struct net_device *dev = in_dev->dev;
812 struct in_ifaddr *prim = ifa;
Al Viroa144ea42006-09-28 18:00:55 -0700813 __be32 mask = ifa->ifa_mask;
814 __be32 addr = ifa->ifa_local;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000815 __be32 prefix = ifa->ifa_address & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000817 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 prim = inet_ifa_byprefix(in_dev, prefix, mask);
Ian Morris51456b22015-04-03 09:17:26 +0100819 if (!prim) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000820 pr_warn("%s: bug: prim == NULL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return;
822 }
823 }
824
825 fib_magic(RTM_NEWROUTE, RTN_LOCAL, addr, 32, prim);
826
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000827 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return;
829
830 /* Add broadcast address, if it is explicitly assigned. */
Al Viroa144ea42006-09-28 18:00:55 -0700831 if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
833
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000834 if (!ipv4_is_zeronet(prefix) && !(ifa->ifa_flags & IFA_F_SECONDARY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 (prefix != addr || ifa->ifa_prefixlen < 32)) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000836 fib_magic(RTM_NEWROUTE,
837 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
838 prefix, ifa->ifa_prefixlen, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /* Add network specific broadcasts, when it takes a sense */
841 if (ifa->ifa_prefixlen < 31) {
842 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix, 32, prim);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000843 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix | ~mask,
844 32, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 }
847}
848
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000849/* Delete primary or secondary address.
850 * Optionally, on secondary address promotion consider the addresses
851 * from subnet iprim as deleted, even if they are in device list.
852 * In this case the secondary ifa can be in device list.
853 */
854void fib_del_ifaddr(struct in_ifaddr *ifa, struct in_ifaddr *iprim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct in_device *in_dev = ifa->ifa_dev;
857 struct net_device *dev = in_dev->dev;
858 struct in_ifaddr *ifa1;
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000859 struct in_ifaddr *prim = ifa, *prim1 = NULL;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000860 __be32 brd = ifa->ifa_address | ~ifa->ifa_mask;
861 __be32 any = ifa->ifa_address & ifa->ifa_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#define LOCAL_OK 1
863#define BRD_OK 2
864#define BRD0_OK 4
865#define BRD1_OK 8
Eric Dumazet95c96172012-04-15 05:58:06 +0000866 unsigned int ok = 0;
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000867 int subnet = 0; /* Primary network */
868 int gone = 1; /* Address is missing */
869 int same_prefsrc = 0; /* Another primary with same IP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000871 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 prim = inet_ifa_byprefix(in_dev, any, ifa->ifa_mask);
Ian Morris51456b22015-04-03 09:17:26 +0100873 if (!prim) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000874 pr_warn("%s: bug: prim == NULL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return;
876 }
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000877 if (iprim && iprim != prim) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000878 pr_warn("%s: bug: iprim != prim\n", __func__);
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000879 return;
880 }
881 } else if (!ipv4_is_zeronet(any) &&
882 (any != ifa->ifa_local || ifa->ifa_prefixlen < 32)) {
883 fib_magic(RTM_DELROUTE,
884 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
885 any, ifa->ifa_prefixlen, prim);
886 subnet = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888
889 /* Deletion is more complicated than add.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000890 * We should take care of not to delete too much :-)
891 *
892 * Scan address list to be sure that addresses are really gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
894
895 for (ifa1 = in_dev->ifa_list; ifa1; ifa1 = ifa1->ifa_next) {
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000896 if (ifa1 == ifa) {
897 /* promotion, keep the IP */
898 gone = 0;
899 continue;
900 }
901 /* Ignore IFAs from our subnet */
902 if (iprim && ifa1->ifa_mask == iprim->ifa_mask &&
903 inet_ifa_match(ifa1->ifa_address, iprim))
904 continue;
905
906 /* Ignore ifa1 if it uses different primary IP (prefsrc) */
907 if (ifa1->ifa_flags & IFA_F_SECONDARY) {
908 /* Another address from our subnet? */
909 if (ifa1->ifa_mask == prim->ifa_mask &&
910 inet_ifa_match(ifa1->ifa_address, prim))
911 prim1 = prim;
912 else {
913 /* We reached the secondaries, so
914 * same_prefsrc should be determined.
915 */
916 if (!same_prefsrc)
917 continue;
918 /* Search new prim1 if ifa1 is not
919 * using the current prim1
920 */
921 if (!prim1 ||
922 ifa1->ifa_mask != prim1->ifa_mask ||
923 !inet_ifa_match(ifa1->ifa_address, prim1))
924 prim1 = inet_ifa_byprefix(in_dev,
925 ifa1->ifa_address,
926 ifa1->ifa_mask);
927 if (!prim1)
928 continue;
929 if (prim1->ifa_local != prim->ifa_local)
930 continue;
931 }
932 } else {
933 if (prim->ifa_local != ifa1->ifa_local)
934 continue;
935 prim1 = ifa1;
936 if (prim != prim1)
937 same_prefsrc = 1;
938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (ifa->ifa_local == ifa1->ifa_local)
940 ok |= LOCAL_OK;
941 if (ifa->ifa_broadcast == ifa1->ifa_broadcast)
942 ok |= BRD_OK;
943 if (brd == ifa1->ifa_broadcast)
944 ok |= BRD1_OK;
945 if (any == ifa1->ifa_broadcast)
946 ok |= BRD0_OK;
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000947 /* primary has network specific broadcasts */
948 if (prim1 == ifa1 && ifa1->ifa_prefixlen < 31) {
949 __be32 brd1 = ifa1->ifa_address | ~ifa1->ifa_mask;
950 __be32 any1 = ifa1->ifa_address & ifa1->ifa_mask;
951
952 if (!ipv4_is_zeronet(any1)) {
953 if (ifa->ifa_broadcast == brd1 ||
954 ifa->ifa_broadcast == any1)
955 ok |= BRD_OK;
956 if (brd == brd1 || brd == any1)
957 ok |= BRD1_OK;
958 if (any == brd1 || any == any1)
959 ok |= BRD0_OK;
960 }
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000964 if (!(ok & BRD_OK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 fib_magic(RTM_DELROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000966 if (subnet && ifa->ifa_prefixlen < 31) {
967 if (!(ok & BRD1_OK))
968 fib_magic(RTM_DELROUTE, RTN_BROADCAST, brd, 32, prim);
969 if (!(ok & BRD0_OK))
970 fib_magic(RTM_DELROUTE, RTN_BROADCAST, any, 32, prim);
971 }
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000972 if (!(ok & LOCAL_OK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 fib_magic(RTM_DELROUTE, RTN_LOCAL, ifa->ifa_local, 32, prim);
974
975 /* Check, that this local address finally disappeared. */
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000976 if (gone &&
977 inet_addr_type(dev_net(dev), ifa->ifa_local) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /* And the last, but not the least thing.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000979 * We must flush stray FIB entries.
980 *
981 * First of all, we scan fib_info list searching
982 * for stray nexthop entries, then ignite fib_flush.
983 */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900984 if (fib_sync_down_addr(dev_net(dev), ifa->ifa_local))
985 fib_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
988#undef LOCAL_OK
989#undef BRD_OK
990#undef BRD0_OK
991#undef BRD1_OK
992}
993
Alexander Duyck345e9b52014-12-31 10:56:24 -0800994static void nl_fib_lookup(struct net *net, struct fib_result_nl *frn)
Robert Olsson246955f2005-06-20 13:36:39 -0700995{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900996
Robert Olsson246955f2005-06-20 13:36:39 -0700997 struct fib_result res;
David S. Miller9ade2282011-03-12 02:02:42 -0500998 struct flowi4 fl4 = {
999 .flowi4_mark = frn->fl_mark,
1000 .daddr = frn->fl_addr,
1001 .flowi4_tos = frn->fl_tos,
1002 .flowi4_scope = frn->fl_scope,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001003 };
Alexander Duyck345e9b52014-12-31 10:56:24 -08001004 struct fib_table *tb;
1005
1006 rcu_read_lock();
1007
1008 tb = fib_get_table(net, frn->tb_id_in);
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -07001009
1010 frn->err = -ENOENT;
Robert Olsson246955f2005-06-20 13:36:39 -07001011 if (tb) {
1012 local_bh_disable();
1013
1014 frn->tb_id = tb->tb_id;
David S. Miller9ade2282011-03-12 02:02:42 -05001015 frn->err = fib_table_lookup(tb, &fl4, &res, FIB_LOOKUP_NOREF);
Robert Olsson246955f2005-06-20 13:36:39 -07001016
1017 if (!frn->err) {
1018 frn->prefixlen = res.prefixlen;
1019 frn->nh_sel = res.nh_sel;
1020 frn->type = res.type;
1021 frn->scope = res.scope;
1022 }
1023 local_bh_enable();
1024 }
Alexander Duyck345e9b52014-12-31 10:56:24 -08001025
1026 rcu_read_unlock();
Robert Olsson246955f2005-06-20 13:36:39 -07001027}
1028
David S. Miller28f7b0362007-10-10 21:32:39 -07001029static void nl_fib_input(struct sk_buff *skb)
Robert Olsson246955f2005-06-20 13:36:39 -07001030{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001031 struct net *net;
Robert Olsson246955f2005-06-20 13:36:39 -07001032 struct fib_result_nl *frn;
David S. Miller28f7b0362007-10-10 21:32:39 -07001033 struct nlmsghdr *nlh;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001034 u32 portid;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -07001035
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001036 net = sock_net(skb->sk);
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001037 nlh = nlmsg_hdr(skb);
Hong zhi guo573ce262013-03-27 06:47:04 +00001038 if (skb->len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len ||
1039 nlmsg_len(nlh) < sizeof(*frn))
Thomas Grafea865752005-12-01 14:30:00 -08001040 return;
Denis V. Lunevd883a032007-12-21 02:01:53 -08001041
Pablo Neira3a365152013-06-28 03:04:23 +02001042 skb = netlink_skb_clone(skb, GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01001043 if (!skb)
Denis V. Lunevd883a032007-12-21 02:01:53 -08001044 return;
1045 nlh = nlmsg_hdr(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001046
Hong zhi guo573ce262013-03-27 06:47:04 +00001047 frn = (struct fib_result_nl *) nlmsg_data(nlh);
Alexander Duyck345e9b52014-12-31 10:56:24 -08001048 nl_fib_lookup(net, frn);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001049
Rami Rosen28a28282013-01-11 09:59:20 +00001050 portid = NETLINK_CB(skb).portid; /* netlink portid */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001051 NETLINK_CB(skb).portid = 0; /* from kernel */
Patrick McHardyac6d4392005-08-14 19:29:52 -07001052 NETLINK_CB(skb).dst_group = 0; /* unicast */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001053 netlink_unicast(net->ipv4.fibnl, skb, portid, MSG_DONTWAIT);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001054}
Robert Olsson246955f2005-06-20 13:36:39 -07001055
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001056static int __net_init nl_fib_lookup_init(struct net *net)
Robert Olsson246955f2005-06-20 13:36:39 -07001057{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001058 struct sock *sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001059 struct netlink_kernel_cfg cfg = {
1060 .input = nl_fib_input,
1061 };
1062
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00001063 sk = netlink_kernel_create(net, NETLINK_FIB_LOOKUP, &cfg);
Ian Morris51456b22015-04-03 09:17:26 +01001064 if (!sk)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001065 return -EAFNOSUPPORT;
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001066 net->ipv4.fibnl = sk;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001067 return 0;
1068}
1069
1070static void nl_fib_lookup_exit(struct net *net)
1071{
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001072 netlink_kernel_release(net->ipv4.fibnl);
Denis V. Lunev775516b2008-01-18 23:55:19 -08001073 net->ipv4.fibnl = NULL;
Robert Olsson246955f2005-06-20 13:36:39 -07001074}
1075
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001076static void fib_disable_ip(struct net_device *dev, unsigned long event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001078 if (fib_sync_down_dev(dev, event))
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001079 fib_flush(dev_net(dev));
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001080 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 arp_ifdown(dev);
1082}
1083
1084static int fib_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
1085{
Jianjun Kong6ed25332008-11-03 00:25:16 -08001086 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -07001087 struct net_device *dev = ifa->ifa_dev->dev;
David S. Miller436c3b62011-03-24 17:42:21 -07001088 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 switch (event) {
1091 case NETDEV_UP:
1092 fib_add_ifaddr(ifa);
1093#ifdef CONFIG_IP_ROUTE_MULTIPATH
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001094 fib_sync_up(dev, RTNH_F_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095#endif
David S. Miller436c3b62011-03-24 17:42:21 -07001096 atomic_inc(&net->ipv4.dev_addr_genid);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001097 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 break;
1099 case NETDEV_DOWN:
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001100 fib_del_ifaddr(ifa, NULL);
David S. Miller436c3b62011-03-24 17:42:21 -07001101 atomic_inc(&net->ipv4.dev_addr_genid);
Ian Morris51456b22015-04-03 09:17:26 +01001102 if (!ifa->ifa_dev->ifa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 /* Last address was deleted from this interface.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001104 * Disable IP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001106 fib_disable_ip(dev, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 } else {
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001108 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110 break;
1111 }
1112 return NOTIFY_DONE;
1113}
1114
1115static int fib_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1116{
Jiri Pirko351638e2013-05-28 01:30:21 +00001117 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001118 struct in_device *in_dev;
David S. Miller436c3b62011-03-24 17:42:21 -07001119 struct net *net = dev_net(dev);
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001120 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 if (event == NETDEV_UNREGISTER) {
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001123 fib_disable_ip(dev, event);
David S. Millercaacf052012-07-31 15:06:50 -07001124 rt_flush_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return NOTIFY_DONE;
1126 }
1127
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001128 in_dev = __in_dev_get_rtnl(dev);
Oliver Hartkoppa0065f22014-01-23 10:19:34 +01001129 if (!in_dev)
1130 return NOTIFY_DONE;
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 switch (event) {
1133 case NETDEV_UP:
1134 for_ifa(in_dev) {
1135 fib_add_ifaddr(ifa);
1136 } endfor_ifa(in_dev);
1137#ifdef CONFIG_IP_ROUTE_MULTIPATH
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001138 fib_sync_up(dev, RTNH_F_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139#endif
David S. Miller436c3b62011-03-24 17:42:21 -07001140 atomic_inc(&net->ipv4.dev_addr_genid);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001141 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 break;
1143 case NETDEV_DOWN:
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001144 fib_disable_ip(dev, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 case NETDEV_CHANGE:
Andy Gospodarek8a3d0312015-06-23 13:45:36 -04001147 flags = dev_get_flags(dev);
1148 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
1149 fib_sync_up(dev, RTNH_F_LINKDOWN);
1150 else
1151 fib_sync_down_dev(dev, event);
1152 /* fall through */
1153 case NETDEV_CHANGEMTU:
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001154 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
1156 }
1157 return NOTIFY_DONE;
1158}
1159
1160static struct notifier_block fib_inetaddr_notifier = {
Jianjun Kong6ed25332008-11-03 00:25:16 -08001161 .notifier_call = fib_inetaddr_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162};
1163
1164static struct notifier_block fib_netdev_notifier = {
Jianjun Kong6ed25332008-11-03 00:25:16 -08001165 .notifier_call = fib_netdev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166};
1167
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001168static int __net_init ip_fib_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001170 int err;
Eric Dumazet10da66f2010-10-13 08:22:03 +00001171 size_t size = sizeof(struct hlist_head) * FIB_TABLE_HASHSZ;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001172
Eric Dumazet10da66f2010-10-13 08:22:03 +00001173 /* Avoid false sharing : Use at least a full cache line */
1174 size = max_t(size_t, size, L1_CACHE_BYTES);
1175
1176 net->ipv4.fib_table_hash = kzalloc(size, GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01001177 if (!net->ipv4.fib_table_hash)
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001178 return -ENOMEM;
1179
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001180 err = fib4_rules_init(net);
1181 if (err < 0)
1182 goto fail;
1183 return 0;
1184
1185fail:
1186 kfree(net->ipv4.fib_table_hash);
1187 return err;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001188}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001190static void ip_fib_net_exit(struct net *net)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001191{
1192 unsigned int i;
Thomas Graf63f34442007-03-22 11:55:17 -07001193
Sabrina Dubroca6dede752015-03-10 21:03:54 +01001194 rtnl_lock();
Alexander Duyck6e47d6c2015-03-27 14:14:22 -07001195#ifdef CONFIG_IP_MULTIPLE_TABLES
1196 RCU_INIT_POINTER(net->ipv4.fib_local, NULL);
1197 RCU_INIT_POINTER(net->ipv4.fib_main, NULL);
1198 RCU_INIT_POINTER(net->ipv4.fib_default, NULL);
1199#endif
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001200 for (i = 0; i < FIB_TABLE_HASHSZ; i++) {
Alexander Duycka7e53532015-03-04 15:02:44 -08001201 struct hlist_head *head = &net->ipv4.fib_table_hash[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001202 struct hlist_node *tmp;
Alexander Duycka7e53532015-03-04 15:02:44 -08001203 struct fib_table *tb;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001204
Alexander Duycka7e53532015-03-04 15:02:44 -08001205 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist) {
Alexander Duycka7e53532015-03-04 15:02:44 -08001206 hlist_del(&tb->tb_hlist);
Alexander Duyck6e47d6c2015-03-27 14:14:22 -07001207 fib_table_flush(tb);
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001208 fib_free_table(tb);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001209 }
1210 }
Alexander Duyckad88d052015-03-27 14:14:16 -07001211
1212#ifdef CONFIG_IP_MULTIPLE_TABLES
1213 fib4_rules_exit(net);
1214#endif
Eric Dumazete2666f82011-03-30 16:57:46 -07001215 rtnl_unlock();
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001216 kfree(net->ipv4.fib_table_hash);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001217}
1218
1219static int __net_init fib_net_init(struct net *net)
1220{
1221 int error;
1222
David S. Millerf4530fa2012-07-05 22:13:13 -07001223#ifdef CONFIG_IP_ROUTE_CLASSID
1224 net->ipv4.fib_num_tclassid_users = 0;
1225#endif
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001226 error = ip_fib_net_init(net);
1227 if (error < 0)
1228 goto out;
1229 error = nl_fib_lookup_init(net);
1230 if (error < 0)
1231 goto out_nlfl;
1232 error = fib_proc_init(net);
1233 if (error < 0)
1234 goto out_proc;
1235out:
1236 return error;
1237
1238out_proc:
1239 nl_fib_lookup_exit(net);
1240out_nlfl:
1241 ip_fib_net_exit(net);
1242 goto out;
1243}
1244
1245static void __net_exit fib_net_exit(struct net *net)
1246{
1247 fib_proc_exit(net);
1248 nl_fib_lookup_exit(net);
1249 ip_fib_net_exit(net);
1250}
1251
1252static struct pernet_operations fib_net_ops = {
1253 .init = fib_net_init,
1254 .exit = fib_net_exit,
1255};
1256
1257void __init ip_fib_init(void)
1258{
Greg Rosec7ac8672011-06-10 01:27:09 +00001259 rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL, NULL);
1260 rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL, NULL);
1261 rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib, NULL);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001262
1263 register_pernet_subsys(&fib_net_ops);
1264 register_netdevice_notifier(&fib_netdev_notifier);
1265 register_inetaddr_notifier(&fib_inetaddr_notifier);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001266
David S. Miller5348ba82011-02-01 15:30:56 -08001267 fib_trie_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}