blob: ba52f399a898915cc109bd6338c82b6c6ad487ef [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: semantics.
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 <asm/uaccess.h>
17#include <asm/system.h>
18#include <linux/bitops.h>
19#include <linux/types.h>
20#include <linux/kernel.h>
21#include <linux/jiffies.h>
22#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>
31#include <linux/if_arp.h>
32#include <linux/proc_fs.h>
33#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020037#include <net/arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <net/ip.h>
39#include <net/protocol.h>
40#include <net/route.h>
41#include <net/tcp.h>
42#include <net/sock.h>
43#include <net/ip_fib.h>
Thomas Graff21c7bc2006-08-15 00:34:17 -070044#include <net/netlink.h>
Thomas Graf4e902c52006-08-17 18:14:52 -070045#include <net/nexthop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include "fib_lookup.h"
48
Stephen Hemminger832b4c52006-08-29 16:48:09 -070049static DEFINE_SPINLOCK(fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static struct hlist_head *fib_info_hash;
51static struct hlist_head *fib_info_laddrhash;
52static unsigned int fib_hash_size;
53static unsigned int fib_info_cnt;
54
55#define DEVINDEX_HASHBITS 8
56#define DEVINDEX_HASHSIZE (1U << DEVINDEX_HASHBITS)
57static struct hlist_head fib_info_devhash[DEVINDEX_HASHSIZE];
58
59#ifdef CONFIG_IP_ROUTE_MULTIPATH
60
61static DEFINE_SPINLOCK(fib_multipath_lock);
62
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000063#define for_nexthops(fi) { \
64 int nhsel; const struct fib_nh *nh; \
65 for (nhsel = 0, nh = (fi)->fib_nh; \
66 nhsel < (fi)->fib_nhs; \
67 nh++, nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000069#define change_nexthops(fi) { \
70 int nhsel; struct fib_nh *nexthop_nh; \
71 for (nhsel = 0, nexthop_nh = (struct fib_nh *)((fi)->fib_nh); \
72 nhsel < (fi)->fib_nhs; \
73 nexthop_nh++, nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#else /* CONFIG_IP_ROUTE_MULTIPATH */
76
77/* Hope, that gcc will optimize it to get rid of dummy loop */
78
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000079#define for_nexthops(fi) { \
80 int nhsel; const struct fib_nh *nh = (fi)->fib_nh; \
81 for (nhsel = 0; nhsel < 1; nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000083#define change_nexthops(fi) { \
84 int nhsel; \
85 struct fib_nh *nexthop_nh = (struct fib_nh *)((fi)->fib_nh); \
86 for (nhsel = 0; nhsel < 1; nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#endif /* CONFIG_IP_ROUTE_MULTIPATH */
89
90#define endfor_nexthops(fi) }
91
92
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090093static const struct
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 int error;
96 u8 scope;
Thomas Grafa0ee18b2007-03-24 20:32:54 -070097} fib_props[RTN_MAX + 1] = {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000098 [RTN_UNSPEC] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .error = 0,
100 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000101 },
102 [RTN_UNICAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .error = 0,
104 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000105 },
106 [RTN_LOCAL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 .error = 0,
108 .scope = RT_SCOPE_HOST,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000109 },
110 [RTN_BROADCAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .error = 0,
112 .scope = RT_SCOPE_LINK,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000113 },
114 [RTN_ANYCAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .error = 0,
116 .scope = RT_SCOPE_LINK,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000117 },
118 [RTN_MULTICAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .error = 0,
120 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000121 },
122 [RTN_BLACKHOLE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .error = -EINVAL,
124 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000125 },
126 [RTN_UNREACHABLE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .error = -EHOSTUNREACH,
128 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000129 },
130 [RTN_PROHIBIT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .error = -EACCES,
132 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000133 },
134 [RTN_THROW] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .error = -EAGAIN,
136 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000137 },
138 [RTN_NAT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .error = -EINVAL,
140 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000141 },
142 [RTN_XRESOLVE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .error = -EINVAL,
144 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000145 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148
149/* Release a nexthop info record */
150
151void free_fib_info(struct fib_info *fi)
152{
153 if (fi->fib_dead == 0) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000154 pr_warning("Freeing alive fib_info %p\n", fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return;
156 }
157 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800158 if (nexthop_nh->nh_dev)
159 dev_put(nexthop_nh->nh_dev);
160 nexthop_nh->nh_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 } endfor_nexthops(fi);
162 fib_info_cnt--;
Denis V. Lunev57d7a602008-04-16 02:00:50 -0700163 release_net(fi->fib_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 kfree(fi);
165}
166
167void fib_release_info(struct fib_info *fi)
168{
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700169 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (fi && --fi->fib_treeref == 0) {
171 hlist_del(&fi->fib_hash);
172 if (fi->fib_prefsrc)
173 hlist_del(&fi->fib_lhash);
174 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800175 if (!nexthop_nh->nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 continue;
David S. Miller71fceff2010-01-15 01:16:40 -0800177 hlist_del(&nexthop_nh->nh_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 } endfor_nexthops(fi)
179 fi->fib_dead = 1;
180 fib_info_put(fi);
181 }
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700182 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000185static inline int nh_comp(const struct fib_info *fi, const struct fib_info *ofi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 const struct fib_nh *onh = ofi->fib_nh;
188
189 for_nexthops(fi) {
190 if (nh->nh_oif != onh->nh_oif ||
191 nh->nh_gw != onh->nh_gw ||
192 nh->nh_scope != onh->nh_scope ||
193#ifdef CONFIG_IP_ROUTE_MULTIPATH
194 nh->nh_weight != onh->nh_weight ||
195#endif
196#ifdef CONFIG_NET_CLS_ROUTE
197 nh->nh_tclassid != onh->nh_tclassid ||
198#endif
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000199 ((nh->nh_flags ^ onh->nh_flags) & ~RTNH_F_DEAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -1;
201 onh++;
202 } endfor_nexthops(fi);
203 return 0;
204}
205
David S. Miller88ebc722008-01-12 21:49:01 -0800206static inline unsigned int fib_devindex_hashfn(unsigned int val)
207{
208 unsigned int mask = DEVINDEX_HASHSIZE - 1;
209
210 return (val ^
211 (val >> DEVINDEX_HASHBITS) ^
212 (val >> (DEVINDEX_HASHBITS * 2))) & mask;
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215static inline unsigned int fib_info_hashfn(const struct fib_info *fi)
216{
217 unsigned int mask = (fib_hash_size - 1);
218 unsigned int val = fi->fib_nhs;
219
220 val ^= fi->fib_protocol;
Al Viro81f7bf62006-09-27 18:40:00 -0700221 val ^= (__force u32)fi->fib_prefsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 val ^= fi->fib_priority;
David S. Miller88ebc722008-01-12 21:49:01 -0800223 for_nexthops(fi) {
224 val ^= fib_devindex_hashfn(nh->nh_oif);
225 } endfor_nexthops(fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return (val ^ (val >> 7) ^ (val >> 12)) & mask;
228}
229
230static struct fib_info *fib_find_info(const struct fib_info *nfi)
231{
232 struct hlist_head *head;
233 struct hlist_node *node;
234 struct fib_info *fi;
235 unsigned int hash;
236
237 hash = fib_info_hashfn(nfi);
238 head = &fib_info_hash[hash];
239
240 hlist_for_each_entry(fi, node, head, fib_hash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800241 if (!net_eq(fi->fib_net, nfi->fib_net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -0800242 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (fi->fib_nhs != nfi->fib_nhs)
244 continue;
245 if (nfi->fib_protocol == fi->fib_protocol &&
246 nfi->fib_prefsrc == fi->fib_prefsrc &&
247 nfi->fib_priority == fi->fib_priority &&
248 memcmp(nfi->fib_metrics, fi->fib_metrics,
249 sizeof(fi->fib_metrics)) == 0 &&
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000250 ((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_F_DEAD) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
252 return fi;
253 }
254
255 return NULL;
256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* Check, that the gateway is already configured.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000259 * Used only by redirect accept routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Al Virod878e72e2006-09-26 22:18:13 -0700261int ip_fib_check_default(__be32 gw, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 struct hlist_head *head;
264 struct hlist_node *node;
265 struct fib_nh *nh;
266 unsigned int hash;
267
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700268 spin_lock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 hash = fib_devindex_hashfn(dev->ifindex);
271 head = &fib_info_devhash[hash];
272 hlist_for_each_entry(nh, node, head, nh_hash) {
273 if (nh->nh_dev == dev &&
274 nh->nh_gw == gw &&
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000275 !(nh->nh_flags & RTNH_F_DEAD)) {
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700276 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278 }
279 }
280
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700281 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 return -1;
284}
285
Thomas Graf339bf982006-11-10 14:10:15 -0800286static inline size_t fib_nlmsg_size(struct fib_info *fi)
287{
288 size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg))
289 + nla_total_size(4) /* RTA_TABLE */
290 + nla_total_size(4) /* RTA_DST */
291 + nla_total_size(4) /* RTA_PRIORITY */
292 + nla_total_size(4); /* RTA_PREFSRC */
293
294 /* space for nested metrics */
295 payload += nla_total_size((RTAX_MAX * nla_total_size(4)));
296
297 if (fi->fib_nhs) {
298 /* Also handles the special case fib_nhs == 1 */
299
300 /* each nexthop is packed in an attribute */
301 size_t nhsize = nla_total_size(sizeof(struct rtnexthop));
302
303 /* may contain flow and gateway attribute */
304 nhsize += 2 * nla_total_size(4);
305
306 /* all nexthops are packed in a nested attribute */
307 payload += nla_total_size(fi->fib_nhs * nhsize);
308 }
309
310 return payload;
311}
312
Al Viro81f7bf62006-09-27 18:40:00 -0700313void rtmsg_fib(int event, __be32 key, struct fib_alias *fa,
Milan Kocianb8f55832007-05-23 14:55:06 -0700314 int dst_len, u32 tb_id, struct nl_info *info,
315 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct sk_buff *skb;
Thomas Graf4e902c52006-08-17 18:14:52 -0700318 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700319 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Thomas Graf339bf982006-11-10 14:10:15 -0800321 skb = nlmsg_new(fib_nlmsg_size(fa->fa_info), GFP_KERNEL);
Thomas Graff21c7bc2006-08-15 00:34:17 -0700322 if (skb == NULL)
323 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Thomas Graf4e902c52006-08-17 18:14:52 -0700325 err = fib_dump_info(skb, info->pid, seq, event, tb_id,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700326 fa->fa_type, fa->fa_scope, key, dst_len,
Milan Kocianb8f55832007-05-23 14:55:06 -0700327 fa->fa_tos, fa->fa_info, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -0800328 if (err < 0) {
329 /* -EMSGSIZE implies BUG in fib_nlmsg_size() */
330 WARN_ON(err == -EMSGSIZE);
331 kfree_skb(skb);
332 goto errout;
333 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800334 rtnl_notify(skb, info->nl_net, info->pid, RTNLGRP_IPV4_ROUTE,
335 info->nlh, GFP_KERNEL);
336 return;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700337errout:
338 if (err < 0)
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800339 rtnl_set_sk_err(info->nl_net, RTNLGRP_IPV4_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/* Return the first fib alias matching TOS with
343 * priority less than or equal to PRIO.
344 */
345struct fib_alias *fib_find_alias(struct list_head *fah, u8 tos, u32 prio)
346{
347 if (fah) {
348 struct fib_alias *fa;
349 list_for_each_entry(fa, fah, fa_list) {
350 if (fa->fa_tos > tos)
351 continue;
352 if (fa->fa_info->fib_priority >= prio ||
353 fa->fa_tos < tos)
354 return fa;
355 }
356 }
357 return NULL;
358}
359
360int fib_detect_death(struct fib_info *fi, int order,
Denis V. Lunevc17860a2007-12-08 00:22:13 -0800361 struct fib_info **last_resort, int *last_idx, int dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 struct neighbour *n;
364 int state = NUD_NONE;
365
366 n = neigh_lookup(&arp_tbl, &fi->fib_nh[0].nh_gw, fi->fib_dev);
367 if (n) {
368 state = n->nud_state;
369 neigh_release(n);
370 }
Jianjun Kongd9319102008-11-03 00:23:42 -0800371 if (state == NUD_REACHABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000373 if ((state & NUD_VALID) && order != dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000375 if ((state & NUD_VALID) ||
376 (*last_idx < 0 && order > dflt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *last_resort = fi;
378 *last_idx = order;
379 }
380 return 1;
381}
382
383#ifdef CONFIG_IP_ROUTE_MULTIPATH
384
Thomas Graf4e902c52006-08-17 18:14:52 -0700385static int fib_count_nexthops(struct rtnexthop *rtnh, int remaining)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
387 int nhs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Thomas Graf4e902c52006-08-17 18:14:52 -0700389 while (rtnh_ok(rtnh, remaining)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 nhs++;
Thomas Graf4e902c52006-08-17 18:14:52 -0700391 rtnh = rtnh_next(rtnh, &remaining);
392 }
393
394 /* leftover implies invalid nexthop configuration, discard it */
395 return remaining > 0 ? 0 : nhs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Thomas Graf4e902c52006-08-17 18:14:52 -0700398static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh,
399 int remaining, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 change_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700402 int attrlen;
403
404 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700406
David S. Miller71fceff2010-01-15 01:16:40 -0800407 nexthop_nh->nh_flags =
408 (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags;
409 nexthop_nh->nh_oif = rtnh->rtnh_ifindex;
410 nexthop_nh->nh_weight = rtnh->rtnh_hops + 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700411
412 attrlen = rtnh_attrlen(rtnh);
413 if (attrlen > 0) {
414 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
415
416 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
David S. Miller71fceff2010-01-15 01:16:40 -0800417 nexthop_nh->nh_gw = nla ? nla_get_be32(nla) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#ifdef CONFIG_NET_CLS_ROUTE
Thomas Graf4e902c52006-08-17 18:14:52 -0700419 nla = nla_find(attrs, attrlen, RTA_FLOW);
David S. Miller71fceff2010-01-15 01:16:40 -0800420 nexthop_nh->nh_tclassid = nla ? nla_get_u32(nla) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#endif
422 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700423
424 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 } endfor_nexthops(fi);
Thomas Graf4e902c52006-08-17 18:14:52 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428}
429
430#endif
431
Thomas Graf4e902c52006-08-17 18:14:52 -0700432int fib_nh_match(struct fib_config *cfg, struct fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700435 struct rtnexthop *rtnh;
436 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#endif
438
Thomas Graf4e902c52006-08-17 18:14:52 -0700439 if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return 1;
441
Thomas Graf4e902c52006-08-17 18:14:52 -0700442 if (cfg->fc_oif || cfg->fc_gw) {
443 if ((!cfg->fc_oif || cfg->fc_oif == fi->fib_nh->nh_oif) &&
444 (!cfg->fc_gw || cfg->fc_gw == fi->fib_nh->nh_gw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return 0;
446 return 1;
447 }
448
449#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700450 if (cfg->fc_mp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700452
453 rtnh = cfg->fc_mp;
454 remaining = cfg->fc_mp_len;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 for_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700457 int attrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Thomas Graf4e902c52006-08-17 18:14:52 -0700459 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700461
462 if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->nh_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700464
465 attrlen = rtnh_attrlen(rtnh);
466 if (attrlen < 0) {
467 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
468
469 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
Al Viro17fb2c62006-09-26 22:15:25 -0700470 if (nla && nla_get_be32(nla) != nh->nh_gw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 1;
472#ifdef CONFIG_NET_CLS_ROUTE
Thomas Graf4e902c52006-08-17 18:14:52 -0700473 nla = nla_find(attrs, attrlen, RTA_FLOW);
474 if (nla && nla_get_u32(nla) != nh->nh_tclassid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return 1;
476#endif
477 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700478
479 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 } endfor_nexthops(fi);
481#endif
482 return 0;
483}
484
485
486/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000487 * Picture
488 * -------
489 *
490 * Semantics of nexthop is very messy by historical reasons.
491 * We have to take into account, that:
492 * a) gateway can be actually local interface address,
493 * so that gatewayed route is direct.
494 * b) gateway must be on-link address, possibly
495 * described not by an ifaddr, but also by a direct route.
496 * c) If both gateway and interface are specified, they should not
497 * contradict.
498 * d) If we use tunnel routes, gateway could be not on-link.
499 *
500 * Attempt to reconcile all of these (alas, self-contradictory) conditions
501 * results in pretty ugly and hairy code with obscure logic.
502 *
503 * I chose to generalized it instead, so that the size
504 * of code does not increase practically, but it becomes
505 * much more general.
506 * Every prefix is assigned a "scope" value: "host" is local address,
507 * "link" is direct route,
508 * [ ... "site" ... "interior" ... ]
509 * and "universe" is true gateway route with global meaning.
510 *
511 * Every prefix refers to a set of "nexthop"s (gw, oif),
512 * where gw must have narrower scope. This recursion stops
513 * when gw has LOCAL scope or if "nexthop" is declared ONLINK,
514 * which means that gw is forced to be on link.
515 *
516 * Code is still hairy, but now it is apparently logically
517 * consistent and very flexible. F.e. as by-product it allows
518 * to co-exists in peace independent exterior and interior
519 * routing processes.
520 *
521 * Normally it looks as following.
522 *
523 * {universe prefix} -> (gw, oif) [scope link]
524 * |
525 * |-> {link prefix} -> (gw, oif) [scope local]
526 * |
527 * |-> {local prefix} (terminal node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Thomas Graf4e902c52006-08-17 18:14:52 -0700529static int fib_check_nh(struct fib_config *cfg, struct fib_info *fi,
530 struct fib_nh *nh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 int err;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800533 struct net *net;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000534 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Denis V. Lunev86167a32008-01-21 17:34:00 -0800536 net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (nh->nh_gw) {
538 struct fib_result res;
539
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000540 if (nh->nh_flags & RTNH_F_ONLINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Thomas Graf4e902c52006-08-17 18:14:52 -0700542 if (cfg->fc_scope >= RT_SCOPE_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -EINVAL;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800544 if (inet_addr_type(net, nh->nh_gw) != RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -EINVAL;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000546 dev = __dev_get_by_index(net, nh->nh_oif);
547 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -ENODEV;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000549 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return -ENETDOWN;
551 nh->nh_dev = dev;
552 dev_hold(dev);
553 nh->nh_scope = RT_SCOPE_LINK;
554 return 0;
555 }
556 {
Thomas Graf4e902c52006-08-17 18:14:52 -0700557 struct flowi fl = {
558 .nl_u = {
559 .ip4_u = {
560 .daddr = nh->nh_gw,
561 .scope = cfg->fc_scope + 1,
562 },
563 },
564 .oif = nh->nh_oif,
565 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /* It is not necessary, but requires a bit of thinking */
568 if (fl.fl4_scope < RT_SCOPE_LINK)
569 fl.fl4_scope = RT_SCOPE_LINK;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000570 err = fib_lookup(net, &fl, &res);
571 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return err;
573 }
574 err = -EINVAL;
575 if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
576 goto out;
577 nh->nh_scope = res.scope;
578 nh->nh_oif = FIB_RES_OIF(res);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000579 nh->nh_dev = dev = FIB_RES_DEV(res);
580 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 goto out;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000582 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 err = -ENETDOWN;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000584 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 goto out;
586 err = 0;
587out:
588 fib_res_put(&res);
589 return err;
590 } else {
591 struct in_device *in_dev;
592
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000593 if (nh->nh_flags & (RTNH_F_PERVASIVE | RTNH_F_ONLINK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return -EINVAL;
595
Denis V. Lunev86167a32008-01-21 17:34:00 -0800596 in_dev = inetdev_by_index(net, nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (in_dev == NULL)
598 return -ENODEV;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000599 if (!(in_dev->dev->flags & IFF_UP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 in_dev_put(in_dev);
601 return -ENETDOWN;
602 }
603 nh->nh_dev = in_dev->dev;
604 dev_hold(nh->nh_dev);
605 nh->nh_scope = RT_SCOPE_HOST;
606 in_dev_put(in_dev);
607 }
608 return 0;
609}
610
Al Viro81f7bf62006-09-27 18:40:00 -0700611static inline unsigned int fib_laddr_hashfn(__be32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 unsigned int mask = (fib_hash_size - 1);
614
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000615 return ((__force u32)val ^
616 ((__force u32)val >> 7) ^
617 ((__force u32)val >> 14)) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620static struct hlist_head *fib_hash_alloc(int bytes)
621{
622 if (bytes <= PAGE_SIZE)
Joonwoo Park88f83492007-11-26 23:29:32 +0800623 return kzalloc(bytes, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 else
625 return (struct hlist_head *)
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000626 __get_free_pages(GFP_KERNEL | __GFP_ZERO,
627 get_order(bytes));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630static void fib_hash_free(struct hlist_head *hash, int bytes)
631{
632 if (!hash)
633 return;
634
635 if (bytes <= PAGE_SIZE)
636 kfree(hash);
637 else
638 free_pages((unsigned long) hash, get_order(bytes));
639}
640
641static void fib_hash_move(struct hlist_head *new_info_hash,
642 struct hlist_head *new_laddrhash,
643 unsigned int new_size)
644{
David S. Millerb7656e72005-08-05 04:12:48 -0700645 struct hlist_head *old_info_hash, *old_laddrhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 unsigned int old_size = fib_hash_size;
David S. Millerb7656e72005-08-05 04:12:48 -0700647 unsigned int i, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700649 spin_lock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -0700650 old_info_hash = fib_info_hash;
651 old_laddrhash = fib_info_laddrhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 fib_hash_size = new_size;
653
654 for (i = 0; i < old_size; i++) {
655 struct hlist_head *head = &fib_info_hash[i];
656 struct hlist_node *node, *n;
657 struct fib_info *fi;
658
659 hlist_for_each_entry_safe(fi, node, n, head, fib_hash) {
660 struct hlist_head *dest;
661 unsigned int new_hash;
662
663 hlist_del(&fi->fib_hash);
664
665 new_hash = fib_info_hashfn(fi);
666 dest = &new_info_hash[new_hash];
667 hlist_add_head(&fi->fib_hash, dest);
668 }
669 }
670 fib_info_hash = new_info_hash;
671
672 for (i = 0; i < old_size; i++) {
673 struct hlist_head *lhead = &fib_info_laddrhash[i];
674 struct hlist_node *node, *n;
675 struct fib_info *fi;
676
677 hlist_for_each_entry_safe(fi, node, n, lhead, fib_lhash) {
678 struct hlist_head *ldest;
679 unsigned int new_hash;
680
681 hlist_del(&fi->fib_lhash);
682
683 new_hash = fib_laddr_hashfn(fi->fib_prefsrc);
684 ldest = &new_laddrhash[new_hash];
685 hlist_add_head(&fi->fib_lhash, ldest);
686 }
687 }
688 fib_info_laddrhash = new_laddrhash;
689
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700690 spin_unlock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -0700691
692 bytes = old_size * sizeof(struct hlist_head *);
693 fib_hash_free(old_info_hash, bytes);
694 fib_hash_free(old_laddrhash, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Thomas Graf4e902c52006-08-17 18:14:52 -0700697struct fib_info *fib_create_info(struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 int err;
700 struct fib_info *fi = NULL;
701 struct fib_info *ofi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int nhs = 1;
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800703 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* Fast check to catch the most weird cases */
Thomas Graf4e902c52006-08-17 18:14:52 -0700706 if (fib_props[cfg->fc_type].scope > cfg->fc_scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 goto err_inval;
708
709#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700710 if (cfg->fc_mp) {
711 nhs = fib_count_nexthops(cfg->fc_mp, cfg->fc_mp_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (nhs == 0)
713 goto err_inval;
714 }
715#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 err = -ENOBUFS;
718 if (fib_info_cnt >= fib_hash_size) {
719 unsigned int new_size = fib_hash_size << 1;
720 struct hlist_head *new_info_hash;
721 struct hlist_head *new_laddrhash;
722 unsigned int bytes;
723
724 if (!new_size)
725 new_size = 1;
726 bytes = new_size * sizeof(struct hlist_head *);
727 new_info_hash = fib_hash_alloc(bytes);
728 new_laddrhash = fib_hash_alloc(bytes);
729 if (!new_info_hash || !new_laddrhash) {
730 fib_hash_free(new_info_hash, bytes);
731 fib_hash_free(new_laddrhash, bytes);
Joonwoo Park88f83492007-11-26 23:29:32 +0800732 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 fib_hash_move(new_info_hash, new_laddrhash, new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 if (!fib_hash_size)
736 goto failure;
737 }
738
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700739 fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct fib_nh), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (fi == NULL)
741 goto failure;
742 fib_info_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Denis V. Lunev57d7a602008-04-16 02:00:50 -0700744 fi->fib_net = hold_net(net);
Thomas Graf4e902c52006-08-17 18:14:52 -0700745 fi->fib_protocol = cfg->fc_protocol;
746 fi->fib_flags = cfg->fc_flags;
747 fi->fib_priority = cfg->fc_priority;
748 fi->fib_prefsrc = cfg->fc_prefsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 fi->fib_nhs = nhs;
751 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800752 nexthop_nh->nh_parent = fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 } endfor_nexthops(fi)
754
Thomas Graf4e902c52006-08-17 18:14:52 -0700755 if (cfg->fc_mx) {
756 struct nlattr *nla;
757 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Thomas Graf4e902c52006-08-17 18:14:52 -0700759 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200760 int type = nla_type(nla);
Thomas Graf4e902c52006-08-17 18:14:52 -0700761
762 if (type) {
763 if (type > RTAX_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 goto err_inval;
Thomas Graf4e902c52006-08-17 18:14:52 -0700765 fi->fib_metrics[type - 1] = nla_get_u32(nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Thomas Graf4e902c52006-08-17 18:14:52 -0700770 if (cfg->fc_mp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700772 err = fib_get_nhs(fi, cfg->fc_mp, cfg->fc_mp_len, cfg);
773 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto failure;
Thomas Graf4e902c52006-08-17 18:14:52 -0700775 if (cfg->fc_oif && fi->fib_nh->nh_oif != cfg->fc_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 goto err_inval;
Thomas Graf4e902c52006-08-17 18:14:52 -0700777 if (cfg->fc_gw && fi->fib_nh->nh_gw != cfg->fc_gw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto err_inval;
779#ifdef CONFIG_NET_CLS_ROUTE
Thomas Graf4e902c52006-08-17 18:14:52 -0700780 if (cfg->fc_flow && fi->fib_nh->nh_tclassid != cfg->fc_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 goto err_inval;
782#endif
783#else
784 goto err_inval;
785#endif
786 } else {
787 struct fib_nh *nh = fi->fib_nh;
Thomas Graf4e902c52006-08-17 18:14:52 -0700788
789 nh->nh_oif = cfg->fc_oif;
790 nh->nh_gw = cfg->fc_gw;
791 nh->nh_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#ifdef CONFIG_NET_CLS_ROUTE
Thomas Graf4e902c52006-08-17 18:14:52 -0700793 nh->nh_tclassid = cfg->fc_flow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795#ifdef CONFIG_IP_ROUTE_MULTIPATH
796 nh->nh_weight = 1;
797#endif
798 }
799
Thomas Graf4e902c52006-08-17 18:14:52 -0700800 if (fib_props[cfg->fc_type].error) {
801 if (cfg->fc_gw || cfg->fc_oif || cfg->fc_mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto err_inval;
803 goto link_it;
804 }
805
Thomas Graf4e902c52006-08-17 18:14:52 -0700806 if (cfg->fc_scope > RT_SCOPE_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 goto err_inval;
808
Thomas Graf4e902c52006-08-17 18:14:52 -0700809 if (cfg->fc_scope == RT_SCOPE_HOST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct fib_nh *nh = fi->fib_nh;
811
812 /* Local address is added. */
813 if (nhs != 1 || nh->nh_gw)
814 goto err_inval;
815 nh->nh_scope = RT_SCOPE_NOWHERE;
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800816 nh->nh_dev = dev_get_by_index(net, fi->fib_nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 err = -ENODEV;
818 if (nh->nh_dev == NULL)
819 goto failure;
820 } else {
821 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000822 err = fib_check_nh(cfg, fi, nexthop_nh);
823 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto failure;
825 } endfor_nexthops(fi)
826 }
827
828 if (fi->fib_prefsrc) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700829 if (cfg->fc_type != RTN_LOCAL || !cfg->fc_dst ||
830 fi->fib_prefsrc != cfg->fc_dst)
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800831 if (inet_addr_type(net, fi->fib_prefsrc) != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto err_inval;
833 }
834
835link_it:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000836 ofi = fib_find_info(fi);
837 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 fi->fib_dead = 1;
839 free_fib_info(fi);
840 ofi->fib_treeref++;
841 return ofi;
842 }
843
844 fi->fib_treeref++;
845 atomic_inc(&fi->fib_clntref);
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700846 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 hlist_add_head(&fi->fib_hash,
848 &fib_info_hash[fib_info_hashfn(fi)]);
849 if (fi->fib_prefsrc) {
850 struct hlist_head *head;
851
852 head = &fib_info_laddrhash[fib_laddr_hashfn(fi->fib_prefsrc)];
853 hlist_add_head(&fi->fib_lhash, head);
854 }
855 change_nexthops(fi) {
856 struct hlist_head *head;
857 unsigned int hash;
858
David S. Miller71fceff2010-01-15 01:16:40 -0800859 if (!nexthop_nh->nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 continue;
David S. Miller71fceff2010-01-15 01:16:40 -0800861 hash = fib_devindex_hashfn(nexthop_nh->nh_dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 head = &fib_info_devhash[hash];
David S. Miller71fceff2010-01-15 01:16:40 -0800863 hlist_add_head(&nexthop_nh->nh_hash, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 } endfor_nexthops(fi)
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700865 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return fi;
867
868err_inval:
869 err = -EINVAL;
870
871failure:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900872 if (fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 fi->fib_dead = 1;
874 free_fib_info(fi);
875 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700876
877 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Robert Olssone5b43762005-08-25 13:01:03 -0700880/* Note! fib_semantic_match intentionally uses RCU list functions. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881int fib_semantic_match(struct list_head *head, const struct flowi *flp,
Rami Rosene204a342009-05-18 01:19:12 +0000882 struct fib_result *res, int prefixlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 struct fib_alias *fa;
885 int nh_sel = 0;
886
Robert Olssone5b43762005-08-25 13:01:03 -0700887 list_for_each_entry_rcu(fa, head, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 int err;
889
890 if (fa->fa_tos &&
891 fa->fa_tos != flp->fl4_tos)
892 continue;
893
894 if (fa->fa_scope < flp->fl4_scope)
895 continue;
896
897 fa->fa_state |= FA_S_ACCESSED;
898
899 err = fib_props[fa->fa_type].error;
900 if (err == 0) {
901 struct fib_info *fi = fa->fa_info;
902
903 if (fi->fib_flags & RTNH_F_DEAD)
904 continue;
905
906 switch (fa->fa_type) {
907 case RTN_UNICAST:
908 case RTN_LOCAL:
909 case RTN_BROADCAST:
910 case RTN_ANYCAST:
911 case RTN_MULTICAST:
912 for_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000913 if (nh->nh_flags & RTNH_F_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 continue;
915 if (!flp->oif || flp->oif == nh->nh_oif)
916 break;
917 }
918#ifdef CONFIG_IP_ROUTE_MULTIPATH
919 if (nhsel < fi->fib_nhs) {
920 nh_sel = nhsel;
921 goto out_fill_res;
922 }
923#else
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000924 if (nhsel < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 goto out_fill_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926#endif
927 endfor_nexthops(fi);
928 continue;
929
930 default:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000931 pr_warning("fib_semantic_match bad type %#x\n",
932 fa->fa_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936 return err;
937 }
938 return 1;
939
940out_fill_res:
941 res->prefixlen = prefixlen;
942 res->nh_sel = nh_sel;
943 res->type = fa->fa_type;
944 res->scope = fa->fa_scope;
945 res->fi = fa->fa_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 atomic_inc(&res->fi->fib_clntref);
947 return 0;
948}
949
950/* Find appropriate source address to this destination */
951
Al Virob83738a2006-09-26 22:14:15 -0700952__be32 __fib_res_prefsrc(struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 return inet_select_addr(FIB_RES_DEV(*res), FIB_RES_GW(*res), res->scope);
955}
956
Thomas Grafbe403ea2006-08-17 18:15:17 -0700957int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
Al Viro81f7bf62006-09-27 18:40:00 -0700958 u32 tb_id, u8 type, u8 scope, __be32 dst, int dst_len, u8 tos,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700959 struct fib_info *fi, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Thomas Grafbe403ea2006-08-17 18:15:17 -0700961 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Thomas Grafbe403ea2006-08-17 18:15:17 -0700964 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*rtm), flags);
965 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800966 return -EMSGSIZE;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700967
968 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 rtm->rtm_family = AF_INET;
970 rtm->rtm_dst_len = dst_len;
971 rtm->rtm_src_len = 0;
972 rtm->rtm_tos = tos;
Krzysztof Piotr Oledzki709772e2008-06-10 15:44:49 -0700973 if (tb_id < 256)
974 rtm->rtm_table = tb_id;
975 else
976 rtm->rtm_table = RT_TABLE_COMPAT;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700977 NLA_PUT_U32(skb, RTA_TABLE, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 rtm->rtm_type = type;
979 rtm->rtm_flags = fi->fib_flags;
980 rtm->rtm_scope = scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 rtm->rtm_protocol = fi->fib_protocol;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700982
983 if (rtm->rtm_dst_len)
Al Viro17fb2c62006-09-26 22:15:25 -0700984 NLA_PUT_BE32(skb, RTA_DST, dst);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (fi->fib_priority)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700987 NLA_PUT_U32(skb, RTA_PRIORITY, fi->fib_priority);
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (rtnetlink_put_metrics(skb, fi->fib_metrics) < 0)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700990 goto nla_put_failure;
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (fi->fib_prefsrc)
Al Viro17fb2c62006-09-26 22:15:25 -0700993 NLA_PUT_BE32(skb, RTA_PREFSRC, fi->fib_prefsrc);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (fi->fib_nhs == 1) {
996 if (fi->fib_nh->nh_gw)
Al Viro17fb2c62006-09-26 22:15:25 -0700997 NLA_PUT_BE32(skb, RTA_GATEWAY, fi->fib_nh->nh_gw);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (fi->fib_nh->nh_oif)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001000 NLA_PUT_U32(skb, RTA_OIF, fi->fib_nh->nh_oif);
Patrick McHardy8265abc2006-07-21 15:09:55 -07001001#ifdef CONFIG_NET_CLS_ROUTE
1002 if (fi->fib_nh[0].nh_tclassid)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001003 NLA_PUT_U32(skb, RTA_FLOW, fi->fib_nh[0].nh_tclassid);
Patrick McHardy8265abc2006-07-21 15:09:55 -07001004#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006#ifdef CONFIG_IP_ROUTE_MULTIPATH
1007 if (fi->fib_nhs > 1) {
Thomas Grafbe403ea2006-08-17 18:15:17 -07001008 struct rtnexthop *rtnh;
1009 struct nlattr *mp;
1010
1011 mp = nla_nest_start(skb, RTA_MULTIPATH);
1012 if (mp == NULL)
1013 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 for_nexthops(fi) {
Thomas Grafbe403ea2006-08-17 18:15:17 -07001016 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
1017 if (rtnh == NULL)
1018 goto nla_put_failure;
1019
1020 rtnh->rtnh_flags = nh->nh_flags & 0xFF;
1021 rtnh->rtnh_hops = nh->nh_weight - 1;
1022 rtnh->rtnh_ifindex = nh->nh_oif;
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (nh->nh_gw)
Al Viro17fb2c62006-09-26 22:15:25 -07001025 NLA_PUT_BE32(skb, RTA_GATEWAY, nh->nh_gw);
Patrick McHardy8265abc2006-07-21 15:09:55 -07001026#ifdef CONFIG_NET_CLS_ROUTE
1027 if (nh->nh_tclassid)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001028 NLA_PUT_U32(skb, RTA_FLOW, nh->nh_tclassid);
Patrick McHardy8265abc2006-07-21 15:09:55 -07001029#endif
Thomas Grafbe403ea2006-08-17 18:15:17 -07001030 /* length of rtnetlink header + attributes */
1031 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *) rtnh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 } endfor_nexthops(fi);
Thomas Grafbe403ea2006-08-17 18:15:17 -07001033
1034 nla_nest_end(skb, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036#endif
Thomas Grafbe403ea2006-08-17 18:15:17 -07001037 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Thomas Grafbe403ea2006-08-17 18:15:17 -07001039nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001040 nlmsg_cancel(skb, nlh);
1041 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001045 * Update FIB if:
1046 * - local address disappeared -> we must delete all the entries
1047 * referring to it.
1048 * - device went down -> we must shutdown all nexthops going via it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001050int fib_sync_down_addr(struct net *net, __be32 local)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001051{
1052 int ret = 0;
1053 unsigned int hash = fib_laddr_hashfn(local);
1054 struct hlist_head *head = &fib_info_laddrhash[hash];
1055 struct hlist_node *node;
1056 struct fib_info *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001058 if (fib_info_laddrhash == NULL || local == 0)
1059 return 0;
1060
1061 hlist_for_each_entry(fi, node, head, fib_lhash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001062 if (!net_eq(fi->fib_net, net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001063 continue;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001064 if (fi->fib_prefsrc == local) {
1065 fi->fib_flags |= RTNH_F_DEAD;
1066 ret++;
1067 }
1068 }
1069 return ret;
1070}
1071
1072int fib_sync_down_dev(struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
1074 int ret = 0;
1075 int scope = RT_SCOPE_NOWHERE;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001076 struct fib_info *prev_fi = NULL;
1077 unsigned int hash = fib_devindex_hashfn(dev->ifindex);
1078 struct hlist_head *head = &fib_info_devhash[hash];
1079 struct hlist_node *node;
1080 struct fib_nh *nh;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (force)
1083 scope = -1;
1084
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001085 hlist_for_each_entry(nh, node, head, nh_hash) {
1086 struct fib_info *fi = nh->nh_parent;
1087 int dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001089 BUG_ON(!fi->fib_nhs);
1090 if (nh->nh_dev != dev || fi == prev_fi)
1091 continue;
1092 prev_fi = fi;
1093 dead = 0;
1094 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001095 if (nexthop_nh->nh_flags & RTNH_F_DEAD)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001096 dead++;
David S. Miller71fceff2010-01-15 01:16:40 -08001097 else if (nexthop_nh->nh_dev == dev &&
1098 nexthop_nh->nh_scope != scope) {
1099 nexthop_nh->nh_flags |= RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#ifdef CONFIG_IP_ROUTE_MULTIPATH
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001101 spin_lock_bh(&fib_multipath_lock);
David S. Miller71fceff2010-01-15 01:16:40 -08001102 fi->fib_power -= nexthop_nh->nh_power;
1103 nexthop_nh->nh_power = 0;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001104 spin_unlock_bh(&fib_multipath_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105#endif
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001106 dead++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001108#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller71fceff2010-01-15 01:16:40 -08001109 if (force > 1 && nexthop_nh->nh_dev == dev) {
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001110 dead = fi->fib_nhs;
1111 break;
1112 }
1113#endif
1114 } endfor_nexthops(fi)
1115 if (dead == fi->fib_nhs) {
1116 fi->fib_flags |= RTNH_F_DEAD;
1117 ret++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 }
1120
1121 return ret;
1122}
1123
1124#ifdef CONFIG_IP_ROUTE_MULTIPATH
1125
1126/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001127 * Dead device goes up. We wake up dead nexthops.
1128 * It takes sense only on multipath routes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130int fib_sync_up(struct net_device *dev)
1131{
1132 struct fib_info *prev_fi;
1133 unsigned int hash;
1134 struct hlist_head *head;
1135 struct hlist_node *node;
1136 struct fib_nh *nh;
1137 int ret;
1138
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001139 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return 0;
1141
1142 prev_fi = NULL;
1143 hash = fib_devindex_hashfn(dev->ifindex);
1144 head = &fib_info_devhash[hash];
1145 ret = 0;
1146
1147 hlist_for_each_entry(nh, node, head, nh_hash) {
1148 struct fib_info *fi = nh->nh_parent;
1149 int alive;
1150
1151 BUG_ON(!fi->fib_nhs);
1152 if (nh->nh_dev != dev || fi == prev_fi)
1153 continue;
1154
1155 prev_fi = fi;
1156 alive = 0;
1157 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001158 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 alive++;
1160 continue;
1161 }
David S. Miller71fceff2010-01-15 01:16:40 -08001162 if (nexthop_nh->nh_dev == NULL ||
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001163 !(nexthop_nh->nh_dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 continue;
David S. Miller71fceff2010-01-15 01:16:40 -08001165 if (nexthop_nh->nh_dev != dev ||
1166 !__in_dev_get_rtnl(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 continue;
1168 alive++;
1169 spin_lock_bh(&fib_multipath_lock);
David S. Miller71fceff2010-01-15 01:16:40 -08001170 nexthop_nh->nh_power = 0;
1171 nexthop_nh->nh_flags &= ~RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 spin_unlock_bh(&fib_multipath_lock);
1173 } endfor_nexthops(fi)
1174
1175 if (alive > 0) {
1176 fi->fib_flags &= ~RTNH_F_DEAD;
1177 ret++;
1178 }
1179 }
1180
1181 return ret;
1182}
1183
1184/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001185 * The algorithm is suboptimal, but it provides really
1186 * fair weighted route distribution.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188void fib_select_multipath(const struct flowi *flp, struct fib_result *res)
1189{
1190 struct fib_info *fi = res->fi;
1191 int w;
1192
1193 spin_lock_bh(&fib_multipath_lock);
1194 if (fi->fib_power <= 0) {
1195 int power = 0;
1196 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001197 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) {
David S. Miller71fceff2010-01-15 01:16:40 -08001198 power += nexthop_nh->nh_weight;
1199 nexthop_nh->nh_power = nexthop_nh->nh_weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 } endfor_nexthops(fi);
1202 fi->fib_power = power;
1203 if (power <= 0) {
1204 spin_unlock_bh(&fib_multipath_lock);
1205 /* Race condition: route has just become dead. */
1206 res->nh_sel = 0;
1207 return;
1208 }
1209 }
1210
1211
1212 /* w should be random number [0..fi->fib_power-1],
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001213 * it is pretty bad approximation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 */
1215
1216 w = jiffies % fi->fib_power;
1217
1218 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001219 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD) &&
David S. Miller71fceff2010-01-15 01:16:40 -08001220 nexthop_nh->nh_power) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001221 w -= nexthop_nh->nh_power;
1222 if (w <= 0) {
David S. Miller71fceff2010-01-15 01:16:40 -08001223 nexthop_nh->nh_power--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 fi->fib_power--;
1225 res->nh_sel = nhsel;
1226 spin_unlock_bh(&fib_multipath_lock);
1227 return;
1228 }
1229 }
1230 } endfor_nexthops(fi);
1231
1232 /* Race condition: route has just become dead. */
1233 res->nh_sel = 0;
1234 spin_unlock_bh(&fib_multipath_lock);
1235}
1236#endif