blob: 64421c520a0e470cd70f76227ea56256aba7f483 [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 *
8 * Version: $Id: fib_frontend.c,v 1.26 2001/10/31 21:55:54 davem Exp $
9 *
10 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <asm/uaccess.h>
20#include <asm/system.h>
21#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080022#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/types.h>
24#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm.h>
26#include <linux/string.h>
27#include <linux/socket.h>
28#include <linux/sockios.h>
29#include <linux/errno.h>
30#include <linux/in.h>
31#include <linux/inet.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020032#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070034#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/if_arp.h>
36#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070038#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <net/ip.h>
41#include <net/protocol.h>
42#include <net/route.h>
43#include <net/tcp.h>
44#include <net/sock.h>
45#include <net/icmp.h>
46#include <net/arp.h>
47#include <net/ip_fib.h>
Thomas Graf63f34442007-03-22 11:55:17 -070048#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define FFprint(a...) printk(KERN_DEBUG a)
51
52#ifndef CONFIG_IP_MULTIPLE_TABLES
53
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -080054static int __net_init fib4_rules_init(struct net *net)
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080055{
Denis V. Lunev93456b62008-01-10 03:23:38 -080056 struct fib_table *local_table, *main_table;
57
58 local_table = fib_hash_init(RT_TABLE_LOCAL);
59 if (local_table == NULL)
Denis V. Lunevdbb50162008-01-10 03:21:49 -080060 return -ENOMEM;
61
Denis V. Lunev93456b62008-01-10 03:23:38 -080062 main_table = fib_hash_init(RT_TABLE_MAIN);
63 if (main_table == NULL)
Denis V. Lunevdbb50162008-01-10 03:21:49 -080064 goto fail;
65
Denis V. Lunev93456b62008-01-10 03:23:38 -080066 hlist_add_head_rcu(&local_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080067 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX]);
Denis V. Lunev93456b62008-01-10 03:23:38 -080068 hlist_add_head_rcu(&main_table->tb_hlist,
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080069 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX]);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080070 return 0;
71
72fail:
Denis V. Lunev93456b62008-01-10 03:23:38 -080073 kfree(local_table);
Denis V. Lunevdbb50162008-01-10 03:21:49 -080074 return -ENOMEM;
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -080075}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#else
77
Denis V. Lunev8ad49422008-01-10 03:24:11 -080078struct fib_table *fib_new_table(struct net *net, u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 struct fib_table *tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070081 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070083 if (id == 0)
84 id = RT_TABLE_MAIN;
Denis V. Lunev8ad49422008-01-10 03:24:11 -080085 tb = fib_get_table(net, id);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070086 if (tb)
87 return tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 tb = fib_hash_init(id);
89 if (!tb)
90 return NULL;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070091 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -080092 hlist_add_head_rcu(&tb->tb_hlist, &net->ipv4.fib_table_hash[h]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return tb;
94}
95
Denis V. Lunev8ad49422008-01-10 03:24:11 -080096struct fib_table *fib_get_table(struct net *net, u32 id)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -070097{
98 struct fib_table *tb;
99 struct hlist_node *node;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800100 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700101 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700103 if (id == 0)
104 id = RT_TABLE_MAIN;
105 h = id & (FIB_TABLE_HASHSZ - 1);
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800106
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700107 rcu_read_lock();
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800108 head = &net->ipv4.fib_table_hash[h];
109 hlist_for_each_entry_rcu(tb, node, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700110 if (tb->tb_id == id) {
111 rcu_read_unlock();
112 return tb;
113 }
114 }
115 rcu_read_unlock();
116 return NULL;
117}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#endif /* CONFIG_IP_MULTIPLE_TABLES */
119
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800120static void fib_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 int flushed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct fib_table *tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700124 struct hlist_node *node;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800125 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700126 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700128 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800129 head = &net->ipv4.fib_table_hash[h];
130 hlist_for_each_entry(tb, node, head, tb_hlist)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700131 flushed += tb->tb_flush(tb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 if (flushed)
135 rt_cache_flush(-1);
136}
137
138/*
139 * Find the first device with a given source address.
140 */
141
Al Viro60cad5d2006-09-26 22:17:09 -0700142struct net_device * ip_dev_find(__be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 struct flowi fl = { .nl_u = { .ip4_u = { .daddr = addr } } };
145 struct fib_result res;
146 struct net_device *dev = NULL;
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700147 struct fib_table *local_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149#ifdef CONFIG_IP_MULTIPLE_TABLES
150 res.r = NULL;
151#endif
152
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800153 local_table = fib_get_table(&init_net, RT_TABLE_LOCAL);
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700154 if (!local_table || local_table->tb_lookup(local_table, &fl, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return NULL;
156 if (res.type != RTN_LOCAL)
157 goto out;
158 dev = FIB_RES_DEV(res);
159
160 if (dev)
161 dev_hold(dev);
162out:
163 fib_res_put(&res);
164 return dev;
165}
166
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800167/*
168 * Find address type as if only "dev" was present in the system. If
169 * on_dev is NULL then all interfaces are taken into consideration.
170 */
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800171static inline unsigned __inet_dev_addr_type(struct net *net,
172 const struct net_device *dev,
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800173 __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct flowi fl = { .nl_u = { .ip4_u = { .daddr = addr } } };
176 struct fib_result res;
177 unsigned ret = RTN_BROADCAST;
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700178 struct fib_table *local_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Joe Perchesf97c1e02007-12-16 13:45:43 -0800180 if (ipv4_is_zeronet(addr) || ipv4_is_badclass(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return RTN_BROADCAST;
Joe Perchesf97c1e02007-12-16 13:45:43 -0800182 if (ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return RTN_MULTICAST;
184
185#ifdef CONFIG_IP_MULTIPLE_TABLES
186 res.r = NULL;
187#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900188
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800189 local_table = fib_get_table(net, RT_TABLE_LOCAL);
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700190 if (local_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 ret = RTN_UNICAST;
Pavel Emelyanov03cf7862007-10-23 21:17:27 -0700192 if (!local_table->tb_lookup(local_table, &fl, &res)) {
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800193 if (!dev || dev == res.fi->fib_dev)
194 ret = res.type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 fib_res_put(&res);
196 }
197 }
198 return ret;
199}
200
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800201unsigned int inet_addr_type(struct net *net, __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800202{
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800203 return __inet_dev_addr_type(net, NULL, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800204}
205
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800206unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
207 __be32 addr)
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800208{
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800209 return __inet_dev_addr_type(net, dev, addr);
Laszlo Attila Toth05538112007-12-04 23:28:46 -0800210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/* Given (packet source, input interface) and optional (dst, oif, tos):
213 - (main) check, that source is valid i.e. not broadcast or our local
214 address.
215 - figure out what "logical" interface this packet arrived
216 and calculate "specific destination" address.
217 - check, that packet arrived from expected physical interface.
218 */
219
Al Virod9c9df82006-09-26 21:28:14 -0700220int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif,
221 struct net_device *dev, __be32 *spec_dst, u32 *itag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct in_device *in_dev;
224 struct flowi fl = { .nl_u = { .ip4_u =
225 { .daddr = src,
226 .saddr = dst,
227 .tos = tos } },
228 .iif = oif };
229 struct fib_result res;
230 int no_addr, rpf;
231 int ret;
232
233 no_addr = rpf = 0;
234 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700235 in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (in_dev) {
237 no_addr = in_dev->ifa_list == NULL;
238 rpf = IN_DEV_RPFILTER(in_dev);
239 }
240 rcu_read_unlock();
241
242 if (in_dev == NULL)
243 goto e_inval;
244
245 if (fib_lookup(&fl, &res))
246 goto last_resort;
247 if (res.type != RTN_UNICAST)
248 goto e_inval_res;
249 *spec_dst = FIB_RES_PREFSRC(res);
250 fib_combine_itag(itag, &res);
251#ifdef CONFIG_IP_ROUTE_MULTIPATH
252 if (FIB_RES_DEV(res) == dev || res.fi->fib_nhs > 1)
253#else
254 if (FIB_RES_DEV(res) == dev)
255#endif
256 {
257 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
258 fib_res_put(&res);
259 return ret;
260 }
261 fib_res_put(&res);
262 if (no_addr)
263 goto last_resort;
264 if (rpf)
265 goto e_inval;
266 fl.oif = dev->ifindex;
267
268 ret = 0;
269 if (fib_lookup(&fl, &res) == 0) {
270 if (res.type == RTN_UNICAST) {
271 *spec_dst = FIB_RES_PREFSRC(res);
272 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
273 }
274 fib_res_put(&res);
275 }
276 return ret;
277
278last_resort:
279 if (rpf)
280 goto e_inval;
281 *spec_dst = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
282 *itag = 0;
283 return 0;
284
285e_inval_res:
286 fib_res_put(&res);
287e_inval:
288 return -EINVAL;
289}
290
Al Viro81f7bf62006-09-27 18:40:00 -0700291static inline __be32 sk_extract_addr(struct sockaddr *addr)
Thomas Graf4e902c52006-08-17 18:14:52 -0700292{
293 return ((struct sockaddr_in *) addr)->sin_addr.s_addr;
294}
295
296static int put_rtax(struct nlattr *mx, int len, int type, u32 value)
297{
298 struct nlattr *nla;
299
300 nla = (struct nlattr *) ((char *) mx + len);
301 nla->nla_type = type;
302 nla->nla_len = nla_attr_size(4);
303 *(u32 *) nla_data(nla) = value;
304
305 return len + nla_total_size(4);
306}
307
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800308static int rtentry_to_fib_config(struct net *net, int cmd, struct rtentry *rt,
Thomas Graf4e902c52006-08-17 18:14:52 -0700309 struct fib_config *cfg)
310{
Al Viro6d85c102006-09-26 22:15:46 -0700311 __be32 addr;
Thomas Graf4e902c52006-08-17 18:14:52 -0700312 int plen;
313
314 memset(cfg, 0, sizeof(*cfg));
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800315 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700316
317 if (rt->rt_dst.sa_family != AF_INET)
318 return -EAFNOSUPPORT;
319
320 /*
321 * Check mask for validity:
322 * a) it must be contiguous.
323 * b) destination must have all host bits clear.
324 * c) if application forgot to set correct family (AF_INET),
325 * reject request unless it is absolutely clear i.e.
326 * both family and mask are zero.
327 */
328 plen = 32;
329 addr = sk_extract_addr(&rt->rt_dst);
330 if (!(rt->rt_flags & RTF_HOST)) {
Al Viro81f7bf62006-09-27 18:40:00 -0700331 __be32 mask = sk_extract_addr(&rt->rt_genmask);
Thomas Graf4e902c52006-08-17 18:14:52 -0700332
333 if (rt->rt_genmask.sa_family != AF_INET) {
334 if (mask || rt->rt_genmask.sa_family)
335 return -EAFNOSUPPORT;
336 }
337
338 if (bad_mask(mask, addr))
339 return -EINVAL;
340
341 plen = inet_mask_len(mask);
342 }
343
344 cfg->fc_dst_len = plen;
345 cfg->fc_dst = addr;
346
347 if (cmd != SIOCDELRT) {
348 cfg->fc_nlflags = NLM_F_CREATE;
349 cfg->fc_protocol = RTPROT_BOOT;
350 }
351
352 if (rt->rt_metric)
353 cfg->fc_priority = rt->rt_metric - 1;
354
355 if (rt->rt_flags & RTF_REJECT) {
356 cfg->fc_scope = RT_SCOPE_HOST;
357 cfg->fc_type = RTN_UNREACHABLE;
358 return 0;
359 }
360
361 cfg->fc_scope = RT_SCOPE_NOWHERE;
362 cfg->fc_type = RTN_UNICAST;
363
364 if (rt->rt_dev) {
365 char *colon;
366 struct net_device *dev;
367 char devname[IFNAMSIZ];
368
369 if (copy_from_user(devname, rt->rt_dev, IFNAMSIZ-1))
370 return -EFAULT;
371
372 devname[IFNAMSIZ-1] = 0;
373 colon = strchr(devname, ':');
374 if (colon)
375 *colon = 0;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800376 dev = __dev_get_by_name(net, devname);
Thomas Graf4e902c52006-08-17 18:14:52 -0700377 if (!dev)
378 return -ENODEV;
379 cfg->fc_oif = dev->ifindex;
380 if (colon) {
381 struct in_ifaddr *ifa;
382 struct in_device *in_dev = __in_dev_get_rtnl(dev);
383 if (!in_dev)
384 return -ENODEV;
385 *colon = ':';
386 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next)
387 if (strcmp(ifa->ifa_label, devname) == 0)
388 break;
389 if (ifa == NULL)
390 return -ENODEV;
391 cfg->fc_prefsrc = ifa->ifa_local;
392 }
393 }
394
395 addr = sk_extract_addr(&rt->rt_gateway);
396 if (rt->rt_gateway.sa_family == AF_INET && addr) {
397 cfg->fc_gw = addr;
398 if (rt->rt_flags & RTF_GATEWAY &&
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800399 inet_addr_type(net, addr) == RTN_UNICAST)
Thomas Graf4e902c52006-08-17 18:14:52 -0700400 cfg->fc_scope = RT_SCOPE_UNIVERSE;
401 }
402
403 if (cmd == SIOCDELRT)
404 return 0;
405
406 if (rt->rt_flags & RTF_GATEWAY && !cfg->fc_gw)
407 return -EINVAL;
408
409 if (cfg->fc_scope == RT_SCOPE_NOWHERE)
410 cfg->fc_scope = RT_SCOPE_LINK;
411
412 if (rt->rt_flags & (RTF_MTU | RTF_WINDOW | RTF_IRTT)) {
413 struct nlattr *mx;
414 int len = 0;
415
416 mx = kzalloc(3 * nla_total_size(4), GFP_KERNEL);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900417 if (mx == NULL)
Thomas Graf4e902c52006-08-17 18:14:52 -0700418 return -ENOMEM;
419
420 if (rt->rt_flags & RTF_MTU)
421 len = put_rtax(mx, len, RTAX_ADVMSS, rt->rt_mtu - 40);
422
423 if (rt->rt_flags & RTF_WINDOW)
424 len = put_rtax(mx, len, RTAX_WINDOW, rt->rt_window);
425
426 if (rt->rt_flags & RTF_IRTT)
427 len = put_rtax(mx, len, RTAX_RTT, rt->rt_irtt << 3);
428
429 cfg->fc_mx = mx;
430 cfg->fc_mx_len = len;
431 }
432
433 return 0;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436/*
437 * Handle IP routing ioctl calls. These are used to manipulate the routing tables
438 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900439
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800440int ip_rt_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Thomas Graf4e902c52006-08-17 18:14:52 -0700442 struct fib_config cfg;
443 struct rtentry rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 switch (cmd) {
447 case SIOCADDRT: /* Add a route */
448 case SIOCDELRT: /* Delete a route */
449 if (!capable(CAP_NET_ADMIN))
450 return -EPERM;
Thomas Graf4e902c52006-08-17 18:14:52 -0700451
452 if (copy_from_user(&rt, arg, sizeof(rt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return -EFAULT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 rtnl_lock();
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800456 err = rtentry_to_fib_config(net, cmd, &rt, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (err == 0) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700458 struct fib_table *tb;
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (cmd == SIOCDELRT) {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800461 tb = fib_get_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (tb)
Thomas Graf4e902c52006-08-17 18:14:52 -0700463 err = tb->tb_delete(tb, &cfg);
464 else
465 err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 } else {
Denis V. Lunev1bad1182008-01-10 03:29:53 -0800467 tb = fib_new_table(net, cfg.fc_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (tb)
Thomas Graf4e902c52006-08-17 18:14:52 -0700469 err = tb->tb_insert(tb, &cfg);
470 else
471 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700473
474 /* allocated by rtentry_to_fib_config() */
475 kfree(cfg.fc_mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 rtnl_unlock();
478 return err;
479 }
480 return -EINVAL;
481}
482
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700483const struct nla_policy rtm_ipv4_policy[RTA_MAX+1] = {
Thomas Graf4e902c52006-08-17 18:14:52 -0700484 [RTA_DST] = { .type = NLA_U32 },
485 [RTA_SRC] = { .type = NLA_U32 },
486 [RTA_IIF] = { .type = NLA_U32 },
487 [RTA_OIF] = { .type = NLA_U32 },
488 [RTA_GATEWAY] = { .type = NLA_U32 },
489 [RTA_PRIORITY] = { .type = NLA_U32 },
490 [RTA_PREFSRC] = { .type = NLA_U32 },
491 [RTA_METRICS] = { .type = NLA_NESTED },
Thomas Graf5176f912006-08-26 20:13:18 -0700492 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf4e902c52006-08-17 18:14:52 -0700493 [RTA_PROTOINFO] = { .type = NLA_U32 },
494 [RTA_FLOW] = { .type = NLA_U32 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700495};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800497static int rtm_to_fib_config(struct net *net, struct sk_buff *skb,
498 struct nlmsghdr *nlh, struct fib_config *cfg)
Thomas Graf4e902c52006-08-17 18:14:52 -0700499{
500 struct nlattr *attr;
501 int err, remaining;
502 struct rtmsg *rtm;
503
504 err = nlmsg_validate(nlh, sizeof(*rtm), RTA_MAX, rtm_ipv4_policy);
505 if (err < 0)
506 goto errout;
507
508 memset(cfg, 0, sizeof(*cfg));
509
510 rtm = nlmsg_data(nlh);
Thomas Graf4e902c52006-08-17 18:14:52 -0700511 cfg->fc_dst_len = rtm->rtm_dst_len;
Thomas Graf4e902c52006-08-17 18:14:52 -0700512 cfg->fc_tos = rtm->rtm_tos;
513 cfg->fc_table = rtm->rtm_table;
514 cfg->fc_protocol = rtm->rtm_protocol;
515 cfg->fc_scope = rtm->rtm_scope;
516 cfg->fc_type = rtm->rtm_type;
517 cfg->fc_flags = rtm->rtm_flags;
518 cfg->fc_nlflags = nlh->nlmsg_flags;
519
520 cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid;
521 cfg->fc_nlinfo.nlh = nlh;
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800522 cfg->fc_nlinfo.nl_net = net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700523
Thomas Grafa0ee18b2007-03-24 20:32:54 -0700524 if (cfg->fc_type > RTN_MAX) {
525 err = -EINVAL;
526 goto errout;
527 }
528
Thomas Graf4e902c52006-08-17 18:14:52 -0700529 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200530 switch (nla_type(attr)) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700531 case RTA_DST:
Al Viro17fb2c62006-09-26 22:15:25 -0700532 cfg->fc_dst = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700533 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700534 case RTA_OIF:
535 cfg->fc_oif = nla_get_u32(attr);
536 break;
537 case RTA_GATEWAY:
Al Viro17fb2c62006-09-26 22:15:25 -0700538 cfg->fc_gw = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700539 break;
540 case RTA_PRIORITY:
541 cfg->fc_priority = nla_get_u32(attr);
542 break;
543 case RTA_PREFSRC:
Al Viro17fb2c62006-09-26 22:15:25 -0700544 cfg->fc_prefsrc = nla_get_be32(attr);
Thomas Graf4e902c52006-08-17 18:14:52 -0700545 break;
546 case RTA_METRICS:
547 cfg->fc_mx = nla_data(attr);
548 cfg->fc_mx_len = nla_len(attr);
549 break;
550 case RTA_MULTIPATH:
551 cfg->fc_mp = nla_data(attr);
552 cfg->fc_mp_len = nla_len(attr);
553 break;
554 case RTA_FLOW:
555 cfg->fc_flow = nla_get_u32(attr);
556 break;
Thomas Graf4e902c52006-08-17 18:14:52 -0700557 case RTA_TABLE:
558 cfg->fc_table = nla_get_u32(attr);
559 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700564errout:
565 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Thomas Graf63f34442007-03-22 11:55:17 -0700568static int inet_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Denis V. Lunevb8542722007-12-01 00:21:31 +1100570 struct net *net = skb->sk->sk_net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700571 struct fib_config cfg;
572 struct fib_table *tb;
573 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800575 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700576 if (err < 0)
577 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800579 tb = fib_get_table(net, cfg.fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700580 if (tb == NULL) {
581 err = -ESRCH;
582 goto errout;
583 }
584
585 err = tb->tb_delete(tb, &cfg);
586errout:
587 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Thomas Graf63f34442007-03-22 11:55:17 -0700590static int inet_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Denis V. Lunevb8542722007-12-01 00:21:31 +1100592 struct net *net = skb->sk->sk_net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700593 struct fib_config cfg;
594 struct fib_table *tb;
595 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800597 err = rtm_to_fib_config(net, skb, nlh, &cfg);
Thomas Graf4e902c52006-08-17 18:14:52 -0700598 if (err < 0)
599 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Denis V. Lunev226b0b42008-01-10 03:30:24 -0800601 tb = fib_new_table(net, cfg.fc_table);
Thomas Graf4e902c52006-08-17 18:14:52 -0700602 if (tb == NULL) {
603 err = -ENOBUFS;
604 goto errout;
605 }
606
607 err = tb->tb_insert(tb, &cfg);
608errout:
609 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Thomas Graf63f34442007-03-22 11:55:17 -0700612static int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Denis V. Lunevb8542722007-12-01 00:21:31 +1100614 struct net *net = skb->sk->sk_net;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700615 unsigned int h, s_h;
616 unsigned int e = 0, s_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct fib_table *tb;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700618 struct hlist_node *node;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800619 struct hlist_head *head;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700620 int dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Thomas Grafbe403ea2006-08-17 18:15:17 -0700622 if (nlmsg_len(cb->nlh) >= sizeof(struct rtmsg) &&
623 ((struct rtmsg *) nlmsg_data(cb->nlh))->rtm_flags & RTM_F_CLONED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return ip_rt_dump(skb, cb);
625
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700626 s_h = cb->args[0];
627 s_e = cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700629 for (h = s_h; h < FIB_TABLE_HASHSZ; h++, s_e = 0) {
630 e = 0;
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800631 head = &net->ipv4.fib_table_hash[h];
632 hlist_for_each_entry(tb, node, head, tb_hlist) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700633 if (e < s_e)
634 goto next;
635 if (dumped)
636 memset(&cb->args[2], 0, sizeof(cb->args) -
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900637 2 * sizeof(cb->args[0]));
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700638 if (tb->tb_dump(tb, skb, cb) < 0)
639 goto out;
640 dumped = 1;
641next:
642 e++;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700645out:
646 cb->args[1] = e;
647 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 return skb->len;
650}
651
652/* Prepare and feed intra-kernel routing request.
653 Really, it should be netlink message, but :-( netlink
654 can be not configured, so that we feed it directly
655 to fib engine. It is legal, because all events occur
656 only when netlink is already locked.
657 */
658
Al Viro81f7bf62006-09-27 18:40:00 -0700659static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800661 struct net *net = ifa->ifa_dev->dev->nd_net;
Thomas Graf4e902c52006-08-17 18:14:52 -0700662 struct fib_table *tb;
663 struct fib_config cfg = {
664 .fc_protocol = RTPROT_KERNEL,
665 .fc_type = type,
666 .fc_dst = dst,
667 .fc_dst_len = dst_len,
668 .fc_prefsrc = ifa->ifa_local,
669 .fc_oif = ifa->ifa_dev->dev->ifindex,
670 .fc_nlflags = NLM_F_CREATE | NLM_F_APPEND,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800671 .fc_nlinfo = {
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800672 .nl_net = net,
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800673 },
Thomas Graf4e902c52006-08-17 18:14:52 -0700674 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 if (type == RTN_UNICAST)
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800677 tb = fib_new_table(net, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 else
Denis V. Lunev4b5d47d2008-01-10 03:29:23 -0800679 tb = fib_new_table(net, RT_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 if (tb == NULL)
682 return;
683
Thomas Graf4e902c52006-08-17 18:14:52 -0700684 cfg.fc_table = tb->tb_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Thomas Graf4e902c52006-08-17 18:14:52 -0700686 if (type != RTN_LOCAL)
687 cfg.fc_scope = RT_SCOPE_LINK;
688 else
689 cfg.fc_scope = RT_SCOPE_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 if (cmd == RTM_NEWROUTE)
Thomas Graf4e902c52006-08-17 18:14:52 -0700692 tb->tb_insert(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 else
Thomas Graf4e902c52006-08-17 18:14:52 -0700694 tb->tb_delete(tb, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Jamal Hadi Salim0ff60a42005-11-22 14:47:37 -0800697void fib_add_ifaddr(struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct in_device *in_dev = ifa->ifa_dev;
700 struct net_device *dev = in_dev->dev;
701 struct in_ifaddr *prim = ifa;
Al Viroa144ea42006-09-28 18:00:55 -0700702 __be32 mask = ifa->ifa_mask;
703 __be32 addr = ifa->ifa_local;
704 __be32 prefix = ifa->ifa_address&mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (ifa->ifa_flags&IFA_F_SECONDARY) {
707 prim = inet_ifa_byprefix(in_dev, prefix, mask);
708 if (prim == NULL) {
709 printk(KERN_DEBUG "fib_add_ifaddr: bug: prim == NULL\n");
710 return;
711 }
712 }
713
714 fib_magic(RTM_NEWROUTE, RTN_LOCAL, addr, 32, prim);
715
716 if (!(dev->flags&IFF_UP))
717 return;
718
719 /* Add broadcast address, if it is explicitly assigned. */
Al Viroa144ea42006-09-28 18:00:55 -0700720 if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
722
Joe Perchesf97c1e02007-12-16 13:45:43 -0800723 if (!ipv4_is_zeronet(prefix) && !(ifa->ifa_flags&IFA_F_SECONDARY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 (prefix != addr || ifa->ifa_prefixlen < 32)) {
725 fib_magic(RTM_NEWROUTE, dev->flags&IFF_LOOPBACK ? RTN_LOCAL :
726 RTN_UNICAST, prefix, ifa->ifa_prefixlen, prim);
727
728 /* Add network specific broadcasts, when it takes a sense */
729 if (ifa->ifa_prefixlen < 31) {
730 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix, 32, prim);
731 fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix|~mask, 32, prim);
732 }
733 }
734}
735
736static void fib_del_ifaddr(struct in_ifaddr *ifa)
737{
738 struct in_device *in_dev = ifa->ifa_dev;
739 struct net_device *dev = in_dev->dev;
740 struct in_ifaddr *ifa1;
741 struct in_ifaddr *prim = ifa;
Al Viroa144ea42006-09-28 18:00:55 -0700742 __be32 brd = ifa->ifa_address|~ifa->ifa_mask;
743 __be32 any = ifa->ifa_address&ifa->ifa_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744#define LOCAL_OK 1
745#define BRD_OK 2
746#define BRD0_OK 4
747#define BRD1_OK 8
748 unsigned ok = 0;
749
750 if (!(ifa->ifa_flags&IFA_F_SECONDARY))
751 fib_magic(RTM_DELROUTE, dev->flags&IFF_LOOPBACK ? RTN_LOCAL :
752 RTN_UNICAST, any, ifa->ifa_prefixlen, prim);
753 else {
754 prim = inet_ifa_byprefix(in_dev, any, ifa->ifa_mask);
755 if (prim == NULL) {
756 printk(KERN_DEBUG "fib_del_ifaddr: bug: prim == NULL\n");
757 return;
758 }
759 }
760
761 /* Deletion is more complicated than add.
762 We should take care of not to delete too much :-)
763
764 Scan address list to be sure that addresses are really gone.
765 */
766
767 for (ifa1 = in_dev->ifa_list; ifa1; ifa1 = ifa1->ifa_next) {
768 if (ifa->ifa_local == ifa1->ifa_local)
769 ok |= LOCAL_OK;
770 if (ifa->ifa_broadcast == ifa1->ifa_broadcast)
771 ok |= BRD_OK;
772 if (brd == ifa1->ifa_broadcast)
773 ok |= BRD1_OK;
774 if (any == ifa1->ifa_broadcast)
775 ok |= BRD0_OK;
776 }
777
778 if (!(ok&BRD_OK))
779 fib_magic(RTM_DELROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim);
780 if (!(ok&BRD1_OK))
781 fib_magic(RTM_DELROUTE, RTN_BROADCAST, brd, 32, prim);
782 if (!(ok&BRD0_OK))
783 fib_magic(RTM_DELROUTE, RTN_BROADCAST, any, 32, prim);
784 if (!(ok&LOCAL_OK)) {
785 fib_magic(RTM_DELROUTE, RTN_LOCAL, ifa->ifa_local, 32, prim);
786
787 /* Check, that this local address finally disappeared. */
Denis V. Lunev226b0b42008-01-10 03:30:24 -0800788 if (inet_addr_type(dev->nd_net, ifa->ifa_local) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /* And the last, but not the least thing.
790 We must flush stray FIB entries.
791
792 First of all, we scan fib_info list searching
793 for stray nexthop entries, then ignite fib_flush.
794 */
795 if (fib_sync_down(ifa->ifa_local, NULL, 0))
Denis V. Lunev226b0b42008-01-10 03:30:24 -0800796 fib_flush(dev->nd_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 }
799#undef LOCAL_OK
800#undef BRD_OK
801#undef BRD0_OK
802#undef BRD1_OK
803}
804
Robert Olsson246955f2005-06-20 13:36:39 -0700805static void nl_fib_lookup(struct fib_result_nl *frn, struct fib_table *tb )
806{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900807
Robert Olsson246955f2005-06-20 13:36:39 -0700808 struct fib_result res;
Thomas Graf5f300892006-11-09 15:21:41 -0800809 struct flowi fl = { .mark = frn->fl_mark,
Thomas Graf47dcf0c2006-11-09 15:20:38 -0800810 .nl_u = { .ip4_u = { .daddr = frn->fl_addr,
Robert Olsson246955f2005-06-20 13:36:39 -0700811 .tos = frn->fl_tos,
812 .scope = frn->fl_scope } } };
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700813
Sergey Vlasov912a41a2007-04-27 02:17:19 -0700814#ifdef CONFIG_IP_MULTIPLE_TABLES
815 res.r = NULL;
816#endif
817
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700818 frn->err = -ENOENT;
Robert Olsson246955f2005-06-20 13:36:39 -0700819 if (tb) {
820 local_bh_disable();
821
822 frn->tb_id = tb->tb_id;
823 frn->err = tb->tb_lookup(tb, &fl, &res);
824
825 if (!frn->err) {
826 frn->prefixlen = res.prefixlen;
827 frn->nh_sel = res.nh_sel;
828 frn->type = res.type;
829 frn->scope = res.scope;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700830 fib_res_put(&res);
Robert Olsson246955f2005-06-20 13:36:39 -0700831 }
832 local_bh_enable();
833 }
834}
835
David S. Miller28f7b032007-10-10 21:32:39 -0700836static void nl_fib_input(struct sk_buff *skb)
Robert Olsson246955f2005-06-20 13:36:39 -0700837{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800838 struct net *net;
Robert Olsson246955f2005-06-20 13:36:39 -0700839 struct fib_result_nl *frn;
David S. Miller28f7b032007-10-10 21:32:39 -0700840 struct nlmsghdr *nlh;
Robert Olsson246955f2005-06-20 13:36:39 -0700841 struct fib_table *tb;
David S. Miller28f7b032007-10-10 21:32:39 -0700842 u32 pid;
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700843
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800844 net = skb->sk->sk_net;
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -0700845 nlh = nlmsg_hdr(skb);
Thomas Grafea865752005-12-01 14:30:00 -0800846 if (skb->len < NLMSG_SPACE(0) || skb->len < nlh->nlmsg_len ||
Denis V. Lunevd883a032007-12-21 02:01:53 -0800847 nlh->nlmsg_len < NLMSG_LENGTH(sizeof(*frn)))
Thomas Grafea865752005-12-01 14:30:00 -0800848 return;
Denis V. Lunevd883a032007-12-21 02:01:53 -0800849
850 skb = skb_clone(skb, GFP_KERNEL);
851 if (skb == NULL)
852 return;
853 nlh = nlmsg_hdr(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900854
Robert Olsson246955f2005-06-20 13:36:39 -0700855 frn = (struct fib_result_nl *) NLMSG_DATA(nlh);
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800856 tb = fib_get_table(net, frn->tb_id_in);
Robert Olsson246955f2005-06-20 13:36:39 -0700857
858 nl_fib_lookup(frn, tb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900859
Alexey Kuznetsov1194ed02007-04-25 13:07:28 -0700860 pid = NETLINK_CB(skb).pid; /* pid of sending process */
Robert Olsson246955f2005-06-20 13:36:39 -0700861 NETLINK_CB(skb).pid = 0; /* from kernel */
Patrick McHardyac6d4392005-08-14 19:29:52 -0700862 NETLINK_CB(skb).dst_group = 0; /* unicast */
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800863 netlink_unicast(net->ipv4.fibnl, skb, pid, MSG_DONTWAIT);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900864}
Robert Olsson246955f2005-06-20 13:36:39 -0700865
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800866static int nl_fib_lookup_init(struct net *net)
Robert Olsson246955f2005-06-20 13:36:39 -0700867{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800868 struct sock *sk;
869 sk = netlink_kernel_create(net, NETLINK_FIB_LOOKUP, 0,
870 nl_fib_input, NULL, THIS_MODULE);
871 if (sk == NULL)
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800872 return -EAFNOSUPPORT;
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800873 /* Don't hold an extra reference on the namespace */
874 put_net(sk->sk_net);
875 net->ipv4.fibnl = sk;
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800876 return 0;
877}
878
879static void nl_fib_lookup_exit(struct net *net)
880{
Denis V. Lunev6bd48fc2008-01-10 03:28:55 -0800881 /* At the last minute lie and say this is a socket for the
882 * initial network namespace. So the socket will be safe to free.
883 */
884 net->ipv4.fibnl->sk_net = get_net(&init_net);
885 sock_put(net->ipv4.fibnl);
Robert Olsson246955f2005-06-20 13:36:39 -0700886}
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888static void fib_disable_ip(struct net_device *dev, int force)
889{
890 if (fib_sync_down(0, dev, force))
Denis V. Lunev226b0b42008-01-10 03:30:24 -0800891 fib_flush(dev->nd_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 rt_cache_flush(0);
893 arp_ifdown(dev);
894}
895
896static int fib_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
897{
898 struct in_ifaddr *ifa = (struct in_ifaddr*)ptr;
899
900 switch (event) {
901 case NETDEV_UP:
902 fib_add_ifaddr(ifa);
903#ifdef CONFIG_IP_ROUTE_MULTIPATH
904 fib_sync_up(ifa->ifa_dev->dev);
905#endif
906 rt_cache_flush(-1);
907 break;
908 case NETDEV_DOWN:
909 fib_del_ifaddr(ifa);
Jayachandran C9fcc2e82005-10-27 15:10:01 -0700910 if (ifa->ifa_dev->ifa_list == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* Last address was deleted from this interface.
912 Disable IP.
913 */
914 fib_disable_ip(ifa->ifa_dev->dev, 1);
915 } else {
916 rt_cache_flush(-1);
917 }
918 break;
919 }
920 return NOTIFY_DONE;
921}
922
923static int fib_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
924{
925 struct net_device *dev = ptr;
Herbert Xue5ed6392005-10-03 14:35:55 -0700926 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (event == NETDEV_UNREGISTER) {
929 fib_disable_ip(dev, 2);
930 return NOTIFY_DONE;
931 }
932
933 if (!in_dev)
934 return NOTIFY_DONE;
935
936 switch (event) {
937 case NETDEV_UP:
938 for_ifa(in_dev) {
939 fib_add_ifaddr(ifa);
940 } endfor_ifa(in_dev);
941#ifdef CONFIG_IP_ROUTE_MULTIPATH
942 fib_sync_up(dev);
943#endif
944 rt_cache_flush(-1);
945 break;
946 case NETDEV_DOWN:
947 fib_disable_ip(dev, 0);
948 break;
949 case NETDEV_CHANGEMTU:
950 case NETDEV_CHANGE:
951 rt_cache_flush(0);
952 break;
953 }
954 return NOTIFY_DONE;
955}
956
957static struct notifier_block fib_inetaddr_notifier = {
958 .notifier_call =fib_inetaddr_event,
959};
960
961static struct notifier_block fib_netdev_notifier = {
962 .notifier_call =fib_netdev_event,
963};
964
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800965static int __net_init ip_fib_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700967 unsigned int i;
968
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800969 net->ipv4.fib_table_hash = kzalloc(
970 sizeof(struct hlist_head)*FIB_TABLE_HASHSZ, GFP_KERNEL);
971 if (net->ipv4.fib_table_hash == NULL)
972 return -ENOMEM;
973
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700974 for (i = 0; i < FIB_TABLE_HASHSZ; i++)
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800975 INIT_HLIST_HEAD(&net->ipv4.fib_table_hash[i]);
Pavel Emelyanovc3e9a352007-11-06 23:34:04 -0800976
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800977 return fib4_rules_init(net);
978}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800980static void __net_exit ip_fib_net_exit(struct net *net)
981{
982 unsigned int i;
Thomas Graf63f34442007-03-22 11:55:17 -0700983
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800984#ifdef CONFIG_IP_MULTIPLE_TABLES
985 fib4_rules_exit(net);
986#endif
987
988 for (i = 0; i < FIB_TABLE_HASHSZ; i++) {
989 struct fib_table *tb;
990 struct hlist_head *head;
991 struct hlist_node *node, *tmp;
992
Denis V. Luneve4aef8a2008-01-10 03:28:24 -0800993 head = &net->ipv4.fib_table_hash[i];
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800994 hlist_for_each_entry_safe(tb, node, tmp, head, tb_hlist) {
995 hlist_del(node);
996 tb->tb_flush(tb);
997 kfree(tb);
998 }
999 }
Denis V. Luneve4aef8a2008-01-10 03:28:24 -08001000 kfree(net->ipv4.fib_table_hash);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001001}
1002
1003static int __net_init fib_net_init(struct net *net)
1004{
1005 int error;
1006
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001007 error = ip_fib_net_init(net);
1008 if (error < 0)
1009 goto out;
1010 error = nl_fib_lookup_init(net);
1011 if (error < 0)
1012 goto out_nlfl;
1013 error = fib_proc_init(net);
1014 if (error < 0)
1015 goto out_proc;
1016out:
1017 return error;
1018
1019out_proc:
1020 nl_fib_lookup_exit(net);
1021out_nlfl:
1022 ip_fib_net_exit(net);
1023 goto out;
1024}
1025
1026static void __net_exit fib_net_exit(struct net *net)
1027{
1028 fib_proc_exit(net);
1029 nl_fib_lookup_exit(net);
1030 ip_fib_net_exit(net);
1031}
1032
1033static struct pernet_operations fib_net_ops = {
1034 .init = fib_net_init,
1035 .exit = fib_net_exit,
1036};
1037
1038void __init ip_fib_init(void)
1039{
Thomas Graf63f34442007-03-22 11:55:17 -07001040 rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL);
1041 rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL);
1042 rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -08001043
1044 register_pernet_subsys(&fib_net_ops);
1045 register_netdevice_notifier(&fib_netdev_notifier);
1046 register_inetaddr_notifier(&fib_inetaddr_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
1049EXPORT_SYMBOL(inet_addr_type);
Laszlo Attila Toth05538112007-12-04 23:28:46 -08001050EXPORT_SYMBOL(inet_dev_addr_type);
Sean Heftya1e87332006-06-17 20:37:28 -07001051EXPORT_SYMBOL(ip_dev_find);