blob: c29291b21009126175352b23c7ec78c409f9415d [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;
David S. Miller123b9732011-02-01 15:34:21 -080052static unsigned int fib_info_hash_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static 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
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000151static void free_fib_info_rcu(struct rcu_head *head)
152{
153 struct fib_info *fi = container_of(head, struct fib_info, rcu);
154
David S. Miller725d1e12011-01-28 14:05:05 -0800155 if (fi->fib_metrics != (u32 *) dst_default_metrics)
156 kfree(fi->fib_metrics);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000157 kfree(fi);
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160void free_fib_info(struct fib_info *fi)
161{
162 if (fi->fib_dead == 0) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000163 pr_warning("Freeing alive fib_info %p\n", fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return;
165 }
166 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800167 if (nexthop_nh->nh_dev)
168 dev_put(nexthop_nh->nh_dev);
169 nexthop_nh->nh_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 } endfor_nexthops(fi);
171 fib_info_cnt--;
Denis V. Lunev57d7a602008-04-16 02:00:50 -0700172 release_net(fi->fib_net);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000173 call_rcu(&fi->rcu, free_fib_info_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176void fib_release_info(struct fib_info *fi)
177{
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700178 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (fi && --fi->fib_treeref == 0) {
180 hlist_del(&fi->fib_hash);
181 if (fi->fib_prefsrc)
182 hlist_del(&fi->fib_lhash);
183 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800184 if (!nexthop_nh->nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 continue;
David S. Miller71fceff2010-01-15 01:16:40 -0800186 hlist_del(&nexthop_nh->nh_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 } endfor_nexthops(fi)
188 fi->fib_dead = 1;
189 fib_info_put(fi);
190 }
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700191 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000194static inline int nh_comp(const struct fib_info *fi, const struct fib_info *ofi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 const struct fib_nh *onh = ofi->fib_nh;
197
198 for_nexthops(fi) {
199 if (nh->nh_oif != onh->nh_oif ||
200 nh->nh_gw != onh->nh_gw ||
201 nh->nh_scope != onh->nh_scope ||
202#ifdef CONFIG_IP_ROUTE_MULTIPATH
203 nh->nh_weight != onh->nh_weight ||
204#endif
Patrick McHardyc7066f72011-01-14 13:36:42 +0100205#ifdef CONFIG_IP_ROUTE_CLASSID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 nh->nh_tclassid != onh->nh_tclassid ||
207#endif
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000208 ((nh->nh_flags ^ onh->nh_flags) & ~RTNH_F_DEAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return -1;
210 onh++;
211 } endfor_nexthops(fi);
212 return 0;
213}
214
David S. Miller88ebc722008-01-12 21:49:01 -0800215static inline unsigned int fib_devindex_hashfn(unsigned int val)
216{
217 unsigned int mask = DEVINDEX_HASHSIZE - 1;
218
219 return (val ^
220 (val >> DEVINDEX_HASHBITS) ^
221 (val >> (DEVINDEX_HASHBITS * 2))) & mask;
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static inline unsigned int fib_info_hashfn(const struct fib_info *fi)
225{
David S. Miller123b9732011-02-01 15:34:21 -0800226 unsigned int mask = (fib_info_hash_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 unsigned int val = fi->fib_nhs;
228
229 val ^= fi->fib_protocol;
Al Viro81f7bf62006-09-27 18:40:00 -0700230 val ^= (__force u32)fi->fib_prefsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 val ^= fi->fib_priority;
David S. Miller88ebc722008-01-12 21:49:01 -0800232 for_nexthops(fi) {
233 val ^= fib_devindex_hashfn(nh->nh_oif);
234 } endfor_nexthops(fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 return (val ^ (val >> 7) ^ (val >> 12)) & mask;
237}
238
239static struct fib_info *fib_find_info(const struct fib_info *nfi)
240{
241 struct hlist_head *head;
242 struct hlist_node *node;
243 struct fib_info *fi;
244 unsigned int hash;
245
246 hash = fib_info_hashfn(nfi);
247 head = &fib_info_hash[hash];
248
249 hlist_for_each_entry(fi, node, head, fib_hash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800250 if (!net_eq(fi->fib_net, nfi->fib_net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -0800251 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (fi->fib_nhs != nfi->fib_nhs)
253 continue;
254 if (nfi->fib_protocol == fi->fib_protocol &&
255 nfi->fib_prefsrc == fi->fib_prefsrc &&
256 nfi->fib_priority == fi->fib_priority &&
257 memcmp(nfi->fib_metrics, fi->fib_metrics,
258 sizeof(fi->fib_metrics)) == 0 &&
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000259 ((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_F_DEAD) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
261 return fi;
262 }
263
264 return NULL;
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/* Check, that the gateway is already configured.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000268 * Used only by redirect accept routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Al Virod878e72e2006-09-26 22:18:13 -0700270int ip_fib_check_default(__be32 gw, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct hlist_head *head;
273 struct hlist_node *node;
274 struct fib_nh *nh;
275 unsigned int hash;
276
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700277 spin_lock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 hash = fib_devindex_hashfn(dev->ifindex);
280 head = &fib_info_devhash[hash];
281 hlist_for_each_entry(nh, node, head, nh_hash) {
282 if (nh->nh_dev == dev &&
283 nh->nh_gw == gw &&
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000284 !(nh->nh_flags & RTNH_F_DEAD)) {
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700285 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return 0;
287 }
288 }
289
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700290 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 return -1;
293}
294
Thomas Graf339bf982006-11-10 14:10:15 -0800295static inline size_t fib_nlmsg_size(struct fib_info *fi)
296{
297 size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg))
298 + nla_total_size(4) /* RTA_TABLE */
299 + nla_total_size(4) /* RTA_DST */
300 + nla_total_size(4) /* RTA_PRIORITY */
301 + nla_total_size(4); /* RTA_PREFSRC */
302
303 /* space for nested metrics */
304 payload += nla_total_size((RTAX_MAX * nla_total_size(4)));
305
306 if (fi->fib_nhs) {
307 /* Also handles the special case fib_nhs == 1 */
308
309 /* each nexthop is packed in an attribute */
310 size_t nhsize = nla_total_size(sizeof(struct rtnexthop));
311
312 /* may contain flow and gateway attribute */
313 nhsize += 2 * nla_total_size(4);
314
315 /* all nexthops are packed in a nested attribute */
316 payload += nla_total_size(fi->fib_nhs * nhsize);
317 }
318
319 return payload;
320}
321
Al Viro81f7bf62006-09-27 18:40:00 -0700322void rtmsg_fib(int event, __be32 key, struct fib_alias *fa,
Milan Kocianb8f55832007-05-23 14:55:06 -0700323 int dst_len, u32 tb_id, struct nl_info *info,
324 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 struct sk_buff *skb;
Thomas Graf4e902c52006-08-17 18:14:52 -0700327 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700328 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Thomas Graf339bf982006-11-10 14:10:15 -0800330 skb = nlmsg_new(fib_nlmsg_size(fa->fa_info), GFP_KERNEL);
Thomas Graff21c7bc2006-08-15 00:34:17 -0700331 if (skb == NULL)
332 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Thomas Graf4e902c52006-08-17 18:14:52 -0700334 err = fib_dump_info(skb, info->pid, seq, event, tb_id,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700335 fa->fa_type, fa->fa_scope, key, dst_len,
Milan Kocianb8f55832007-05-23 14:55:06 -0700336 fa->fa_tos, fa->fa_info, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -0800337 if (err < 0) {
338 /* -EMSGSIZE implies BUG in fib_nlmsg_size() */
339 WARN_ON(err == -EMSGSIZE);
340 kfree_skb(skb);
341 goto errout;
342 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800343 rtnl_notify(skb, info->nl_net, info->pid, RTNLGRP_IPV4_ROUTE,
344 info->nlh, GFP_KERNEL);
345 return;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700346errout:
347 if (err < 0)
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800348 rtnl_set_sk_err(info->nl_net, RTNLGRP_IPV4_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351/* Return the first fib alias matching TOS with
352 * priority less than or equal to PRIO.
353 */
354struct fib_alias *fib_find_alias(struct list_head *fah, u8 tos, u32 prio)
355{
356 if (fah) {
357 struct fib_alias *fa;
358 list_for_each_entry(fa, fah, fa_list) {
359 if (fa->fa_tos > tos)
360 continue;
361 if (fa->fa_info->fib_priority >= prio ||
362 fa->fa_tos < tos)
363 return fa;
364 }
365 }
366 return NULL;
367}
368
369int fib_detect_death(struct fib_info *fi, int order,
Denis V. Lunevc17860a2007-12-08 00:22:13 -0800370 struct fib_info **last_resort, int *last_idx, int dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct neighbour *n;
373 int state = NUD_NONE;
374
375 n = neigh_lookup(&arp_tbl, &fi->fib_nh[0].nh_gw, fi->fib_dev);
376 if (n) {
377 state = n->nud_state;
378 neigh_release(n);
379 }
Jianjun Kongd9319102008-11-03 00:23:42 -0800380 if (state == NUD_REACHABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000382 if ((state & NUD_VALID) && order != dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000384 if ((state & NUD_VALID) ||
385 (*last_idx < 0 && order > dflt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *last_resort = fi;
387 *last_idx = order;
388 }
389 return 1;
390}
391
392#ifdef CONFIG_IP_ROUTE_MULTIPATH
393
Thomas Graf4e902c52006-08-17 18:14:52 -0700394static int fib_count_nexthops(struct rtnexthop *rtnh, int remaining)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 int nhs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Thomas Graf4e902c52006-08-17 18:14:52 -0700398 while (rtnh_ok(rtnh, remaining)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 nhs++;
Thomas Graf4e902c52006-08-17 18:14:52 -0700400 rtnh = rtnh_next(rtnh, &remaining);
401 }
402
403 /* leftover implies invalid nexthop configuration, discard it */
404 return remaining > 0 ? 0 : nhs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Thomas Graf4e902c52006-08-17 18:14:52 -0700407static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh,
408 int remaining, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 change_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700411 int attrlen;
412
413 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700415
David S. Miller71fceff2010-01-15 01:16:40 -0800416 nexthop_nh->nh_flags =
417 (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags;
418 nexthop_nh->nh_oif = rtnh->rtnh_ifindex;
419 nexthop_nh->nh_weight = rtnh->rtnh_hops + 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700420
421 attrlen = rtnh_attrlen(rtnh);
422 if (attrlen > 0) {
423 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
424
425 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
David S. Miller71fceff2010-01-15 01:16:40 -0800426 nexthop_nh->nh_gw = nla ? nla_get_be32(nla) : 0;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100427#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700428 nla = nla_find(attrs, attrlen, RTA_FLOW);
David S. Miller71fceff2010-01-15 01:16:40 -0800429 nexthop_nh->nh_tclassid = nla ? nla_get_u32(nla) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430#endif
431 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700432
433 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 } endfor_nexthops(fi);
Thomas Graf4e902c52006-08-17 18:14:52 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
439#endif
440
Thomas Graf4e902c52006-08-17 18:14:52 -0700441int fib_nh_match(struct fib_config *cfg, struct fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700444 struct rtnexthop *rtnh;
445 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#endif
447
Thomas Graf4e902c52006-08-17 18:14:52 -0700448 if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return 1;
450
Thomas Graf4e902c52006-08-17 18:14:52 -0700451 if (cfg->fc_oif || cfg->fc_gw) {
452 if ((!cfg->fc_oif || cfg->fc_oif == fi->fib_nh->nh_oif) &&
453 (!cfg->fc_gw || cfg->fc_gw == fi->fib_nh->nh_gw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
455 return 1;
456 }
457
458#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700459 if (cfg->fc_mp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700461
462 rtnh = cfg->fc_mp;
463 remaining = cfg->fc_mp_len;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 for_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700466 int attrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Thomas Graf4e902c52006-08-17 18:14:52 -0700468 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700470
471 if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->nh_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700473
474 attrlen = rtnh_attrlen(rtnh);
475 if (attrlen < 0) {
476 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
477
478 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
Al Viro17fb2c62006-09-26 22:15:25 -0700479 if (nla && nla_get_be32(nla) != nh->nh_gw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return 1;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100481#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700482 nla = nla_find(attrs, attrlen, RTA_FLOW);
483 if (nla && nla_get_u32(nla) != nh->nh_tclassid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return 1;
485#endif
486 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700487
488 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 } endfor_nexthops(fi);
490#endif
491 return 0;
492}
493
494
495/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000496 * Picture
497 * -------
498 *
499 * Semantics of nexthop is very messy by historical reasons.
500 * We have to take into account, that:
501 * a) gateway can be actually local interface address,
502 * so that gatewayed route is direct.
503 * b) gateway must be on-link address, possibly
504 * described not by an ifaddr, but also by a direct route.
505 * c) If both gateway and interface are specified, they should not
506 * contradict.
507 * d) If we use tunnel routes, gateway could be not on-link.
508 *
509 * Attempt to reconcile all of these (alas, self-contradictory) conditions
510 * results in pretty ugly and hairy code with obscure logic.
511 *
512 * I chose to generalized it instead, so that the size
513 * of code does not increase practically, but it becomes
514 * much more general.
515 * Every prefix is assigned a "scope" value: "host" is local address,
516 * "link" is direct route,
517 * [ ... "site" ... "interior" ... ]
518 * and "universe" is true gateway route with global meaning.
519 *
520 * Every prefix refers to a set of "nexthop"s (gw, oif),
521 * where gw must have narrower scope. This recursion stops
522 * when gw has LOCAL scope or if "nexthop" is declared ONLINK,
523 * which means that gw is forced to be on link.
524 *
525 * Code is still hairy, but now it is apparently logically
526 * consistent and very flexible. F.e. as by-product it allows
527 * to co-exists in peace independent exterior and interior
528 * routing processes.
529 *
530 * Normally it looks as following.
531 *
532 * {universe prefix} -> (gw, oif) [scope link]
533 * |
534 * |-> {link prefix} -> (gw, oif) [scope local]
535 * |
536 * |-> {local prefix} (terminal node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
Thomas Graf4e902c52006-08-17 18:14:52 -0700538static int fib_check_nh(struct fib_config *cfg, struct fib_info *fi,
539 struct fib_nh *nh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 int err;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800542 struct net *net;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000543 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Denis V. Lunev86167a32008-01-21 17:34:00 -0800545 net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (nh->nh_gw) {
547 struct fib_result res;
548
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000549 if (nh->nh_flags & RTNH_F_ONLINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Thomas Graf4e902c52006-08-17 18:14:52 -0700551 if (cfg->fc_scope >= RT_SCOPE_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return -EINVAL;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800553 if (inet_addr_type(net, nh->nh_gw) != RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return -EINVAL;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000555 dev = __dev_get_by_index(net, nh->nh_oif);
556 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -ENODEV;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000558 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return -ENETDOWN;
560 nh->nh_dev = dev;
561 dev_hold(dev);
562 nh->nh_scope = RT_SCOPE_LINK;
563 return 0;
564 }
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000565 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 {
Thomas Graf4e902c52006-08-17 18:14:52 -0700567 struct flowi fl = {
Changli Gao58116622010-11-12 18:43:55 +0000568 .fl4_dst = nh->nh_gw,
569 .fl4_scope = cfg->fc_scope + 1,
Thomas Graf4e902c52006-08-17 18:14:52 -0700570 .oif = nh->nh_oif,
571 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* It is not necessary, but requires a bit of thinking */
574 if (fl.fl4_scope < RT_SCOPE_LINK)
575 fl.fl4_scope = RT_SCOPE_LINK;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000576 err = fib_lookup(net, &fl, &res);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000577 if (err) {
578 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return err;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
582 err = -EINVAL;
583 if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
584 goto out;
585 nh->nh_scope = res.scope;
586 nh->nh_oif = FIB_RES_OIF(res);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000587 nh->nh_dev = dev = FIB_RES_DEV(res);
588 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 goto out;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000590 dev_hold(dev);
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000591 err = (dev->flags & IFF_UP) ? 0 : -ENETDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 } else {
593 struct in_device *in_dev;
594
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000595 if (nh->nh_flags & (RTNH_F_PERVASIVE | RTNH_F_ONLINK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return -EINVAL;
597
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000598 rcu_read_lock();
599 err = -ENODEV;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800600 in_dev = inetdev_by_index(net, nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (in_dev == NULL)
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000602 goto out;
603 err = -ENETDOWN;
604 if (!(in_dev->dev->flags & IFF_UP))
605 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 nh->nh_dev = in_dev->dev;
607 dev_hold(nh->nh_dev);
608 nh->nh_scope = RT_SCOPE_HOST;
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000609 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000611out:
612 rcu_read_unlock();
613 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Al Viro81f7bf62006-09-27 18:40:00 -0700616static inline unsigned int fib_laddr_hashfn(__be32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
David S. Miller123b9732011-02-01 15:34:21 -0800618 unsigned int mask = (fib_info_hash_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000620 return ((__force u32)val ^
621 ((__force u32)val >> 7) ^
622 ((__force u32)val >> 14)) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
David S. Miller123b9732011-02-01 15:34:21 -0800625static struct hlist_head *fib_info_hash_alloc(int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 if (bytes <= PAGE_SIZE)
Joonwoo Park88f83492007-11-26 23:29:32 +0800628 return kzalloc(bytes, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 else
630 return (struct hlist_head *)
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000631 __get_free_pages(GFP_KERNEL | __GFP_ZERO,
632 get_order(bytes));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
David S. Miller123b9732011-02-01 15:34:21 -0800635static void fib_info_hash_free(struct hlist_head *hash, int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 if (!hash)
638 return;
639
640 if (bytes <= PAGE_SIZE)
641 kfree(hash);
642 else
643 free_pages((unsigned long) hash, get_order(bytes));
644}
645
David S. Miller123b9732011-02-01 15:34:21 -0800646static void fib_info_hash_move(struct hlist_head *new_info_hash,
647 struct hlist_head *new_laddrhash,
648 unsigned int new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
David S. Millerb7656e72005-08-05 04:12:48 -0700650 struct hlist_head *old_info_hash, *old_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -0800651 unsigned int old_size = fib_info_hash_size;
David S. Millerb7656e72005-08-05 04:12:48 -0700652 unsigned int i, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700654 spin_lock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -0700655 old_info_hash = fib_info_hash;
656 old_laddrhash = fib_info_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -0800657 fib_info_hash_size = new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 for (i = 0; i < old_size; i++) {
660 struct hlist_head *head = &fib_info_hash[i];
661 struct hlist_node *node, *n;
662 struct fib_info *fi;
663
664 hlist_for_each_entry_safe(fi, node, n, head, fib_hash) {
665 struct hlist_head *dest;
666 unsigned int new_hash;
667
668 hlist_del(&fi->fib_hash);
669
670 new_hash = fib_info_hashfn(fi);
671 dest = &new_info_hash[new_hash];
672 hlist_add_head(&fi->fib_hash, dest);
673 }
674 }
675 fib_info_hash = new_info_hash;
676
677 for (i = 0; i < old_size; i++) {
678 struct hlist_head *lhead = &fib_info_laddrhash[i];
679 struct hlist_node *node, *n;
680 struct fib_info *fi;
681
682 hlist_for_each_entry_safe(fi, node, n, lhead, fib_lhash) {
683 struct hlist_head *ldest;
684 unsigned int new_hash;
685
686 hlist_del(&fi->fib_lhash);
687
688 new_hash = fib_laddr_hashfn(fi->fib_prefsrc);
689 ldest = &new_laddrhash[new_hash];
690 hlist_add_head(&fi->fib_lhash, ldest);
691 }
692 }
693 fib_info_laddrhash = new_laddrhash;
694
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700695 spin_unlock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -0700696
697 bytes = old_size * sizeof(struct hlist_head *);
David S. Miller123b9732011-02-01 15:34:21 -0800698 fib_info_hash_free(old_info_hash, bytes);
699 fib_info_hash_free(old_laddrhash, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Thomas Graf4e902c52006-08-17 18:14:52 -0700702struct fib_info *fib_create_info(struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 int err;
705 struct fib_info *fi = NULL;
706 struct fib_info *ofi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 int nhs = 1;
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800708 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
David S. Miller4c8237c2011-03-07 14:27:38 -0800710 if (cfg->fc_type > RTN_MAX)
711 goto err_inval;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Fast check to catch the most weird cases */
Thomas Graf4e902c52006-08-17 18:14:52 -0700714 if (fib_props[cfg->fc_type].scope > cfg->fc_scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 goto err_inval;
716
717#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700718 if (cfg->fc_mp) {
719 nhs = fib_count_nexthops(cfg->fc_mp, cfg->fc_mp_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (nhs == 0)
721 goto err_inval;
722 }
723#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 err = -ENOBUFS;
David S. Miller123b9732011-02-01 15:34:21 -0800726 if (fib_info_cnt >= fib_info_hash_size) {
727 unsigned int new_size = fib_info_hash_size << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 struct hlist_head *new_info_hash;
729 struct hlist_head *new_laddrhash;
730 unsigned int bytes;
731
732 if (!new_size)
733 new_size = 1;
734 bytes = new_size * sizeof(struct hlist_head *);
David S. Miller123b9732011-02-01 15:34:21 -0800735 new_info_hash = fib_info_hash_alloc(bytes);
736 new_laddrhash = fib_info_hash_alloc(bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!new_info_hash || !new_laddrhash) {
David S. Miller123b9732011-02-01 15:34:21 -0800738 fib_info_hash_free(new_info_hash, bytes);
739 fib_info_hash_free(new_laddrhash, bytes);
Joonwoo Park88f83492007-11-26 23:29:32 +0800740 } else
David S. Miller123b9732011-02-01 15:34:21 -0800741 fib_info_hash_move(new_info_hash, new_laddrhash, new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
David S. Miller123b9732011-02-01 15:34:21 -0800743 if (!fib_info_hash_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 goto failure;
745 }
746
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700747 fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct fib_nh), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (fi == NULL)
749 goto failure;
David S. Miller725d1e12011-01-28 14:05:05 -0800750 if (cfg->fc_mx) {
751 fi->fib_metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
752 if (!fi->fib_metrics)
753 goto failure;
754 } else
755 fi->fib_metrics = (u32 *) dst_default_metrics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 fib_info_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Denis V. Lunev57d7a602008-04-16 02:00:50 -0700758 fi->fib_net = hold_net(net);
Thomas Graf4e902c52006-08-17 18:14:52 -0700759 fi->fib_protocol = cfg->fc_protocol;
760 fi->fib_flags = cfg->fc_flags;
761 fi->fib_priority = cfg->fc_priority;
762 fi->fib_prefsrc = cfg->fc_prefsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 fi->fib_nhs = nhs;
765 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800766 nexthop_nh->nh_parent = fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 } endfor_nexthops(fi)
768
Thomas Graf4e902c52006-08-17 18:14:52 -0700769 if (cfg->fc_mx) {
770 struct nlattr *nla;
771 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Thomas Graf4e902c52006-08-17 18:14:52 -0700773 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200774 int type = nla_type(nla);
Thomas Graf4e902c52006-08-17 18:14:52 -0700775
776 if (type) {
777 if (type > RTAX_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto err_inval;
Thomas Graf4e902c52006-08-17 18:14:52 -0700779 fi->fib_metrics[type - 1] = nla_get_u32(nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Thomas Graf4e902c52006-08-17 18:14:52 -0700784 if (cfg->fc_mp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700786 err = fib_get_nhs(fi, cfg->fc_mp, cfg->fc_mp_len, cfg);
787 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 goto failure;
Thomas Graf4e902c52006-08-17 18:14:52 -0700789 if (cfg->fc_oif && fi->fib_nh->nh_oif != cfg->fc_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 goto err_inval;
Thomas Graf4e902c52006-08-17 18:14:52 -0700791 if (cfg->fc_gw && fi->fib_nh->nh_gw != cfg->fc_gw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 goto err_inval;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100793#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700794 if (cfg->fc_flow && fi->fib_nh->nh_tclassid != cfg->fc_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 goto err_inval;
796#endif
797#else
798 goto err_inval;
799#endif
800 } else {
801 struct fib_nh *nh = fi->fib_nh;
Thomas Graf4e902c52006-08-17 18:14:52 -0700802
803 nh->nh_oif = cfg->fc_oif;
804 nh->nh_gw = cfg->fc_gw;
805 nh->nh_flags = cfg->fc_flags;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100806#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700807 nh->nh_tclassid = cfg->fc_flow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809#ifdef CONFIG_IP_ROUTE_MULTIPATH
810 nh->nh_weight = 1;
811#endif
812 }
813
Thomas Graf4e902c52006-08-17 18:14:52 -0700814 if (fib_props[cfg->fc_type].error) {
815 if (cfg->fc_gw || cfg->fc_oif || cfg->fc_mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 goto err_inval;
817 goto link_it;
David S. Miller4c8237c2011-03-07 14:27:38 -0800818 } else {
819 switch (cfg->fc_type) {
820 case RTN_UNICAST:
821 case RTN_LOCAL:
822 case RTN_BROADCAST:
823 case RTN_ANYCAST:
824 case RTN_MULTICAST:
825 break;
826 default:
827 goto err_inval;
828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
Thomas Graf4e902c52006-08-17 18:14:52 -0700831 if (cfg->fc_scope > RT_SCOPE_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto err_inval;
833
Thomas Graf4e902c52006-08-17 18:14:52 -0700834 if (cfg->fc_scope == RT_SCOPE_HOST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct fib_nh *nh = fi->fib_nh;
836
837 /* Local address is added. */
838 if (nhs != 1 || nh->nh_gw)
839 goto err_inval;
840 nh->nh_scope = RT_SCOPE_NOWHERE;
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800841 nh->nh_dev = dev_get_by_index(net, fi->fib_nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 err = -ENODEV;
843 if (nh->nh_dev == NULL)
844 goto failure;
845 } else {
846 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000847 err = fib_check_nh(cfg, fi, nexthop_nh);
848 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto failure;
850 } endfor_nexthops(fi)
851 }
852
853 if (fi->fib_prefsrc) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700854 if (cfg->fc_type != RTN_LOCAL || !cfg->fc_dst ||
855 fi->fib_prefsrc != cfg->fc_dst)
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800856 if (inet_addr_type(net, fi->fib_prefsrc) != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto err_inval;
858 }
859
860link_it:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000861 ofi = fib_find_info(fi);
862 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 fi->fib_dead = 1;
864 free_fib_info(fi);
865 ofi->fib_treeref++;
866 return ofi;
867 }
868
869 fi->fib_treeref++;
870 atomic_inc(&fi->fib_clntref);
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700871 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 hlist_add_head(&fi->fib_hash,
873 &fib_info_hash[fib_info_hashfn(fi)]);
874 if (fi->fib_prefsrc) {
875 struct hlist_head *head;
876
877 head = &fib_info_laddrhash[fib_laddr_hashfn(fi->fib_prefsrc)];
878 hlist_add_head(&fi->fib_lhash, head);
879 }
880 change_nexthops(fi) {
881 struct hlist_head *head;
882 unsigned int hash;
883
David S. Miller71fceff2010-01-15 01:16:40 -0800884 if (!nexthop_nh->nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 continue;
David S. Miller71fceff2010-01-15 01:16:40 -0800886 hash = fib_devindex_hashfn(nexthop_nh->nh_dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 head = &fib_info_devhash[hash];
David S. Miller71fceff2010-01-15 01:16:40 -0800888 hlist_add_head(&nexthop_nh->nh_hash, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 } endfor_nexthops(fi)
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700890 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return fi;
892
893err_inval:
894 err = -EINVAL;
895
896failure:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900897 if (fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 fi->fib_dead = 1;
899 free_fib_info(fi);
900 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700901
902 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Robert Olssone5b43762005-08-25 13:01:03 -0700905/* Note! fib_semantic_match intentionally uses RCU list functions. */
David S. Miller5b470442011-01-31 16:10:03 -0800906int fib_semantic_match(struct fib_table *tb, struct list_head *head,
907 const struct flowi *flp, struct fib_result *res,
908 int prefixlen, int fib_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct fib_alias *fa;
911 int nh_sel = 0;
912
Robert Olssone5b43762005-08-25 13:01:03 -0700913 list_for_each_entry_rcu(fa, head, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int err;
915
916 if (fa->fa_tos &&
917 fa->fa_tos != flp->fl4_tos)
918 continue;
919
920 if (fa->fa_scope < flp->fl4_scope)
921 continue;
922
Eric Dumazet9b0c2902010-10-20 22:03:38 +0000923 fib_alias_accessed(fa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 err = fib_props[fa->fa_type].error;
926 if (err == 0) {
927 struct fib_info *fi = fa->fa_info;
928
929 if (fi->fib_flags & RTNH_F_DEAD)
930 continue;
931
David S. Miller4c8237c2011-03-07 14:27:38 -0800932 for_nexthops(fi) {
933 if (nh->nh_flags & RTNH_F_DEAD)
934 continue;
935 if (!flp->oif || flp->oif == nh->nh_oif)
936 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700937 }
David S. Miller4c8237c2011-03-07 14:27:38 -0800938#ifdef CONFIG_IP_ROUTE_MULTIPATH
939 if (nhsel < fi->fib_nhs) {
940 nh_sel = nhsel;
941 goto out_fill_res;
942 }
943#else
944 if (nhsel < 1)
945 goto out_fill_res;
946#endif
947 endfor_nexthops(fi);
948 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950 return err;
951 }
952 return 1;
953
954out_fill_res:
955 res->prefixlen = prefixlen;
956 res->nh_sel = nh_sel;
957 res->type = fa->fa_type;
958 res->scope = fa->fa_scope;
959 res->fi = fa->fa_info;
David S. Miller5b470442011-01-31 16:10:03 -0800960 res->table = tb;
961 res->fa_head = head;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000962 if (!(fib_flags & FIB_LOOKUP_NOREF))
963 atomic_inc(&res->fi->fib_clntref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return 0;
965}
966
967/* Find appropriate source address to this destination */
968
Al Virob83738a2006-09-26 22:14:15 -0700969__be32 __fib_res_prefsrc(struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 return inet_select_addr(FIB_RES_DEV(*res), FIB_RES_GW(*res), res->scope);
972}
973
Thomas Grafbe403ea2006-08-17 18:15:17 -0700974int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
Al Viro81f7bf62006-09-27 18:40:00 -0700975 u32 tb_id, u8 type, u8 scope, __be32 dst, int dst_len, u8 tos,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700976 struct fib_info *fi, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Thomas Grafbe403ea2006-08-17 18:15:17 -0700978 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Thomas Grafbe403ea2006-08-17 18:15:17 -0700981 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*rtm), flags);
982 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800983 return -EMSGSIZE;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700984
985 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 rtm->rtm_family = AF_INET;
987 rtm->rtm_dst_len = dst_len;
988 rtm->rtm_src_len = 0;
989 rtm->rtm_tos = tos;
Krzysztof Piotr Oledzki709772e2008-06-10 15:44:49 -0700990 if (tb_id < 256)
991 rtm->rtm_table = tb_id;
992 else
993 rtm->rtm_table = RT_TABLE_COMPAT;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700994 NLA_PUT_U32(skb, RTA_TABLE, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 rtm->rtm_type = type;
996 rtm->rtm_flags = fi->fib_flags;
997 rtm->rtm_scope = scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 rtm->rtm_protocol = fi->fib_protocol;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700999
1000 if (rtm->rtm_dst_len)
Al Viro17fb2c62006-09-26 22:15:25 -07001001 NLA_PUT_BE32(skb, RTA_DST, dst);
Thomas Grafbe403ea2006-08-17 18:15:17 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (fi->fib_priority)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001004 NLA_PUT_U32(skb, RTA_PRIORITY, fi->fib_priority);
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (rtnetlink_put_metrics(skb, fi->fib_metrics) < 0)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001007 goto nla_put_failure;
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (fi->fib_prefsrc)
Al Viro17fb2c62006-09-26 22:15:25 -07001010 NLA_PUT_BE32(skb, RTA_PREFSRC, fi->fib_prefsrc);
Thomas Grafbe403ea2006-08-17 18:15:17 -07001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (fi->fib_nhs == 1) {
1013 if (fi->fib_nh->nh_gw)
Al Viro17fb2c62006-09-26 22:15:25 -07001014 NLA_PUT_BE32(skb, RTA_GATEWAY, fi->fib_nh->nh_gw);
Thomas Grafbe403ea2006-08-17 18:15:17 -07001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (fi->fib_nh->nh_oif)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001017 NLA_PUT_U32(skb, RTA_OIF, fi->fib_nh->nh_oif);
Patrick McHardyc7066f72011-01-14 13:36:42 +01001018#ifdef CONFIG_IP_ROUTE_CLASSID
Patrick McHardy8265abc2006-07-21 15:09:55 -07001019 if (fi->fib_nh[0].nh_tclassid)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001020 NLA_PUT_U32(skb, RTA_FLOW, fi->fib_nh[0].nh_tclassid);
Patrick McHardy8265abc2006-07-21 15:09:55 -07001021#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023#ifdef CONFIG_IP_ROUTE_MULTIPATH
1024 if (fi->fib_nhs > 1) {
Thomas Grafbe403ea2006-08-17 18:15:17 -07001025 struct rtnexthop *rtnh;
1026 struct nlattr *mp;
1027
1028 mp = nla_nest_start(skb, RTA_MULTIPATH);
1029 if (mp == NULL)
1030 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 for_nexthops(fi) {
Thomas Grafbe403ea2006-08-17 18:15:17 -07001033 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
1034 if (rtnh == NULL)
1035 goto nla_put_failure;
1036
1037 rtnh->rtnh_flags = nh->nh_flags & 0xFF;
1038 rtnh->rtnh_hops = nh->nh_weight - 1;
1039 rtnh->rtnh_ifindex = nh->nh_oif;
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (nh->nh_gw)
Al Viro17fb2c62006-09-26 22:15:25 -07001042 NLA_PUT_BE32(skb, RTA_GATEWAY, nh->nh_gw);
Patrick McHardyc7066f72011-01-14 13:36:42 +01001043#ifdef CONFIG_IP_ROUTE_CLASSID
Patrick McHardy8265abc2006-07-21 15:09:55 -07001044 if (nh->nh_tclassid)
Thomas Grafbe403ea2006-08-17 18:15:17 -07001045 NLA_PUT_U32(skb, RTA_FLOW, nh->nh_tclassid);
Patrick McHardy8265abc2006-07-21 15:09:55 -07001046#endif
Thomas Grafbe403ea2006-08-17 18:15:17 -07001047 /* length of rtnetlink header + attributes */
1048 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *) rtnh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 } endfor_nexthops(fi);
Thomas Grafbe403ea2006-08-17 18:15:17 -07001050
1051 nla_nest_end(skb, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053#endif
Thomas Grafbe403ea2006-08-17 18:15:17 -07001054 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Thomas Grafbe403ea2006-08-17 18:15:17 -07001056nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001057 nlmsg_cancel(skb, nlh);
1058 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001062 * Update FIB if:
1063 * - local address disappeared -> we must delete all the entries
1064 * referring to it.
1065 * - device went down -> we must shutdown all nexthops going via it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 */
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001067int fib_sync_down_addr(struct net *net, __be32 local)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001068{
1069 int ret = 0;
1070 unsigned int hash = fib_laddr_hashfn(local);
1071 struct hlist_head *head = &fib_info_laddrhash[hash];
1072 struct hlist_node *node;
1073 struct fib_info *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001075 if (fib_info_laddrhash == NULL || local == 0)
1076 return 0;
1077
1078 hlist_for_each_entry(fi, node, head, fib_lhash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001079 if (!net_eq(fi->fib_net, net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001080 continue;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001081 if (fi->fib_prefsrc == local) {
1082 fi->fib_flags |= RTNH_F_DEAD;
1083 ret++;
1084 }
1085 }
1086 return ret;
1087}
1088
1089int fib_sync_down_dev(struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 int ret = 0;
1092 int scope = RT_SCOPE_NOWHERE;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001093 struct fib_info *prev_fi = NULL;
1094 unsigned int hash = fib_devindex_hashfn(dev->ifindex);
1095 struct hlist_head *head = &fib_info_devhash[hash];
1096 struct hlist_node *node;
1097 struct fib_nh *nh;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (force)
1100 scope = -1;
1101
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001102 hlist_for_each_entry(nh, node, head, nh_hash) {
1103 struct fib_info *fi = nh->nh_parent;
1104 int dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001106 BUG_ON(!fi->fib_nhs);
1107 if (nh->nh_dev != dev || fi == prev_fi)
1108 continue;
1109 prev_fi = fi;
1110 dead = 0;
1111 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001112 if (nexthop_nh->nh_flags & RTNH_F_DEAD)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001113 dead++;
David S. Miller71fceff2010-01-15 01:16:40 -08001114 else if (nexthop_nh->nh_dev == dev &&
1115 nexthop_nh->nh_scope != scope) {
1116 nexthop_nh->nh_flags |= RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117#ifdef CONFIG_IP_ROUTE_MULTIPATH
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001118 spin_lock_bh(&fib_multipath_lock);
David S. Miller71fceff2010-01-15 01:16:40 -08001119 fi->fib_power -= nexthop_nh->nh_power;
1120 nexthop_nh->nh_power = 0;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001121 spin_unlock_bh(&fib_multipath_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122#endif
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001123 dead++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001125#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller71fceff2010-01-15 01:16:40 -08001126 if (force > 1 && nexthop_nh->nh_dev == dev) {
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001127 dead = fi->fib_nhs;
1128 break;
1129 }
1130#endif
1131 } endfor_nexthops(fi)
1132 if (dead == fi->fib_nhs) {
1133 fi->fib_flags |= RTNH_F_DEAD;
1134 ret++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136 }
1137
1138 return ret;
1139}
1140
David S. Miller0c838ff2011-01-31 16:16:50 -08001141/* Must be invoked inside of an RCU protected region. */
1142void fib_select_default(struct fib_result *res)
1143{
1144 struct fib_info *fi = NULL, *last_resort = NULL;
1145 struct list_head *fa_head = res->fa_head;
1146 struct fib_table *tb = res->table;
1147 int order = -1, last_idx = -1;
1148 struct fib_alias *fa;
1149
1150 list_for_each_entry_rcu(fa, fa_head, fa_list) {
1151 struct fib_info *next_fi = fa->fa_info;
1152
1153 if (fa->fa_scope != res->scope ||
1154 fa->fa_type != RTN_UNICAST)
1155 continue;
1156
1157 if (next_fi->fib_priority > res->fi->fib_priority)
1158 break;
1159 if (!next_fi->fib_nh[0].nh_gw ||
1160 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
1161 continue;
1162
1163 fib_alias_accessed(fa);
1164
1165 if (fi == NULL) {
1166 if (next_fi != res->fi)
1167 break;
1168 } else if (!fib_detect_death(fi, order, &last_resort,
1169 &last_idx, tb->tb_default)) {
1170 fib_result_assign(res, fi);
1171 tb->tb_default = order;
1172 goto out;
1173 }
1174 fi = next_fi;
1175 order++;
1176 }
1177
1178 if (order <= 0 || fi == NULL) {
1179 tb->tb_default = -1;
1180 goto out;
1181 }
1182
1183 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
1184 tb->tb_default)) {
1185 fib_result_assign(res, fi);
1186 tb->tb_default = order;
1187 goto out;
1188 }
1189
1190 if (last_idx >= 0)
1191 fib_result_assign(res, last_resort);
1192 tb->tb_default = last_idx;
1193out:
Eric Dumazet31d40932011-02-14 11:23:04 -08001194 return;
David S. Miller0c838ff2011-01-31 16:16:50 -08001195}
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197#ifdef CONFIG_IP_ROUTE_MULTIPATH
1198
1199/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001200 * Dead device goes up. We wake up dead nexthops.
1201 * It takes sense only on multipath routes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203int fib_sync_up(struct net_device *dev)
1204{
1205 struct fib_info *prev_fi;
1206 unsigned int hash;
1207 struct hlist_head *head;
1208 struct hlist_node *node;
1209 struct fib_nh *nh;
1210 int ret;
1211
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001212 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return 0;
1214
1215 prev_fi = NULL;
1216 hash = fib_devindex_hashfn(dev->ifindex);
1217 head = &fib_info_devhash[hash];
1218 ret = 0;
1219
1220 hlist_for_each_entry(nh, node, head, nh_hash) {
1221 struct fib_info *fi = nh->nh_parent;
1222 int alive;
1223
1224 BUG_ON(!fi->fib_nhs);
1225 if (nh->nh_dev != dev || fi == prev_fi)
1226 continue;
1227
1228 prev_fi = fi;
1229 alive = 0;
1230 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001231 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 alive++;
1233 continue;
1234 }
David S. Miller71fceff2010-01-15 01:16:40 -08001235 if (nexthop_nh->nh_dev == NULL ||
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001236 !(nexthop_nh->nh_dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 continue;
David S. Miller71fceff2010-01-15 01:16:40 -08001238 if (nexthop_nh->nh_dev != dev ||
1239 !__in_dev_get_rtnl(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 continue;
1241 alive++;
1242 spin_lock_bh(&fib_multipath_lock);
David S. Miller71fceff2010-01-15 01:16:40 -08001243 nexthop_nh->nh_power = 0;
1244 nexthop_nh->nh_flags &= ~RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 spin_unlock_bh(&fib_multipath_lock);
1246 } endfor_nexthops(fi)
1247
1248 if (alive > 0) {
1249 fi->fib_flags &= ~RTNH_F_DEAD;
1250 ret++;
1251 }
1252 }
1253
1254 return ret;
1255}
1256
1257/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001258 * The algorithm is suboptimal, but it provides really
1259 * fair weighted route distribution.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261void fib_select_multipath(const struct flowi *flp, struct fib_result *res)
1262{
1263 struct fib_info *fi = res->fi;
1264 int w;
1265
1266 spin_lock_bh(&fib_multipath_lock);
1267 if (fi->fib_power <= 0) {
1268 int power = 0;
1269 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001270 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) {
David S. Miller71fceff2010-01-15 01:16:40 -08001271 power += nexthop_nh->nh_weight;
1272 nexthop_nh->nh_power = nexthop_nh->nh_weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274 } endfor_nexthops(fi);
1275 fi->fib_power = power;
1276 if (power <= 0) {
1277 spin_unlock_bh(&fib_multipath_lock);
1278 /* Race condition: route has just become dead. */
1279 res->nh_sel = 0;
1280 return;
1281 }
1282 }
1283
1284
1285 /* w should be random number [0..fi->fib_power-1],
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001286 * it is pretty bad approximation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
1288
1289 w = jiffies % fi->fib_power;
1290
1291 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001292 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD) &&
David S. Miller71fceff2010-01-15 01:16:40 -08001293 nexthop_nh->nh_power) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001294 w -= nexthop_nh->nh_power;
1295 if (w <= 0) {
David S. Miller71fceff2010-01-15 01:16:40 -08001296 nexthop_nh->nh_power--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 fi->fib_power--;
1298 res->nh_sel = nhsel;
1299 spin_unlock_bh(&fib_multipath_lock);
1300 return;
1301 }
1302 }
1303 } endfor_nexthops(fi);
1304
1305 /* Race condition: route has just become dead. */
1306 res->nh_sel = 0;
1307 spin_unlock_bh(&fib_multipath_lock);
1308}
1309#endif