blob: 7cda3b0521d8366489de3cfb5027a13d44bfbd57 [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);
Denis V. Lunev93456b62008-01-10 03:23:38 -080056 if (main_table == NULL)
Denis V. Lunevdbb50162008-01-10 03:21:49 -080057 goto fail;
58
Alexander Duyck0ddcf432015-03-06 13:47:00 -080059 local_table = fib_trie_table(RT_TABLE_LOCAL, main_table);
60 if (local_table == NULL)
61 return -ENOMEM;
62
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 Duyck8274a972014-12-31 10:55:29 -080070 fib_free_table(local_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
159 old = fib_get_table(net, RT_TABLE_LOCAL);
160 new = fib_trie_unmerge(old);
161
162 if (!new)
163 return -ENOMEM;
164
165 /* replace merged table with clean table */
166 if (new != old) {
167 fib_replace_table(net, old, new);
168 fib_free_table(old);
169 }
170
171 return 0;
172}
173
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800174static void fib_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 int flushed = 0;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700177 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700179 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
Alexander Duycka7e53532015-03-04 15:02:44 -0800180 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
181 struct hlist_node *tmp;
182 struct fib_table *tb;
183
184 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000185 flushed += fib_table_flush(tb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 if (flushed)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +0000189 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Scott Feldman104616e2015-03-05 21:21:16 -0800192void fib_flush_external(struct net *net)
193{
194 struct fib_table *tb;
195 struct hlist_head *head;
196 unsigned int h;
197
198 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
199 head = &net->ipv4.fib_table_hash[h];
200 hlist_for_each_entry(tb, head, tb_hlist)
201 fib_table_flush_external(tb);
202 }
203}
204
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800205/*
206 * Find address type as if only "dev" was present in the system. If
207 * on_dev is NULL then all interfaces are taken into consideration.
208 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000209static inline unsigned int __inet_dev_addr_type(struct net *net,
210 const struct net_device *dev,
211 __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
David S. Miller9ade2282011-03-12 02:02:42 -0500213 struct flowi4 fl4 = { .daddr = addr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct fib_result res;
Eric Dumazet95c96172012-04-15 05:58:06 +0000215 unsigned int ret = RTN_BROADCAST;
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700216 struct fib_table *local_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Jan Engelhardt1e637c72008-01-21 03:18:08 -0800218 if (ipv4_is_zeronet(addr) || ipv4_is_lbcast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return RTN_BROADCAST;
Joe Perchesf97c1e02007-12-16 13:45:43 -0800220 if (ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return RTN_MULTICAST;
222
Alexander Duyck345e9b52014-12-31 10:56:24 -0800223 rcu_read_lock();
224
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800225 local_table = fib_get_table(net, RT_TABLE_LOCAL);
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700226 if (local_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 ret = RTN_UNICAST;
David S. Miller9ade2282011-03-12 02:02:42 -0500228 if (!fib_table_lookup(local_table, &fl4, &res, FIB_LOOKUP_NOREF)) {
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800229 if (!dev || dev == res.fi->fib_dev)
230 ret = res.type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232 }
Alexander Duyck345e9b52014-12-31 10:56:24 -0800233
234 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return ret;
236}
237
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800238unsigned int inet_addr_type(struct net *net, __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800239{
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800240 return __inet_dev_addr_type(net, NULL, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800241}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000242EXPORT_SYMBOL(inet_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800243
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800244unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
245 __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800246{
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000247 return __inet_dev_addr_type(net, dev, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800248}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000249EXPORT_SYMBOL(inet_dev_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800250
David S. Miller35ebf652012-06-28 03:59:11 -0700251__be32 fib_compute_spec_dst(struct sk_buff *skb)
252{
253 struct net_device *dev = skb->dev;
254 struct in_device *in_dev;
255 struct fib_result res;
David S. Millera207a4b2012-06-28 18:33:24 -0700256 struct rtable *rt;
David S. Miller35ebf652012-06-28 03:59:11 -0700257 struct flowi4 fl4;
258 struct net *net;
David S. Millera207a4b2012-06-28 18:33:24 -0700259 int scope;
David S. Miller35ebf652012-06-28 03:59:11 -0700260
David S. Millera207a4b2012-06-28 18:33:24 -0700261 rt = skb_rtable(skb);
Julian Anastasov0cc535a2012-07-18 21:35:03 +0000262 if ((rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | RTCF_LOCAL)) ==
263 RTCF_LOCAL)
David S. Miller35ebf652012-06-28 03:59:11 -0700264 return ip_hdr(skb)->daddr;
265
266 in_dev = __in_dev_get_rcu(dev);
267 BUG_ON(!in_dev);
David S. Miller35ebf652012-06-28 03:59:11 -0700268
269 net = dev_net(dev);
David S. Millera207a4b2012-06-28 18:33:24 -0700270
271 scope = RT_SCOPE_UNIVERSE;
272 if (!ipv4_is_zeronet(ip_hdr(skb)->saddr)) {
273 fl4.flowi4_oif = 0;
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000274 fl4.flowi4_iif = LOOPBACK_IFINDEX;
David S. Millera207a4b2012-06-28 18:33:24 -0700275 fl4.daddr = ip_hdr(skb)->saddr;
276 fl4.saddr = 0;
277 fl4.flowi4_tos = RT_TOS(ip_hdr(skb)->tos);
278 fl4.flowi4_scope = scope;
279 fl4.flowi4_mark = IN_DEV_SRC_VMARK(in_dev) ? skb->mark : 0;
280 if (!fib_lookup(net, &fl4, &res))
281 return FIB_RES_PREFSRC(net, res);
282 } else {
283 scope = RT_SCOPE_LINK;
284 }
285
286 return inet_select_addr(dev, ip_hdr(skb)->saddr, scope);
David S. Miller35ebf652012-06-28 03:59:11 -0700287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/* Given (packet source, input interface) and optional (dst, oif, tos):
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000290 * - (main) check, that source is valid i.e. not broadcast or our local
291 * address.
292 * - figure out what "logical" interface this packet arrived
293 * and calculate "specific destination" address.
294 * - check, that packet arrived from expected physical interface.
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000295 * called with rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 */
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700297static int __fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
298 u8 tos, int oif, struct net_device *dev,
299 int rpf, struct in_device *idev, u32 *itag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200301 int ret, no_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 struct fib_result res;
David S. Miller9e56e382012-06-28 18:54:02 -0700303 struct flowi4 fl4;
Denis V. Lunev5b707aa2008-01-21 17:33:15 -0800304 struct net *net;
David S. Miller9e56e382012-06-28 18:54:02 -0700305 bool dev_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
David S. Miller9ade2282011-03-12 02:02:42 -0500307 fl4.flowi4_oif = 0;
Cong Wang6a662712014-04-15 16:25:34 -0700308 fl4.flowi4_iif = oif ? : LOOPBACK_IFINDEX;
David S. Miller9ade2282011-03-12 02:02:42 -0500309 fl4.daddr = src;
310 fl4.saddr = dst;
311 fl4.flowi4_tos = tos;
312 fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
David S. Millercc7e17e2011-03-09 20:57:50 -0800313
David S. Miller9e56e382012-06-28 18:54:02 -0700314 no_addr = idev->ifa_list == NULL;
Michael Smith990078a2011-04-07 04:51:51 +0000315
David S. Miller9e56e382012-06-28 18:54:02 -0700316 fl4.flowi4_mark = IN_DEV_SRC_VMARK(idev) ? skb->mark : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900318 net = dev_net(dev);
David S. Miller9ade2282011-03-12 02:02:42 -0500319 if (fib_lookup(net, &fl4, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 goto last_resort;
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200321 if (res.type != RTN_UNICAST &&
322 (res.type != RTN_LOCAL || !IN_DEV_ACCEPT_LOCAL(idev)))
323 goto e_inval;
324 if (!rpf && !fib_num_tclassid_users(dev_net(dev)) &&
325 (dev->ifindex != oif || !IN_DEV_TX_REDIRECTS(idev)))
326 goto last_resort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 fib_combine_itag(itag, &res);
David S. Miller6f86b322010-09-06 22:36:19 -0700328 dev_match = false;
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller6f86b322010-09-06 22:36:19 -0700331 for (ret = 0; ret < res.fi->fib_nhs; ret++) {
332 struct fib_nh *nh = &res.fi->fib_nh[ret];
333
334 if (nh->nh_dev == dev) {
335 dev_match = true;
336 break;
337 }
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#else
340 if (FIB_RES_DEV(res) == dev)
David S. Miller6f86b322010-09-06 22:36:19 -0700341 dev_match = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342#endif
David S. Miller6f86b322010-09-06 22:36:19 -0700343 if (dev_match) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return ret;
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (no_addr)
348 goto last_resort;
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000349 if (rpf == 1)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000350 goto e_rpf;
David S. Miller9ade2282011-03-12 02:02:42 -0500351 fl4.flowi4_oif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 ret = 0;
David S. Miller9ade2282011-03-12 02:02:42 -0500354 if (fib_lookup(net, &fl4, &res) == 0) {
David S. Miller41347dc2012-06-28 04:05:27 -0700355 if (res.type == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358 return ret;
359
360last_resort:
361 if (rpf)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000362 goto e_rpf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *itag = 0;
364 return 0;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366e_inval:
367 return -EINVAL;
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000368e_rpf:
369 return -EXDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700372/* Ignore rp_filter for packets protected by IPsec. */
373int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
374 u8 tos, int oif, struct net_device *dev,
375 struct in_device *idev, u32 *itag)
376{
377 int r = secpath_exists(skb) ? 0 : IN_DEV_RPFILTER(idev);
378
Julian Anastasove81da0e2012-10-08 11:41:15 +0000379 if (!r && !fib_num_tclassid_users(dev_net(dev)) &&
Sébastien Barré1dced6a2014-08-17 09:19:54 +0200380 IN_DEV_ACCEPT_LOCAL(idev) &&
Julian Anastasove81da0e2012-10-08 11:41:15 +0000381 (dev->ifindex != oif || !IN_DEV_TX_REDIRECTS(idev))) {
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700382 *itag = 0;
383 return 0;
384 }
385 return __fib_validate_source(skb, src, dst, tos, oif, dev, r, idev, itag);
386}
387
Al Viro81f7bf62006-09-27 18:40:00 -0700388static inline __be32 sk_extract_addr(struct sockaddr *addr)
Thomas Graf4e902c52006-08-17 18:14:52 -0700389{
390 return ((struct sockaddr_in *) addr)->sin_addr.s_addr;
391}
392
393static int put_rtax(struct nlattr *mx, int len, int type, u32 value)
394{
395 struct nlattr *nla;
396
397 nla = (struct nlattr *) ((char *) mx + len);
398 nla->nla_type = type;
399 nla->nla_len = nla_attr_size(4);
400 *(u32 *) nla_data(nla) = value;
401
402 return len + nla_total_size(4);
403}
404
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800405static int rtentry_to_fib_config(struct net *net, int cmd, struct rtentry *rt,
Thomas Graf4e902c52006-08-17 18:14:52 -0700406 struct fib_config *cfg)
407{
Al Viro6d85c102006-09-26 22:15:46 -0700408 __be32 addr;
Thomas Graf4e902c52006-08-17 18:14:52 -0700409 int plen;
410
411 memset(cfg, 0, sizeof(*cfg));
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800412 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700413
414 if (rt->rt_dst.sa_family != AF_INET)
415 return -EAFNOSUPPORT;
416
417 /*
418 * Check mask for validity:
419 * a) it must be contiguous.
420 * b) destination must have all host bits clear.
421 * c) if application forgot to set correct family (AF_INET),
422 * reject request unless it is absolutely clear i.e.
423 * both family and mask are zero.
424 */
425 plen = 32;
426 addr = sk_extract_addr(&rt->rt_dst);
427 if (!(rt->rt_flags & RTF_HOST)) {
Al Viro81f7bf62006-09-27 18:40:00 -0700428 __be32 mask = sk_extract_addr(&rt->rt_genmask);
Thomas Graf4e902c52006-08-17 18:14:52 -0700429
430 if (rt->rt_genmask.sa_family != AF_INET) {
431 if (mask || rt->rt_genmask.sa_family)
432 return -EAFNOSUPPORT;
433 }
434
435 if (bad_mask(mask, addr))
436 return -EINVAL;
437
438 plen = inet_mask_len(mask);
439 }
440
441 cfg->fc_dst_len = plen;
442 cfg->fc_dst = addr;
443
444 if (cmd != SIOCDELRT) {
445 cfg->fc_nlflags = NLM_F_CREATE;
446 cfg->fc_protocol = RTPROT_BOOT;
447 }
448
449 if (rt->rt_metric)
450 cfg->fc_priority = rt->rt_metric - 1;
451
452 if (rt->rt_flags & RTF_REJECT) {
453 cfg->fc_scope = RT_SCOPE_HOST;
454 cfg->fc_type = RTN_UNREACHABLE;
455 return 0;
456 }
457
458 cfg->fc_scope = RT_SCOPE_NOWHERE;
459 cfg->fc_type = RTN_UNICAST;
460
461 if (rt->rt_dev) {
462 char *colon;
463 struct net_device *dev;
464 char devname[IFNAMSIZ];
465
466 if (copy_from_user(devname, rt->rt_dev, IFNAMSIZ-1))
467 return -EFAULT;
468
469 devname[IFNAMSIZ-1] = 0;
470 colon = strchr(devname, ':');
471 if (colon)
472 *colon = 0;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800473 dev = __dev_get_by_name(net, devname);
Thomas Graf4e902c52006-08-17 18:14:52 -0700474 if (!dev)
475 return -ENODEV;
476 cfg->fc_oif = dev->ifindex;
477 if (colon) {
478 struct in_ifaddr *ifa;
479 struct in_device *in_dev = __in_dev_get_rtnl(dev);
480 if (!in_dev)
481 return -ENODEV;
482 *colon = ':';
483 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next)
484 if (strcmp(ifa->ifa_label, devname) == 0)
485 break;
486 if (ifa == NULL)
487 return -ENODEV;
488 cfg->fc_prefsrc = ifa->ifa_local;
489 }
490 }
491
492 addr = sk_extract_addr(&rt->rt_gateway);
493 if (rt->rt_gateway.sa_family == AF_INET && addr) {
494 cfg->fc_gw = addr;
495 if (rt->rt_flags & RTF_GATEWAY &&
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800496 inet_addr_type(net, addr) == RTN_UNICAST)
Thomas Graf4e902c52006-08-17 18:14:52 -0700497 cfg->fc_scope = RT_SCOPE_UNIVERSE;
498 }
499
500 if (cmd == SIOCDELRT)
501 return 0;
502
503 if (rt->rt_flags & RTF_GATEWAY && !cfg->fc_gw)
504 return -EINVAL;
505
506 if (cfg->fc_scope == RT_SCOPE_NOWHERE)
507 cfg->fc_scope = RT_SCOPE_LINK;
508
509 if (rt->rt_flags & (RTF_MTU | RTF_WINDOW | RTF_IRTT)) {
510 struct nlattr *mx;
511 int len = 0;
512
513 mx = kzalloc(3 * nla_total_size(4), GFP_KERNEL);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900514 if (mx == NULL)
Thomas Graf4e902c52006-08-17 18:14:52 -0700515 return -ENOMEM;
516
517 if (rt->rt_flags & RTF_MTU)
518 len = put_rtax(mx, len, RTAX_ADVMSS, rt->rt_mtu - 40);
519
520 if (rt->rt_flags & RTF_WINDOW)
521 len = put_rtax(mx, len, RTAX_WINDOW, rt->rt_window);
522
523 if (rt->rt_flags & RTF_IRTT)
524 len = put_rtax(mx, len, RTAX_RTT, rt->rt_irtt << 3);
525
526 cfg->fc_mx = mx;
527 cfg->fc_mx_len = len;
528 }
529
530 return 0;
531}
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000534 * Handle IP routing ioctl calls.
535 * These are used to manipulate the routing tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 */
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800537int ip_rt_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Thomas Graf4e902c52006-08-17 18:14:52 -0700539 struct fib_config cfg;
540 struct rtentry rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 switch (cmd) {
544 case SIOCADDRT: /* Add a route */
545 case SIOCDELRT: /* Delete a route */
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000546 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -EPERM;
Thomas Graf4e902c52006-08-17 18:14:52 -0700548
549 if (copy_from_user(&rt, arg, sizeof(rt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return -EFAULT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 rtnl_lock();
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800553 err = rtentry_to_fib_config(net, cmd, &rt, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (err == 0) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700555 struct fib_table *tb;
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (cmd == SIOCDELRT) {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800558 tb = fib_get_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (tb)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000560 err = fib_table_delete(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700561 else
562 err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 } else {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800564 tb = fib_new_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (tb)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000566 err = fib_table_insert(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700567 else
568 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700570
571 /* allocated by rtentry_to_fib_config() */
572 kfree(cfg.fc_mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 rtnl_unlock();
575 return err;
576 }
577 return -EINVAL;
578}
579
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000580const struct nla_policy rtm_ipv4_policy[RTA_MAX + 1] = {
Thomas Graf4e902c52006-08-17 18:14:52 -0700581 [RTA_DST] = { .type = NLA_U32 },
582 [RTA_SRC] = { .type = NLA_U32 },
583 [RTA_IIF] = { .type = NLA_U32 },
584 [RTA_OIF] = { .type = NLA_U32 },
585 [RTA_GATEWAY] = { .type = NLA_U32 },
586 [RTA_PRIORITY] = { .type = NLA_U32 },
587 [RTA_PREFSRC] = { .type = NLA_U32 },
588 [RTA_METRICS] = { .type = NLA_NESTED },
Thomas Graf5176f912006-08-26 20:13:18 -0700589 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf4e902c52006-08-17 18:14:52 -0700590 [RTA_FLOW] = { .type = NLA_U32 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700591};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800593static int rtm_to_fib_config(struct net *net, struct sk_buff *skb,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000594 struct nlmsghdr *nlh, struct fib_config *cfg)
Thomas Graf4e902c52006-08-17 18:14:52 -0700595{
596 struct nlattr *attr;
597 int err, remaining;
598 struct rtmsg *rtm;
599
600 err = nlmsg_validate(nlh, sizeof(*rtm), RTA_MAX, rtm_ipv4_policy);
601 if (err < 0)
602 goto errout;
603
604 memset(cfg, 0, sizeof(*cfg));
605
606 rtm = nlmsg_data(nlh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700607 cfg->fc_dst_len = rtm->rtm_dst_len;
Thomas Graf4e902c52006-08-17 18:14:52 -0700608 cfg->fc_tos = rtm->rtm_tos;
609 cfg->fc_table = rtm->rtm_table;
610 cfg->fc_protocol = rtm->rtm_protocol;
611 cfg->fc_scope = rtm->rtm_scope;
612 cfg->fc_type = rtm->rtm_type;
613 cfg->fc_flags = rtm->rtm_flags;
614 cfg->fc_nlflags = nlh->nlmsg_flags;
615
Eric W. Biederman15e47302012-09-07 20:12:54 +0000616 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf4e902c52006-08-17 18:14:52 -0700617 cfg->fc_nlinfo.nlh = nlh;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800618 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700619
Thomas Grafa0ee18b2007-03-24 20:32:54 -0700620 if (cfg->fc_type > RTN_MAX) {
621 err = -EINVAL;
622 goto errout;
623 }
624
Thomas Graf4e902c52006-08-17 18:14:52 -0700625 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200626 switch (nla_type(attr)) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700627 case RTA_DST:
Al Viro17fb2c62006-09-26 22:15:25 -0700628 cfg->fc_dst = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700629 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700630 case RTA_OIF:
631 cfg->fc_oif = nla_get_u32(attr);
632 break;
633 case RTA_GATEWAY:
Al Viro17fb2c62006-09-26 22:15:25 -0700634 cfg->fc_gw = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700635 break;
636 case RTA_PRIORITY:
637 cfg->fc_priority = nla_get_u32(attr);
638 break;
639 case RTA_PREFSRC:
Al Viro17fb2c62006-09-26 22:15:25 -0700640 cfg->fc_prefsrc = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700641 break;
642 case RTA_METRICS:
643 cfg->fc_mx = nla_data(attr);
644 cfg->fc_mx_len = nla_len(attr);
645 break;
646 case RTA_MULTIPATH:
647 cfg->fc_mp = nla_data(attr);
648 cfg->fc_mp_len = nla_len(attr);
649 break;
650 case RTA_FLOW:
651 cfg->fc_flow = nla_get_u32(attr);
652 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700653 case RTA_TABLE:
654 cfg->fc_table = nla_get_u32(attr);
655 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700660errout:
661 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Thomas Graf661d2962013-03-21 07:45:29 +0000664static int inet_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900666 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700667 struct fib_config cfg;
668 struct fib_table *tb;
669 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800671 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700672 if (err < 0)
673 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800675 tb = fib_get_table(net, cfg.fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700676 if (tb == NULL) {
677 err = -ESRCH;
678 goto errout;
679 }
680
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000681 err = fib_table_delete(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700682errout:
683 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Thomas Graf661d2962013-03-21 07:45:29 +0000686static int inet_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900688 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700689 struct fib_config cfg;
690 struct fib_table *tb;
691 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800693 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700694 if (err < 0)
695 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Denis V. Lunev226b0b4a52008-01-10 03:30:24 -0800697 tb = fib_new_table(net, cfg.fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700698 if (tb == NULL) {
699 err = -ENOBUFS;
700 goto errout;
701 }
702
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000703 err = fib_table_insert(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700704errout:
705 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Thomas Graf63f34442007-03-22 11:55:17 -0700708static int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900710 struct net *net = sock_net(skb->sk);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700711 unsigned int h, s_h;
712 unsigned int e = 0, s_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct fib_table *tb;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800714 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700715 int dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Thomas Grafbe403ea2006-08-17 18:15:17 -0700717 if (nlmsg_len(cb->nlh) >= sizeof(struct rtmsg) &&
718 ((struct rtmsg *) nlmsg_data(cb->nlh))->rtm_flags & RTM_F_CLONED)
Li RongQing0b8c7f62014-03-21 11:33:10 +0800719 return skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700721 s_h = cb->args[0];
722 s_e = cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Alexander Duycka7e53532015-03-04 15:02:44 -0800724 rcu_read_lock();
725
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700726 for (h = s_h; h < FIB_TABLE_HASHSZ; h++, s_e = 0) {
727 e = 0;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800728 head = &net->ipv4.fib_table_hash[h];
Alexander Duycka7e53532015-03-04 15:02:44 -0800729 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700730 if (e < s_e)
731 goto next;
732 if (dumped)
733 memset(&cb->args[2], 0, sizeof(cb->args) -
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900734 2 * sizeof(cb->args[0]));
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000735 if (fib_table_dump(tb, skb, cb) < 0)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700736 goto out;
737 dumped = 1;
738next:
739 e++;
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700742out:
Alexander Duycka7e53532015-03-04 15:02:44 -0800743 rcu_read_unlock();
744
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700745 cb->args[1] = e;
746 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 return skb->len;
749}
750
751/* Prepare and feed intra-kernel routing request.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000752 * Really, it should be netlink message, but :-( netlink
753 * can be not configured, so that we feed it directly
754 * to fib engine. It is legal, because all events occur
755 * only when netlink is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 */
Al Viro81f7bf62006-09-27 18:40:00 -0700757static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900759 struct net *net = dev_net(ifa->ifa_dev->dev);
Thomas Graf4e902c52006-08-17 18:14:52 -0700760 struct fib_table *tb;
761 struct fib_config cfg = {
762 .fc_protocol = RTPROT_KERNEL,
763 .fc_type = type,
764 .fc_dst = dst,
765 .fc_dst_len = dst_len,
766 .fc_prefsrc = ifa->ifa_local,
767 .fc_oif = ifa->ifa_dev->dev->ifindex,
768 .fc_nlflags = NLM_F_CREATE | NLM_F_APPEND,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800769 .fc_nlinfo = {
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800770 .nl_net = net,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800771 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700772 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (type == RTN_UNICAST)
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800775 tb = fib_new_table(net, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 else
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800777 tb = fib_new_table(net, RT_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (tb == NULL)
780 return;
781
Thomas Graf4e902c52006-08-17 18:14:52 -0700782 cfg.fc_table = tb->tb_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Thomas Graf4e902c52006-08-17 18:14:52 -0700784 if (type != RTN_LOCAL)
785 cfg.fc_scope = RT_SCOPE_LINK;
786 else
787 cfg.fc_scope = RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 if (cmd == RTM_NEWROUTE)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000790 fib_table_insert(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 else
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000792 fib_table_delete(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Jamal Hadi Salim0ff60a42005-11-22 14:47:37 -0800795void fib_add_ifaddr(struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 struct in_device *in_dev = ifa->ifa_dev;
798 struct net_device *dev = in_dev->dev;
799 struct in_ifaddr *prim = ifa;
Al Viroa144ea42006-09-28 18:00:55 -0700800 __be32 mask = ifa->ifa_mask;
801 __be32 addr = ifa->ifa_local;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000802 __be32 prefix = ifa->ifa_address & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000804 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 prim = inet_ifa_byprefix(in_dev, prefix, mask);
806 if (prim == NULL) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000807 pr_warn("%s: bug: prim == NULL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return;
809 }
810 }
811
812 fib_magic(RTM_NEWROUTE, RTN_LOCAL, addr, 32, prim);
813
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000814 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return;
816
817 /* Add broadcast address, if it is explicitly assigned. */
Al Viroa144ea42006-09-28 18:00:55 -0700818 if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
820
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000821 if (!ipv4_is_zeronet(prefix) && !(ifa->ifa_flags & IFA_F_SECONDARY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 (prefix != addr || ifa->ifa_prefixlen < 32)) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000823 fib_magic(RTM_NEWROUTE,
824 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
825 prefix, ifa->ifa_prefixlen, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* Add network specific broadcasts, when it takes a sense */
828 if (ifa->ifa_prefixlen < 31) {
829 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix, 32, prim);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000830 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix | ~mask,
831 32, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 }
834}
835
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000836/* Delete primary or secondary address.
837 * Optionally, on secondary address promotion consider the addresses
838 * from subnet iprim as deleted, even if they are in device list.
839 * In this case the secondary ifa can be in device list.
840 */
841void fib_del_ifaddr(struct in_ifaddr *ifa, struct in_ifaddr *iprim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct in_device *in_dev = ifa->ifa_dev;
844 struct net_device *dev = in_dev->dev;
845 struct in_ifaddr *ifa1;
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000846 struct in_ifaddr *prim = ifa, *prim1 = NULL;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000847 __be32 brd = ifa->ifa_address | ~ifa->ifa_mask;
848 __be32 any = ifa->ifa_address & ifa->ifa_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849#define LOCAL_OK 1
850#define BRD_OK 2
851#define BRD0_OK 4
852#define BRD1_OK 8
Eric Dumazet95c96172012-04-15 05:58:06 +0000853 unsigned int ok = 0;
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000854 int subnet = 0; /* Primary network */
855 int gone = 1; /* Address is missing */
856 int same_prefsrc = 0; /* Another primary with same IP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000858 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 prim = inet_ifa_byprefix(in_dev, any, ifa->ifa_mask);
860 if (prim == NULL) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000861 pr_warn("%s: bug: prim == NULL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return;
863 }
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000864 if (iprim && iprim != prim) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000865 pr_warn("%s: bug: iprim != prim\n", __func__);
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000866 return;
867 }
868 } else if (!ipv4_is_zeronet(any) &&
869 (any != ifa->ifa_local || ifa->ifa_prefixlen < 32)) {
870 fib_magic(RTM_DELROUTE,
871 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
872 any, ifa->ifa_prefixlen, prim);
873 subnet = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876 /* Deletion is more complicated than add.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000877 * We should take care of not to delete too much :-)
878 *
879 * Scan address list to be sure that addresses are really gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 */
881
882 for (ifa1 = in_dev->ifa_list; ifa1; ifa1 = ifa1->ifa_next) {
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000883 if (ifa1 == ifa) {
884 /* promotion, keep the IP */
885 gone = 0;
886 continue;
887 }
888 /* Ignore IFAs from our subnet */
889 if (iprim && ifa1->ifa_mask == iprim->ifa_mask &&
890 inet_ifa_match(ifa1->ifa_address, iprim))
891 continue;
892
893 /* Ignore ifa1 if it uses different primary IP (prefsrc) */
894 if (ifa1->ifa_flags & IFA_F_SECONDARY) {
895 /* Another address from our subnet? */
896 if (ifa1->ifa_mask == prim->ifa_mask &&
897 inet_ifa_match(ifa1->ifa_address, prim))
898 prim1 = prim;
899 else {
900 /* We reached the secondaries, so
901 * same_prefsrc should be determined.
902 */
903 if (!same_prefsrc)
904 continue;
905 /* Search new prim1 if ifa1 is not
906 * using the current prim1
907 */
908 if (!prim1 ||
909 ifa1->ifa_mask != prim1->ifa_mask ||
910 !inet_ifa_match(ifa1->ifa_address, prim1))
911 prim1 = inet_ifa_byprefix(in_dev,
912 ifa1->ifa_address,
913 ifa1->ifa_mask);
914 if (!prim1)
915 continue;
916 if (prim1->ifa_local != prim->ifa_local)
917 continue;
918 }
919 } else {
920 if (prim->ifa_local != ifa1->ifa_local)
921 continue;
922 prim1 = ifa1;
923 if (prim != prim1)
924 same_prefsrc = 1;
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (ifa->ifa_local == ifa1->ifa_local)
927 ok |= LOCAL_OK;
928 if (ifa->ifa_broadcast == ifa1->ifa_broadcast)
929 ok |= BRD_OK;
930 if (brd == ifa1->ifa_broadcast)
931 ok |= BRD1_OK;
932 if (any == ifa1->ifa_broadcast)
933 ok |= BRD0_OK;
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000934 /* primary has network specific broadcasts */
935 if (prim1 == ifa1 && ifa1->ifa_prefixlen < 31) {
936 __be32 brd1 = ifa1->ifa_address | ~ifa1->ifa_mask;
937 __be32 any1 = ifa1->ifa_address & ifa1->ifa_mask;
938
939 if (!ipv4_is_zeronet(any1)) {
940 if (ifa->ifa_broadcast == brd1 ||
941 ifa->ifa_broadcast == any1)
942 ok |= BRD_OK;
943 if (brd == brd1 || brd == any1)
944 ok |= BRD1_OK;
945 if (any == brd1 || any == any1)
946 ok |= BRD0_OK;
947 }
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000951 if (!(ok & BRD_OK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 fib_magic(RTM_DELROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000953 if (subnet && ifa->ifa_prefixlen < 31) {
954 if (!(ok & BRD1_OK))
955 fib_magic(RTM_DELROUTE, RTN_BROADCAST, brd, 32, prim);
956 if (!(ok & BRD0_OK))
957 fib_magic(RTM_DELROUTE, RTN_BROADCAST, any, 32, prim);
958 }
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000959 if (!(ok & LOCAL_OK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 fib_magic(RTM_DELROUTE, RTN_LOCAL, ifa->ifa_local, 32, prim);
961
962 /* Check, that this local address finally disappeared. */
Julian Anastasove6abbaa2011-03-19 12:13:49 +0000963 if (gone &&
964 inet_addr_type(dev_net(dev), ifa->ifa_local) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 /* And the last, but not the least thing.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000966 * We must flush stray FIB entries.
967 *
968 * First of all, we scan fib_info list searching
969 * for stray nexthop entries, then ignite fib_flush.
970 */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900971 if (fib_sync_down_addr(dev_net(dev), ifa->ifa_local))
972 fib_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974 }
975#undef LOCAL_OK
976#undef BRD_OK
977#undef BRD0_OK
978#undef BRD1_OK
979}
980
Alexander Duyck345e9b52014-12-31 10:56:24 -0800981static void nl_fib_lookup(struct net *net, struct fib_result_nl *frn)
Robert Olsson246955f2005-06-20 13:36:39 -0700982{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900983
Robert Olsson246955f2005-06-20 13:36:39 -0700984 struct fib_result res;
David S. Miller9ade2282011-03-12 02:02:42 -0500985 struct flowi4 fl4 = {
986 .flowi4_mark = frn->fl_mark,
987 .daddr = frn->fl_addr,
988 .flowi4_tos = frn->fl_tos,
989 .flowi4_scope = frn->fl_scope,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000990 };
Alexander Duyck345e9b52014-12-31 10:56:24 -0800991 struct fib_table *tb;
992
993 rcu_read_lock();
994
995 tb = fib_get_table(net, frn->tb_id_in);
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700996
997 frn->err = -ENOENT;
Robert Olsson246955f2005-06-20 13:36:39 -0700998 if (tb) {
999 local_bh_disable();
1000
1001 frn->tb_id = tb->tb_id;
David S. Miller9ade2282011-03-12 02:02:42 -05001002 frn->err = fib_table_lookup(tb, &fl4, &res, FIB_LOOKUP_NOREF);
Robert Olsson246955f2005-06-20 13:36:39 -07001003
1004 if (!frn->err) {
1005 frn->prefixlen = res.prefixlen;
1006 frn->nh_sel = res.nh_sel;
1007 frn->type = res.type;
1008 frn->scope = res.scope;
1009 }
1010 local_bh_enable();
1011 }
Alexander Duyck345e9b52014-12-31 10:56:24 -08001012
1013 rcu_read_unlock();
Robert Olsson246955f2005-06-20 13:36:39 -07001014}
1015
David S. Miller28f7b0362007-10-10 21:32:39 -07001016static void nl_fib_input(struct sk_buff *skb)
Robert Olsson246955f2005-06-20 13:36:39 -07001017{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001018 struct net *net;
Robert Olsson246955f2005-06-20 13:36:39 -07001019 struct fib_result_nl *frn;
David S. Miller28f7b0362007-10-10 21:32:39 -07001020 struct nlmsghdr *nlh;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001021 u32 portid;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -07001022
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001023 net = sock_net(skb->sk);
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001024 nlh = nlmsg_hdr(skb);
Hong zhi guo573ce262013-03-27 06:47:04 +00001025 if (skb->len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len ||
1026 nlmsg_len(nlh) < sizeof(*frn))
Thomas Grafea865752005-12-01 14:30:00 -08001027 return;
Denis V. Lunevd883a032007-12-21 02:01:53 -08001028
Pablo Neira3a365152013-06-28 03:04:23 +02001029 skb = netlink_skb_clone(skb, GFP_KERNEL);
Denis V. Lunevd883a032007-12-21 02:01:53 -08001030 if (skb == NULL)
1031 return;
1032 nlh = nlmsg_hdr(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001033
Hong zhi guo573ce262013-03-27 06:47:04 +00001034 frn = (struct fib_result_nl *) nlmsg_data(nlh);
Alexander Duyck345e9b52014-12-31 10:56:24 -08001035 nl_fib_lookup(net, frn);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001036
Rami Rosen28a28282013-01-11 09:59:20 +00001037 portid = NETLINK_CB(skb).portid; /* netlink portid */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001038 NETLINK_CB(skb).portid = 0; /* from kernel */
Patrick McHardyac6d4392005-08-14 19:29:52 -07001039 NETLINK_CB(skb).dst_group = 0; /* unicast */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001040 netlink_unicast(net->ipv4.fibnl, skb, portid, MSG_DONTWAIT);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001041}
Robert Olsson246955f2005-06-20 13:36:39 -07001042
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001043static int __net_init nl_fib_lookup_init(struct net *net)
Robert Olsson246955f2005-06-20 13:36:39 -07001044{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001045 struct sock *sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001046 struct netlink_kernel_cfg cfg = {
1047 .input = nl_fib_input,
1048 };
1049
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00001050 sk = netlink_kernel_create(net, NETLINK_FIB_LOOKUP, &cfg);
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001051 if (sk == NULL)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001052 return -EAFNOSUPPORT;
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -08001053 net->ipv4.fibnl = sk;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001054 return 0;
1055}
1056
1057static void nl_fib_lookup_exit(struct net *net)
1058{
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001059 netlink_kernel_release(net->ipv4.fibnl);
Denis V. Lunev775516b2008-01-18 23:55:19 -08001060 net->ipv4.fibnl = NULL;
Robert Olsson246955f2005-06-20 13:36:39 -07001061}
1062
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001063static void fib_disable_ip(struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001065 if (fib_sync_down_dev(dev, force))
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001066 fib_flush(dev_net(dev));
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001067 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 arp_ifdown(dev);
1069}
1070
1071static int fib_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
1072{
Jianjun Kong6ed25332008-11-03 00:25:16 -08001073 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -07001074 struct net_device *dev = ifa->ifa_dev->dev;
David S. Miller436c3b62011-03-24 17:42:21 -07001075 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 switch (event) {
1078 case NETDEV_UP:
1079 fib_add_ifaddr(ifa);
1080#ifdef CONFIG_IP_ROUTE_MULTIPATH
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -07001081 fib_sync_up(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082#endif
David S. Miller436c3b62011-03-24 17:42:21 -07001083 atomic_inc(&net->ipv4.dev_addr_genid);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001084 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 break;
1086 case NETDEV_DOWN:
Julian Anastasove6abbaa2011-03-19 12:13:49 +00001087 fib_del_ifaddr(ifa, NULL);
David S. Miller436c3b62011-03-24 17:42:21 -07001088 atomic_inc(&net->ipv4.dev_addr_genid);
Jayachandran C9fcc2e82005-10-27 15:10:01 -07001089 if (ifa->ifa_dev->ifa_list == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* Last address was deleted from this interface.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001091 * Disable IP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 */
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001093 fib_disable_ip(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 } else {
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001095 rt_cache_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097 break;
1098 }
1099 return NOTIFY_DONE;
1100}
1101
1102static int fib_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1103{
Jiri Pirko351638e2013-05-28 01:30:21 +00001104 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001105 struct in_device *in_dev;
David S. Miller436c3b62011-03-24 17:42:21 -07001106 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 if (event == NETDEV_UNREGISTER) {
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001109 fib_disable_ip(dev, 2);
David S. Millercaacf052012-07-31 15:06:50 -07001110 rt_flush_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return NOTIFY_DONE;
1112 }
1113
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001114 in_dev = __in_dev_get_rtnl(dev);
Oliver Hartkoppa0065f22014-01-23 10:19:34 +01001115 if (!in_dev)
1116 return NOTIFY_DONE;
Eric Dumazet0115e8e2012-08-22 17:19:46 +00001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 switch (event) {
1119 case NETDEV_UP:
1120 for_ifa(in_dev) {
1121 fib_add_ifaddr(ifa);
1122 } endfor_ifa(in_dev);
1123#ifdef CONFIG_IP_ROUTE_MULTIPATH
1124 fib_sync_up(dev);
1125#endif
David S. Miller436c3b62011-03-24 17:42:21 -07001126 atomic_inc(&net->ipv4.dev_addr_genid);
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001127 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129 case NETDEV_DOWN:
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001130 fib_disable_ip(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 break;
1132 case NETDEV_CHANGEMTU:
1133 case NETDEV_CHANGE:
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001134 rt_cache_flush(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
1136 }
1137 return NOTIFY_DONE;
1138}
1139
1140static struct notifier_block fib_inetaddr_notifier = {
Jianjun Kong6ed25332008-11-03 00:25:16 -08001141 .notifier_call = fib_inetaddr_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142};
1143
1144static struct notifier_block fib_netdev_notifier = {
Jianjun Kong6ed25332008-11-03 00:25:16 -08001145 .notifier_call = fib_netdev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146};
1147
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001148static int __net_init ip_fib_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001150 int err;
Eric Dumazet10da66f2010-10-13 08:22:03 +00001151 size_t size = sizeof(struct hlist_head) * FIB_TABLE_HASHSZ;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001152
Eric Dumazet10da66f2010-10-13 08:22:03 +00001153 /* Avoid false sharing : Use at least a full cache line */
1154 size = max_t(size_t, size, L1_CACHE_BYTES);
1155
1156 net->ipv4.fib_table_hash = kzalloc(size, GFP_KERNEL);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001157 if (net->ipv4.fib_table_hash == NULL)
1158 return -ENOMEM;
1159
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001160 err = fib4_rules_init(net);
1161 if (err < 0)
1162 goto fail;
1163 return 0;
1164
1165fail:
1166 kfree(net->ipv4.fib_table_hash);
1167 return err;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001168}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001170static void ip_fib_net_exit(struct net *net)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001171{
1172 unsigned int i;
Thomas Graf63f34442007-03-22 11:55:17 -07001173
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001174#ifdef CONFIG_IP_MULTIPLE_TABLES
1175 fib4_rules_exit(net);
1176#endif
1177
Eric Dumazete2666f82011-03-30 16:57:46 -07001178 rtnl_lock();
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001179 for (i = 0; i < FIB_TABLE_HASHSZ; i++) {
Alexander Duycka7e53532015-03-04 15:02:44 -08001180 struct hlist_head *head = &net->ipv4.fib_table_hash[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001181 struct hlist_node *tmp;
Alexander Duycka7e53532015-03-04 15:02:44 -08001182 struct fib_table *tb;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001183
Alexander Duycka7e53532015-03-04 15:02:44 -08001184 /* this is done in two passes as flushing the table could
1185 * cause it to be reallocated in order to accommodate new
1186 * tnodes at the root as the table shrinks.
1187 */
1188 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001189 fib_table_flush(tb);
Alexander Duycka7e53532015-03-04 15:02:44 -08001190
1191 hlist_for_each_entry_safe(tb, tmp, head, tb_hlist) {
1192#ifdef CONFIG_IP_MULTIPLE_TABLES
1193 switch (tb->tb_id) {
1194 case RT_TABLE_LOCAL:
1195 RCU_INIT_POINTER(net->ipv4.fib_local, NULL);
1196 break;
1197 case RT_TABLE_MAIN:
1198 RCU_INIT_POINTER(net->ipv4.fib_main, NULL);
1199 break;
1200 case RT_TABLE_DEFAULT:
1201 RCU_INIT_POINTER(net->ipv4.fib_default, NULL);
1202 break;
1203 default:
1204 break;
1205 }
1206#endif
1207 hlist_del(&tb->tb_hlist);
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001208 fib_free_table(tb);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001209 }
1210 }
Eric Dumazete2666f82011-03-30 16:57:46 -07001211 rtnl_unlock();
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001212 kfree(net->ipv4.fib_table_hash);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001213}
1214
1215static int __net_init fib_net_init(struct net *net)
1216{
1217 int error;
1218
David S. Millerf4530fa2012-07-05 22:13:13 -07001219#ifdef CONFIG_IP_ROUTE_CLASSID
1220 net->ipv4.fib_num_tclassid_users = 0;
1221#endif
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001222 error = ip_fib_net_init(net);
1223 if (error < 0)
1224 goto out;
1225 error = nl_fib_lookup_init(net);
1226 if (error < 0)
1227 goto out_nlfl;
1228 error = fib_proc_init(net);
1229 if (error < 0)
1230 goto out_proc;
1231out:
1232 return error;
1233
1234out_proc:
1235 nl_fib_lookup_exit(net);
1236out_nlfl:
1237 ip_fib_net_exit(net);
1238 goto out;
1239}
1240
1241static void __net_exit fib_net_exit(struct net *net)
1242{
1243 fib_proc_exit(net);
1244 nl_fib_lookup_exit(net);
1245 ip_fib_net_exit(net);
1246}
1247
1248static struct pernet_operations fib_net_ops = {
1249 .init = fib_net_init,
1250 .exit = fib_net_exit,
1251};
1252
1253void __init ip_fib_init(void)
1254{
Greg Rosec7ac8672011-06-10 01:27:09 +00001255 rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL, NULL);
1256 rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL, NULL);
1257 rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib, NULL);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001258
1259 register_pernet_subsys(&fib_net_ops);
1260 register_netdevice_notifier(&fib_netdev_notifier);
1261 register_inetaddr_notifier(&fib_inetaddr_notifier);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001262
David S. Miller5348ba82011-02-01 15:30:56 -08001263 fib_trie_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}