blob: 641a5a2a9f9c4e7b9e1c2b11bebee5cb98ea43de [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
David S. Miller3be06862011-03-07 15:01:10 -080093const struct fib_prop fib_props[RTN_MAX + 1] = {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000094 [RTN_UNSPEC] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .error = 0,
96 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000097 },
98 [RTN_UNICAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .error = 0,
100 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000101 },
102 [RTN_LOCAL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .error = 0,
104 .scope = RT_SCOPE_HOST,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000105 },
106 [RTN_BROADCAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 .error = 0,
108 .scope = RT_SCOPE_LINK,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000109 },
110 [RTN_ANYCAST] = {
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_MULTICAST] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .error = 0,
116 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000117 },
118 [RTN_BLACKHOLE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .error = -EINVAL,
120 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000121 },
122 [RTN_UNREACHABLE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .error = -EHOSTUNREACH,
124 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000125 },
126 [RTN_PROHIBIT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .error = -EACCES,
128 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000129 },
130 [RTN_THROW] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .error = -EAGAIN,
132 .scope = RT_SCOPE_UNIVERSE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000133 },
134 [RTN_NAT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .error = -EINVAL,
136 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000137 },
138 [RTN_XRESOLVE] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .error = -EINVAL,
140 .scope = RT_SCOPE_NOWHERE,
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000141 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144
145/* Release a nexthop info record */
146
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000147static void free_fib_info_rcu(struct rcu_head *head)
148{
149 struct fib_info *fi = container_of(head, struct fib_info, rcu);
150
David S. Miller725d1e12011-01-28 14:05:05 -0800151 if (fi->fib_metrics != (u32 *) dst_default_metrics)
152 kfree(fi->fib_metrics);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000153 kfree(fi);
154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156void free_fib_info(struct fib_info *fi)
157{
158 if (fi->fib_dead == 0) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000159 pr_warning("Freeing alive fib_info %p\n", fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return;
161 }
162 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800163 if (nexthop_nh->nh_dev)
164 dev_put(nexthop_nh->nh_dev);
165 nexthop_nh->nh_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 } endfor_nexthops(fi);
167 fib_info_cnt--;
Denis V. Lunev57d7a602008-04-16 02:00:50 -0700168 release_net(fi->fib_net);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000169 call_rcu(&fi->rcu, free_fib_info_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172void fib_release_info(struct fib_info *fi)
173{
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700174 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (fi && --fi->fib_treeref == 0) {
176 hlist_del(&fi->fib_hash);
177 if (fi->fib_prefsrc)
178 hlist_del(&fi->fib_lhash);
179 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800180 if (!nexthop_nh->nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 continue;
David S. Miller71fceff2010-01-15 01:16:40 -0800182 hlist_del(&nexthop_nh->nh_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 } endfor_nexthops(fi)
184 fi->fib_dead = 1;
185 fib_info_put(fi);
186 }
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700187 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000190static inline int nh_comp(const struct fib_info *fi, const struct fib_info *ofi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 const struct fib_nh *onh = ofi->fib_nh;
193
194 for_nexthops(fi) {
195 if (nh->nh_oif != onh->nh_oif ||
196 nh->nh_gw != onh->nh_gw ||
197 nh->nh_scope != onh->nh_scope ||
198#ifdef CONFIG_IP_ROUTE_MULTIPATH
199 nh->nh_weight != onh->nh_weight ||
200#endif
Patrick McHardyc7066f72011-01-14 13:36:42 +0100201#ifdef CONFIG_IP_ROUTE_CLASSID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 nh->nh_tclassid != onh->nh_tclassid ||
203#endif
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000204 ((nh->nh_flags ^ onh->nh_flags) & ~RTNH_F_DEAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return -1;
206 onh++;
207 } endfor_nexthops(fi);
208 return 0;
209}
210
David S. Miller88ebc722008-01-12 21:49:01 -0800211static inline unsigned int fib_devindex_hashfn(unsigned int val)
212{
213 unsigned int mask = DEVINDEX_HASHSIZE - 1;
214
215 return (val ^
216 (val >> DEVINDEX_HASHBITS) ^
217 (val >> (DEVINDEX_HASHBITS * 2))) & mask;
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static inline unsigned int fib_info_hashfn(const struct fib_info *fi)
221{
David S. Miller123b9732011-02-01 15:34:21 -0800222 unsigned int mask = (fib_info_hash_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned int val = fi->fib_nhs;
224
David S. Miller37e826c2011-03-24 18:06:47 -0700225 val ^= (fi->fib_protocol << 8) | fi->fib_scope;
Al Viro81f7bf62006-09-27 18:40:00 -0700226 val ^= (__force u32)fi->fib_prefsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 val ^= fi->fib_priority;
David S. Miller88ebc722008-01-12 21:49:01 -0800228 for_nexthops(fi) {
229 val ^= fib_devindex_hashfn(nh->nh_oif);
230 } endfor_nexthops(fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 return (val ^ (val >> 7) ^ (val >> 12)) & mask;
233}
234
235static struct fib_info *fib_find_info(const struct fib_info *nfi)
236{
237 struct hlist_head *head;
238 struct hlist_node *node;
239 struct fib_info *fi;
240 unsigned int hash;
241
242 hash = fib_info_hashfn(nfi);
243 head = &fib_info_hash[hash];
244
245 hlist_for_each_entry(fi, node, head, fib_hash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800246 if (!net_eq(fi->fib_net, nfi->fib_net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -0800247 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (fi->fib_nhs != nfi->fib_nhs)
249 continue;
250 if (nfi->fib_protocol == fi->fib_protocol &&
David S. Miller37e826c2011-03-24 18:06:47 -0700251 nfi->fib_scope == fi->fib_scope &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 nfi->fib_prefsrc == fi->fib_prefsrc &&
253 nfi->fib_priority == fi->fib_priority &&
254 memcmp(nfi->fib_metrics, fi->fib_metrics,
Eric Dumazetfcd13f42011-03-24 07:01:24 +0000255 sizeof(u32) * RTAX_MAX) == 0 &&
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000256 ((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_F_DEAD) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
258 return fi;
259 }
260
261 return NULL;
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/* Check, that the gateway is already configured.
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000265 * Used only by redirect accept routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
Al Virod878e72e2006-09-26 22:18:13 -0700267int ip_fib_check_default(__be32 gw, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct hlist_head *head;
270 struct hlist_node *node;
271 struct fib_nh *nh;
272 unsigned int hash;
273
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700274 spin_lock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 hash = fib_devindex_hashfn(dev->ifindex);
277 head = &fib_info_devhash[hash];
278 hlist_for_each_entry(nh, node, head, nh_hash) {
279 if (nh->nh_dev == dev &&
280 nh->nh_gw == gw &&
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000281 !(nh->nh_flags & RTNH_F_DEAD)) {
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700282 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return 0;
284 }
285 }
286
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700287 spin_unlock(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 return -1;
290}
291
Thomas Graf339bf982006-11-10 14:10:15 -0800292static inline size_t fib_nlmsg_size(struct fib_info *fi)
293{
294 size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg))
295 + nla_total_size(4) /* RTA_TABLE */
296 + nla_total_size(4) /* RTA_DST */
297 + nla_total_size(4) /* RTA_PRIORITY */
298 + nla_total_size(4); /* RTA_PREFSRC */
299
300 /* space for nested metrics */
301 payload += nla_total_size((RTAX_MAX * nla_total_size(4)));
302
303 if (fi->fib_nhs) {
304 /* Also handles the special case fib_nhs == 1 */
305
306 /* each nexthop is packed in an attribute */
307 size_t nhsize = nla_total_size(sizeof(struct rtnexthop));
308
309 /* may contain flow and gateway attribute */
310 nhsize += 2 * nla_total_size(4);
311
312 /* all nexthops are packed in a nested attribute */
313 payload += nla_total_size(fi->fib_nhs * nhsize);
314 }
315
316 return payload;
317}
318
Al Viro81f7bf62006-09-27 18:40:00 -0700319void rtmsg_fib(int event, __be32 key, struct fib_alias *fa,
Milan Kocianb8f55832007-05-23 14:55:06 -0700320 int dst_len, u32 tb_id, struct nl_info *info,
321 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct sk_buff *skb;
Thomas Graf4e902c52006-08-17 18:14:52 -0700324 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700325 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Thomas Graf339bf982006-11-10 14:10:15 -0800327 skb = nlmsg_new(fib_nlmsg_size(fa->fa_info), GFP_KERNEL);
Thomas Graff21c7bc2006-08-15 00:34:17 -0700328 if (skb == NULL)
329 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Thomas Graf4e902c52006-08-17 18:14:52 -0700331 err = fib_dump_info(skb, info->pid, seq, event, tb_id,
David S. Miller37e826c2011-03-24 18:06:47 -0700332 fa->fa_type, key, dst_len,
Milan Kocianb8f55832007-05-23 14:55:06 -0700333 fa->fa_tos, fa->fa_info, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -0800334 if (err < 0) {
335 /* -EMSGSIZE implies BUG in fib_nlmsg_size() */
336 WARN_ON(err == -EMSGSIZE);
337 kfree_skb(skb);
338 goto errout;
339 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800340 rtnl_notify(skb, info->nl_net, info->pid, RTNLGRP_IPV4_ROUTE,
341 info->nlh, GFP_KERNEL);
342 return;
Thomas Graff21c7bc2006-08-15 00:34:17 -0700343errout:
344 if (err < 0)
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800345 rtnl_set_sk_err(info->nl_net, RTNLGRP_IPV4_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348/* Return the first fib alias matching TOS with
349 * priority less than or equal to PRIO.
350 */
351struct fib_alias *fib_find_alias(struct list_head *fah, u8 tos, u32 prio)
352{
353 if (fah) {
354 struct fib_alias *fa;
355 list_for_each_entry(fa, fah, fa_list) {
356 if (fa->fa_tos > tos)
357 continue;
358 if (fa->fa_info->fib_priority >= prio ||
359 fa->fa_tos < tos)
360 return fa;
361 }
362 }
363 return NULL;
364}
365
366int fib_detect_death(struct fib_info *fi, int order,
Denis V. Lunevc17860a2007-12-08 00:22:13 -0800367 struct fib_info **last_resort, int *last_idx, int dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct neighbour *n;
370 int state = NUD_NONE;
371
372 n = neigh_lookup(&arp_tbl, &fi->fib_nh[0].nh_gw, fi->fib_dev);
373 if (n) {
374 state = n->nud_state;
375 neigh_release(n);
376 }
Jianjun Kongd93191002008-11-03 00:23:42 -0800377 if (state == NUD_REACHABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000379 if ((state & NUD_VALID) && order != dflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return 0;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000381 if ((state & NUD_VALID) ||
382 (*last_idx < 0 && order > dflt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *last_resort = fi;
384 *last_idx = order;
385 }
386 return 1;
387}
388
389#ifdef CONFIG_IP_ROUTE_MULTIPATH
390
Thomas Graf4e902c52006-08-17 18:14:52 -0700391static int fib_count_nexthops(struct rtnexthop *rtnh, int remaining)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 int nhs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Thomas Graf4e902c52006-08-17 18:14:52 -0700395 while (rtnh_ok(rtnh, remaining)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 nhs++;
Thomas Graf4e902c52006-08-17 18:14:52 -0700397 rtnh = rtnh_next(rtnh, &remaining);
398 }
399
400 /* leftover implies invalid nexthop configuration, discard it */
401 return remaining > 0 ? 0 : nhs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Thomas Graf4e902c52006-08-17 18:14:52 -0700404static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh,
405 int remaining, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 change_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700408 int attrlen;
409
410 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700412
David S. Miller71fceff2010-01-15 01:16:40 -0800413 nexthop_nh->nh_flags =
414 (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags;
415 nexthop_nh->nh_oif = rtnh->rtnh_ifindex;
416 nexthop_nh->nh_weight = rtnh->rtnh_hops + 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700417
418 attrlen = rtnh_attrlen(rtnh);
419 if (attrlen > 0) {
420 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
421
422 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
David S. Miller71fceff2010-01-15 01:16:40 -0800423 nexthop_nh->nh_gw = nla ? nla_get_be32(nla) : 0;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100424#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700425 nla = nla_find(attrs, attrlen, RTA_FLOW);
David S. Miller71fceff2010-01-15 01:16:40 -0800426 nexthop_nh->nh_tclassid = nla ? nla_get_u32(nla) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#endif
428 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700429
430 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 } endfor_nexthops(fi);
Thomas Graf4e902c52006-08-17 18:14:52 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
436#endif
437
Thomas Graf4e902c52006-08-17 18:14:52 -0700438int fib_nh_match(struct fib_config *cfg, struct fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700441 struct rtnexthop *rtnh;
442 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443#endif
444
Thomas Graf4e902c52006-08-17 18:14:52 -0700445 if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return 1;
447
Thomas Graf4e902c52006-08-17 18:14:52 -0700448 if (cfg->fc_oif || cfg->fc_gw) {
449 if ((!cfg->fc_oif || cfg->fc_oif == fi->fib_nh->nh_oif) &&
450 (!cfg->fc_gw || cfg->fc_gw == fi->fib_nh->nh_gw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 0;
452 return 1;
453 }
454
455#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700456 if (cfg->fc_mp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700458
459 rtnh = cfg->fc_mp;
460 remaining = cfg->fc_mp_len;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 for_nexthops(fi) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700463 int attrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Thomas Graf4e902c52006-08-17 18:14:52 -0700465 if (!rtnh_ok(rtnh, remaining))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700467
468 if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->nh_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return 1;
Thomas Graf4e902c52006-08-17 18:14:52 -0700470
471 attrlen = rtnh_attrlen(rtnh);
472 if (attrlen < 0) {
473 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
474
475 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
Al Viro17fb2c62006-09-26 22:15:25 -0700476 if (nla && nla_get_be32(nla) != nh->nh_gw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 1;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100478#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700479 nla = nla_find(attrs, attrlen, RTA_FLOW);
480 if (nla && nla_get_u32(nla) != nh->nh_tclassid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return 1;
482#endif
483 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700484
485 rtnh = rtnh_next(rtnh, &remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 } endfor_nexthops(fi);
487#endif
488 return 0;
489}
490
491
492/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000493 * Picture
494 * -------
495 *
496 * Semantics of nexthop is very messy by historical reasons.
497 * We have to take into account, that:
498 * a) gateway can be actually local interface address,
499 * so that gatewayed route is direct.
500 * b) gateway must be on-link address, possibly
501 * described not by an ifaddr, but also by a direct route.
502 * c) If both gateway and interface are specified, they should not
503 * contradict.
504 * d) If we use tunnel routes, gateway could be not on-link.
505 *
506 * Attempt to reconcile all of these (alas, self-contradictory) conditions
507 * results in pretty ugly and hairy code with obscure logic.
508 *
509 * I chose to generalized it instead, so that the size
510 * of code does not increase practically, but it becomes
511 * much more general.
512 * Every prefix is assigned a "scope" value: "host" is local address,
513 * "link" is direct route,
514 * [ ... "site" ... "interior" ... ]
515 * and "universe" is true gateway route with global meaning.
516 *
517 * Every prefix refers to a set of "nexthop"s (gw, oif),
518 * where gw must have narrower scope. This recursion stops
519 * when gw has LOCAL scope or if "nexthop" is declared ONLINK,
520 * which means that gw is forced to be on link.
521 *
522 * Code is still hairy, but now it is apparently logically
523 * consistent and very flexible. F.e. as by-product it allows
524 * to co-exists in peace independent exterior and interior
525 * routing processes.
526 *
527 * Normally it looks as following.
528 *
529 * {universe prefix} -> (gw, oif) [scope link]
530 * |
531 * |-> {link prefix} -> (gw, oif) [scope local]
532 * |
533 * |-> {local prefix} (terminal node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Thomas Graf4e902c52006-08-17 18:14:52 -0700535static int fib_check_nh(struct fib_config *cfg, struct fib_info *fi,
536 struct fib_nh *nh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 int err;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800539 struct net *net;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000540 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Denis V. Lunev86167a32008-01-21 17:34:00 -0800542 net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (nh->nh_gw) {
544 struct fib_result res;
545
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000546 if (nh->nh_flags & RTNH_F_ONLINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Thomas Graf4e902c52006-08-17 18:14:52 -0700548 if (cfg->fc_scope >= RT_SCOPE_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return -EINVAL;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800550 if (inet_addr_type(net, nh->nh_gw) != RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return -EINVAL;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000552 dev = __dev_get_by_index(net, nh->nh_oif);
553 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return -ENODEV;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000555 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return -ENETDOWN;
557 nh->nh_dev = dev;
558 dev_hold(dev);
559 nh->nh_scope = RT_SCOPE_LINK;
560 return 0;
561 }
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000562 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 {
David S. Miller9ade2282011-03-12 02:02:42 -0500564 struct flowi4 fl4 = {
565 .daddr = nh->nh_gw,
566 .flowi4_scope = cfg->fc_scope + 1,
567 .flowi4_oif = nh->nh_oif,
Thomas Graf4e902c52006-08-17 18:14:52 -0700568 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* It is not necessary, but requires a bit of thinking */
David S. Miller9ade2282011-03-12 02:02:42 -0500571 if (fl4.flowi4_scope < RT_SCOPE_LINK)
572 fl4.flowi4_scope = RT_SCOPE_LINK;
573 err = fib_lookup(net, &fl4, &res);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000574 if (err) {
575 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return err;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579 err = -EINVAL;
580 if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
581 goto out;
582 nh->nh_scope = res.scope;
583 nh->nh_oif = FIB_RES_OIF(res);
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000584 nh->nh_dev = dev = FIB_RES_DEV(res);
585 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 goto out;
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000587 dev_hold(dev);
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000588 err = (dev->flags & IFF_UP) ? 0 : -ENETDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } else {
590 struct in_device *in_dev;
591
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000592 if (nh->nh_flags & (RTNH_F_PERVASIVE | RTNH_F_ONLINK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return -EINVAL;
594
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000595 rcu_read_lock();
596 err = -ENODEV;
Denis V. Lunev86167a32008-01-21 17:34:00 -0800597 in_dev = inetdev_by_index(net, nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (in_dev == NULL)
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000599 goto out;
600 err = -ENETDOWN;
601 if (!(in_dev->dev->flags & IFF_UP))
602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 nh->nh_dev = in_dev->dev;
604 dev_hold(nh->nh_dev);
605 nh->nh_scope = RT_SCOPE_HOST;
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000606 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Eric Dumazet8723e1b2010-10-19 00:39:26 +0000608out:
609 rcu_read_unlock();
610 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Al Viro81f7bf62006-09-27 18:40:00 -0700613static inline unsigned int fib_laddr_hashfn(__be32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
David S. Miller123b9732011-02-01 15:34:21 -0800615 unsigned int mask = (fib_info_hash_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000617 return ((__force u32)val ^
618 ((__force u32)val >> 7) ^
619 ((__force u32)val >> 14)) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
David S. Miller123b9732011-02-01 15:34:21 -0800622static struct hlist_head *fib_info_hash_alloc(int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 if (bytes <= PAGE_SIZE)
Joonwoo Park88f83492007-11-26 23:29:32 +0800625 return kzalloc(bytes, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 else
627 return (struct hlist_head *)
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000628 __get_free_pages(GFP_KERNEL | __GFP_ZERO,
629 get_order(bytes));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
David S. Miller123b9732011-02-01 15:34:21 -0800632static void fib_info_hash_free(struct hlist_head *hash, int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 if (!hash)
635 return;
636
637 if (bytes <= PAGE_SIZE)
638 kfree(hash);
639 else
640 free_pages((unsigned long) hash, get_order(bytes));
641}
642
David S. Miller123b9732011-02-01 15:34:21 -0800643static void fib_info_hash_move(struct hlist_head *new_info_hash,
644 struct hlist_head *new_laddrhash,
645 unsigned int new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
David S. Millerb7656e72005-08-05 04:12:48 -0700647 struct hlist_head *old_info_hash, *old_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -0800648 unsigned int old_size = fib_info_hash_size;
David S. Millerb7656e72005-08-05 04:12:48 -0700649 unsigned int i, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700651 spin_lock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -0700652 old_info_hash = fib_info_hash;
653 old_laddrhash = fib_info_laddrhash;
David S. Miller123b9732011-02-01 15:34:21 -0800654 fib_info_hash_size = new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 for (i = 0; i < old_size; i++) {
657 struct hlist_head *head = &fib_info_hash[i];
658 struct hlist_node *node, *n;
659 struct fib_info *fi;
660
661 hlist_for_each_entry_safe(fi, node, n, head, fib_hash) {
662 struct hlist_head *dest;
663 unsigned int new_hash;
664
665 hlist_del(&fi->fib_hash);
666
667 new_hash = fib_info_hashfn(fi);
668 dest = &new_info_hash[new_hash];
669 hlist_add_head(&fi->fib_hash, dest);
670 }
671 }
672 fib_info_hash = new_info_hash;
673
674 for (i = 0; i < old_size; i++) {
675 struct hlist_head *lhead = &fib_info_laddrhash[i];
676 struct hlist_node *node, *n;
677 struct fib_info *fi;
678
679 hlist_for_each_entry_safe(fi, node, n, lhead, fib_lhash) {
680 struct hlist_head *ldest;
681 unsigned int new_hash;
682
683 hlist_del(&fi->fib_lhash);
684
685 new_hash = fib_laddr_hashfn(fi->fib_prefsrc);
686 ldest = &new_laddrhash[new_hash];
687 hlist_add_head(&fi->fib_lhash, ldest);
688 }
689 }
690 fib_info_laddrhash = new_laddrhash;
691
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700692 spin_unlock_bh(&fib_info_lock);
David S. Millerb7656e72005-08-05 04:12:48 -0700693
694 bytes = old_size * sizeof(struct hlist_head *);
David S. Miller123b9732011-02-01 15:34:21 -0800695 fib_info_hash_free(old_info_hash, bytes);
696 fib_info_hash_free(old_laddrhash, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
David S. Miller436c3b62011-03-24 17:42:21 -0700699__be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh)
700{
701 nh->nh_saddr = inet_select_addr(nh->nh_dev,
702 nh->nh_gw,
David S. Miller37e826c2011-03-24 18:06:47 -0700703 nh->nh_parent->fib_scope);
David S. Miller436c3b62011-03-24 17:42:21 -0700704 nh->nh_saddr_genid = atomic_read(&net->ipv4.dev_addr_genid);
705
706 return nh->nh_saddr;
707}
708
Thomas Graf4e902c52006-08-17 18:14:52 -0700709struct fib_info *fib_create_info(struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 int err;
712 struct fib_info *fi = NULL;
713 struct fib_info *ofi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int nhs = 1;
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800715 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
David S. Miller4c8237c2011-03-07 14:27:38 -0800717 if (cfg->fc_type > RTN_MAX)
718 goto err_inval;
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /* Fast check to catch the most weird cases */
Thomas Graf4e902c52006-08-17 18:14:52 -0700721 if (fib_props[cfg->fc_type].scope > cfg->fc_scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 goto err_inval;
723
724#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700725 if (cfg->fc_mp) {
726 nhs = fib_count_nexthops(cfg->fc_mp, cfg->fc_mp_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (nhs == 0)
728 goto err_inval;
729 }
730#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 err = -ENOBUFS;
David S. Miller123b9732011-02-01 15:34:21 -0800733 if (fib_info_cnt >= fib_info_hash_size) {
734 unsigned int new_size = fib_info_hash_size << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct hlist_head *new_info_hash;
736 struct hlist_head *new_laddrhash;
737 unsigned int bytes;
738
739 if (!new_size)
740 new_size = 1;
741 bytes = new_size * sizeof(struct hlist_head *);
David S. Miller123b9732011-02-01 15:34:21 -0800742 new_info_hash = fib_info_hash_alloc(bytes);
743 new_laddrhash = fib_info_hash_alloc(bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (!new_info_hash || !new_laddrhash) {
David S. Miller123b9732011-02-01 15:34:21 -0800745 fib_info_hash_free(new_info_hash, bytes);
746 fib_info_hash_free(new_laddrhash, bytes);
Joonwoo Park88f83492007-11-26 23:29:32 +0800747 } else
David S. Miller123b9732011-02-01 15:34:21 -0800748 fib_info_hash_move(new_info_hash, new_laddrhash, new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
David S. Miller123b9732011-02-01 15:34:21 -0800750 if (!fib_info_hash_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 goto failure;
752 }
753
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700754 fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct fib_nh), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (fi == NULL)
756 goto failure;
David S. Miller725d1e12011-01-28 14:05:05 -0800757 if (cfg->fc_mx) {
758 fi->fib_metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
759 if (!fi->fib_metrics)
760 goto failure;
761 } else
762 fi->fib_metrics = (u32 *) dst_default_metrics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 fib_info_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Denis V. Lunev57d7a602008-04-16 02:00:50 -0700765 fi->fib_net = hold_net(net);
Thomas Graf4e902c52006-08-17 18:14:52 -0700766 fi->fib_protocol = cfg->fc_protocol;
David S. Miller37e826c2011-03-24 18:06:47 -0700767 fi->fib_scope = cfg->fc_scope;
Thomas Graf4e902c52006-08-17 18:14:52 -0700768 fi->fib_flags = cfg->fc_flags;
769 fi->fib_priority = cfg->fc_priority;
770 fi->fib_prefsrc = cfg->fc_prefsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 fi->fib_nhs = nhs;
773 change_nexthops(fi) {
David S. Miller71fceff2010-01-15 01:16:40 -0800774 nexthop_nh->nh_parent = fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 } endfor_nexthops(fi)
776
Thomas Graf4e902c52006-08-17 18:14:52 -0700777 if (cfg->fc_mx) {
778 struct nlattr *nla;
779 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Thomas Graf4e902c52006-08-17 18:14:52 -0700781 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +0200782 int type = nla_type(nla);
Thomas Graf4e902c52006-08-17 18:14:52 -0700783
784 if (type) {
785 if (type > RTAX_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 goto err_inval;
Thomas Graf4e902c52006-08-17 18:14:52 -0700787 fi->fib_metrics[type - 1] = nla_get_u32(nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Thomas Graf4e902c52006-08-17 18:14:52 -0700792 if (cfg->fc_mp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793#ifdef CONFIG_IP_ROUTE_MULTIPATH
Thomas Graf4e902c52006-08-17 18:14:52 -0700794 err = fib_get_nhs(fi, cfg->fc_mp, cfg->fc_mp_len, cfg);
795 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 goto failure;
Thomas Graf4e902c52006-08-17 18:14:52 -0700797 if (cfg->fc_oif && fi->fib_nh->nh_oif != cfg->fc_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto err_inval;
Thomas Graf4e902c52006-08-17 18:14:52 -0700799 if (cfg->fc_gw && fi->fib_nh->nh_gw != cfg->fc_gw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 goto err_inval;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100801#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700802 if (cfg->fc_flow && fi->fib_nh->nh_tclassid != cfg->fc_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 goto err_inval;
804#endif
805#else
806 goto err_inval;
807#endif
808 } else {
809 struct fib_nh *nh = fi->fib_nh;
Thomas Graf4e902c52006-08-17 18:14:52 -0700810
811 nh->nh_oif = cfg->fc_oif;
812 nh->nh_gw = cfg->fc_gw;
813 nh->nh_flags = cfg->fc_flags;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100814#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Graf4e902c52006-08-17 18:14:52 -0700815 nh->nh_tclassid = cfg->fc_flow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817#ifdef CONFIG_IP_ROUTE_MULTIPATH
818 nh->nh_weight = 1;
819#endif
820 }
821
Thomas Graf4e902c52006-08-17 18:14:52 -0700822 if (fib_props[cfg->fc_type].error) {
823 if (cfg->fc_gw || cfg->fc_oif || cfg->fc_mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto err_inval;
825 goto link_it;
David S. Miller4c8237c2011-03-07 14:27:38 -0800826 } else {
827 switch (cfg->fc_type) {
828 case RTN_UNICAST:
829 case RTN_LOCAL:
830 case RTN_BROADCAST:
831 case RTN_ANYCAST:
832 case RTN_MULTICAST:
833 break;
834 default:
835 goto err_inval;
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
Thomas Graf4e902c52006-08-17 18:14:52 -0700839 if (cfg->fc_scope > RT_SCOPE_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 goto err_inval;
841
Thomas Graf4e902c52006-08-17 18:14:52 -0700842 if (cfg->fc_scope == RT_SCOPE_HOST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct fib_nh *nh = fi->fib_nh;
844
845 /* Local address is added. */
846 if (nhs != 1 || nh->nh_gw)
847 goto err_inval;
848 nh->nh_scope = RT_SCOPE_NOWHERE;
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800849 nh->nh_dev = dev_get_by_index(net, fi->fib_nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 err = -ENODEV;
851 if (nh->nh_dev == NULL)
852 goto failure;
853 } else {
854 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000855 err = fib_check_nh(cfg, fi, nexthop_nh);
856 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto failure;
858 } endfor_nexthops(fi)
859 }
860
861 if (fi->fib_prefsrc) {
Thomas Graf4e902c52006-08-17 18:14:52 -0700862 if (cfg->fc_type != RTN_LOCAL || !cfg->fc_dst ||
863 fi->fib_prefsrc != cfg->fc_dst)
Denis V. Lunev7462bd742008-01-31 18:49:32 -0800864 if (inet_addr_type(net, fi->fib_prefsrc) != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 goto err_inval;
866 }
867
David S. Miller1fc050a2011-03-07 20:54:48 -0800868 change_nexthops(fi) {
David S. Miller436c3b62011-03-24 17:42:21 -0700869 fib_info_update_nh_saddr(net, nexthop_nh);
David S. Miller1fc050a2011-03-07 20:54:48 -0800870 } endfor_nexthops(fi)
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872link_it:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +0000873 ofi = fib_find_info(fi);
874 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 fi->fib_dead = 1;
876 free_fib_info(fi);
877 ofi->fib_treeref++;
878 return ofi;
879 }
880
881 fi->fib_treeref++;
882 atomic_inc(&fi->fib_clntref);
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700883 spin_lock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 hlist_add_head(&fi->fib_hash,
885 &fib_info_hash[fib_info_hashfn(fi)]);
886 if (fi->fib_prefsrc) {
887 struct hlist_head *head;
888
889 head = &fib_info_laddrhash[fib_laddr_hashfn(fi->fib_prefsrc)];
890 hlist_add_head(&fi->fib_lhash, head);
891 }
892 change_nexthops(fi) {
893 struct hlist_head *head;
894 unsigned int hash;
895
David S. Miller71fceff2010-01-15 01:16:40 -0800896 if (!nexthop_nh->nh_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 continue;
David S. Miller71fceff2010-01-15 01:16:40 -0800898 hash = fib_devindex_hashfn(nexthop_nh->nh_dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 head = &fib_info_devhash[hash];
David S. Miller71fceff2010-01-15 01:16:40 -0800900 hlist_add_head(&nexthop_nh->nh_hash, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 } endfor_nexthops(fi)
Stephen Hemminger832b4c52006-08-29 16:48:09 -0700902 spin_unlock_bh(&fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return fi;
904
905err_inval:
906 err = -EINVAL;
907
908failure:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900909 if (fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 fi->fib_dead = 1;
911 free_fib_info(fi);
912 }
Thomas Graf4e902c52006-08-17 18:14:52 -0700913
914 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Thomas Grafbe403ea2006-08-17 18:15:17 -0700917int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
David S. Miller37e826c2011-03-24 18:06:47 -0700918 u32 tb_id, u8 type, __be32 dst, int dst_len, u8 tos,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700919 struct fib_info *fi, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Thomas Grafbe403ea2006-08-17 18:15:17 -0700921 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Thomas Grafbe403ea2006-08-17 18:15:17 -0700924 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*rtm), flags);
925 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800926 return -EMSGSIZE;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700927
928 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 rtm->rtm_family = AF_INET;
930 rtm->rtm_dst_len = dst_len;
931 rtm->rtm_src_len = 0;
932 rtm->rtm_tos = tos;
Krzysztof Piotr Oledzki709772e2008-06-10 15:44:49 -0700933 if (tb_id < 256)
934 rtm->rtm_table = tb_id;
935 else
936 rtm->rtm_table = RT_TABLE_COMPAT;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700937 NLA_PUT_U32(skb, RTA_TABLE, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 rtm->rtm_type = type;
939 rtm->rtm_flags = fi->fib_flags;
David S. Miller37e826c2011-03-24 18:06:47 -0700940 rtm->rtm_scope = fi->fib_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 rtm->rtm_protocol = fi->fib_protocol;
Thomas Grafbe403ea2006-08-17 18:15:17 -0700942
943 if (rtm->rtm_dst_len)
Al Viro17fb2c62006-09-26 22:15:25 -0700944 NLA_PUT_BE32(skb, RTA_DST, dst);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (fi->fib_priority)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700947 NLA_PUT_U32(skb, RTA_PRIORITY, fi->fib_priority);
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (rtnetlink_put_metrics(skb, fi->fib_metrics) < 0)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700950 goto nla_put_failure;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (fi->fib_prefsrc)
Al Viro17fb2c62006-09-26 22:15:25 -0700953 NLA_PUT_BE32(skb, RTA_PREFSRC, fi->fib_prefsrc);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (fi->fib_nhs == 1) {
956 if (fi->fib_nh->nh_gw)
Al Viro17fb2c62006-09-26 22:15:25 -0700957 NLA_PUT_BE32(skb, RTA_GATEWAY, fi->fib_nh->nh_gw);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (fi->fib_nh->nh_oif)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700960 NLA_PUT_U32(skb, RTA_OIF, fi->fib_nh->nh_oif);
Patrick McHardyc7066f72011-01-14 13:36:42 +0100961#ifdef CONFIG_IP_ROUTE_CLASSID
Patrick McHardy8265abc2006-07-21 15:09:55 -0700962 if (fi->fib_nh[0].nh_tclassid)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700963 NLA_PUT_U32(skb, RTA_FLOW, fi->fib_nh[0].nh_tclassid);
Patrick McHardy8265abc2006-07-21 15:09:55 -0700964#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966#ifdef CONFIG_IP_ROUTE_MULTIPATH
967 if (fi->fib_nhs > 1) {
Thomas Grafbe403ea2006-08-17 18:15:17 -0700968 struct rtnexthop *rtnh;
969 struct nlattr *mp;
970
971 mp = nla_nest_start(skb, RTA_MULTIPATH);
972 if (mp == NULL)
973 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 for_nexthops(fi) {
Thomas Grafbe403ea2006-08-17 18:15:17 -0700976 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
977 if (rtnh == NULL)
978 goto nla_put_failure;
979
980 rtnh->rtnh_flags = nh->nh_flags & 0xFF;
981 rtnh->rtnh_hops = nh->nh_weight - 1;
982 rtnh->rtnh_ifindex = nh->nh_oif;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (nh->nh_gw)
Al Viro17fb2c62006-09-26 22:15:25 -0700985 NLA_PUT_BE32(skb, RTA_GATEWAY, nh->nh_gw);
Patrick McHardyc7066f72011-01-14 13:36:42 +0100986#ifdef CONFIG_IP_ROUTE_CLASSID
Patrick McHardy8265abc2006-07-21 15:09:55 -0700987 if (nh->nh_tclassid)
Thomas Grafbe403ea2006-08-17 18:15:17 -0700988 NLA_PUT_U32(skb, RTA_FLOW, nh->nh_tclassid);
Patrick McHardy8265abc2006-07-21 15:09:55 -0700989#endif
Thomas Grafbe403ea2006-08-17 18:15:17 -0700990 /* length of rtnetlink header + attributes */
991 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *) rtnh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 } endfor_nexthops(fi);
Thomas Grafbe403ea2006-08-17 18:15:17 -0700993
994 nla_nest_end(skb, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996#endif
Thomas Grafbe403ea2006-08-17 18:15:17 -0700997 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Thomas Grafbe403ea2006-08-17 18:15:17 -0700999nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001000 nlmsg_cancel(skb, nlh);
1001 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001005 * Update FIB if:
1006 * - local address disappeared -> we must delete all the entries
1007 * referring to it.
1008 * - device went down -> we must shutdown all nexthops going via it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 */
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001010int fib_sync_down_addr(struct net *net, __be32 local)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001011{
1012 int ret = 0;
1013 unsigned int hash = fib_laddr_hashfn(local);
1014 struct hlist_head *head = &fib_info_laddrhash[hash];
1015 struct hlist_node *node;
1016 struct fib_info *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001018 if (fib_info_laddrhash == NULL || local == 0)
1019 return 0;
1020
1021 hlist_for_each_entry(fi, node, head, fib_lhash) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001022 if (!net_eq(fi->fib_net, net))
Denis V. Lunev4814bdb2008-01-31 18:50:07 -08001023 continue;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001024 if (fi->fib_prefsrc == local) {
1025 fi->fib_flags |= RTNH_F_DEAD;
1026 ret++;
1027 }
1028 }
1029 return ret;
1030}
1031
1032int fib_sync_down_dev(struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 int ret = 0;
1035 int scope = RT_SCOPE_NOWHERE;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001036 struct fib_info *prev_fi = NULL;
1037 unsigned int hash = fib_devindex_hashfn(dev->ifindex);
1038 struct hlist_head *head = &fib_info_devhash[hash];
1039 struct hlist_node *node;
1040 struct fib_nh *nh;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (force)
1043 scope = -1;
1044
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001045 hlist_for_each_entry(nh, node, head, nh_hash) {
1046 struct fib_info *fi = nh->nh_parent;
1047 int dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001049 BUG_ON(!fi->fib_nhs);
1050 if (nh->nh_dev != dev || fi == prev_fi)
1051 continue;
1052 prev_fi = fi;
1053 dead = 0;
1054 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001055 if (nexthop_nh->nh_flags & RTNH_F_DEAD)
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001056 dead++;
David S. Miller71fceff2010-01-15 01:16:40 -08001057 else if (nexthop_nh->nh_dev == dev &&
1058 nexthop_nh->nh_scope != scope) {
1059 nexthop_nh->nh_flags |= RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060#ifdef CONFIG_IP_ROUTE_MULTIPATH
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001061 spin_lock_bh(&fib_multipath_lock);
David S. Miller71fceff2010-01-15 01:16:40 -08001062 fi->fib_power -= nexthop_nh->nh_power;
1063 nexthop_nh->nh_power = 0;
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001064 spin_unlock_bh(&fib_multipath_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065#endif
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001066 dead++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001068#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller71fceff2010-01-15 01:16:40 -08001069 if (force > 1 && nexthop_nh->nh_dev == dev) {
Denis V. Lunev85326fa2008-01-31 18:48:47 -08001070 dead = fi->fib_nhs;
1071 break;
1072 }
1073#endif
1074 } endfor_nexthops(fi)
1075 if (dead == fi->fib_nhs) {
1076 fi->fib_flags |= RTNH_F_DEAD;
1077 ret++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079 }
1080
1081 return ret;
1082}
1083
David S. Miller0c838ff2011-01-31 16:16:50 -08001084/* Must be invoked inside of an RCU protected region. */
1085void fib_select_default(struct fib_result *res)
1086{
1087 struct fib_info *fi = NULL, *last_resort = NULL;
1088 struct list_head *fa_head = res->fa_head;
1089 struct fib_table *tb = res->table;
1090 int order = -1, last_idx = -1;
1091 struct fib_alias *fa;
1092
1093 list_for_each_entry_rcu(fa, fa_head, fa_list) {
1094 struct fib_info *next_fi = fa->fa_info;
1095
David S. Miller37e826c2011-03-24 18:06:47 -07001096 if (next_fi->fib_scope != res->scope ||
David S. Miller0c838ff2011-01-31 16:16:50 -08001097 fa->fa_type != RTN_UNICAST)
1098 continue;
1099
1100 if (next_fi->fib_priority > res->fi->fib_priority)
1101 break;
1102 if (!next_fi->fib_nh[0].nh_gw ||
1103 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
1104 continue;
1105
1106 fib_alias_accessed(fa);
1107
1108 if (fi == NULL) {
1109 if (next_fi != res->fi)
1110 break;
1111 } else if (!fib_detect_death(fi, order, &last_resort,
1112 &last_idx, tb->tb_default)) {
1113 fib_result_assign(res, fi);
1114 tb->tb_default = order;
1115 goto out;
1116 }
1117 fi = next_fi;
1118 order++;
1119 }
1120
1121 if (order <= 0 || fi == NULL) {
1122 tb->tb_default = -1;
1123 goto out;
1124 }
1125
1126 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
1127 tb->tb_default)) {
1128 fib_result_assign(res, fi);
1129 tb->tb_default = order;
1130 goto out;
1131 }
1132
1133 if (last_idx >= 0)
1134 fib_result_assign(res, last_resort);
1135 tb->tb_default = last_idx;
1136out:
Eric Dumazet31d40932011-02-14 11:23:04 -08001137 return;
David S. Miller0c838ff2011-01-31 16:16:50 -08001138}
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140#ifdef CONFIG_IP_ROUTE_MULTIPATH
1141
1142/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001143 * Dead device goes up. We wake up dead nexthops.
1144 * It takes sense only on multipath routes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146int fib_sync_up(struct net_device *dev)
1147{
1148 struct fib_info *prev_fi;
1149 unsigned int hash;
1150 struct hlist_head *head;
1151 struct hlist_node *node;
1152 struct fib_nh *nh;
1153 int ret;
1154
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001155 if (!(dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return 0;
1157
1158 prev_fi = NULL;
1159 hash = fib_devindex_hashfn(dev->ifindex);
1160 head = &fib_info_devhash[hash];
1161 ret = 0;
1162
1163 hlist_for_each_entry(nh, node, head, nh_hash) {
1164 struct fib_info *fi = nh->nh_parent;
1165 int alive;
1166
1167 BUG_ON(!fi->fib_nhs);
1168 if (nh->nh_dev != dev || fi == prev_fi)
1169 continue;
1170
1171 prev_fi = fi;
1172 alive = 0;
1173 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001174 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 alive++;
1176 continue;
1177 }
David S. Miller71fceff2010-01-15 01:16:40 -08001178 if (nexthop_nh->nh_dev == NULL ||
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001179 !(nexthop_nh->nh_dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 continue;
David S. Miller71fceff2010-01-15 01:16:40 -08001181 if (nexthop_nh->nh_dev != dev ||
1182 !__in_dev_get_rtnl(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 continue;
1184 alive++;
1185 spin_lock_bh(&fib_multipath_lock);
David S. Miller71fceff2010-01-15 01:16:40 -08001186 nexthop_nh->nh_power = 0;
1187 nexthop_nh->nh_flags &= ~RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 spin_unlock_bh(&fib_multipath_lock);
1189 } endfor_nexthops(fi)
1190
1191 if (alive > 0) {
1192 fi->fib_flags &= ~RTNH_F_DEAD;
1193 ret++;
1194 }
1195 }
1196
1197 return ret;
1198}
1199
1200/*
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001201 * The algorithm is suboptimal, but it provides really
1202 * fair weighted route distribution.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 */
David S. Miller1b7fe5932011-03-10 17:01:16 -08001204void fib_select_multipath(struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 struct fib_info *fi = res->fi;
1207 int w;
1208
1209 spin_lock_bh(&fib_multipath_lock);
1210 if (fi->fib_power <= 0) {
1211 int power = 0;
1212 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001213 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) {
David S. Miller71fceff2010-01-15 01:16:40 -08001214 power += nexthop_nh->nh_weight;
1215 nexthop_nh->nh_power = nexthop_nh->nh_weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217 } endfor_nexthops(fi);
1218 fi->fib_power = power;
1219 if (power <= 0) {
1220 spin_unlock_bh(&fib_multipath_lock);
1221 /* Race condition: route has just become dead. */
1222 res->nh_sel = 0;
1223 return;
1224 }
1225 }
1226
1227
1228 /* w should be random number [0..fi->fib_power-1],
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001229 * it is pretty bad approximation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 */
1231
1232 w = jiffies % fi->fib_power;
1233
1234 change_nexthops(fi) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001235 if (!(nexthop_nh->nh_flags & RTNH_F_DEAD) &&
David S. Miller71fceff2010-01-15 01:16:40 -08001236 nexthop_nh->nh_power) {
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00001237 w -= nexthop_nh->nh_power;
1238 if (w <= 0) {
David S. Miller71fceff2010-01-15 01:16:40 -08001239 nexthop_nh->nh_power--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 fi->fib_power--;
1241 res->nh_sel = nhsel;
1242 spin_unlock_bh(&fib_multipath_lock);
1243 return;
1244 }
1245 }
1246 } endfor_nexthops(fi);
1247
1248 /* Race condition: route has just become dead. */
1249 res->nh_sel = 0;
1250 spin_unlock_bh(&fib_multipath_lock);
1251}
1252#endif