blob: b05c23b05a9f9b766a4ea31b5e9b8aa54a1934a7 [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>
18#include <asm/system.h>
19#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080020#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/types.h>
22#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mm.h>
24#include <linux/string.h>
25#include <linux/socket.h>
26#include <linux/sockios.h>
27#include <linux/errno.h>
28#include <linux/in.h>
29#include <linux/inet.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020030#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070032#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/if_arp.h>
34#include <linux/skbuff.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#ifndef CONFIG_IP_MULTIPLE_TABLES
49
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -080050static int __net_init fib4_rules_init(struct net *net)
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080051{
Denis V. Lunev93456b62008-01-10 03:23:38 -080052 struct fib_table *local_table, *main_table;
53
Stephen Hemminger7f9b8052008-01-14 23:14:20 -080054 local_table = fib_hash_table(RT_TABLE_LOCAL);
Denis V. Lunev93456b62008-01-10 03:23:38 -080055 if (local_table == NULL)
Denis V. Lunevdbb50162008-01-10 03:21:49 -080056 return -ENOMEM;
57
Stephen Hemminger7f9b8052008-01-14 23:14:20 -080058 main_table = fib_hash_table(RT_TABLE_MAIN);
Denis V. Lunev93456b62008-01-10 03:23:38 -080059 if (main_table == NULL)
Denis V. Lunevdbb50162008-01-10 03:21:49 -080060 goto fail;
61
Denis V. Lunev93456b62008-01-10 03:23:38 -080062 hlist_add_head_rcu(&local_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080063 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX]);
Denis V. Lunev93456b62008-01-10 03:23:38 -080064 hlist_add_head_rcu(&main_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080065 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX]);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080066 return 0;
67
68fail:
Denis V. Lunev93456b62008-01-10 03:23:38 -080069 kfree(local_table);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080070 return -ENOMEM;
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080071}
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#else
73
Denis V. Lunev8ad49422008-01-10 03:24:11 -080074struct fib_table *fib_new_table(struct net *net, u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 struct fib_table *tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070077 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070079 if (id == 0)
80 id = RT_TABLE_MAIN;
Denis V. Lunev8ad49422008-01-10 03:24:11 -080081 tb = fib_get_table(net, id);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070082 if (tb)
83 return tb;
Stephen Hemminger7f9b8052008-01-14 23:14:20 -080084
85 tb = fib_hash_table(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 if (!tb)
87 return NULL;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070088 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080089 hlist_add_head_rcu(&tb->tb_hlist, &net->ipv4.fib_table_hash[h]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return tb;
91}
92
Denis V. Lunev8ad49422008-01-10 03:24:11 -080093struct fib_table *fib_get_table(struct net *net, u32 id)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070094{
95 struct fib_table *tb;
96 struct hlist_node *node;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080097 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070098 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700100 if (id == 0)
101 id = RT_TABLE_MAIN;
102 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800103
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700104 rcu_read_lock();
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800105 head = &net->ipv4.fib_table_hash[h];
106 hlist_for_each_entry_rcu(tb, node, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700107 if (tb->tb_id == id) {
108 rcu_read_unlock();
109 return tb;
110 }
111 }
112 rcu_read_unlock();
113 return NULL;
114}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif /* CONFIG_IP_MULTIPLE_TABLES */
116
Denis V. Lunev010278e2008-01-22 22:04:04 -0800117void fib_select_default(struct net *net,
118 const struct flowi *flp, struct fib_result *res)
Denis V. Lunev64c2d532008-01-22 22:03:33 -0800119{
120 struct fib_table *tb;
121 int table = RT_TABLE_MAIN;
122#ifdef CONFIG_IP_MULTIPLE_TABLES
123 if (res->r == NULL || res->r->action != FR_ACT_TO_TBL)
124 return;
125 table = res->r->table;
126#endif
Denis V. Lunev010278e2008-01-22 22:04:04 -0800127 tb = fib_get_table(net, table);
Denis V. Lunev64c2d532008-01-22 22:03:33 -0800128 if (FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000129 fib_table_select_default(tb, flp, res);
Denis V. Lunev64c2d532008-01-22 22:03:33 -0800130}
131
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800132static void fib_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 int flushed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct fib_table *tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700136 struct hlist_node *node;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800137 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700138 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700140 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800141 head = &net->ipv4.fib_table_hash[h];
142 hlist_for_each_entry(tb, node, head, tb_hlist)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000143 flushed += fib_table_flush(tb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if (flushed)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700147 rt_cache_flush(net, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Eric Dumazet82efee12010-09-30 03:31:56 +0000150/**
151 * __ip_dev_find - find the first device with a given source address.
152 * @net: the net namespace
153 * @addr: the source address
154 * @devref: if true, take a reference on the found device
155 *
156 * If a caller uses devref=false, it should be protected by RCU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
Eric Dumazet82efee12010-09-30 03:31:56 +0000158struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Eric Dumazet82efee12010-09-30 03:31:56 +0000160 struct flowi fl = {
161 .nl_u = {
162 .ip4_u = {
163 .daddr = addr
164 }
165 },
166 .flags = FLOWI_FLAG_MATCH_ANY_IIF
167 };
168 struct fib_result res = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct net_device *dev = NULL;
170
Tom Herbert4465b462010-05-23 19:54:12 +0000171 if (fib_lookup(net, &fl, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return NULL;
173 if (res.type != RTN_LOCAL)
174 goto out;
175 dev = FIB_RES_DEV(res);
176
Eric Dumazet82efee12010-09-30 03:31:56 +0000177 if (dev && devref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 dev_hold(dev);
179out:
180 fib_res_put(&res);
181 return dev;
182}
Eric Dumazet82efee12010-09-30 03:31:56 +0000183EXPORT_SYMBOL(__ip_dev_find);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800185/*
186 * Find address type as if only "dev" was present in the system. If
187 * on_dev is NULL then all interfaces are taken into consideration.
188 */
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800189static inline unsigned __inet_dev_addr_type(struct net *net,
190 const struct net_device *dev,
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800191 __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct flowi fl = { .nl_u = { .ip4_u = { .daddr = addr } } };
194 struct fib_result res;
195 unsigned ret = RTN_BROADCAST;
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700196 struct fib_table *local_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Jan Engelhardt1e637c72008-01-21 03:18:08 -0800198 if (ipv4_is_zeronet(addr) || ipv4_is_lbcast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return RTN_BROADCAST;
Joe Perchesf97c1e02007-12-16 13:45:43 -0800200 if (ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return RTN_MULTICAST;
202
203#ifdef CONFIG_IP_MULTIPLE_TABLES
204 res.r = NULL;
205#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900206
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800207 local_table = fib_get_table(net, RT_TABLE_LOCAL);
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700208 if (local_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ret = RTN_UNICAST;
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000210 if (!fib_table_lookup(local_table, &fl, &res)) {
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800211 if (!dev || dev == res.fi->fib_dev)
212 ret = res.type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 fib_res_put(&res);
214 }
215 }
216 return ret;
217}
218
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800219unsigned int inet_addr_type(struct net *net, __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800220{
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800221 return __inet_dev_addr_type(net, NULL, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800222}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000223EXPORT_SYMBOL(inet_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800224
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800225unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
226 __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800227{
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000228 return __inet_dev_addr_type(net, dev, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800229}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000230EXPORT_SYMBOL(inet_dev_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/* Given (packet source, input interface) and optional (dst, oif, tos):
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000233 * - (main) check, that source is valid i.e. not broadcast or our local
234 * address.
235 * - figure out what "logical" interface this packet arrived
236 * and calculate "specific destination" address.
237 * - check, that packet arrived from expected physical interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
Al Virod9c9df82006-09-26 21:28:14 -0700239int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif,
jamalb0c110c2009-10-18 02:12:33 +0000240 struct net_device *dev, __be32 *spec_dst,
241 u32 *itag, u32 mark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct in_device *in_dev;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000244 struct flowi fl = {
245 .nl_u = {
246 .ip4_u = {
247 .daddr = src,
248 .saddr = dst,
249 .tos = tos
250 }
251 },
252 .mark = mark,
253 .iif = oif
254 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 struct fib_result res;
Patrick McHardy8153a102009-12-03 01:25:58 +0000256 int no_addr, rpf, accept_local;
David S. Miller6f86b322010-09-06 22:36:19 -0700257 bool dev_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 int ret;
Denis V. Lunev5b707aa2008-01-21 17:33:15 -0800259 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Patrick McHardy8153a102009-12-03 01:25:58 +0000261 no_addr = rpf = accept_local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700263 in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (in_dev) {
265 no_addr = in_dev->ifa_list == NULL;
266 rpf = IN_DEV_RPFILTER(in_dev);
Patrick McHardy8153a102009-12-03 01:25:58 +0000267 accept_local = IN_DEV_ACCEPT_LOCAL(in_dev);
Jamal Hadi Salim28f6aee2009-12-25 17:30:22 -0800268 if (mark && !IN_DEV_SRC_VMARK(in_dev))
269 fl.mark = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271 rcu_read_unlock();
272
273 if (in_dev == NULL)
274 goto e_inval;
275
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900276 net = dev_net(dev);
Denis V. Lunev5b707aa2008-01-21 17:33:15 -0800277 if (fib_lookup(net, &fl, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 goto last_resort;
Patrick McHardy8153a102009-12-03 01:25:58 +0000279 if (res.type != RTN_UNICAST) {
280 if (res.type != RTN_LOCAL || !accept_local)
281 goto e_inval_res;
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 *spec_dst = FIB_RES_PREFSRC(res);
284 fib_combine_itag(itag, &res);
David S. Miller6f86b322010-09-06 22:36:19 -0700285 dev_match = false;
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller6f86b322010-09-06 22:36:19 -0700288 for (ret = 0; ret < res.fi->fib_nhs; ret++) {
289 struct fib_nh *nh = &res.fi->fib_nh[ret];
290
291 if (nh->nh_dev == dev) {
292 dev_match = true;
293 break;
294 }
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#else
297 if (FIB_RES_DEV(res) == dev)
David S. Miller6f86b322010-09-06 22:36:19 -0700298 dev_match = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#endif
David S. Miller6f86b322010-09-06 22:36:19 -0700300 if (dev_match) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
302 fib_res_put(&res);
303 return ret;
304 }
305 fib_res_put(&res);
306 if (no_addr)
307 goto last_resort;
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000308 if (rpf == 1)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000309 goto e_rpf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 fl.oif = dev->ifindex;
311
312 ret = 0;
Denis V. Lunev5b707aa2008-01-21 17:33:15 -0800313 if (fib_lookup(net, &fl, &res) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (res.type == RTN_UNICAST) {
315 *spec_dst = FIB_RES_PREFSRC(res);
316 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
317 }
318 fib_res_put(&res);
319 }
320 return ret;
321
322last_resort:
323 if (rpf)
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000324 goto e_rpf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *spec_dst = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
326 *itag = 0;
327 return 0;
328
329e_inval_res:
330 fib_res_put(&res);
331e_inval:
332 return -EINVAL;
Eric Dumazetb5f7e752010-06-02 12:05:27 +0000333e_rpf:
334 return -EXDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Al Viro81f7bf62006-09-27 18:40:00 -0700337static inline __be32 sk_extract_addr(struct sockaddr *addr)
Thomas Graf4e902c52006-08-17 18:14:52 -0700338{
339 return ((struct sockaddr_in *) addr)->sin_addr.s_addr;
340}
341
342static int put_rtax(struct nlattr *mx, int len, int type, u32 value)
343{
344 struct nlattr *nla;
345
346 nla = (struct nlattr *) ((char *) mx + len);
347 nla->nla_type = type;
348 nla->nla_len = nla_attr_size(4);
349 *(u32 *) nla_data(nla) = value;
350
351 return len + nla_total_size(4);
352}
353
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800354static int rtentry_to_fib_config(struct net *net, int cmd, struct rtentry *rt,
Thomas Graf4e902c52006-08-17 18:14:52 -0700355 struct fib_config *cfg)
356{
Al Viro6d85c102006-09-26 22:15:46 -0700357 __be32 addr;
Thomas Graf4e902c52006-08-17 18:14:52 -0700358 int plen;
359
360 memset(cfg, 0, sizeof(*cfg));
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800361 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700362
363 if (rt->rt_dst.sa_family != AF_INET)
364 return -EAFNOSUPPORT;
365
366 /*
367 * Check mask for validity:
368 * a) it must be contiguous.
369 * b) destination must have all host bits clear.
370 * c) if application forgot to set correct family (AF_INET),
371 * reject request unless it is absolutely clear i.e.
372 * both family and mask are zero.
373 */
374 plen = 32;
375 addr = sk_extract_addr(&rt->rt_dst);
376 if (!(rt->rt_flags & RTF_HOST)) {
Al Viro81f7bf62006-09-27 18:40:00 -0700377 __be32 mask = sk_extract_addr(&rt->rt_genmask);
Thomas Graf4e902c52006-08-17 18:14:52 -0700378
379 if (rt->rt_genmask.sa_family != AF_INET) {
380 if (mask || rt->rt_genmask.sa_family)
381 return -EAFNOSUPPORT;
382 }
383
384 if (bad_mask(mask, addr))
385 return -EINVAL;
386
387 plen = inet_mask_len(mask);
388 }
389
390 cfg->fc_dst_len = plen;
391 cfg->fc_dst = addr;
392
393 if (cmd != SIOCDELRT) {
394 cfg->fc_nlflags = NLM_F_CREATE;
395 cfg->fc_protocol = RTPROT_BOOT;
396 }
397
398 if (rt->rt_metric)
399 cfg->fc_priority = rt->rt_metric - 1;
400
401 if (rt->rt_flags & RTF_REJECT) {
402 cfg->fc_scope = RT_SCOPE_HOST;
403 cfg->fc_type = RTN_UNREACHABLE;
404 return 0;
405 }
406
407 cfg->fc_scope = RT_SCOPE_NOWHERE;
408 cfg->fc_type = RTN_UNICAST;
409
410 if (rt->rt_dev) {
411 char *colon;
412 struct net_device *dev;
413 char devname[IFNAMSIZ];
414
415 if (copy_from_user(devname, rt->rt_dev, IFNAMSIZ-1))
416 return -EFAULT;
417
418 devname[IFNAMSIZ-1] = 0;
419 colon = strchr(devname, ':');
420 if (colon)
421 *colon = 0;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800422 dev = __dev_get_by_name(net, devname);
Thomas Graf4e902c52006-08-17 18:14:52 -0700423 if (!dev)
424 return -ENODEV;
425 cfg->fc_oif = dev->ifindex;
426 if (colon) {
427 struct in_ifaddr *ifa;
428 struct in_device *in_dev = __in_dev_get_rtnl(dev);
429 if (!in_dev)
430 return -ENODEV;
431 *colon = ':';
432 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next)
433 if (strcmp(ifa->ifa_label, devname) == 0)
434 break;
435 if (ifa == NULL)
436 return -ENODEV;
437 cfg->fc_prefsrc = ifa->ifa_local;
438 }
439 }
440
441 addr = sk_extract_addr(&rt->rt_gateway);
442 if (rt->rt_gateway.sa_family == AF_INET && addr) {
443 cfg->fc_gw = addr;
444 if (rt->rt_flags & RTF_GATEWAY &&
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800445 inet_addr_type(net, addr) == RTN_UNICAST)
Thomas Graf4e902c52006-08-17 18:14:52 -0700446 cfg->fc_scope = RT_SCOPE_UNIVERSE;
447 }
448
449 if (cmd == SIOCDELRT)
450 return 0;
451
452 if (rt->rt_flags & RTF_GATEWAY && !cfg->fc_gw)
453 return -EINVAL;
454
455 if (cfg->fc_scope == RT_SCOPE_NOWHERE)
456 cfg->fc_scope = RT_SCOPE_LINK;
457
458 if (rt->rt_flags & (RTF_MTU | RTF_WINDOW | RTF_IRTT)) {
459 struct nlattr *mx;
460 int len = 0;
461
462 mx = kzalloc(3 * nla_total_size(4), GFP_KERNEL);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900463 if (mx == NULL)
Thomas Graf4e902c52006-08-17 18:14:52 -0700464 return -ENOMEM;
465
466 if (rt->rt_flags & RTF_MTU)
467 len = put_rtax(mx, len, RTAX_ADVMSS, rt->rt_mtu - 40);
468
469 if (rt->rt_flags & RTF_WINDOW)
470 len = put_rtax(mx, len, RTAX_WINDOW, rt->rt_window);
471
472 if (rt->rt_flags & RTF_IRTT)
473 len = put_rtax(mx, len, RTAX_RTT, rt->rt_irtt << 3);
474
475 cfg->fc_mx = mx;
476 cfg->fc_mx_len = len;
477 }
478
479 return 0;
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000483 * Handle IP routing ioctl calls.
484 * These are used to manipulate the routing tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800486int ip_rt_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Thomas Graf4e902c52006-08-17 18:14:52 -0700488 struct fib_config cfg;
489 struct rtentry rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 switch (cmd) {
493 case SIOCADDRT: /* Add a route */
494 case SIOCDELRT: /* Delete a route */
495 if (!capable(CAP_NET_ADMIN))
496 return -EPERM;
Thomas Graf4e902c52006-08-17 18:14:52 -0700497
498 if (copy_from_user(&rt, arg, sizeof(rt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return -EFAULT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 rtnl_lock();
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800502 err = rtentry_to_fib_config(net, cmd, &rt, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (err == 0) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700504 struct fib_table *tb;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (cmd == SIOCDELRT) {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800507 tb = fib_get_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (tb)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000509 err = fib_table_delete(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700510 else
511 err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } else {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800513 tb = fib_new_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (tb)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000515 err = fib_table_insert(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700516 else
517 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700519
520 /* allocated by rtentry_to_fib_config() */
521 kfree(cfg.fc_mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 rtnl_unlock();
524 return err;
525 }
526 return -EINVAL;
527}
528
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000529const struct nla_policy rtm_ipv4_policy[RTA_MAX + 1] = {
Thomas Graf4e902c52006-08-17 18:14:52 -0700530 [RTA_DST] = { .type = NLA_U32 },
531 [RTA_SRC] = { .type = NLA_U32 },
532 [RTA_IIF] = { .type = NLA_U32 },
533 [RTA_OIF] = { .type = NLA_U32 },
534 [RTA_GATEWAY] = { .type = NLA_U32 },
535 [RTA_PRIORITY] = { .type = NLA_U32 },
536 [RTA_PREFSRC] = { .type = NLA_U32 },
537 [RTA_METRICS] = { .type = NLA_NESTED },
Thomas Graf5176f912006-08-26 20:13:18 -0700538 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf4e902c52006-08-17 18:14:52 -0700539 [RTA_FLOW] = { .type = NLA_U32 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700540};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800542static int rtm_to_fib_config(struct net *net, struct sk_buff *skb,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000543 struct nlmsghdr *nlh, struct fib_config *cfg)
Thomas Graf4e902c52006-08-17 18:14:52 -0700544{
545 struct nlattr *attr;
546 int err, remaining;
547 struct rtmsg *rtm;
548
549 err = nlmsg_validate(nlh, sizeof(*rtm), RTA_MAX, rtm_ipv4_policy);
550 if (err < 0)
551 goto errout;
552
553 memset(cfg, 0, sizeof(*cfg));
554
555 rtm = nlmsg_data(nlh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700556 cfg->fc_dst_len = rtm->rtm_dst_len;
Thomas Graf4e902c52006-08-17 18:14:52 -0700557 cfg->fc_tos = rtm->rtm_tos;
558 cfg->fc_table = rtm->rtm_table;
559 cfg->fc_protocol = rtm->rtm_protocol;
560 cfg->fc_scope = rtm->rtm_scope;
561 cfg->fc_type = rtm->rtm_type;
562 cfg->fc_flags = rtm->rtm_flags;
563 cfg->fc_nlflags = nlh->nlmsg_flags;
564
565 cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid;
566 cfg->fc_nlinfo.nlh = nlh;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800567 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700568
Thomas Grafa0ee18b2007-03-24 20:32:54 -0700569 if (cfg->fc_type > RTN_MAX) {
570 err = -EINVAL;
571 goto errout;
572 }
573
Thomas Graf4e902c52006-08-17 18:14:52 -0700574 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200575 switch (nla_type(attr)) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700576 case RTA_DST:
Al Viro17fb2c62006-09-26 22:15:25 -0700577 cfg->fc_dst = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700578 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700579 case RTA_OIF:
580 cfg->fc_oif = nla_get_u32(attr);
581 break;
582 case RTA_GATEWAY:
Al Viro17fb2c62006-09-26 22:15:25 -0700583 cfg->fc_gw = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700584 break;
585 case RTA_PRIORITY:
586 cfg->fc_priority = nla_get_u32(attr);
587 break;
588 case RTA_PREFSRC:
Al Viro17fb2c62006-09-26 22:15:25 -0700589 cfg->fc_prefsrc = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700590 break;
591 case RTA_METRICS:
592 cfg->fc_mx = nla_data(attr);
593 cfg->fc_mx_len = nla_len(attr);
594 break;
595 case RTA_MULTIPATH:
596 cfg->fc_mp = nla_data(attr);
597 cfg->fc_mp_len = nla_len(attr);
598 break;
599 case RTA_FLOW:
600 cfg->fc_flow = nla_get_u32(attr);
601 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700602 case RTA_TABLE:
603 cfg->fc_table = nla_get_u32(attr);
604 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700609errout:
610 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Jianjun Kong6ed25332008-11-03 00:25:16 -0800613static int inet_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900615 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700616 struct fib_config cfg;
617 struct fib_table *tb;
618 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800620 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700621 if (err < 0)
622 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800624 tb = fib_get_table(net, cfg.fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700625 if (tb == NULL) {
626 err = -ESRCH;
627 goto errout;
628 }
629
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000630 err = fib_table_delete(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700631errout:
632 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Jianjun Kong6ed25332008-11-03 00:25:16 -0800635static int inet_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900637 struct net *net = sock_net(skb->sk);
Thomas Graf4e902c52006-08-17 18:14:52 -0700638 struct fib_config cfg;
639 struct fib_table *tb;
640 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800642 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700643 if (err < 0)
644 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Denis V. Lunev226b0b4a52008-01-10 03:30:24 -0800646 tb = fib_new_table(net, cfg.fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700647 if (tb == NULL) {
648 err = -ENOBUFS;
649 goto errout;
650 }
651
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000652 err = fib_table_insert(tb, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700653errout:
654 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Thomas Graf63f34442007-03-22 11:55:17 -0700657static int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900659 struct net *net = sock_net(skb->sk);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700660 unsigned int h, s_h;
661 unsigned int e = 0, s_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 struct fib_table *tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700663 struct hlist_node *node;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800664 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700665 int dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Thomas Grafbe403ea2006-08-17 18:15:17 -0700667 if (nlmsg_len(cb->nlh) >= sizeof(struct rtmsg) &&
668 ((struct rtmsg *) nlmsg_data(cb->nlh))->rtm_flags & RTM_F_CLONED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return ip_rt_dump(skb, cb);
670
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700671 s_h = cb->args[0];
672 s_e = cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700674 for (h = s_h; h < FIB_TABLE_HASHSZ; h++, s_e = 0) {
675 e = 0;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800676 head = &net->ipv4.fib_table_hash[h];
677 hlist_for_each_entry(tb, node, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700678 if (e < s_e)
679 goto next;
680 if (dumped)
681 memset(&cb->args[2], 0, sizeof(cb->args) -
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900682 2 * sizeof(cb->args[0]));
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000683 if (fib_table_dump(tb, skb, cb) < 0)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700684 goto out;
685 dumped = 1;
686next:
687 e++;
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700690out:
691 cb->args[1] = e;
692 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 return skb->len;
695}
696
697/* Prepare and feed intra-kernel routing request.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000698 * Really, it should be netlink message, but :-( netlink
699 * can be not configured, so that we feed it directly
700 * to fib engine. It is legal, because all events occur
701 * only when netlink is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 */
Al Viro81f7bf62006-09-27 18:40:00 -0700703static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900705 struct net *net = dev_net(ifa->ifa_dev->dev);
Thomas Graf4e902c52006-08-17 18:14:52 -0700706 struct fib_table *tb;
707 struct fib_config cfg = {
708 .fc_protocol = RTPROT_KERNEL,
709 .fc_type = type,
710 .fc_dst = dst,
711 .fc_dst_len = dst_len,
712 .fc_prefsrc = ifa->ifa_local,
713 .fc_oif = ifa->ifa_dev->dev->ifindex,
714 .fc_nlflags = NLM_F_CREATE | NLM_F_APPEND,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800715 .fc_nlinfo = {
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800716 .nl_net = net,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800717 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700718 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (type == RTN_UNICAST)
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800721 tb = fib_new_table(net, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 else
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800723 tb = fib_new_table(net, RT_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 if (tb == NULL)
726 return;
727
Thomas Graf4e902c52006-08-17 18:14:52 -0700728 cfg.fc_table = tb->tb_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Thomas Graf4e902c52006-08-17 18:14:52 -0700730 if (type != RTN_LOCAL)
731 cfg.fc_scope = RT_SCOPE_LINK;
732 else
733 cfg.fc_scope = RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 if (cmd == RTM_NEWROUTE)
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000736 fib_table_insert(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 else
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000738 fib_table_delete(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Jamal Hadi Salim0ff60a42005-11-22 14:47:37 -0800741void fib_add_ifaddr(struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct in_device *in_dev = ifa->ifa_dev;
744 struct net_device *dev = in_dev->dev;
745 struct in_ifaddr *prim = ifa;
Al Viroa144ea42006-09-28 18:00:55 -0700746 __be32 mask = ifa->ifa_mask;
747 __be32 addr = ifa->ifa_local;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000748 __be32 prefix = ifa->ifa_address & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000750 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 prim = inet_ifa_byprefix(in_dev, prefix, mask);
752 if (prim == NULL) {
Stephen Hemmingera6db9012008-01-12 20:58:35 -0800753 printk(KERN_WARNING "fib_add_ifaddr: bug: prim == NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return;
755 }
756 }
757
758 fib_magic(RTM_NEWROUTE, RTN_LOCAL, addr, 32, prim);
759
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000760 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return;
762
763 /* Add broadcast address, if it is explicitly assigned. */
Al Viroa144ea42006-09-28 18:00:55 -0700764 if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
766
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000767 if (!ipv4_is_zeronet(prefix) && !(ifa->ifa_flags & IFA_F_SECONDARY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 (prefix != addr || ifa->ifa_prefixlen < 32)) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000769 fib_magic(RTM_NEWROUTE,
770 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
771 prefix, ifa->ifa_prefixlen, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /* Add network specific broadcasts, when it takes a sense */
774 if (ifa->ifa_prefixlen < 31) {
775 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix, 32, prim);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000776 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix | ~mask,
777 32, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779 }
780}
781
782static void fib_del_ifaddr(struct in_ifaddr *ifa)
783{
784 struct in_device *in_dev = ifa->ifa_dev;
785 struct net_device *dev = in_dev->dev;
786 struct in_ifaddr *ifa1;
787 struct in_ifaddr *prim = ifa;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000788 __be32 brd = ifa->ifa_address | ~ifa->ifa_mask;
789 __be32 any = ifa->ifa_address & ifa->ifa_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790#define LOCAL_OK 1
791#define BRD_OK 2
792#define BRD0_OK 4
793#define BRD1_OK 8
794 unsigned ok = 0;
795
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000796 if (!(ifa->ifa_flags & IFA_F_SECONDARY))
797 fib_magic(RTM_DELROUTE,
798 dev->flags & IFF_LOOPBACK ? RTN_LOCAL : RTN_UNICAST,
799 any, ifa->ifa_prefixlen, prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 else {
801 prim = inet_ifa_byprefix(in_dev, any, ifa->ifa_mask);
802 if (prim == NULL) {
Stephen Hemmingera6db9012008-01-12 20:58:35 -0800803 printk(KERN_WARNING "fib_del_ifaddr: bug: prim == NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return;
805 }
806 }
807
808 /* Deletion is more complicated than add.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000809 * We should take care of not to delete too much :-)
810 *
811 * Scan address list to be sure that addresses are really gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 */
813
814 for (ifa1 = in_dev->ifa_list; ifa1; ifa1 = ifa1->ifa_next) {
815 if (ifa->ifa_local == ifa1->ifa_local)
816 ok |= LOCAL_OK;
817 if (ifa->ifa_broadcast == ifa1->ifa_broadcast)
818 ok |= BRD_OK;
819 if (brd == ifa1->ifa_broadcast)
820 ok |= BRD1_OK;
821 if (any == ifa1->ifa_broadcast)
822 ok |= BRD0_OK;
823 }
824
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000825 if (!(ok & BRD_OK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 fib_magic(RTM_DELROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000827 if (!(ok & BRD1_OK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 fib_magic(RTM_DELROUTE, RTN_BROADCAST, brd, 32, prim);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000829 if (!(ok & BRD0_OK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 fib_magic(RTM_DELROUTE, RTN_BROADCAST, any, 32, prim);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000831 if (!(ok & LOCAL_OK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 fib_magic(RTM_DELROUTE, RTN_LOCAL, ifa->ifa_local, 32, prim);
833
834 /* Check, that this local address finally disappeared. */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900835 if (inet_addr_type(dev_net(dev), ifa->ifa_local) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* And the last, but not the least thing.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000837 * We must flush stray FIB entries.
838 *
839 * First of all, we scan fib_info list searching
840 * for stray nexthop entries, then ignite fib_flush.
841 */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900842 if (fib_sync_down_addr(dev_net(dev), ifa->ifa_local))
843 fib_flush(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845 }
846#undef LOCAL_OK
847#undef BRD_OK
848#undef BRD0_OK
849#undef BRD1_OK
850}
851
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000852static void nl_fib_lookup(struct fib_result_nl *frn, struct fib_table *tb)
Robert Olsson246955f2005-06-20 13:36:39 -0700853{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900854
Robert Olsson246955f2005-06-20 13:36:39 -0700855 struct fib_result res;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000856 struct flowi fl = {
857 .mark = frn->fl_mark,
858 .nl_u = {
859 .ip4_u = {
860 .daddr = frn->fl_addr,
861 .tos = frn->fl_tos,
862 .scope = frn->fl_scope
863 }
864 }
865 };
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700866
Sergey Vlasov912a41a2007-04-27 02:17:19 -0700867#ifdef CONFIG_IP_MULTIPLE_TABLES
868 res.r = NULL;
869#endif
870
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700871 frn->err = -ENOENT;
Robert Olsson246955f2005-06-20 13:36:39 -0700872 if (tb) {
873 local_bh_disable();
874
875 frn->tb_id = tb->tb_id;
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000876 frn->err = fib_table_lookup(tb, &fl, &res);
Robert Olsson246955f2005-06-20 13:36:39 -0700877
878 if (!frn->err) {
879 frn->prefixlen = res.prefixlen;
880 frn->nh_sel = res.nh_sel;
881 frn->type = res.type;
882 frn->scope = res.scope;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700883 fib_res_put(&res);
Robert Olsson246955f2005-06-20 13:36:39 -0700884 }
885 local_bh_enable();
886 }
887}
888
David S. Miller28f7b0362007-10-10 21:32:39 -0700889static void nl_fib_input(struct sk_buff *skb)
Robert Olsson246955f2005-06-20 13:36:39 -0700890{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800891 struct net *net;
Robert Olsson246955f2005-06-20 13:36:39 -0700892 struct fib_result_nl *frn;
David S. Miller28f7b0362007-10-10 21:32:39 -0700893 struct nlmsghdr *nlh;
Robert Olsson246955f2005-06-20 13:36:39 -0700894 struct fib_table *tb;
David S. Miller28f7b0362007-10-10 21:32:39 -0700895 u32 pid;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700896
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900897 net = sock_net(skb->sk);
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -0700898 nlh = nlmsg_hdr(skb);
Thomas Grafea865752005-12-01 14:30:00 -0800899 if (skb->len < NLMSG_SPACE(0) || skb->len < nlh->nlmsg_len ||
Denis V. Lunevd883a032007-12-21 02:01:53 -0800900 nlh->nlmsg_len < NLMSG_LENGTH(sizeof(*frn)))
Thomas Grafea865752005-12-01 14:30:00 -0800901 return;
Denis V. Lunevd883a032007-12-21 02:01:53 -0800902
903 skb = skb_clone(skb, GFP_KERNEL);
904 if (skb == NULL)
905 return;
906 nlh = nlmsg_hdr(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900907
Robert Olsson246955f2005-06-20 13:36:39 -0700908 frn = (struct fib_result_nl *) NLMSG_DATA(nlh);
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800909 tb = fib_get_table(net, frn->tb_id_in);
Robert Olsson246955f2005-06-20 13:36:39 -0700910
911 nl_fib_lookup(frn, tb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900912
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000913 pid = NETLINK_CB(skb).pid; /* pid of sending process */
914 NETLINK_CB(skb).pid = 0; /* from kernel */
Patrick McHardyac6d4392005-08-14 19:29:52 -0700915 NETLINK_CB(skb).dst_group = 0; /* unicast */
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800916 netlink_unicast(net->ipv4.fibnl, skb, pid, MSG_DONTWAIT);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900917}
Robert Olsson246955f2005-06-20 13:36:39 -0700918
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000919static int __net_init nl_fib_lookup_init(struct net *net)
Robert Olsson246955f2005-06-20 13:36:39 -0700920{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800921 struct sock *sk;
922 sk = netlink_kernel_create(net, NETLINK_FIB_LOOKUP, 0,
923 nl_fib_input, NULL, THIS_MODULE);
924 if (sk == NULL)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800925 return -EAFNOSUPPORT;
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800926 net->ipv4.fibnl = sk;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800927 return 0;
928}
929
930static void nl_fib_lookup_exit(struct net *net)
931{
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800932 netlink_kernel_release(net->ipv4.fibnl);
Denis V. Lunev775516b2008-01-18 23:55:19 -0800933 net->ipv4.fibnl = NULL;
Robert Olsson246955f2005-06-20 13:36:39 -0700934}
935
Octavian Purdilae2ce1462009-11-16 13:49:49 +0000936static void fib_disable_ip(struct net_device *dev, int force, int delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Denis V. Lunev85326fa2008-01-31 18:48:47 -0800938 if (fib_sync_down_dev(dev, force))
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900939 fib_flush(dev_net(dev));
Octavian Purdilae2ce1462009-11-16 13:49:49 +0000940 rt_cache_flush(dev_net(dev), delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 arp_ifdown(dev);
942}
943
944static int fib_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
945{
Jianjun Kong6ed25332008-11-03 00:25:16 -0800946 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700947 struct net_device *dev = ifa->ifa_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 switch (event) {
950 case NETDEV_UP:
951 fib_add_ifaddr(ifa);
952#ifdef CONFIG_IP_ROUTE_MULTIPATH
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700953 fib_sync_up(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#endif
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700955 rt_cache_flush(dev_net(dev), -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 break;
957 case NETDEV_DOWN:
958 fib_del_ifaddr(ifa);
Jayachandran C9fcc2e82005-10-27 15:10:01 -0700959 if (ifa->ifa_dev->ifa_list == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /* Last address was deleted from this interface.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000961 * Disable IP.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 */
Octavian Purdilae2ce1462009-11-16 13:49:49 +0000963 fib_disable_ip(dev, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 } else {
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700965 rt_cache_flush(dev_net(dev), -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967 break;
968 }
969 return NOTIFY_DONE;
970}
971
972static int fib_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
973{
974 struct net_device *dev = ptr;
Herbert Xue5ed6392005-10-03 14:35:55 -0700975 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 if (event == NETDEV_UNREGISTER) {
Octavian Purdilae2ce1462009-11-16 13:49:49 +0000978 fib_disable_ip(dev, 2, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return NOTIFY_DONE;
980 }
981
982 if (!in_dev)
983 return NOTIFY_DONE;
984
985 switch (event) {
986 case NETDEV_UP:
987 for_ifa(in_dev) {
988 fib_add_ifaddr(ifa);
989 } endfor_ifa(in_dev);
990#ifdef CONFIG_IP_ROUTE_MULTIPATH
991 fib_sync_up(dev);
992#endif
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700993 rt_cache_flush(dev_net(dev), -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
995 case NETDEV_DOWN:
Octavian Purdilae2ce1462009-11-16 13:49:49 +0000996 fib_disable_ip(dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 break;
998 case NETDEV_CHANGEMTU:
999 case NETDEV_CHANGE:
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -07001000 rt_cache_flush(dev_net(dev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 break;
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00001002 case NETDEV_UNREGISTER_BATCH:
1003 rt_cache_flush_batch();
1004 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 return NOTIFY_DONE;
1007}
1008
1009static struct notifier_block fib_inetaddr_notifier = {
Jianjun Kong6ed25332008-11-03 00:25:16 -08001010 .notifier_call = fib_inetaddr_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011};
1012
1013static struct notifier_block fib_netdev_notifier = {
Jianjun Kong6ed25332008-11-03 00:25:16 -08001014 .notifier_call = fib_netdev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015};
1016
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001017static int __net_init ip_fib_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001019 int err;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001020 unsigned int i;
1021
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001022 net->ipv4.fib_table_hash = kzalloc(
1023 sizeof(struct hlist_head)*FIB_TABLE_HASHSZ, GFP_KERNEL);
1024 if (net->ipv4.fib_table_hash == NULL)
1025 return -ENOMEM;
1026
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001027 for (i = 0; i < FIB_TABLE_HASHSZ; i++)
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001028 INIT_HLIST_HEAD(&net->ipv4.fib_table_hash[i]);
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -08001029
Denis V. Lunevdce5cbe2008-01-31 18:44:53 -08001030 err = fib4_rules_init(net);
1031 if (err < 0)
1032 goto fail;
1033 return 0;
1034
1035fail:
1036 kfree(net->ipv4.fib_table_hash);
1037 return err;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001038}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001040static void ip_fib_net_exit(struct net *net)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001041{
1042 unsigned int i;
Thomas Graf63f34442007-03-22 11:55:17 -07001043
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001044#ifdef CONFIG_IP_MULTIPLE_TABLES
1045 fib4_rules_exit(net);
1046#endif
1047
1048 for (i = 0; i < FIB_TABLE_HASHSZ; i++) {
1049 struct fib_table *tb;
1050 struct hlist_head *head;
1051 struct hlist_node *node, *tmp;
1052
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001053 head = &net->ipv4.fib_table_hash[i];
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001054 hlist_for_each_entry_safe(tb, node, tmp, head, tb_hlist) {
1055 hlist_del(node);
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001056 fib_table_flush(tb);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001057 kfree(tb);
1058 }
1059 }
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001060 kfree(net->ipv4.fib_table_hash);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001061}
1062
1063static int __net_init fib_net_init(struct net *net)
1064{
1065 int error;
1066
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001067 error = ip_fib_net_init(net);
1068 if (error < 0)
1069 goto out;
1070 error = nl_fib_lookup_init(net);
1071 if (error < 0)
1072 goto out_nlfl;
1073 error = fib_proc_init(net);
1074 if (error < 0)
1075 goto out_proc;
1076out:
1077 return error;
1078
1079out_proc:
1080 nl_fib_lookup_exit(net);
1081out_nlfl:
1082 ip_fib_net_exit(net);
1083 goto out;
1084}
1085
1086static void __net_exit fib_net_exit(struct net *net)
1087{
1088 fib_proc_exit(net);
1089 nl_fib_lookup_exit(net);
1090 ip_fib_net_exit(net);
1091}
1092
1093static struct pernet_operations fib_net_ops = {
1094 .init = fib_net_init,
1095 .exit = fib_net_exit,
1096};
1097
1098void __init ip_fib_init(void)
1099{
Thomas Graf63f34442007-03-22 11:55:17 -07001100 rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL);
1101 rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL);
1102 rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001103
1104 register_pernet_subsys(&fib_net_ops);
1105 register_netdevice_notifier(&fib_netdev_notifier);
1106 register_inetaddr_notifier(&fib_inetaddr_notifier);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001107
1108 fib_hash_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}